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:
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) |
| scope | Use when creating a resource at a scope that is different than the deployment scope. | Set this property to the symbolic name of a resource to apply the extension resource. |
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:
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:
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) |
| parent_id | The ID of the resource to apply this extension resource to. | string (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) |