projects
Creates, updates, deletes, gets or lists a projects
resource.
Overview
Name | projects |
Type | Resource |
Id | google.dns.projects |
Fields
The following fields are returned by SELECT
queries:
- get
Successful response
Name | Datatype | Description |
---|---|---|
id | string | User assigned unique identifier for the resource (output only). |
kind | string | (default: dns#project) |
number | string (uint64) | Unique numeric identifier for the resource; defined by the server (output only). |
quota | object | Quotas assigned to this project (output only). (id: Quota) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | project | clientOperationId | Fetches 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.
Name | Datatype | Description |
---|---|---|
project | string | |
clientOperationId | string |
SELECT
examples
- get
Fetches the representation of an existing Project.
SELECT
id,
kind,
number,
quota
FROM google.dns.projects
WHERE project = '{{ project }}' -- required
AND clientOperationId = '{{ clientOperationId }}';