The workspaces/dataExports resource type can be deployed to:
For a list of changed properties in each API version, see change log.
To create a Microsoft.OperationalInsights/workspaces/dataExports resource, add the following JSON to your template.
{
"type": "Microsoft.OperationalInsights/workspaces/dataExports",
"apiVersion": "2020-08-01",
"name": "string",
"properties": {
"createdDate": "string",
"dataExportId": "string",
"destination": {
"metaData": {
"eventHubName": "string"
},
"resourceId": "string"
},
"enable": "bool",
"lastModifiedDate": "string",
"tableNames": [ "string" ]
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.OperationalInsights/workspaces/dataExports' |
apiVersion | The resource api version | '2020-08-01' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) |
properties | data export properties. | DataExportProperties |
Name | Description | Value |
---|---|---|
createdDate | The latest data export rule modification time. | string |
dataExportId | The data export rule ID. | string |
destination | destination properties. | Destination |
enable | Active when enabled. | bool |
lastModifiedDate | Date and time when the export was last modified. | string |
tableNames | An array of tables to export, for example: [âHeartbeat, SecurityEventâ]. | string[] (required) |
Name | Description | Value |
---|---|---|
metaData | destination meta data. | DestinationMetaData |
resourceId | The destination resource ID. This can be copied from the Properties entry of the destination resource in Azure. | string (required) |
Name | Description | Value |
---|---|---|
eventHubName | Optional. Allows to define an Event Hub name. Not applicable when destination is Storage Account. | string |