Condividi tramite


DeploymentValidateResult Constructors

Definition

Overloads

Name Description
DeploymentValidateResult()

Initializes a new instance of the DeploymentValidateResult class.

DeploymentValidateResult(ErrorResponse, DeploymentPropertiesExtended)

Initializes a new instance of the DeploymentValidateResult class.

DeploymentValidateResult(ErrorResponse, String, String, String, DeploymentPropertiesExtended)

Initializes a new instance of the DeploymentValidateResult class.

DeploymentValidateResult()

Initializes a new instance of the DeploymentValidateResult class.

public DeploymentValidateResult();
Public Sub New ()

Applies to

DeploymentValidateResult(ErrorResponse, DeploymentPropertiesExtended)

Initializes a new instance of the DeploymentValidateResult class.

public DeploymentValidateResult(Microsoft.Azure.Management.Resources.Models.ErrorResponse error = default, Microsoft.Azure.Management.Resources.Models.DeploymentPropertiesExtended properties = default);
new Microsoft.Azure.Management.Resources.Models.DeploymentValidateResult : Microsoft.Azure.Management.Resources.Models.ErrorResponse * Microsoft.Azure.Management.Resources.Models.DeploymentPropertiesExtended -> Microsoft.Azure.Management.Resources.Models.DeploymentValidateResult
Public Sub New (Optional error As ErrorResponse = Nothing, Optional properties As DeploymentPropertiesExtended = Nothing)

Parameters

error
ErrorResponse

The deployment validation error.

properties
DeploymentPropertiesExtended

The template deployment properties.

Applies to

DeploymentValidateResult(ErrorResponse, String, String, String, DeploymentPropertiesExtended)

Initializes a new instance of the DeploymentValidateResult class.

public DeploymentValidateResult(Microsoft.Azure.Management.Resources.Models.ErrorResponse error = default, string id = default, string name = default, string type = default, Microsoft.Azure.Management.Resources.Models.DeploymentPropertiesExtended properties = default);
new Microsoft.Azure.Management.Resources.Models.DeploymentValidateResult : Microsoft.Azure.Management.Resources.Models.ErrorResponse * string * string * string * Microsoft.Azure.Management.Resources.Models.DeploymentPropertiesExtended -> Microsoft.Azure.Management.Resources.Models.DeploymentValidateResult
Public Sub New (Optional error As ErrorResponse = Nothing, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional properties As DeploymentPropertiesExtended = Nothing)

Parameters

error
ErrorResponse

The deployment validation error.

id
String

The ID of the deployment.

name
String

The name of the deployment.

type
String

The type of the deployment.

properties
DeploymentPropertiesExtended

The template deployment properties.

Applies to