interface ReleaseGatesPhase {
    deploymentJobs?: DeploymentJob[];
    errorLog?: string;
    id?: number;
    ignoredGates?: IgnoredGate[];
    manualInterventions?: ManualIntervention[];
    name?: string;
    phaseId?: string;
    phaseType?: DeployPhaseTypes;
    rank?: number;
    runPlanId?: string;
    stabilizationCompletedOn?: Date;
    startedOn?: Date;
    status?: DeployPhaseStatus;
    succeedingSince?: Date;
}

Hierarchy (View Summary)

Properties

deploymentJobs?: DeploymentJob[]

Deployment jobs of the phase.

errorLog?: string

Phase execution error logs.

id?: number

ID of the phase.

ignoredGates?: IgnoredGate[]

List of ignored gates.

manualInterventions?: ManualIntervention[]

List of manual intervention tasks execution information in phase.

name?: string

Name of the phase.

phaseId?: string

ID of the phase.

phaseType?: DeployPhaseTypes

Type of the phase.

rank?: number

Rank of the phase.

runPlanId?: string

Run Plan ID of the phase.

stabilizationCompletedOn?: Date

Date and time at which stabilization of gates completed.

startedOn?: Date

Phase start time.

Status of the phase.

succeedingSince?: Date

Date and time at which all gates executed successfully.