Google Drive

GOOGLEDRIVE_DELETE_DRIVE

Tool to permanently delete a shared drive. use when you need to remove a shared drive and its contents (if specified).

Remote googledrive

Other tools also called GOOGLEDRIVE_DELETE_DRIVE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "driveId": {
      "type": "string",
      "title": "Drive Id",
      "examples": [
        "0AEMyflX29xHjUk9PVA"
      ],
      "description": "The ID of the shared drive."
    },
    "allowItemDeletion": {
      "type": "boolean",
      "title": "Allow Item Deletion",
      "default": null,
      "examples": [
        true
      ],
      "nullable": true,
      "description": "Whether any items inside the shared drive should also be deleted. This option is only supported when `useDomainAdminAccess` is also set to `true`."
    },
    "useDomainAdminAccess": {
      "type": "boolean",
      "title": "Use Domain Admin Access",
      "default": null,
      "examples": [
        true
      ],
      "nullable": true,
      "description": "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."
    }
  }
}