Skip to main content

projects

Creates, updates, deletes, gets or lists a projects resource.

Overview

Nameprojects
TypeResource
Idgoogle.bigquery.projects

Fields

NameDatatypeDescription
idstringAn opaque ID of this project.
friendlyNamestringA descriptive name for this project. A wrapper is used here because friendlyName can be set to the empty string.
kindstringThe resource type.
numericIdstringThe numeric ID of this project.
projectReferenceobjectA unique reference to a project.

Methods

NameAccessible byRequired ParamsDescription
listSELECTRPC to list projects to which the user has been granted any project role. Users of this method are encouraged to consider the Resource Manager API, which provides the underlying data for this method and has more capabilities.

SELECT examples

RPC to list projects to which the user has been granted any project role. Users of this method are encouraged to consider the Resource Manager API, which provides the underlying data for this method and has more capabilities.

SELECT
id,
friendlyName,
kind,
numericId,
projectReference
FROM google.bigquery.projects
;