Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 550 Bytes

canceldeploymentreadysubstate.md

File metadata and controls

17 lines (11 loc) · 550 Bytes

CancelDeploymentReadySubstate

Substate of deployment when readyState is 'READY' Tracks whether or not deployment has seen production traffic: - STAGED: never seen production traffic - ROLLING: in the process of having production traffic gradually transitioned. - PROMOTED: has seen production traffic

Example Usage

import { CancelDeploymentReadySubstate } from "@vercel/sdk/models/canceldeploymentop.js";

let value: CancelDeploymentReadySubstate = "PROMOTED";

Values

"STAGED" | "ROLLING" | "PROMOTED"