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@2019-01-01' = {
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 DataExportSettings, use:
{
kind: 'DataExportSettings'
properties: {
enabled: bool
}
}
Property Values
Microsoft.Security/settings
Name | Description | Value |
---|---|---|
kind | Set to 'DataExportSettings' for type DataExportSettings. | 'DataExportSettings' (required) |
name | The resource name | 'MCAS' 'WDATP' (required) |
DataExportSettingProperties
Name | Description | Value |
---|---|---|
enabled | Is the data export setting is enabled | bool (required) |
DataExportSettings
Name | Description | Value |
---|---|---|
kind | the kind of the settings string (DataExportSettings) | 'DataExportSettings' (required) |
properties | Data export setting data | DataExportSettingProperties |
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 DataExportSettings, use:
{
"kind": "DataExportSettings",
"properties": {
"enabled": "bool"
}
}
Property Values
Microsoft.Security/settings
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2019-01-01' |
kind | Set to 'DataExportSettings' for type DataExportSettings. | 'DataExportSettings' (required) |
name | The resource name | 'MCAS' 'WDATP' (required) |
type | The resource type | 'Microsoft.Security/settings' |
DataExportSettingProperties
Name | Description | Value |
---|---|---|
enabled | Is the data export setting is enabled | bool (required) |
DataExportSettings
Name | Description | Value |
---|---|---|
kind | the kind of the settings string (DataExportSettings) | 'DataExportSettings' (required) |
properties | Data export setting data | DataExportSettingProperties |
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 DataExportSettings, use:
{
kind = "DataExportSettings"
properties = {
enabled = bool
}
}
Property Values
Microsoft.Security/settings
Name | Description | Value |
---|---|---|
kind | Set to 'DataExportSettings' for type DataExportSettings. | 'DataExportSettings' (required) |
name | The resource name | 'MCAS' 'WDATP' (required) |
type | The resource type | "Microsoft.Security/settings@2019-01-01" |
DataExportSettingProperties
Name | Description | Value |
---|---|---|
enabled | Is the data export setting is enabled | bool (required) |
DataExportSettings
Name | Description | Value |
---|---|---|
kind | the kind of the settings string (DataExportSettings) | 'DataExportSettings' (required) |
properties | Data export setting data | DataExportSettingProperties |