Variable: GetDeploymentGatingStatusByKeySchema
ts
const GetDeploymentGatingStatusByKeySchema: ZodObject<{
deploymentSequenceNumber: ZodOptional<ZodNumber>;
details: ZodOptional<ZodArray<ZodObject<{
issueKey: ZodString;
issueLink: ZodURL;
type: ZodCustom<string & object | "issue", string & object | "issue">;
}, $loose>>>;
environmentId: ZodOptional<ZodString>;
gatingStatus: ZodOptional<ZodCustom<"invalid" | string & object | "allowed" | "prevented" | "awaiting", "invalid" | string & object | "allowed" | "prevented" | "awaiting">>;
pipelineId: ZodOptional<ZodString>;
updatedTimestamp: ZodOptional<ZodCoercedDate<unknown>>;
}, $loose>;Defined in: src/agile/models/getDeploymentGatingStatusByKey.ts:5
The current gating status for the given Deployment.*