Variable GetDeploymentGatingStatusByKeySchemaConst
GetDeploymentGatingStatusByKeySchema: ZodObject<
{
deploymentSequenceNumber: ZodOptional<ZodNumber>;
details: ZodOptional<
ZodArray<
ZodObject<
{
issueKey: ZodString;
issueLink: ZodURL;
type: ZodCustom<string & {} | "issue", string & {} | "issue">;
},
$loose,
>,
>,
>;
environmentId: ZodOptional<ZodString>;
gatingStatus: ZodOptional<
ZodCustom<
"invalid"
| string & {}
| "allowed"
| "prevented"
| "awaiting",
"invalid" | string & {} | "allowed" | "prevented" | "awaiting",
>,
>;
pipelineId: ZodOptional<ZodString>;
updatedTimestamp: ZodOptional<ZodCoercedDate<unknown>>;
},
$loose,
> = ...
The current gating status for the given Deployment.*