create method

Future<Execution> create(
  1. Execution request,
  2. String projectId,
  3. String historyId, {
  4. String? requestId,
  5. String? $fields,
})

Creates an Execution.

The returned Execution will have the id set. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write to project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the containing History does not exist

request - The metadata request object.

Request parameters:

projectId - A Project id. Required.

historyId - A History id. Required.

requestId - A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended.

$fields - Selector specifying which fields to include in a partial response.

Completes with a Execution.

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<Execution> create(
  Execution request,
  core.String projectId,
  core.String historyId, {
  core.String? requestId,
  core.String? $fields,
}) async {
  final _body = convert.json.encode(request.toJson());
  final _queryParams = <core.String, core.List<core.String>>{
    if (requestId != null) 'requestId': [requestId],
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'toolresults/v1beta3/projects/' +
      commons.escapeVariable('$projectId') +
      '/histories/' +
      commons.escapeVariable('$historyId') +
      '/executions';

  final _response = await _requester.request(
    _url,
    'POST',
    body: _body,
    queryParams: _queryParams,
  );
  return Execution.fromJson(_response as core.Map<core.String, core.dynamic>);
}