manifests
Creates, updates, deletes, gets or lists a manifests
resource.
Overview
Name | manifests |
Type | Resource |
Id | google.deploymentmanager.manifests |
Fields
Name | Datatype | Description |
---|---|---|
id | string | |
name | string | Output only. The name of the manifest. |
config | object | |
expandedConfig | string | Output only. The fully-expanded configuration file, including any templates and references. |
imports | array | Output only. The imported files for this manifest. |
insertTime | string | Output only. Creation timestamp in RFC3339 text format. |
layout | string | Output only. The YAML layout for this manifest. |
manifestSizeBytes | string | Output only. The computed size of the fully expanded manifest. |
manifestSizeLimitBytes | string | Output only. The size limit for expanded manifests in the project. |
selfLink | string | Output only. Self link for the manifest. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | deployment, manifest, project | Gets information about a specific manifest. |
list | SELECT | deployment, project | Lists 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 }}';