Sdílet prostřednictvím


AutomationProperties Constructors

Definition

Overloads

AutomationProperties()

Initializes a new instance of the AutomationProperties class.

AutomationProperties(String, Nullable<Boolean>, IList<AutomationScope>, IList<AutomationSource>, IList<AutomationAction>)

Initializes a new instance of the AutomationProperties class.

AutomationProperties()

Initializes a new instance of the AutomationProperties class.

public AutomationProperties ();
Public Sub New ()

Applies to

AutomationProperties(String, Nullable<Boolean>, IList<AutomationScope>, IList<AutomationSource>, IList<AutomationAction>)

Initializes a new instance of the AutomationProperties class.

public AutomationProperties (string description = default, bool? isEnabled = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.AutomationScope> scopes = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.AutomationSource> sources = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.AutomationAction> actions = default);
new Microsoft.Azure.Management.Security.Models.AutomationProperties : string * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.AutomationScope> * System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.AutomationSource> * System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.AutomationAction> -> Microsoft.Azure.Management.Security.Models.AutomationProperties
Public Sub New (Optional description As String = Nothing, Optional isEnabled As Nullable(Of Boolean) = Nothing, Optional scopes As IList(Of AutomationScope) = Nothing, Optional sources As IList(Of AutomationSource) = Nothing, Optional actions As IList(Of AutomationAction) = Nothing)

Parameters

description
String

The security automation description.

isEnabled
Nullable<Boolean>

Indicates whether the security automation is enabled.

scopes
IList<AutomationScope>

A collection of scopes on which the security automations logic is applied. Supported scopes are the subscription itself or a resource group under that subscription. The automation will only apply on defined scopes.

sources
IList<AutomationSource>

A collection of the source event types which evaluate the security automation set of rules.

actions
IList<AutomationAction>

A collection of the actions which are triggered if all the configured rules evaluations, within at least one rule set, are true.

Applies to