azure-native.security.DeviceSecurityGroup
Explore with Pulumi AI
The device security group resource
Uses Azure REST API version 2019-08-01. In version 2.x of the Azure Native provider, it used API version 2019-08-01.
Other available API versions: 2017-08-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native security [ApiVersion]
. See the version guide for details.
Create DeviceSecurityGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DeviceSecurityGroup(name: string, args: DeviceSecurityGroupArgs, opts?: CustomResourceOptions);
@overload
def DeviceSecurityGroup(resource_name: str,
args: DeviceSecurityGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DeviceSecurityGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_id: Optional[str] = None,
allowlist_rules: Optional[Sequence[AllowlistCustomAlertRuleArgs]] = None,
denylist_rules: Optional[Sequence[DenylistCustomAlertRuleArgs]] = None,
device_security_group_name: Optional[str] = None,
threshold_rules: Optional[Sequence[ThresholdCustomAlertRuleArgs]] = None,
time_window_rules: Optional[Sequence[TimeWindowCustomAlertRuleArgs]] = None)
func NewDeviceSecurityGroup(ctx *Context, name string, args DeviceSecurityGroupArgs, opts ...ResourceOption) (*DeviceSecurityGroup, error)
public DeviceSecurityGroup(string name, DeviceSecurityGroupArgs args, CustomResourceOptions? opts = null)
public DeviceSecurityGroup(String name, DeviceSecurityGroupArgs args)
public DeviceSecurityGroup(String name, DeviceSecurityGroupArgs args, CustomResourceOptions options)
type: azure-native:security:DeviceSecurityGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. DeviceSecurityGroupArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. DeviceSecurityGroupArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. DeviceSecurityGroupArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. DeviceSecurityGroupArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. DeviceSecurityGroupArgs - The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var deviceSecurityGroupResource = new AzureNative.Security.DeviceSecurityGroup("deviceSecurityGroupResource", new()
{
ResourceId = "string",
AllowlistRules = new[]
{
new AzureNative.Security.Inputs.AllowlistCustomAlertRuleArgs
{
AllowlistValues = new[]
{
"string",
},
IsEnabled = false,
RuleType = "AllowlistCustomAlertRule",
},
},
DenylistRules = new[]
{
new AzureNative.Security.Inputs.DenylistCustomAlertRuleArgs
{
DenylistValues = new[]
{
"string",
},
IsEnabled = false,
RuleType = "DenylistCustomAlertRule",
},
},
DeviceSecurityGroupName = "string",
ThresholdRules = new[]
{
new AzureNative.Security.Inputs.ThresholdCustomAlertRuleArgs
{
IsEnabled = false,
MaxThreshold = 0,
MinThreshold = 0,
RuleType = "ThresholdCustomAlertRule",
},
},
TimeWindowRules = new[]
{
new AzureNative.Security.Inputs.TimeWindowCustomAlertRuleArgs
{
IsEnabled = false,
MaxThreshold = 0,
MinThreshold = 0,
RuleType = "TimeWindowCustomAlertRule",
TimeWindowSize = "string",
},
},
});
example, err := security.NewDeviceSecurityGroup(ctx, "deviceSecurityGroupResource", &security.DeviceSecurityGroupArgs{
ResourceId: pulumi.String("string"),
AllowlistRules: security.AllowlistCustomAlertRuleArray{
&security.AllowlistCustomAlertRuleArgs{
AllowlistValues: pulumi.StringArray{
pulumi.String("string"),
},
IsEnabled: pulumi.Bool(false),
RuleType: pulumi.String("AllowlistCustomAlertRule"),
},
},
DenylistRules: security.DenylistCustomAlertRuleArray{
&security.DenylistCustomAlertRuleArgs{
DenylistValues: pulumi.StringArray{
pulumi.String("string"),
},
IsEnabled: pulumi.Bool(false),
RuleType: pulumi.String("DenylistCustomAlertRule"),
},
},
DeviceSecurityGroupName: pulumi.String("string"),
ThresholdRules: security.ThresholdCustomAlertRuleArray{
&security.ThresholdCustomAlertRuleArgs{
IsEnabled: pulumi.Bool(false),
MaxThreshold: pulumi.Int(0),
MinThreshold: pulumi.Int(0),
RuleType: pulumi.String("ThresholdCustomAlertRule"),
},
},
TimeWindowRules: security.TimeWindowCustomAlertRuleArray{
&security.TimeWindowCustomAlertRuleArgs{
IsEnabled: pulumi.Bool(false),
MaxThreshold: pulumi.Int(0),
MinThreshold: pulumi.Int(0),
RuleType: pulumi.String("TimeWindowCustomAlertRule"),
TimeWindowSize: pulumi.String("string"),
},
},
})
var deviceSecurityGroupResource = new DeviceSecurityGroup("deviceSecurityGroupResource", DeviceSecurityGroupArgs.builder()
.resourceId("string")
.allowlistRules(AllowlistCustomAlertRuleArgs.builder()
.allowlistValues("string")
.isEnabled(false)
.ruleType("AllowlistCustomAlertRule")
.build())
.denylistRules(DenylistCustomAlertRuleArgs.builder()
.denylistValues("string")
.isEnabled(false)
.ruleType("DenylistCustomAlertRule")
.build())
.deviceSecurityGroupName("string")
.thresholdRules(ThresholdCustomAlertRuleArgs.builder()
.isEnabled(false)
.maxThreshold(0)
.minThreshold(0)
.ruleType("ThresholdCustomAlertRule")
.build())
.timeWindowRules(TimeWindowCustomAlertRuleArgs.builder()
.isEnabled(false)
.maxThreshold(0)
.minThreshold(0)
.ruleType("TimeWindowCustomAlertRule")
.timeWindowSize("string")
.build())
.build());
device_security_group_resource = azure_native.security.DeviceSecurityGroup("deviceSecurityGroupResource",
resource_id="string",
allowlist_rules=[{
"allowlist_values": ["string"],
"is_enabled": False,
"rule_type": "AllowlistCustomAlertRule",
}],
denylist_rules=[{
"denylist_values": ["string"],
"is_enabled": False,
"rule_type": "DenylistCustomAlertRule",
}],
device_security_group_name="string",
threshold_rules=[{
"is_enabled": False,
"max_threshold": 0,
"min_threshold": 0,
"rule_type": "ThresholdCustomAlertRule",
}],
time_window_rules=[{
"is_enabled": False,
"max_threshold": 0,
"min_threshold": 0,
"rule_type": "TimeWindowCustomAlertRule",
"time_window_size": "string",
}])
const deviceSecurityGroupResource = new azure_native.security.DeviceSecurityGroup("deviceSecurityGroupResource", {
resourceId: "string",
allowlistRules: [{
allowlistValues: ["string"],
isEnabled: false,
ruleType: "AllowlistCustomAlertRule",
}],
denylistRules: [{
denylistValues: ["string"],
isEnabled: false,
ruleType: "DenylistCustomAlertRule",
}],
deviceSecurityGroupName: "string",
thresholdRules: [{
isEnabled: false,
maxThreshold: 0,
minThreshold: 0,
ruleType: "ThresholdCustomAlertRule",
}],
timeWindowRules: [{
isEnabled: false,
maxThreshold: 0,
minThreshold: 0,
ruleType: "TimeWindowCustomAlertRule",
timeWindowSize: "string",
}],
});
type: azure-native:security:DeviceSecurityGroup
properties:
allowlistRules:
- allowlistValues:
- string
isEnabled: false
ruleType: AllowlistCustomAlertRule
denylistRules:
- denylistValues:
- string
isEnabled: false
ruleType: DenylistCustomAlertRule
deviceSecurityGroupName: string
resourceId: string
thresholdRules:
- isEnabled: false
maxThreshold: 0
minThreshold: 0
ruleType: ThresholdCustomAlertRule
timeWindowRules:
- isEnabled: false
maxThreshold: 0
minThreshold: 0
ruleType: TimeWindowCustomAlertRule
timeWindowSize: string
DeviceSecurityGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DeviceSecurityGroup resource accepts the following input properties:
- Resource
Id This property is required. Changes to this property will trigger replacement.
- The identifier of the resource.
- Allowlist
Rules List<Pulumi.Azure Native. Security. Inputs. Allowlist Custom Alert Rule> - The allow-list custom alert rules.
- Denylist
Rules List<Pulumi.Azure Native. Security. Inputs. Denylist Custom Alert Rule> - The deny-list custom alert rules.
- Device
Security Group Name Changes to this property will trigger replacement.
- The name of the device security group. Note that the name of the device security group is case insensitive.
- Threshold
Rules List<Pulumi.Azure Native. Security. Inputs. Threshold Custom Alert Rule> - The list of custom alert threshold rules.
- Time
Window List<Pulumi.Rules Azure Native. Security. Inputs. Time Window Custom Alert Rule> - The list of custom alert time-window rules.
- Resource
Id This property is required. Changes to this property will trigger replacement.
- The identifier of the resource.
- Allowlist
Rules []AllowlistCustom Alert Rule Args - The allow-list custom alert rules.
- Denylist
Rules []DenylistCustom Alert Rule Args - The deny-list custom alert rules.
- Device
Security Group Name Changes to this property will trigger replacement.
- The name of the device security group. Note that the name of the device security group is case insensitive.
- Threshold
Rules []ThresholdCustom Alert Rule Args - The list of custom alert threshold rules.
- Time
Window []TimeRules Window Custom Alert Rule Args - The list of custom alert time-window rules.
- resource
Id This property is required. Changes to this property will trigger replacement.
- The identifier of the resource.
- allowlist
Rules List<AllowlistCustom Alert Rule> - The allow-list custom alert rules.
- denylist
Rules List<DenylistCustom Alert Rule> - The deny-list custom alert rules.
- device
Security Group Name Changes to this property will trigger replacement.
- The name of the device security group. Note that the name of the device security group is case insensitive.
- threshold
Rules List<ThresholdCustom Alert Rule> - The list of custom alert threshold rules.
- time
Window List<TimeRules Window Custom Alert Rule> - The list of custom alert time-window rules.
- resource
Id This property is required. Changes to this property will trigger replacement.
- The identifier of the resource.
- allowlist
Rules AllowlistCustom Alert Rule[] - The allow-list custom alert rules.
- denylist
Rules DenylistCustom Alert Rule[] - The deny-list custom alert rules.
- device
Security Group Name Changes to this property will trigger replacement.
- The name of the device security group. Note that the name of the device security group is case insensitive.
- threshold
Rules ThresholdCustom Alert Rule[] - The list of custom alert threshold rules.
- time
Window TimeRules Window Custom Alert Rule[] - The list of custom alert time-window rules.
- resource_
id This property is required. Changes to this property will trigger replacement.
- The identifier of the resource.
- allowlist_
rules Sequence[AllowlistCustom Alert Rule Args] - The allow-list custom alert rules.
- denylist_
rules Sequence[DenylistCustom Alert Rule Args] - The deny-list custom alert rules.
- device_
security_ group_ name Changes to this property will trigger replacement.
- The name of the device security group. Note that the name of the device security group is case insensitive.
- threshold_
rules Sequence[ThresholdCustom Alert Rule Args] - The list of custom alert threshold rules.
- time_
window_ Sequence[Timerules Window Custom Alert Rule Args] - The list of custom alert time-window rules.
- resource
Id This property is required. Changes to this property will trigger replacement.
- The identifier of the resource.
- allowlist
Rules List<Property Map> - The allow-list custom alert rules.
- denylist
Rules List<Property Map> - The deny-list custom alert rules.
- device
Security Group Name Changes to this property will trigger replacement.
- The name of the device security group. Note that the name of the device security group is case insensitive.
- threshold
Rules List<Property Map> - The list of custom alert threshold rules.
- time
Window List<Property Map>Rules - The list of custom alert time-window rules.
Outputs
All input properties are implicitly available as output properties. Additionally, the DeviceSecurityGroup resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name
- Type string
- Resource type
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name
- Type string
- Resource type
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name
- type String
- Resource type
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name
- type string
- Resource type
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name
- type str
- Resource type
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name
- type String
- Resource type
Supporting Types
AllowlistCustomAlertRule, AllowlistCustomAlertRuleArgs
- Allowlist
Values This property is required. List<string> - The values to allow. The format of the values depends on the rule type.
- Is
Enabled This property is required. bool - Status of the custom alert.
- Allowlist
Values This property is required. []string - The values to allow. The format of the values depends on the rule type.
- Is
Enabled This property is required. bool - Status of the custom alert.
- allowlist
Values This property is required. List<String> - The values to allow. The format of the values depends on the rule type.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- allowlist
Values This property is required. string[] - The values to allow. The format of the values depends on the rule type.
- is
Enabled This property is required. boolean - Status of the custom alert.
- allowlist_
values This property is required. Sequence[str] - The values to allow. The format of the values depends on the rule type.
- is_
enabled This property is required. bool - Status of the custom alert.
- allowlist
Values This property is required. List<String> - The values to allow. The format of the values depends on the rule type.
- is
Enabled This property is required. Boolean - Status of the custom alert.
AllowlistCustomAlertRuleResponse, AllowlistCustomAlertRuleResponseArgs
- Allowlist
Values This property is required. List<string> - The values to allow. The format of the values depends on the rule type.
- Description
This property is required. string - The description of the custom alert.
- Display
Name This property is required. string - The display name of the custom alert.
- Is
Enabled This property is required. bool - Status of the custom alert.
- Value
Type This property is required. string - The value type of the items in the list.
- Allowlist
Values This property is required. []string - The values to allow. The format of the values depends on the rule type.
- Description
This property is required. string - The description of the custom alert.
- Display
Name This property is required. string - The display name of the custom alert.
- Is
Enabled This property is required. bool - Status of the custom alert.
- Value
Type This property is required. string - The value type of the items in the list.
- allowlist
Values This property is required. List<String> - The values to allow. The format of the values depends on the rule type.
- description
This property is required. String - The description of the custom alert.
- display
Name This property is required. String - The display name of the custom alert.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- value
Type This property is required. String - The value type of the items in the list.
- allowlist
Values This property is required. string[] - The values to allow. The format of the values depends on the rule type.
- description
This property is required. string - The description of the custom alert.
- display
Name This property is required. string - The display name of the custom alert.
- is
Enabled This property is required. boolean - Status of the custom alert.
- value
Type This property is required. string - The value type of the items in the list.
- allowlist_
values This property is required. Sequence[str] - The values to allow. The format of the values depends on the rule type.
- description
This property is required. str - The description of the custom alert.
- display_
name This property is required. str - The display name of the custom alert.
- is_
enabled This property is required. bool - Status of the custom alert.
- value_
type This property is required. str - The value type of the items in the list.
- allowlist
Values This property is required. List<String> - The values to allow. The format of the values depends on the rule type.
- description
This property is required. String - The description of the custom alert.
- display
Name This property is required. String - The display name of the custom alert.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- value
Type This property is required. String - The value type of the items in the list.
DenylistCustomAlertRule, DenylistCustomAlertRuleArgs
- Denylist
Values This property is required. List<string> - The values to deny. The format of the values depends on the rule type.
- Is
Enabled This property is required. bool - Status of the custom alert.
- Denylist
Values This property is required. []string - The values to deny. The format of the values depends on the rule type.
- Is
Enabled This property is required. bool - Status of the custom alert.
- denylist
Values This property is required. List<String> - The values to deny. The format of the values depends on the rule type.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- denylist
Values This property is required. string[] - The values to deny. The format of the values depends on the rule type.
- is
Enabled This property is required. boolean - Status of the custom alert.
- denylist_
values This property is required. Sequence[str] - The values to deny. The format of the values depends on the rule type.
- is_
enabled This property is required. bool - Status of the custom alert.
- denylist
Values This property is required. List<String> - The values to deny. The format of the values depends on the rule type.
- is
Enabled This property is required. Boolean - Status of the custom alert.
DenylistCustomAlertRuleResponse, DenylistCustomAlertRuleResponseArgs
- Denylist
Values This property is required. List<string> - The values to deny. The format of the values depends on the rule type.
- Description
This property is required. string - The description of the custom alert.
- Display
Name This property is required. string - The display name of the custom alert.
- Is
Enabled This property is required. bool - Status of the custom alert.
- Value
Type This property is required. string - The value type of the items in the list.
- Denylist
Values This property is required. []string - The values to deny. The format of the values depends on the rule type.
- Description
This property is required. string - The description of the custom alert.
- Display
Name This property is required. string - The display name of the custom alert.
- Is
Enabled This property is required. bool - Status of the custom alert.
- Value
Type This property is required. string - The value type of the items in the list.
- denylist
Values This property is required. List<String> - The values to deny. The format of the values depends on the rule type.
- description
This property is required. String - The description of the custom alert.
- display
Name This property is required. String - The display name of the custom alert.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- value
Type This property is required. String - The value type of the items in the list.
- denylist
Values This property is required. string[] - The values to deny. The format of the values depends on the rule type.
- description
This property is required. string - The description of the custom alert.
- display
Name This property is required. string - The display name of the custom alert.
- is
Enabled This property is required. boolean - Status of the custom alert.
- value
Type This property is required. string - The value type of the items in the list.
- denylist_
values This property is required. Sequence[str] - The values to deny. The format of the values depends on the rule type.
- description
This property is required. str - The description of the custom alert.
- display_
name This property is required. str - The display name of the custom alert.
- is_
enabled This property is required. bool - Status of the custom alert.
- value_
type This property is required. str - The value type of the items in the list.
- denylist
Values This property is required. List<String> - The values to deny. The format of the values depends on the rule type.
- description
This property is required. String - The description of the custom alert.
- display
Name This property is required. String - The display name of the custom alert.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- value
Type This property is required. String - The value type of the items in the list.
ThresholdCustomAlertRule, ThresholdCustomAlertRuleArgs
- Is
Enabled This property is required. bool - Status of the custom alert.
- Max
Threshold This property is required. int - The maximum threshold.
- Min
Threshold This property is required. int - The minimum threshold.
- Is
Enabled This property is required. bool - Status of the custom alert.
- Max
Threshold This property is required. int - The maximum threshold.
- Min
Threshold This property is required. int - The minimum threshold.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- max
Threshold This property is required. Integer - The maximum threshold.
- min
Threshold This property is required. Integer - The minimum threshold.
- is
Enabled This property is required. boolean - Status of the custom alert.
- max
Threshold This property is required. number - The maximum threshold.
- min
Threshold This property is required. number - The minimum threshold.
- is_
enabled This property is required. bool - Status of the custom alert.
- max_
threshold This property is required. int - The maximum threshold.
- min_
threshold This property is required. int - The minimum threshold.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- max
Threshold This property is required. Number - The maximum threshold.
- min
Threshold This property is required. Number - The minimum threshold.
ThresholdCustomAlertRuleResponse, ThresholdCustomAlertRuleResponseArgs
- Description
This property is required. string - The description of the custom alert.
- Display
Name This property is required. string - The display name of the custom alert.
- Is
Enabled This property is required. bool - Status of the custom alert.
- Max
Threshold This property is required. int - The maximum threshold.
- Min
Threshold This property is required. int - The minimum threshold.
- Description
This property is required. string - The description of the custom alert.
- Display
Name This property is required. string - The display name of the custom alert.
- Is
Enabled This property is required. bool - Status of the custom alert.
- Max
Threshold This property is required. int - The maximum threshold.
- Min
Threshold This property is required. int - The minimum threshold.
- description
This property is required. String - The description of the custom alert.
- display
Name This property is required. String - The display name of the custom alert.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- max
Threshold This property is required. Integer - The maximum threshold.
- min
Threshold This property is required. Integer - The minimum threshold.
- description
This property is required. string - The description of the custom alert.
- display
Name This property is required. string - The display name of the custom alert.
- is
Enabled This property is required. boolean - Status of the custom alert.
- max
Threshold This property is required. number - The maximum threshold.
- min
Threshold This property is required. number - The minimum threshold.
- description
This property is required. str - The description of the custom alert.
- display_
name This property is required. str - The display name of the custom alert.
- is_
enabled This property is required. bool - Status of the custom alert.
- max_
threshold This property is required. int - The maximum threshold.
- min_
threshold This property is required. int - The minimum threshold.
- description
This property is required. String - The description of the custom alert.
- display
Name This property is required. String - The display name of the custom alert.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- max
Threshold This property is required. Number - The maximum threshold.
- min
Threshold This property is required. Number - The minimum threshold.
TimeWindowCustomAlertRule, TimeWindowCustomAlertRuleArgs
- Is
Enabled This property is required. bool - Status of the custom alert.
- Max
Threshold This property is required. int - The maximum threshold.
- Min
Threshold This property is required. int - The minimum threshold.
- Time
Window Size This property is required. string - The time window size in iso8601 format.
- Is
Enabled This property is required. bool - Status of the custom alert.
- Max
Threshold This property is required. int - The maximum threshold.
- Min
Threshold This property is required. int - The minimum threshold.
- Time
Window Size This property is required. string - The time window size in iso8601 format.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- max
Threshold This property is required. Integer - The maximum threshold.
- min
Threshold This property is required. Integer - The minimum threshold.
- time
Window Size This property is required. String - The time window size in iso8601 format.
- is
Enabled This property is required. boolean - Status of the custom alert.
- max
Threshold This property is required. number - The maximum threshold.
- min
Threshold This property is required. number - The minimum threshold.
- time
Window Size This property is required. string - The time window size in iso8601 format.
- is_
enabled This property is required. bool - Status of the custom alert.
- max_
threshold This property is required. int - The maximum threshold.
- min_
threshold This property is required. int - The minimum threshold.
- time_
window_ size This property is required. str - The time window size in iso8601 format.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- max
Threshold This property is required. Number - The maximum threshold.
- min
Threshold This property is required. Number - The minimum threshold.
- time
Window Size This property is required. String - The time window size in iso8601 format.
TimeWindowCustomAlertRuleResponse, TimeWindowCustomAlertRuleResponseArgs
- Description
This property is required. string - The description of the custom alert.
- Display
Name This property is required. string - The display name of the custom alert.
- Is
Enabled This property is required. bool - Status of the custom alert.
- Max
Threshold This property is required. int - The maximum threshold.
- Min
Threshold This property is required. int - The minimum threshold.
- Time
Window Size This property is required. string - The time window size in iso8601 format.
- Description
This property is required. string - The description of the custom alert.
- Display
Name This property is required. string - The display name of the custom alert.
- Is
Enabled This property is required. bool - Status of the custom alert.
- Max
Threshold This property is required. int - The maximum threshold.
- Min
Threshold This property is required. int - The minimum threshold.
- Time
Window Size This property is required. string - The time window size in iso8601 format.
- description
This property is required. String - The description of the custom alert.
- display
Name This property is required. String - The display name of the custom alert.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- max
Threshold This property is required. Integer - The maximum threshold.
- min
Threshold This property is required. Integer - The minimum threshold.
- time
Window Size This property is required. String - The time window size in iso8601 format.
- description
This property is required. string - The description of the custom alert.
- display
Name This property is required. string - The display name of the custom alert.
- is
Enabled This property is required. boolean - Status of the custom alert.
- max
Threshold This property is required. number - The maximum threshold.
- min
Threshold This property is required. number - The minimum threshold.
- time
Window Size This property is required. string - The time window size in iso8601 format.
- description
This property is required. str - The description of the custom alert.
- display_
name This property is required. str - The display name of the custom alert.
- is_
enabled This property is required. bool - Status of the custom alert.
- max_
threshold This property is required. int - The maximum threshold.
- min_
threshold This property is required. int - The minimum threshold.
- time_
window_ size This property is required. str - The time window size in iso8601 format.
- description
This property is required. String - The description of the custom alert.
- display
Name This property is required. String - The display name of the custom alert.
- is
Enabled This property is required. Boolean - Status of the custom alert.
- max
Threshold This property is required. Number - The maximum threshold.
- min
Threshold This property is required. Number - The minimum threshold.
- time
Window Size This property is required. String - The time window size in iso8601 format.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:security:DeviceSecurityGroup samplesecuritygroup /{resourceId}/providers/Microsoft.Security/deviceSecurityGroups/{deviceSecurityGroupName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0