Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DeploymentOperationMetadata

import type { DeploymentOperationMetadata } from "https://googleapis.deno.dev/v1/config:v1.ts";

Ephemeral metadata content describing the state of a deployment operation.

interface DeploymentOperationMetadata {
applyResults?: ApplyResults;
readonly build?: string;
readonly logs?: string;
step?:
| "DEPLOYMENT_STEP_UNSPECIFIED"
| "PREPARING_STORAGE_BUCKET"
| "DOWNLOADING_BLUEPRINT"
| "RUNNING_TF_INIT"
| "RUNNING_TF_PLAN"
| "RUNNING_TF_APPLY"
| "RUNNING_TF_DESTROY"
| "RUNNING_TF_VALIDATE"
| "UNLOCKING_DEPLOYMENT"
| "SUCCEEDED"
| "FAILED"
| "VALIDATING_REPOSITORY"
| "RUNNING_QUOTA_VALIDATION";
}

§Properties

§
applyResults?: ApplyResults
[src]

Outputs and artifacts from applying a deployment.

§
readonly build?: string
[src]

Output only. Cloud Build instance UUID associated with this operation.

§
readonly logs?: string
[src]

Output only. Location of Deployment operations logs in gs://{bucket}/{object} format.

§
step?: "DEPLOYMENT_STEP_UNSPECIFIED" | "PREPARING_STORAGE_BUCKET" | "DOWNLOADING_BLUEPRINT" | "RUNNING_TF_INIT" | "RUNNING_TF_PLAN" | "RUNNING_TF_APPLY" | "RUNNING_TF_DESTROY" | "RUNNING_TF_VALIDATE" | "UNLOCKING_DEPLOYMENT" | "SUCCEEDED" | "FAILED" | "VALIDATING_REPOSITORY" | "RUNNING_QUOTA_VALIDATION"
[src]

The current step the deployment operation is running.