REST Resource: projects.locations.deployments

Resource: Deployment

A Deployment is a group of resources and configs managed and provisioned by Infra Manager.

JSON representation
{
  "name": string,
  "createTime": string,
  "updateTime": string,
  "labels": {
    string: string,
    ...
  },
  "state": enum (State),
  "latestRevision": string,
  "stateDetail": string,
  "errorCode": enum (ErrorCode),
  "deleteResults": {
    object (ApplyResults)
  },
  "deleteBuild": string,
  "deleteLogs": string,
  "tfErrors": [
    {
      object (TerraformError)
    }
  ],
  "errorLogs": string,
  "lockState": enum (LockState),
  "tfVersion": string,
  "quotaValidation": enum (QuotaValidation),

  // Union field blueprint can be only one of the following:
  "terraformBlueprint": {
    object (TerraformBlueprint)
  }
  // End of list of possible types for union field blueprint.
  "artifactsGcsBucket": string,
  "serviceAccount": string,
  "importExistingResources": boolean,
  "workerPool": string,
  "tfVersionConstraint": string
}
Fields
name

string

Resource name of the deployment. Format: projects/{project}/locations/{location}/deployments/{deployment}

createTime

string (Timestamp format)

Output only. Time when the deployment was created.

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".

updateTime

string (Timestamp format)

Output only. Time when the deployment was last modified.

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".

labels

map (key: string, value: string)

User-defined metadata for the deployment.

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

state

enum (State)

Output only. Current state of the deployment.

latestRevision

string

Output only. Revision name that was most recently applied. Format: projects/{project}/locations/{location}/deployments/{deployment}/ revisions/{revision}

stateDetail

string

Output only. Additional information regarding the current state.

errorCode

enum (ErrorCode)

Output only. Error code describing errors that may have occurred.

deleteResults

object (ApplyResults)

Output only. Location of artifacts from a deployments.delete operation.

deleteBuild

string

Output only. Cloud Build instance UUID associated with deleting this deployment.

deleteLogs

string

Output only. Location of Cloud Build logs in Google Cloud Storage, populated when deleting this deployment. Format: gs://{bucket}/{object}.

tfErrors[]

object (TerraformError)

Output only. Errors encountered when deleting this deployment. Errors are truncated to 10 entries, see deleteResults and errorLogs for full details.

errorLogs

string

Output only. Location of Terraform error logs in Google Cloud Storage. Format: gs://{bucket}/{object}.

lockState

enum (LockState)

Output only. Current lock state of the deployment.

tfVersion

string

Output only. The current Terraform version set on the deployment. It is in the format of "Major.Minor.Patch", for example, "1.3.10".

quotaValidation

enum (QuotaValidation)

Optional. Input to control quota checks for resources in terraform configuration files. There are limited resources on which quota validation applies.

Union field blueprint. Blueprint to deploy. blueprint can be only one of the following:
terraformBlueprint

object (TerraformBlueprint)

A blueprint described using Terraform's HashiCorp Configuration Language as a root module.

artifactsGcsBucket

string

Optional. User-defined location of Cloud Build logs and artifacts in Google Cloud Storage. Format: gs://{bucket}/{folder}

A default bucket will be bootstrapped if the field is not set or empty. Default bucket format: gs://<project number>-<region>-blueprint-config Constraints: - The bucket needs to be in the same project as the deployment - The path cannot be within the path of gcsSource - The field cannot be updated, including changing its presence

serviceAccount

string

Optional. User-specified Service Account (SA) credentials to be used when actuating resources. Format: projects/{projectID}/serviceAccounts/{serviceAccount}

importExistingResources

boolean

By default, Infra Manager will return a failure when Terraform encounters a 409 code (resource conflict error) during actuation. If this flag is set to true, Infra Manager will instead attempt to automatically import the resource into the Terraform state (for supported resource types) and continue actuation.

Not all resource types are supported, refer to documentation.

workerPool

string

Optional. The user-specified Cloud Build worker pool resource in which the Cloud Build job will execute. Format: projects/{project}/locations/{location}/workerPools/{workerPoolId}. If this field is unspecified, the default Cloud Build worker pool will be used.

tfVersionConstraint

string

Optional. The user-specified Terraform version constraint. Example: "=1.3.10".

State

Possible states of a deployment.

Enums
STATE_UNSPECIFIED The default value. This value is used if the state is omitted.
CREATING The deployment is being created.
ACTIVE The deployment is healthy.
UPDATING The deployment is being updated.
DELETING The deployment is being deleted.
FAILED The deployment has encountered an unexpected error.
SUSPENDED The deployment is no longer being actively reconciled. This may be the result of recovering the project after deletion.
DELETED The deployment has been deleted.

ErrorCode

Possible errors that can occur with deployments.

Enums
ERROR_CODE_UNSPECIFIED No error code was specified.
REVISION_FAILED The revision failed. See Revision for more details.
CLOUD_BUILD_PERMISSION_DENIED Cloud Build failed due to a permission issue.
DELETE_BUILD_API_FAILED Cloud Build job associated with a deployment deletion could not be started.
DELETE_BUILD_RUN_FAILED Cloud Build job associated with a deployment deletion was started but failed.
BUCKET_CREATION_PERMISSION_DENIED Cloud Storage bucket creation failed due to a permission issue.
BUCKET_CREATION_FAILED Cloud Storage bucket creation failed due to an issue unrelated to permissions.

LockState

Possible lock states of a deployment.

Enums
LOCK_STATE_UNSPECIFIED The default value. This value is used if the lock state is omitted.
LOCKED The deployment is locked.
UNLOCKED The deployment is unlocked.
LOCKING The deployment is being locked.
UNLOCKING The deployment is being unlocked.
LOCK_FAILED The deployment has failed to lock.
UNLOCK_FAILED The deployment has failed to unlock.

Methods

create

Creates a Deployment.

delete

Deletes a Deployment.

deleteState

Deletes Terraform state file in a given deployment.

exportLock

Exports the lock info on a locked deployment.

exportState

Exports Terraform state file from a given deployment.

get

Gets details about a Deployment.

getIamPolicy

Gets the access control policy for a resource.

importState

Imports Terraform state file in a given deployment.

list

Lists Deployments in a given project and location.

lock

Locks a deployment.

patch

Updates a Deployment.

setIamPolicy

Sets the access control policy on the specified resource.

testIamPermissions

Returns permissions that a caller has on the specified resource.

unlock

Unlocks a locked deployment.