Skip to main content

projects

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

Overview

Nameprojects
TypeResource
Idgoogle.dns.projects

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
idstringUser assigned unique identifier for the resource (output only).
kindstring (default: dns#project)
numberstring (uint64)Unique numeric identifier for the resource; defined by the server (output only).
quotaobjectQuotas assigned to this project (output only). (id: Quota)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectprojectclientOperationIdFetches the representation of an existing Project.

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.

NameDatatypeDescription
projectstring
clientOperationIdstring

SELECT examples

Fetches the representation of an existing Project.

SELECT
id,
kind,
number,
quota
FROM google.dns.projects
WHERE project = '{{ project }}' -- required
AND clientOperationId = '{{ clientOperationId }}';