publishXunitXmlFiles method
Publish xml files to an existing Step.
May return any of the following canonical error codes: - PERMISSION_DENIED
- if the user is not authorized to write project - INVALID_ARGUMENT - if the request is malformed - FAILED_PRECONDITION - if the requested state transition is illegal, e.g try to upload a duplicate xml file or a file too large. - NOT_FOUND - if the containing Execution does not exist
request
- The metadata request object.
Request parameters:
projectId
- A Project id. Required.
historyId
- A History id. Required.
executionId
- A Execution id. Required.
stepId
- A Step id. Note: This step must include a TestExecutionStep.
Required.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Step.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<Step> publishXunitXmlFiles(
PublishXunitXmlFilesRequest request,
core.String projectId,
core.String historyId,
core.String executionId,
core.String stepId, {
core.String? $fields,
}) async {
final _body = convert.json.encode(request);
final _queryParams = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final _url = 'toolresults/v1beta3/projects/' +
commons.escapeVariable('$projectId') +
'/histories/' +
commons.escapeVariable('$historyId') +
'/executions/' +
commons.escapeVariable('$executionId') +
'/steps/' +
commons.escapeVariable('$stepId') +
':publishXunitXmlFiles';
final _response = await _requester.request(
_url,
'POST',
body: _body,
queryParams: _queryParams,
);
return Step.fromJson(_response as core.Map<core.String, core.dynamic>);
}