EndPoint List Projects
Name
list_projects
Description
Lists Projects that the caller has permission on and satisfy the specified filter. [API reference]
Parameters
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
projectId |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
name |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
projectNumber |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
lifecycleState |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
createTime |
DT_DBTIMESTAMP
|
datetime
|
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 BigQuery Connector in API Source component to read data or in API Destination component to read/write data:
List Projects using API Source
Google BigQuery
List Projects

List Projects using API Destination
Google BigQuery
List Projects

ODBC application
Use these SQL queries in your ODBC application data source:
List Projects
Lists Projects for which user has access
SELECT * FROM list_projects
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
List Projects
Lists Projects for which user has access
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM list_projects';
EXEC (@MyQuery) AT [LINKED_SERVER_TO_GOOGLE_BIGQUERY_IN_DATA_GATEWAY];