StepResponse

data class StepResponse(val description: String? = null, val endTimeUtc: String? = null, val errorMessage: String? = null, val exception: List<String>? = null, val fullStepIndex: 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.

Constructors

Link copied to clipboard
constructor(description: String? = null, endTimeUtc: String? = null, errorMessage: String? = null, exception: List<String>? = null, fullStepIndex: String? = null, lastUpdatedTimeUtc: String? = null, name: String? = null, startTimeUtc: String? = null, status: String? = null, steps: List<StepResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val description: String? = null

More detailed description of the step.

Link copied to clipboard
val endTimeUtc: String? = null

When the step reached a terminal state.

Link copied to clipboard
val errorMessage: String? = null

Error message, specified if the step is in a failed state.

Link copied to clipboard
val exception: List<String>? = null

List of exceptions in AzureStackHCI Cluster Deployment.

Link copied to clipboard
val fullStepIndex: String? = null

FullStepIndex of step.

Link copied to clipboard

Completion time of this step or the last completed sub-step.

Link copied to clipboard
val name: String? = null

Name of the step.

Link copied to clipboard
val startTimeUtc: String? = null

When the step started, or empty if it has not started executing.

Link copied to clipboard
val status: String? = null

Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.

Link copied to clipboard
val steps: List<StepResponse>? = null

Recursive model for child steps of this step.