batchCreate method

Future<BatchCreatePerfSamplesResponse> batchCreate(
  1. BatchCreatePerfSamplesRequest request,
  2. String projectId,
  3. String historyId,
  4. String executionId,
  5. String stepId,
  6. String sampleSeriesId, {
  7. String? $fields,
})

Creates a batch of PerfSamples - a client can submit multiple batches of Perf Samples through repeated calls to this method in order to split up a large request payload - duplicates and existing timestamp entries will be ignored.

  • the batch operation may partially succeed - the set of elements successfully inserted is returned in the response (omits items which already existed in the database). May return any of the following canonical error codes: - NOT_FOUND - The containing PerfSampleSeries 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.

sampleSeriesId - A sample series id

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

Completes with a BatchCreatePerfSamplesResponse.

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<BatchCreatePerfSamplesResponse> batchCreate(
  BatchCreatePerfSamplesRequest request,
  core.String projectId,
  core.String historyId,
  core.String executionId,
  core.String stepId,
  core.String sampleSeriesId, {
  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/' +
      commons.escapeVariable('$sampleSeriesId') +
      '/samples:batchCreate';

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