ResourceOperationResponse

data class ResourceOperationResponse(val operationId: String, val provisioningState: String, val resourceName: String? = null, val resourceType: String? = null, val statusCode: String, val statusMessage: String)

Individual resource operation information.

Constructors

Link copied to clipboard
constructor(operationId: String, provisioningState: String, resourceName: String? = null, resourceType: String? = null, statusCode: String, statusMessage: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Unique identifier of the operation. For ARM resources, this is the operationId obtained from ARM service.

Link copied to clipboard

State of the resource deployment. For ARM resources, this is the current provisioning state of the resource.

Link copied to clipboard
val resourceName: String? = null

Name of the resource as specified in the artifacts. For ARM resources, this is the name of the resource specified in the template.

Link copied to clipboard
val resourceType: String? = null

Type of the resource as specified in the artifacts. For ARM resources, this is the type of the resource specified in the template.

Link copied to clipboard

Http status code of the operation.

Link copied to clipboard

Descriptive information of the resource operation.