Share via


DeploymentOperationProperties Constructors

Definition

Overloads

DeploymentOperationProperties()

Initializes a new instance of the DeploymentOperationProperties class.

DeploymentOperationProperties(Nullable<ProvisioningOperation>, String, Nullable<DateTime>, String, String, String, StatusMessage, TargetResource, HttpMessage, HttpMessage)

Initializes a new instance of the DeploymentOperationProperties class.

DeploymentOperationProperties()

Initializes a new instance of the DeploymentOperationProperties class.

public DeploymentOperationProperties ();
Public Sub New ()

Applies to

DeploymentOperationProperties(Nullable<ProvisioningOperation>, String, Nullable<DateTime>, String, String, String, StatusMessage, TargetResource, HttpMessage, HttpMessage)

Initializes a new instance of the DeploymentOperationProperties class.

public DeploymentOperationProperties (Microsoft.Azure.Management.ResourceManager.Models.ProvisioningOperation? provisioningOperation = default, string provisioningState = default, DateTime? timestamp = default, string duration = default, string serviceRequestId = default, string statusCode = default, Microsoft.Azure.Management.ResourceManager.Models.StatusMessage statusMessage = default, Microsoft.Azure.Management.ResourceManager.Models.TargetResource targetResource = default, Microsoft.Azure.Management.ResourceManager.Models.HttpMessage request = default, Microsoft.Azure.Management.ResourceManager.Models.HttpMessage response = default);
new Microsoft.Azure.Management.ResourceManager.Models.DeploymentOperationProperties : Nullable<Microsoft.Azure.Management.ResourceManager.Models.ProvisioningOperation> * string * Nullable<DateTime> * string * string * string * Microsoft.Azure.Management.ResourceManager.Models.StatusMessage * Microsoft.Azure.Management.ResourceManager.Models.TargetResource * Microsoft.Azure.Management.ResourceManager.Models.HttpMessage * Microsoft.Azure.Management.ResourceManager.Models.HttpMessage -> Microsoft.Azure.Management.ResourceManager.Models.DeploymentOperationProperties
Public Sub New (Optional provisioningOperation As Nullable(Of ProvisioningOperation) = Nothing, Optional provisioningState As String = Nothing, Optional timestamp As Nullable(Of DateTime) = Nothing, Optional duration As String = Nothing, Optional serviceRequestId As String = Nothing, Optional statusCode As String = Nothing, Optional statusMessage As StatusMessage = Nothing, Optional targetResource As TargetResource = Nothing, Optional request As HttpMessage = Nothing, Optional response As HttpMessage = Nothing)

Parameters

provisioningOperation
Nullable<ProvisioningOperation>

The name of the current provisioning operation. Possible values include: 'NotSpecified', 'Create', 'Delete', 'Waiting', 'AzureAsyncOperationWaiting', 'ResourceCacheWaiting', 'Action', 'Read', 'EvaluateDeploymentOutput', 'DeploymentCleanup'

provisioningState
String

The state of the provisioning.

timestamp
Nullable<DateTime>

The date and time of the operation.

duration
String

The duration of the operation.

serviceRequestId
String

Deployment operation service request id.

statusCode
String

Operation status code from the resource provider. This property may not be set if a response has not yet been received.

statusMessage
StatusMessage

Operation status message from the resource provider. This property is optional. It will only be provided if an error was received from the resource provider.

targetResource
TargetResource

The target resource.

request
HttpMessage

The HTTP request message.

response
HttpMessage

The HTTP response message.

Applies to