Get my drive info
Name
get_about
Description
Gets my drive information [API reference]
Related Tables
Parameters
Parameter | Label | Required | Options | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no parameters |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
Kind |
DT_WSTR
|
nvarchar(210)
|
210 | False |
|
UserKind |
DT_WSTR
|
nvarchar(200)
|
200 | False |
|
UserDisplayName |
DT_WSTR
|
nvarchar(180)
|
180 | False |
|
UserMe |
DT_WSTR
|
nvarchar(40)
|
40 | False |
|
UserPermissionId |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
UserEmailAddress |
DT_WSTR
|
nvarchar(290)
|
290 | False |
|
StorageQuotaLimit |
DT_I8
|
bigint
|
False |
||
StorageQuotaUsage |
DT_I8
|
bigint
|
False |
||
StorageQuotaUsageInDrive |
DT_I8
|
bigint
|
False |
||
StorageQuotaUsageInDriveTrash |
DT_I4
|
int
|
False |
||
MaxUploadSize |
DT_I8
|
bigint
|
False |
||
AppInstalled |
DT_WSTR
|
nvarchar(40)
|
40 | False |
|
FolderColorPalette |
DT_WSTR
|
nvarchar(3390)
|
3390 | False |
|
TeamDriveThemes |
DT_NTEXT
|
nvarchar(MAX)
|
False |
||
DriveThemes |
DT_NTEXT
|
nvarchar(MAX)
|
False |
||
CanCreateTeamDrives |
DT_WSTR
|
nvarchar(150)
|
150 | False |
|
CanCreateDrives |
DT_WSTR
|
nvarchar(150)
|
150 | False |
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Examples
SSIS
Use Google Drive Connector in API Source component to read data or in API Destination component to read/write data:
Read from Drive table using API Destination
This Endpoint belongs to Drive table, therefore you cannot work with it directly. Use this table and table-operation pair instead:

ODBC application
Use these SQL queries in your ODBC application data source:
Get my drive info
SELECT * FROM get_about
Get my drive information
Gets my drive information
SELECT * FROM Drive
get_about
endpoint belongs to
Drive
table(s), and can therefore be used via those table(s).
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Get my drive info
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_about';
EXEC (@MyQuery) AT [LS_TO_GOOGLE_DRIVE_IN_GATEWAY];
Get my drive information
Gets my drive information
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Drive';
EXEC (@MyQuery) AT [LS_TO_GOOGLE_DRIVE_IN_GATEWAY];
get_about
endpoint belongs to
Drive
table(s), and can therefore be used via those table(s).