about
Creates, updates, deletes, gets or lists an about
resource.
Overview
Name | about |
Type | Resource |
Id | googleworkspace.drivev3.about |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
appInstalled | boolean | Whether the user has installed the requesting app. |
canCreateDrives | boolean | Whether the user can create shared drives. |
canCreateTeamDrives | boolean | Deprecated: Use canCreateDrives instead. |
driveThemes | array | A list of themes that are supported for shared drives. |
exportFormats | object | A map of source MIME type to possible targets for all supported exports. |
folderColorPalette | array | The currently supported folder colors as RGB hex strings. |
importFormats | object | A map of source MIME type to possible targets for all supported imports. |
kind | string | Identifies what kind of resource this is. Value: the fixed string "drive#about" . (default: drive#about) |
maxImportSizes | object | A map of maximum import sizes by MIME type, in bytes. |
maxUploadSize | string (int64) | The maximum upload size in bytes. |
storageQuota | object | The user's storage quota limits and usage. For users that are part of an organization with pooled storage, information about the limit and usage across all services is for the organization, rather than the individual user. All fields are measured in bytes. |
teamDriveThemes | array | Deprecated: Use driveThemes instead. |
user | object | The authenticated user. (id: User) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | Gets information about the user, the user's Drive, and system capabilities. For more information, see Return user info. Required: The fields parameter must be set. To return the exact fields you need, see Return specific fields. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|
SELECT
examples
- get
Gets information about the user, the user's Drive, and system capabilities. For more information, see Return user info. Required: The fields
parameter must be set. To return the exact fields you need, see Return specific fields.
SELECT
appInstalled,
canCreateDrives,
canCreateTeamDrives,
driveThemes,
exportFormats,
folderColorPalette,
importFormats,
kind,
maxImportSizes,
maxUploadSize,
storageQuota,
teamDriveThemes,
user
FROM googleworkspace.drivev3.about
;