Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The settings resource type can be deployed with operations that target:
- Subscription - See subscription deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Security/settings resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Security/settings@2017-08-01-preview' = {
name: 'string'
kind: 'string'
// For remaining properties, see Microsoft.Security/settings objects
}
Microsoft.Security/settings objects
Set the kind property to specify the type of object.
For DataExportSetting, use:
{
kind: 'DataExportSetting'
properties: {
enabled: bool
}
}
Property Values
Microsoft.Security/settings
Name | Description | Value |
---|---|---|
kind | Set to 'DataExportSetting' for type DataExportSetting. | 'DataExportSetting' (required) |
name | The resource name | 'MCAS' 'WDATP' (required) |
DataExportSetting
Name | Description | Value |
---|---|---|
kind | the kind of the settings string (DataExportSetting) | 'DataExportSetting' (required) |
properties | Data export setting data | DataExportSettingProperties |
DataExportSettingProperties
Name | Description | Value |
---|---|---|
enabled | Is the data export setting is enabled | bool (required) |
ARM template resource definition
The settings resource type can be deployed with operations that target:
- Subscription - See subscription deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Security/settings resource, add the following JSON to your template.
{
"name": "string",
"kind": "string"
// For remaining properties, see Microsoft.Security/settings objects
}
Microsoft.Security/settings objects
Set the kind property to specify the type of object.
For DataExportSetting, use:
{
"kind": "DataExportSetting",
"properties": {
"enabled": "bool"
}
}
Property Values
Microsoft.Security/settings
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2017-08-01-preview' |
kind | Set to 'DataExportSetting' for type DataExportSetting. | 'DataExportSetting' (required) |
name | The resource name | 'MCAS' 'WDATP' (required) |
type | The resource type | 'Microsoft.Security/settings' |
DataExportSetting
Name | Description | Value |
---|---|---|
kind | the kind of the settings string (DataExportSetting) | 'DataExportSetting' (required) |
properties | Data export setting data | DataExportSettingProperties |
DataExportSettingProperties
Name | Description | Value |
---|---|---|
enabled | Is the data export setting is enabled | bool (required) |
Usage Examples
Terraform (AzAPI provider) resource definition
The settings resource type can be deployed with operations that target:
- Subscription
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Security/settings resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
name = "string"
kind = "string"
// For remaining properties, see Microsoft.Security/settings objects
}
Microsoft.Security/settings objects
Set the kind property to specify the type of object.
For DataExportSetting, use:
{
kind = "DataExportSetting"
properties = {
enabled = bool
}
}
Property Values
Microsoft.Security/settings
Name | Description | Value |
---|---|---|
kind | Set to 'DataExportSetting' for type DataExportSetting. | 'DataExportSetting' (required) |
name | The resource name | 'MCAS' 'WDATP' (required) |
type | The resource type | "Microsoft.Security/settings@2017-08-01-preview" |
DataExportSetting
Name | Description | Value |
---|---|---|
kind | the kind of the settings string (DataExportSetting) | 'DataExportSetting' (required) |
properties | Data export setting data | DataExportSettingProperties |
DataExportSettingProperties
Name | Description | Value |
---|---|---|
enabled | Is the data export setting is enabled | bool (required) |