Skip to main content

manifests

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

Overview

Namemanifests
TypeResource
Idgoogle.deploymentmanager.manifests

Fields

NameDatatypeDescription
idstring
namestringOutput only. The name of the manifest.
configobject
expandedConfigstringOutput only. The fully-expanded configuration file, including any templates and references.
importsarrayOutput only. The imported files for this manifest.
insertTimestringOutput only. Creation timestamp in RFC3339 text format.
layoutstringOutput only. The YAML layout for this manifest.
manifestSizeBytesstringOutput only. The computed size of the fully expanded manifest.
manifestSizeLimitBytesstringOutput only. The size limit for expanded manifests in the project.
selfLinkstringOutput only. Self link for the manifest.

Methods

NameAccessible byRequired ParamsDescription
getSELECTdeployment, manifest, projectGets information about a specific manifest.
listSELECTdeployment, projectLists all manifests for a given deployment.

SELECT examples

Lists all manifests for a given deployment.

SELECT
id,
name,
config,
expandedConfig,
imports,
insertTime,
layout,
manifestSizeBytes,
manifestSizeLimitBytes,
selfLink
FROM google.deploymentmanager.manifests
WHERE deployment = '{{ deployment }}'
AND project = '{{ project }}';