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

ComposerWorkloadStatus

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

Workload status.

interface ComposerWorkloadStatus {
readonly detailedStatusMessage?: string;
readonly state?:
| "COMPOSER_WORKLOAD_STATE_UNSPECIFIED"
| "PENDING"
| "OK"
| "WARNING"
| "ERROR"
| "SUCCEEDED"
| "FAILED";
readonly statusMessage?: string;
}

§Properties

§
readonly detailedStatusMessage?: string
[src]

Output only. Detailed message of the status.

§
readonly state?: "COMPOSER_WORKLOAD_STATE_UNSPECIFIED" | "PENDING" | "OK" | "WARNING" | "ERROR" | "SUCCEEDED" | "FAILED"
[src]

Output only. Workload state.

§
readonly statusMessage?: string
[src]

Output only. Text to provide more descriptive status.