Share via


AutomationTriggeringRule Constructors

Definition

Overloads

AutomationTriggeringRule()

Initializes a new instance of the AutomationTriggeringRule class.

AutomationTriggeringRule(String, String, String, String)

Initializes a new instance of the AutomationTriggeringRule class.

AutomationTriggeringRule()

Initializes a new instance of the AutomationTriggeringRule class.

public AutomationTriggeringRule ();
Public Sub New ()

Applies to

AutomationTriggeringRule(String, String, String, String)

Initializes a new instance of the AutomationTriggeringRule class.

public AutomationTriggeringRule (string propertyJPath = default, string propertyType = default, string expectedValue = default, string operatorProperty = default);
new Microsoft.Azure.Management.Security.Models.AutomationTriggeringRule : string * string * string * string -> Microsoft.Azure.Management.Security.Models.AutomationTriggeringRule
Public Sub New (Optional propertyJPath As String = Nothing, Optional propertyType As String = Nothing, Optional expectedValue As String = Nothing, Optional operatorProperty As String = Nothing)

Parameters

propertyJPath
String

The JPath of the entity model property that should be checked.

propertyType
String

The data type of the compared operands (string, integer, floating point number or a boolean [true/false]] Possible values include: 'String', 'Integer', 'Number', 'Boolean'

expectedValue
String

The expected value.

operatorProperty
String

A valid comparer operator to use. A case-insensitive comparison will be applied for String PropertyType. Possible values include: 'Equals', 'GreaterThan', 'GreaterThanOrEqualTo', 'LesserThan', 'LesserThanOrEqualTo', 'NotEquals', 'Contains', 'StartsWith', 'EndsWith'

Applies to