get method
Gets information about a snapshot.
Request parameters:
projectId
- The ID of the Cloud Platform project that the snapshot
belongs to.
location
- The location that contains this snapshot.
snapshotId
- The ID of the snapshot.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Snapshot.
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<Snapshot> get(
core.String projectId,
core.String location,
core.String snapshotId, {
core.String? $fields,
}) async {
final _queryParams = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final _url = 'v1b3/projects/' +
commons.escapeVariable('$projectId') +
'/locations/' +
commons.escapeVariable('$location') +
'/snapshots/' +
commons.escapeVariable('$snapshotId');
final _response = await _requester.request(
_url,
'GET',
queryParams: _queryParams,
);
return Snapshot.fromJson(_response as core.Map<core.String, core.dynamic>);
}