get method

Future<Drive> get(
  1. String driveId, {
  2. bool? useDomainAdminAccess,
  3. String? $fields,
})

Gets a shared drive's metadata by ID.

Request parameters:

driveId - The ID of the shared drive.

useDomainAdminAccess - Issue the request as a domain administrator; if set to true, then the requester will be granted access if they are an administrator of the domain to which the shared drive belongs.

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

Completes with a Drive.

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

  final url_ = 'drives/' + commons.escapeVariable('$driveId');

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