get method

Future<Permission> get(
  1. String fileId,
  2. String permissionId, {
  3. bool? supportsAllDrives,
  4. bool? supportsTeamDrives,
  5. bool? useDomainAdminAccess,
  6. String? $fields,
})

Gets a permission by ID.

Request parameters:

fileId - The ID of the file.

permissionId - The ID of the permission.

supportsAllDrives - Whether the requesting application supports both My Drives and shared drives.

supportsTeamDrives - Deprecated: Use supportsAllDrives instead.

useDomainAdminAccess - Issue the request as a domain administrator; if set to true, then the requester will be granted access if the file ID parameter refers to a shared drive and the requester is 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 Permission.

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

  final url_ = 'files/' +
      commons.escapeVariable('$fileId') +
      '/permissions/' +
      commons.escapeVariable('$permissionId');

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