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

Stage

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

Stage specifies a location to which to deploy.

interface Stage {
deployParameters?: DeployParameters[];
profiles?: string[];
strategy?: Strategy;
targetId?: string;
}

§Properties

§
deployParameters?: DeployParameters[]
[src]

Optional. The deploy parameters to use for the target in this stage.

§
profiles?: string[]
[src]

Skaffold profiles to use when rendering the manifest for this stage's Target.

§
strategy?: Strategy
[src]

Optional. The strategy to use for a Rollout to this stage.

§
targetId?: string
[src]

The target_id to which this stage points. This field refers exclusively to the last segment of a target name. For example, this field would just be my-target (rather than projects/project/locations/location/targets/my-target). The location of the Target is inferred to be the same as the location of the DeliveryPipeline that contains this Stage.