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

GoogleCloudOsconfigV2_PolicyOrchestrator_IterationState

import type { GoogleCloudOsconfigV2_PolicyOrchestrator_IterationState } from "https://googleapis.deno.dev/v1/osconfig:v2.ts";

Describes the state of a single iteration of the orchestrator.

interface GoogleCloudOsconfigV2_PolicyOrchestrator_IterationState {
readonly error?: Status;
readonly failedActions?: bigint;
readonly finishTime?: Date;
readonly iterationId?: string;
readonly performedActions?: bigint;
readonly progress?: number;
readonly startTime?: Date;
readonly state?:
| "STATE_UNSPECIFIED"
| "PROCESSING"
| "COMPLETED"
| "FAILED"
| "CANCELLED"
| "UNKNOWN";
}

§Properties

§
readonly error?: Status
[src]

Output only. Error thrown in the wave iteration.

§
readonly failedActions?: bigint
[src]

Output only. Number of orchestration actions which failed so far. For more details, query the Cloud Logs.

§
readonly finishTime?: Date
[src]

Output only. Finish time of the wave iteration.

§
readonly iterationId?: string
[src]

Output only. Unique identifier of the iteration.

§
readonly performedActions?: bigint
[src]

Output only. Overall number of actions done by the orchestrator so far.

§
readonly progress?: number
[src]

Output only. An estimated percentage of the progress. Number between 0 and 100.

§
readonly startTime?: Date
[src]

Output only. Start time of the wave iteration.

§
readonly state?: "STATE_UNSPECIFIED" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED" | "UNKNOWN"
[src]

Output only. State of the iteration.