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 ( |
Fields | |
---|---|
name |
Resource name of the deployment. Format: |
createTime |
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: |
updateTime |
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: |
labels |
User-defined metadata for the deployment. An object containing a list of |
state |
Output only. Current state of the deployment. |
latestRevision |
Output only. Revision name that was most recently applied. Format: |
stateDetail |
Output only. Additional information regarding the current state. |
errorCode |
Output only. Error code describing errors that may have occurred. |
deleteResults |
Output only. Location of artifacts from a deployments.delete operation. |
deleteBuild |
Output only. Cloud Build instance UUID associated with deleting this deployment. |
deleteLogs |
Output only. Location of Cloud Build logs in Google Cloud Storage, populated when deleting this deployment. Format: |
tfErrors[] |
Output only. Errors encountered when deleting this deployment. Errors are truncated to 10 entries, see |
errorLogs |
Output only. Location of Terraform error logs in Google Cloud Storage. Format: |
lockState |
Output only. Current lock state of the deployment. |
tfVersion |
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 |
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 |
A blueprint described using Terraform's HashiCorp Configuration Language as a root module. |
artifactsGcsBucket |
Optional. User-defined location of Cloud Build logs and artifacts in Google Cloud Storage. Format: A default bucket will be bootstrapped if the field is not set or empty. Default bucket format: |
serviceAccount |
Optional. User-specified Service Account (SA) credentials to be used when actuating resources. Format: |
importExistingResources |
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 |
Optional. The user-specified Cloud Build worker pool resource in which the Cloud Build job will execute. Format: |
tfVersionConstraint |
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 |
|
---|---|
|
Creates a Deployment . |
|
Deletes a Deployment . |
|
Deletes Terraform state file in a given deployment. |
|
Exports the lock info on a locked deployment. |
|
Exports Terraform state file from a given deployment. |
|
Gets details about a Deployment . |
|
Gets the access control policy for a resource. |
|
Imports Terraform state file in a given deployment. |
|
Lists Deployment s in a given project and location. |
|
Locks a deployment. |
|
Updates a Deployment . |
|
Sets the access control policy on the specified resource. |
|
Returns permissions that a caller has on the specified resource. |
|
Unlocks a locked deployment. |