ActuationOutput
import type { ActuationOutput } from "https://googleapis.deno.dev/v1/workloadmanager:v1.ts";Message for output of Actuation
interface ActuationOutput {
actuateLogs?: string;
readonly ansibleError?: string;
readonly ansibleFailedTask?: string[];
blueprintId?: string;
cloudbuildId?: string;
readonly errorCode?:
| "ERROR_CODE_UNSPECIFIED"
| "TERRAFORM_FAILED"
| "PERMISSION_DENIED_IN_TERRAFORM"
| "QUOTA_EXCEED_IN_TERRAFORM"
| "ANSIBLE_FAILED"
| "CONSTRAINT_VIOLATION_IN_TERRAFORM"
| "RESOURCE_ALREADY_EXISTS_IN_TERRAFORM"
| "RESOURCE_UNAVAILABLE_IN_TERRAFORM"
| "PERMISSION_DENIED_IN_ANSIBLE"
| "INVALID_SECRET_IN_ANSIBLE"
| "TERRAFORM_DELETION_FAILED"
| "RESOURCE_IN_USE_IN_TERRAFORM_DELETION"
| "ANSIBLE_START_FAILED";
errorLogs?: string;
readonly hasUserFacingErrorMsg?: boolean;
readonly terraformError?: string;
terraformTemplate?: string;
}§Properties
§
cloudbuildId?: string
[src]Cloud Build instance UUID associated with this revision, without any suffix or prefix
§
readonly errorCode?: "ERROR_CODE_UNSPECIFIED" | "TERRAFORM_FAILED" | "PERMISSION_DENIED_IN_TERRAFORM" | "QUOTA_EXCEED_IN_TERRAFORM" | "ANSIBLE_FAILED" | "CONSTRAINT_VIOLATION_IN_TERRAFORM" | "RESOURCE_ALREADY_EXISTS_IN_TERRAFORM" | "RESOURCE_UNAVAILABLE_IN_TERRAFORM" | "PERMISSION_DENIED_IN_ANSIBLE" | "INVALID_SECRET_IN_ANSIBLE" | "TERRAFORM_DELETION_FAILED" | "RESOURCE_IN_USE_IN_TERRAFORM_DELETION" | "ANSIBLE_START_FAILED"
[src]Output only. Code describing any errors that may have occurred. If not specified, there is no error in actuation.