Share via


RegulatoryComplianceControl Constructors

Definition

Overloads

RegulatoryComplianceControl()

Initializes a new instance of the RegulatoryComplianceControl class.

RegulatoryComplianceControl(String, String, String, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the RegulatoryComplianceControl class.

RegulatoryComplianceControl()

Initializes a new instance of the RegulatoryComplianceControl class.

public RegulatoryComplianceControl ();
Public Sub New ()

Applies to

RegulatoryComplianceControl(String, String, String, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the RegulatoryComplianceControl class.

public RegulatoryComplianceControl (string id = default, string name = default, string type = default, string state = default, string description = default, int? passedAssessments = default, int? failedAssessments = default, int? skippedAssessments = default);
new Microsoft.Azure.Management.Security.Models.RegulatoryComplianceControl : string * string * string * string * string * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.Security.Models.RegulatoryComplianceControl
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional state As String = Nothing, Optional description As String = Nothing, Optional passedAssessments As Nullable(Of Integer) = Nothing, Optional failedAssessments As Nullable(Of Integer) = Nothing, Optional skippedAssessments As Nullable(Of Integer) = Nothing)

Parameters

id
String

Resource Id

name
String

Resource name

type
String

Resource type

state
String

Aggregative state based on the control's supported assessments states Possible values include: 'Passed', 'Failed', 'Skipped', 'Unsupported'

description
String

The description of the regulatory compliance control

passedAssessments
Nullable<Int32>

The number of supported regulatory compliance assessments of the given control with a passed state

failedAssessments
Nullable<Int32>

The number of supported regulatory compliance assessments of the given control with a failed state

skippedAssessments
Nullable<Int32>

The number of supported regulatory compliance assessments of the given control with a skipped state

Applies to