Skip to main content

types

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

Overview

Nametypes
TypeResource
Idgoogle.deploymentmanager.types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring (uint64)
namestringName of the type.
insertTimestringOutput only. Creation timestamp in RFC3339 text format.
operationobjectOutput only. The Operation that most recently ran, or is currently running, on this type. (id: Operation)
selfLinkstringOutput only. Server defined URL for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectprojectpageToken, maxResults, orderBy, filterLists 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.

NameDatatypeDescription
projectstring
filterstring
maxResultsinteger (uint32)
orderBystring
pageTokenstring

SELECT examples

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 }}'
;