List Drives
Name
list_drives
Description
Related Tables
Parameters
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
Id |
DT_WSTR
|
nvarchar(500)
|
500 | False |
|
Name |
DT_WSTR
|
nvarchar(300)
|
300 | False |
|
Description |
DT_WSTR
|
nvarchar(500)
|
500 | False |
|
DriveType |
DT_WSTR
|
nvarchar(60)
|
60 | False |
|
CreatedAt |
DT_DBTIMESTAMP
|
datetime
|
False |
||
CreatedByUser |
DT_WSTR
|
nvarchar(56)
|
56 | False |
|
LastModifiedAt |
DT_DBTIMESTAMP
|
datetime
|
False |
||
LastModifiedByUser |
DT_WSTR
|
nvarchar(48)
|
48 | False |
|
LastModifiedByUserEmail |
DT_WSTR
|
nvarchar(100)
|
100 | False |
|
LastModifiedByUserId |
DT_WSTR
|
nvarchar(144)
|
144 | False |
|
QuotaDeleted |
DT_I8
|
bigint
|
False |
||
QuotaRemaining |
DT_I8
|
bigint
|
False |
||
QuotaTotal |
DT_I8
|
bigint
|
False |
||
QuotaUsed |
DT_I8
|
bigint
|
False |
||
QuotaState |
DT_WSTR
|
nvarchar(50)
|
50 | False |
|
WebUrl |
DT_WSTR
|
nvarchar(300)
|
300 | False |
|
OwnerDisplayName |
DT_WSTR
|
nvarchar(200)
|
200 | False |
|
OwnerEmail |
DT_WSTR
|
nvarchar(200)
|
200 | False |
|
OwnerId |
DT_WSTR
|
nvarchar(200)
|
200 | False |
|
OdataContext |
DT_WSTR
|
nvarchar(450)
|
450 | 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 OneDrive Connector in API Source component to read data or in API Destination component to read/write data:
Read from Drives table using API Destination
This Endpoint belongs to Drives 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:
List drives
SELECT * FROM list_drives
List drives
Lists all drives
SELECT * FROM Drives
list_drives
endpoint belongs to
Drives
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:
List drives
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM list_drives';
EXEC (@MyQuery) AT [LS_TO_ONEDRIVE_IN_GATEWAY];
List drives
Lists all drives
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Drives';
EXEC (@MyQuery) AT [LS_TO_ONEDRIVE_IN_GATEWAY];
list_drives
endpoint belongs to
Drives
table(s), and can therefore be used via those table(s).