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

SkaffoldSupportedCondition

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

SkaffoldSupportedCondition contains information about when support for the release's version of Skaffold ends.

interface SkaffoldSupportedCondition {
maintenanceModeTime?: Date;
skaffoldSupportState?:
| "SKAFFOLD_SUPPORT_STATE_UNSPECIFIED"
| "SKAFFOLD_SUPPORT_STATE_SUPPORTED"
| "SKAFFOLD_SUPPORT_STATE_MAINTENANCE_MODE"
| "SKAFFOLD_SUPPORT_STATE_UNSUPPORTED";
status?: boolean;
supportExpirationTime?: Date;
}

§Properties

§
maintenanceModeTime?: Date
[src]

The time at which this release's version of Skaffold will enter maintenance mode.

§
skaffoldSupportState?: "SKAFFOLD_SUPPORT_STATE_UNSPECIFIED" | "SKAFFOLD_SUPPORT_STATE_SUPPORTED" | "SKAFFOLD_SUPPORT_STATE_MAINTENANCE_MODE" | "SKAFFOLD_SUPPORT_STATE_UNSUPPORTED"
[src]

The Skaffold support state for this release's version of Skaffold.

§
status?: boolean
[src]

True if the version of Skaffold used by this release is supported.

§
supportExpirationTime?: Date
[src]

The time at which this release's version of Skaffold will no longer be supported.