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

Hierarchy (View Summary)

Properties

deploymentJobs?: DeploymentJob[]

Deployment jobs of the phase.

errorLog?: string

Phase execution error logs.

id?: number

ID of the phase.

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.

startedOn?: Date

Phase start time.

Status of the phase.