StepGroupResponse

data class StepGroupResponse(val dependsOnStepGroups: List<String>? = null, val deploymentTargetId: String, val name: String, val postDeploymentSteps: List<PrePostStepResponse>? = null, val preDeploymentSteps: List<PrePostStepResponse>? = null)

The properties that define a Step group in a rollout.

Constructors

Link copied to clipboard
constructor(dependsOnStepGroups: List<String>? = null, deploymentTargetId: String, name: String, postDeploymentSteps: List<PrePostStepResponse>? = null, preDeploymentSteps: List<PrePostStepResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The list of step group names on which this step group depends on.

Link copied to clipboard

The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId

Link copied to clipboard

The name of the step group.

Link copied to clipboard

The list of steps to be run after deploying the target.

Link copied to clipboard

The list of steps to be run before deploying the target.