The environments/referenceDataSets resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.TimeSeriesInsights/environments/referenceDataSets resource, add the following JSON to your template.
{
"type": "Microsoft.TimeSeriesInsights/environments/referenceDataSets",
"apiVersion": "2021-06-30-preview",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"properties": {
"dataStringComparisonBehavior": "string",
"keyProperties": [
{
"name": "string",
"type": "string"
}
]
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.TimeSeriesInsights/environments/referenceDataSets' |
apiVersion | The resource api version | '2021-06-30-preview' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) Character limit: 3-63 Valid characters: Alphanumerics |
location | The location of the resource. | string (required) |
tags | Key-value pairs of additional properties for the resource. | Dictionary of tag names and values. See Tags in templates |
properties | Properties used to create a reference data set. | ReferenceDataSetCreationPropertiesOrReferenceDataSet... (required) |
Name | Description | Value |
---|---|---|
dataStringComparisonBehavior | The reference data set key comparison behavior can be set using this property. By default, the value is 'Ordinal' - which means case sensitive key comparison will be performed while joining reference data with events or while adding new reference data. When 'OrdinalIgnoreCase' is set, case insensitive comparison will be used. | 'Ordinal' 'OrdinalIgnoreCase' |
keyProperties | The list of key properties for the reference data set. | ReferenceDataSetKeyProperty[] (required) |
Name | Description | Value |
---|---|---|
name | The name of the key property. | string |
type | The type of the key property. | 'Bool' 'DateTime' 'Double' 'String' |