Delen via


Condition Constructors

Definition

Overloads

Condition()

Initializes a new instance of the Condition class.

Condition(String, String, String)

Initializes a new instance of the Condition class.

Condition()

Initializes a new instance of the Condition class.

public Condition ();
Public Sub New ()

Applies to

Condition(String, String, String)

Initializes a new instance of the Condition class.

public Condition (string property = default, string value = default, string operatorProperty = default);
new Microsoft.Azure.Management.Security.Models.Condition : string * string * string -> Microsoft.Azure.Management.Security.Models.Condition
Public Sub New (Optional property As String = Nothing, Optional value As String = Nothing, Optional operatorProperty As String = Nothing)

Parameters

property
String

The governance rule Condition's Property, e.g. Severity or AssessmentKey, see examples

value
String

The governance rule Condition's Value like severity Low, High or assessments keys, see examples

operatorProperty
String

The governance rule Condition's Operator, for example Equals for severity or In for list of assessments, see examples Possible values include: 'Equals', 'In'

Applies to