get method

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

Returns the Google service account that is used by Storage Transfer Service to access buckets in the project where transfers run or in other projects.

Each Google service account is associated with one Google Cloud project. Users should add this service account to the Google Cloud Storage bucket ACLs to grant access to Storage Transfer Service. This service account is created and owned by Storage Transfer Service and can only be used by Storage Transfer Service.

Request parameters:

projectId - Required. The ID of the Google Cloud project that the Google service account is associated with.

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

Completes with a GoogleServiceAccount.

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

  final url_ =
      'v1/googleServiceAccounts/' + commons.escapeVariable('$projectId');

  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return GoogleServiceAccount.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}