get method

Future<ScreenshotCluster> get(
  1. String projectId,
  2. String historyId,
  3. String executionId,
  4. String clusterId, {
  5. String? $fields,
})

Retrieves a single screenshot cluster by its ID

Request parameters:

projectId - A Project id. Required.

historyId - A History id. Required.

executionId - An Execution id. Required.

clusterId - A Cluster id Required.

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

Completes with a ScreenshotCluster.

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<ScreenshotCluster> get(
  core.String projectId,
  core.String historyId,
  core.String executionId,
  core.String clusterId, {
  core.String? $fields,
}) async {
  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') +
      '/clusters/' +
      commons.escapeVariable('$clusterId');

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