get method

Future<Bucket> get(
  1. String name, {
  2. String? $fields,
})

Gets a single linked storage bucket.

Request parameters:

name - Required. Resource name of the bucket, mirrors the ID of the underlying Google Cloud Storage bucket, projects/{project_number}/buckets/{bucket_id}. Value must have pattern ^projects/\[^/\]+/buckets/\[^/\]+$.

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

Completes with a Bucket.

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

  final _url = 'v1beta/' + core.Uri.encodeFull('$name');

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