Skip to main content

deployments

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

Overview

Namedeployments
TypeResource
Idgoogle.deploymentmanager.deployments

Fields

NameDatatypeDescription
idstring
namestringName of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
descriptionstringAn optional user-provided description of the deployment.
fingerprintstringProvides a fingerprint to use in requests to modify a deployment, such as update(), stop(), and cancelPreview() requests. A fingerprint is a randomly generated value that must be provided with update(), stop(), and cancelPreview() requests to perform optimistic locking. This ensures optimistic concurrency so that only one request happens at a time. The fingerprint is initially generated by Deployment Manager and changes after every request to modify data. To get the latest fingerprint value, perform a get() request to a deployment.
insertTimestringOutput only. Creation timestamp in RFC3339 text format.
labelsarrayMap of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression: [a-z]([-a-z0-9]*[a-z0-9])? Label values must be between 0 and 63 characters long and must conform to the regular expression ([a-z]([-a-z0-9]*[a-z0-9])?)?.
manifeststringOutput only. URL of the manifest representing the last manifest that was successfully deployed. If no manifest has been successfully deployed, this field will be absent.
operationobjectRepresents an Operation resource. Google Compute Engine has three Operation resources: Global Regional * Zonal You can use an operation resource to manage asynchronous API requests. For more information, read Handling API responses. Operations can be global, regional or zonal. - For global operations, use the globalOperations resource. - For regional operations, use the regionOperations resource. - For zonal operations, use the zoneOperations resource. For more information, read Global, Regional, and Zonal Resources. Note that completed Operation resources have a limited retention period.
selfLinkstringOutput only. Server defined URL for the resource.
targetobject
updateobject
updateTimestringOutput only. Update timestamp in RFC3339 text format.

Methods

NameAccessible byRequired ParamsDescription
getSELECTdeployment, projectGets information about a specific deployment.
listSELECTprojectLists all deployments for a given project.
insertINSERTprojectCreates a deployment and all of the resources described by the deployment manifest.
deleteDELETEdeployment, projectDeletes a deployment and all of the resources in the deployment.
patchUPDATEdeployment, projectPatches a deployment and all of the resources described by the deployment manifest.
updateREPLACEdeployment, projectUpdates a deployment and all of the resources described by the deployment manifest.
cancel_previewEXECdeployment, projectCancels and removes the preview currently associated with the deployment.
stopEXECdeployment, projectStops an ongoing operation. This does not roll back any work that has already been completed, but prevents any new work from being started.

SELECT examples

Lists all deployments for a given project.

SELECT
id,
name,
description,
fingerprint,
insertTime,
labels,
manifest,
operation,
selfLink,
target,
update,
updateTime
FROM google.deploymentmanager.deployments
WHERE project = '{{ project }}';

INSERT example

Use the following StackQL query and manifest file to create a new deployments resource.

/*+ create */
INSERT INTO google.deploymentmanager.deployments (
project,
name,
description,
operation,
fingerprint,
manifest,
update,
insertTime,
target,
labels
)
SELECT
'{{ project }}',
'{{ name }}',
'{{ description }}',
'{{ operation }}',
'{{ fingerprint }}',
'{{ manifest }}',
'{{ update }}',
'{{ insertTime }}',
'{{ target }}',
'{{ labels }}'
;

UPDATE example

Updates a deployments resource.

/*+ update */
UPDATE google.deploymentmanager.deployments
SET
name = '{{ name }}',
description = '{{ description }}',
operation = '{{ operation }}',
fingerprint = '{{ fingerprint }}',
manifest = '{{ manifest }}',
update = '{{ update }}',
insertTime = '{{ insertTime }}',
target = '{{ target }}',
labels = '{{ labels }}'
WHERE
deployment = '{{ deployment }}'
AND project = '{{ project }}';

REPLACE example

Replaces all fields in the specified deployments resource.

/*+ update */
REPLACE google.deploymentmanager.deployments
SET
name = '{{ name }}',
description = '{{ description }}',
operation = '{{ operation }}',
fingerprint = '{{ fingerprint }}',
manifest = '{{ manifest }}',
update = '{{ update }}',
insertTime = '{{ insertTime }}',
target = '{{ target }}',
labels = '{{ labels }}'
WHERE
deployment = '{{ deployment }}'
AND project = '{{ project }}';

DELETE example

Deletes the specified deployments resource.

/*+ delete */
DELETE FROM google.deploymentmanager.deployments
WHERE deployment = '{{ deployment }}'
AND project = '{{ project }}';