delete method

Future<void> delete(
  1. String driveId, {
  2. bool? allowItemDeletion,
  3. bool? useDomainAdminAccess,
  4. String? $fields,
})

Permanently deletes a shared drive for which the user is an organizer.

The shared drive cannot contain any untrashed items.

Request parameters:

driveId - The ID of the shared drive.

allowItemDeletion - Whether any items inside the shared drive should also be deleted. This option is only supported when useDomainAdminAccess is also set to true.

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

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

  await _requester.request(
    url_,
    'DELETE',
    queryParams: queryParams_,
    downloadOptions: null,
  );
}