REST Resource: projects.locations.deployments.actuations

Resource: Actuation

The Actuation object represents the bootstrap state and output results of deployed infrastructure and software.

JSON representation
{
  "name": string,
  "actuationOutput": {
    object (ActuationOutput)
  },
  "state": enum (State),
  "deploymentOutput": [
    {
      object (DeploymentOutput)
    }
  ],
  "startTime": string,
  "endTime": string,
  "tasks": [
    {
      object (AnsibleTask)
    }
  ]
}
Fields
name

string

The name of actuation resource. The format is projects/{project}/locations/{location}/deployments/{deployment}/actuations/{actuation}

actuationOutput

object (ActuationOutput)

Output only. [Output only] Actuation output

state

enum (State)

Output only. [Output only] Actuation state

deploymentOutput[]

object (DeploymentOutput)

Output only. [Output only] Deployment output

startTime

string (Timestamp format)

Output only. [Output only] Start time stamp

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

endTime

string (Timestamp format)

Output only. [Output only] End time stamp

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

tasks[]

object (AnsibleTask)

ActuationOutput

Message for output of Actuation

JSON representation
{
  "blueprintId": string,
  "terraformTemplate": string,
  "errorLogs": string,
  "actuateLogs": string,
  "errorCode": enum (ErrorCode),
  "ansibleError": string,
  "cloudbuildId": string
}
Fields
blueprintId

string

reference to Blueprint Controller deployment and revision resource

terraformTemplate

string

reference to terraform template used

errorLogs

string

A link to actuation cloud build log.

actuateLogs

string

A link to gcs file that store build logs

errorCode

enum (ErrorCode)

Code describing any errors that may have occurred. If not specified, there is no error in actuation.

ansibleError

string

error message return from ansible.

cloudbuildId

string

Cloud Build instance UUID associated with this revision, without any suffix or prefix

ErrorCode

Possible errors that can occur with deployments.

Enums
ERROR_CODE_UNSPECIFIED No error code was specified.
TERRAFORM_FAILED general terraform failure
PERMISSION_DENIED_IN_TERRAFORM permission error in terraform
QUOTA_EXCEED_IN_TERRAFORM quota related error in terraform
ANSIBLE_FAILED general ansible failure

State

The state of actuation LINT.IfChange

Enums
STATE_UNSPECIFIED state unspecified
INFRA_CREATING creating infrastructure in backend (terraform applying)
SUCCEEDED success
FAILED failed either in infra creating, post infra configuring or infra destroying
POST_INFRA_CONFIGURING configure workload after infrastructure is ready (ansible running)
INFRA_DESTROYING destroying infrastructure in backend (terraform destroying)
TIMEOUT ansible is timeout due to losing heartbeat in post infra configuring

DeploymentOutput

Message for output of deployment resource

JSON representation
{
  "name": string,
  "type": string
}
Fields
name

string

name of the resource

type

string

type of the resource

Methods

create

Creates a new actuation for an existing Deployment.

delete

Deletes a single Actuation

get

Gets details of a single Actuation.

list

Lists Actuations in a given project, location and deployment.