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

RolloutPolicy

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

The policy for how automatic builds and rollouts are triggered and rolled out.

interface RolloutPolicy {
codebaseBranch?: string;
disabled?: boolean;
readonly disabledTime?: Date;
}

§Properties

§
codebaseBranch?: string
[src]

If set, specifies a branch that triggers a new build to be started with this policy. Otherwise, no automatic rollouts will happen.

§
disabled?: boolean
[src]

Optional. A flag that, if true, prevents automatic rollouts from being created via this RolloutPolicy.

§
readonly disabledTime?: Date
[src]

Output only. If disabled is set, the time at which the automatic rollouts were disabled.