Share via


RemediationDeployment Constructors

Definition

Overloads

RemediationDeployment()

Initializes a new instance of the RemediationDeployment class.

RemediationDeployment(String, String, String, String, ErrorDefinition, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the RemediationDeployment class.

RemediationDeployment()

Initializes a new instance of the RemediationDeployment class.

public RemediationDeployment ();
Public Sub New ()

Applies to

RemediationDeployment(String, String, String, String, ErrorDefinition, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the RemediationDeployment class.

public RemediationDeployment (string remediatedResourceId = default, string deploymentId = default, string status = default, string resourceLocation = default, Microsoft.Azure.Management.PolicyInsights.Models.ErrorDefinition error = default, DateTime? createdOn = default, DateTime? lastUpdatedOn = default);
new Microsoft.Azure.Management.PolicyInsights.Models.RemediationDeployment : string * string * string * string * Microsoft.Azure.Management.PolicyInsights.Models.ErrorDefinition * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.Management.PolicyInsights.Models.RemediationDeployment
Public Sub New (Optional remediatedResourceId As String = Nothing, Optional deploymentId As String = Nothing, Optional status As String = Nothing, Optional resourceLocation As String = Nothing, Optional error As ErrorDefinition = Nothing, Optional createdOn As Nullable(Of DateTime) = Nothing, Optional lastUpdatedOn As Nullable(Of DateTime) = Nothing)

Parameters

remediatedResourceId
String

Resource ID of the resource that is being remediated by the deployment.

deploymentId
String

Resource ID of the template deployment that will remediate the resource.

status
String

Status of the remediation deployment.

resourceLocation
String

Location of the resource that is being remediated.

error
ErrorDefinition

Error encountered while remediated the resource.

createdOn
Nullable<DateTime>

The time at which the remediation was created.

lastUpdatedOn
Nullable<DateTime>

The time at which the remediation deployment was last updated.

Applies to