interface DeleteDeploymentByKey {
    deploymentSequenceNumber: number;
    environmentId: string;
    pipelineId: string;
    updateSequenceNumber?: number;
}

Properties

deploymentSequenceNumber: number

The deployment's deploymentSequenceNumber.

environmentId: string

The ID of the deployment's environment.

pipelineId: string

The ID of the deployment's pipeline.

updateSequenceNumber?: number

Only stored data with an updateSequenceNumber less than or equal to that provided will be deleted. This can be used help ensure submit/delete requests are applied correctly if issued close together.