list method
Lists snapshots.
Request parameters:
projectId
- The project ID to list snapshots for.
location
- The location to list snapshots in.
jobId
- If specified, list snapshots created from this job.
$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 location, {
core.String? jobId,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if (jobId != null) 'jobId': [jobId],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1b3/projects/' +
commons.escapeVariable('$projectId') +
'/locations/' +
commons.escapeVariable('$location') +
'/snapshots';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return ListSnapshotsResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}