Step Response
data class StepResponse(val description: String? = null, val endTimeUtc: String? = null, val errorMessage: String? = null, val expectedExecutionTime: String? = null, val lastUpdatedTimeUtc: String? = null, val name: String? = null, val startTimeUtc: String? = null, val status: String? = null, val steps: List<StepResponse>? = null)
Progress representation of the update run steps.
Properties
Link copied to clipboard
More detailed description of the step.
Link copied to clipboard
When the step reached a terminal state.
Link copied to clipboard
Error message, specified if the step is in a failed state.
Link copied to clipboard
Expected execution time of a given step. This is optionally authored in the update action plan and can be empty.
Link copied to clipboard
Completion time of this step or the last completed sub-step.
Link copied to clipboard
When the step started, or empty if it has not started executing.
Link copied to clipboard
Recursive model for child steps of this step.