Microsoft.Insights components/exportconfiguration

Bicep resource definition

The components/exportconfiguration 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.Insights/components/exportconfiguration resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Insights/components/exportconfiguration@2015-05-01' = {
  name: 'string'
  parent: resourceSymbolicName
  DestinationAccountId: 'string'
  DestinationAddress: 'string'
  DestinationStorageLocationId: 'string'
  DestinationStorageSubscriptionId: 'string'
  DestinationType: 'string'
  IsEnabled: 'string'
  NotificationQueueEnabled: 'string'
  NotificationQueueUri: 'string'
  RecordTypes: 'string'
}

Property values

components/exportconfiguration

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
string (required)
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: components
DestinationAccountId The name of destination storage account. string
DestinationAddress The SAS URL for the destination storage container. It must grant write permission. string
DestinationStorageLocationId The location ID of the destination storage container. string
DestinationStorageSubscriptionId The subscription ID of the destination storage container. string
DestinationType The Continuous Export destination type. This has to be 'Blob'. string
IsEnabled Set to 'true' to create a Continuous Export configuration as enabled, otherwise set it to 'false'. string
NotificationQueueEnabled Deprecated string
NotificationQueueUri Deprecated string
RecordTypes The document types to be exported, as comma separated values. Allowed values include 'Requests', 'Event', 'Exceptions', 'Metrics', 'PageViews', 'PageViewPerformance', 'Rdd', 'PerformanceCounters', 'Availability', 'Messages'. string

ARM template resource definition

The components/exportconfiguration 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.Insights/components/exportconfiguration resource, add the following JSON to your template.

{
  "type": "Microsoft.Insights/components/exportconfiguration",
  "apiVersion": "2015-05-01",
  "name": "string",
  "DestinationAccountId": "string",
  "DestinationAddress": "string",
  "DestinationStorageLocationId": "string",
  "DestinationStorageSubscriptionId": "string",
  "DestinationType": "string",
  "IsEnabled": "string",
  "NotificationQueueEnabled": "string",
  "NotificationQueueUri": "string",
  "RecordTypes": "string"
}

Property values

components/exportconfiguration

Name Description Value
type The resource type 'Microsoft.Insights/components/exportconfiguration'
apiVersion The resource api version '2015-05-01'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)
DestinationAccountId The name of destination storage account. string
DestinationAddress The SAS URL for the destination storage container. It must grant write permission. string
DestinationStorageLocationId The location ID of the destination storage container. string
DestinationStorageSubscriptionId The subscription ID of the destination storage container. string
DestinationType The Continuous Export destination type. This has to be 'Blob'. string
IsEnabled Set to 'true' to create a Continuous Export configuration as enabled, otherwise set it to 'false'. string
NotificationQueueEnabled Deprecated string
NotificationQueueUri Deprecated string
RecordTypes The document types to be exported, as comma separated values. Allowed values include 'Requests', 'Event', 'Exceptions', 'Metrics', 'PageViews', 'PageViewPerformance', 'Rdd', 'PerformanceCounters', 'Availability', 'Messages'. string

Terraform (AzAPI provider) resource definition

The components/exportconfiguration resource type can be deployed with operations that target:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Insights/components/exportconfiguration resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Insights/components/exportconfiguration@2015-05-01"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    DestinationAccountId = "string"
    DestinationAddress = "string"
    DestinationStorageLocationId = "string"
    DestinationStorageSubscriptionId = "string"
    DestinationType = "string"
    IsEnabled = "string"
    NotificationQueueEnabled = "string"
    NotificationQueueUri = "string"
    RecordTypes = "string"
  })
}

Property values

components/exportconfiguration

Name Description Value
type The resource type "Microsoft.Insights/components/exportconfiguration@2015-05-01"
name The resource name string (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: components
DestinationAccountId The name of destination storage account. string
DestinationAddress The SAS URL for the destination storage container. It must grant write permission. string
DestinationStorageLocationId The location ID of the destination storage container. string
DestinationStorageSubscriptionId The subscription ID of the destination storage container. string
DestinationType The Continuous Export destination type. This has to be 'Blob'. string
IsEnabled Set to 'true' to create a Continuous Export configuration as enabled, otherwise set it to 'false'. string
NotificationQueueEnabled Deprecated string
NotificationQueueUri Deprecated string
RecordTypes The document types to be exported, as comma separated values. Allowed values include 'Requests', 'Event', 'Exceptions', 'Metrics', 'PageViews', 'PageViewPerformance', 'Rdd', 'PerformanceCounters', 'Availability', 'Messages'. string