Microsoft.Security ingestionSettings
Bicep resource definition
The ingestionSettings resource type can be deployed to:
- Subscriptions - See subscription deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Security/ingestionSettings resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Security/ingestionSettings@2021-01-15-preview' = {
name: 'string'
properties: any()
}
Property values
ingestionSettings
Name | Description | Value |
---|---|---|
name | The resource name | string (required) Character limit: 1-260 Valid characters: Alphanumerics, underscores, and hyphens. |
properties | Ingestion setting data | For Bicep, you can use the any() function. |
ARM template resource definition
The ingestionSettings resource type can be deployed to:
- Subscriptions - See subscription deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Security/ingestionSettings resource, add the following JSON to your template.
{
"type": "Microsoft.Security/ingestionSettings",
"apiVersion": "2021-01-15-preview",
"name": "string",
"properties": {}
}
Property values
ingestionSettings
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.Security/ingestionSettings' |
apiVersion | The resource api version | '2021-01-15-preview' |
name | The resource name | string (required) Character limit: 1-260 Valid characters: Alphanumerics, underscores, and hyphens. |
properties | Ingestion setting data |
Terraform (AzAPI provider) resource definition
The ingestionSettings resource type can be deployed to:
- Subscriptions
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Security/ingestionSettings resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Security/ingestionSettings@2021-01-15-preview"
name = "string"
parent_id = "string"
body = jsonencode({
})
}
Property values
ingestionSettings
Name | Description | Value |
---|---|---|
type | The resource type | "Microsoft.Security/ingestionSettings@2021-01-15-preview" |
name | The resource name | string (required) Character limit: 1-260 Valid characters: Alphanumerics, underscores, and hyphens. |
parent_id | To deploy to a subscription, use the ID of that subscription. | string (required) |
properties | Ingestion setting data |