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

Strategy

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

Strategy contains deployment strategy information.

interface Strategy {
canary?: Canary;
standard?: Standard;
}

§Properties

§
canary?: Canary
[src]

Canary deployment strategy provides progressive percentage based deployments to a Target.

§
standard?: Standard
[src]

Standard deployment strategy executes a single deploy and allows verifying the deployment.