list method

Future<ListSnapshotsResponse> list(
  1. String projectId, {
  2. String? jobId,
  3. String? location,
  4. String? $fields,
})

Lists snapshots.

Request parameters:

projectId - The project ID to list snapshots for.

jobId - If specified, list snapshots created from this job.

location - The location to list snapshots in.

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

Completes with a ListSnapshotsResponse.

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<ListSnapshotsResponse> list(
  core.String projectId, {
  core.String? jobId,
  core.String? location,
  core.String? $fields,
}) async {
  final _queryParams = <core.String, core.List<core.String>>{
    if (jobId != null) 'jobId': [jobId],
    if (location != null) 'location': [location],
    if ($fields != null) 'fields': [$fields],
  };

  final _url =
      'v1b3/projects/' + commons.escapeVariable('$projectId') + '/snapshots';

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