interface ReleaseGates {
    deploymentJobs?: DeploymentJob[];
    id?: number;
    ignoredGates?: IgnoredGate[];
    lastModifiedOn?: Date;
    runPlanId?: string;
    stabilizationCompletedOn?: Date;
    startedOn?: Date;
    status?: GateStatus;
    succeedingSince?: Date;
}

Properties

deploymentJobs?: DeploymentJob[]

Contains the gates job details of each evaluation.

id?: number

ID of release gates.

ignoredGates?: IgnoredGate[]

List of ignored gates.

lastModifiedOn?: Date

Gates last modified time.

runPlanId?: string

Run plan ID of the gates.

stabilizationCompletedOn?: Date

Gates stabilization completed date and time.

startedOn?: Date

Gates evaluation started time.

status?: GateStatus

Status of release gates.

succeedingSince?: Date

Date and time at which all gates executed successfully.