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

ReleaseReadyCondition

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

ReleaseReadyCondition contains information around the status of the Release. If a release is not ready, you cannot create a rollout with the release.

interface ReleaseReadyCondition {
status?: boolean;
}

§Properties

§
status?: boolean
[src]

True if the Release is in a valid state. Otherwise at least one condition in ReleaseCondition is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Release.