AutomationProperties Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
- 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.