create method

Future<PerfSampleSeries> create(
  1. PerfSampleSeries request,
  2. String projectId,
  3. String historyId,
  4. String executionId,
  5. String stepId, {
  6. String? $fields,
})

Creates a PerfSampleSeries.

May return any of the following error code(s): - ALREADY_EXISTS - PerfMetricSummary already exists for the given Step - NOT_FOUND - The containing Step does not exist

request - The metadata request object.

Request parameters:

projectId - The cloud project

historyId - A tool results history ID.

executionId - A tool results execution ID.

stepId - A tool results step ID.

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

Completes with a PerfSampleSeries.

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<PerfSampleSeries> create(
  PerfSampleSeries request,
  core.String projectId,
  core.String historyId,
  core.String executionId,
  core.String stepId, {
  core.String? $fields,
}) async {
  final _body = convert.json.encode(request.toJson());
  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') +
      '/perfSampleSeries';

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