types
Creates, updates, deletes, gets or lists a types resource.
Overview
| Name | types |
| Type | Resource |
| Id | google.deploymentmanager.types |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string (uint64) | |
name | string | Name of the type. |
insertTime | string | Output only. Creation timestamp in RFC3339 text format. |
operation | object | Output only. The Operation that most recently ran, or is currently running, on this type. (id: Operation) |
selfLink | string | Output only. Server defined URL for the resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | project | pageToken, maxResults, orderBy, filter | Lists all resource types for Deployment Manager. |
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 | |
filter | string | |
maxResults | integer (uint32) | |
orderBy | string | |
pageToken | string |
SELECT examples
- list
Lists all resource types for Deployment Manager.
SELECT
id,
name,
insertTime,
operation,
selfLink
FROM google.deploymentmanager.types
WHERE project = '{{ project }}' -- required
AND pageToken = '{{ pageToken }}'
AND maxResults = '{{ maxResults }}'
AND orderBy = '{{ orderBy }}'
AND filter = '{{ filter }}'
;