Skip to main content

automations

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

Overview

Nameautomations
TypeResource
Idgoogle.clouddeploy.automations

Fields

NameDatatypeDescription
namestringOutput only. Name of the Automation. Format is projects/{project}/locations/{location}/deliveryPipelines/{delivery_pipeline}/automations/{automation}.
descriptionstringOptional. Description of the Automation. Max length is 255 characters.
annotationsobjectOptional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: Annotations are key/value pairs. Valid annotation keys have two segments: an optional prefix and name, separated by a slash (/). The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between. The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots(.), not longer than 253 characters in total, followed by a slash (/). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details.
createTimestringOutput only. Time at which the automation was created.
etagstringOptional. The weak etag of the Automation resource. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
labelsobjectOptional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. All characters must use UTF-8 encoding, and international characters are allowed. Keys must start with a lowercase letter or international character. Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters.
rulesarrayRequired. List of Automation rules associated with the Automation resource. Must have at least one rule and limited to 250 rules per Delivery Pipeline. Note: the order of the rules here is not the same as the order of execution.
selectorobjectAutomationResourceSelector contains the information to select the resources to which an Automation is going to be applied.
serviceAccountstringRequired. Email address of the user-managed IAM service account that creates Cloud Deploy release and rollout resources.
suspendedbooleanOptional. When Suspended, automation is deactivated from execution.
uidstringOutput only. Unique identifier of the Automation.
updateTimestringOutput only. Time at which the automation was updated.

Methods

NameAccessible byRequired ParamsDescription
getSELECTautomationsId, deliveryPipelinesId, locationsId, projectsIdGets details of a single Automation.
listSELECTdeliveryPipelinesId, locationsId, projectsIdLists Automations in a given project and location.
createINSERTdeliveryPipelinesId, locationsId, projectsIdCreates a new Automation in a given project and location.
deleteDELETEautomationsId, deliveryPipelinesId, locationsId, projectsIdDeletes a single Automation resource.
patchUPDATEautomationsId, deliveryPipelinesId, locationsId, projectsIdUpdates the parameters of a single Automation resource.

SELECT examples

Lists Automations in a given project and location.

SELECT
name,
description,
annotations,
createTime,
etag,
labels,
rules,
selector,
serviceAccount,
suspended,
uid,
updateTime
FROM google.clouddeploy.automations
WHERE deliveryPipelinesId = '{{ deliveryPipelinesId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';

INSERT example

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

/*+ create */
INSERT INTO google.clouddeploy.automations (
deliveryPipelinesId,
locationsId,
projectsId,
description,
annotations,
labels,
etag,
suspended,
serviceAccount,
selector,
rules
)
SELECT
'{{ deliveryPipelinesId }}',
'{{ locationsId }}',
'{{ projectsId }}',
'{{ description }}',
'{{ annotations }}',
'{{ labels }}',
'{{ etag }}',
{{ suspended }},
'{{ serviceAccount }}',
'{{ selector }}',
'{{ rules }}'
;

UPDATE example

Updates a automations resource.

/*+ update */
UPDATE google.clouddeploy.automations
SET
description = '{{ description }}',
annotations = '{{ annotations }}',
labels = '{{ labels }}',
etag = '{{ etag }}',
suspended = true|false,
serviceAccount = '{{ serviceAccount }}',
selector = '{{ selector }}',
rules = '{{ rules }}'
WHERE
automationsId = '{{ automationsId }}'
AND deliveryPipelinesId = '{{ deliveryPipelinesId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';

DELETE example

Deletes the specified automations resource.

/*+ delete */
DELETE FROM google.clouddeploy.automations
WHERE automationsId = '{{ automationsId }}'
AND deliveryPipelinesId = '{{ deliveryPipelinesId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';