Skip to content

Files

Latest commit

 

History

History
17 lines (11 loc) · 535 Bytes

getdeploymentsreadysubstate.md

File metadata and controls

17 lines (11 loc) · 535 Bytes

GetDeploymentsReadySubstate

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 gradually transitioning production traffic - PROMOTED: has seen production traffic

Example Usage

import { GetDeploymentsReadySubstate } from "@vercel/sdk/models/getdeploymentsop.js";

let value: GetDeploymentsReadySubstate = "PROMOTED";

Values

"STAGED" | "ROLLING" | "PROMOTED"