@@ -30,7 +30,7 @@ param aioInstanceName string = '<AIO_INSTANCE_NAME>'
30
30
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
31
31
32
32
// Pointer to the Azure IoT Operations instance
33
- resource aioInstance 'Microsoft.IoTOperations/instances@2024-08 -15-preview' existing = {
33
+ resource aioInstance 'Microsoft.IoTOperations/instances@2024-09 -15-preview' existing = {
34
34
name: aioInstanceName
35
35
}
36
36
@@ -40,7 +40,7 @@ resource customLocation 'Microsoft.ExtendedLocation/customLocations@2021-08-31-p
40
40
}
41
41
42
42
// Pointer to the default dataflow profile
43
- resource defaultDataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-08 -15-preview' = {
43
+ resource defaultDataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-09 -15-preview' = {
44
44
parent: aioInstance
45
45
name: 'default'
46
46
extendedLocation: {
@@ -76,7 +76,7 @@ To create a new dataflow profile, specify the name of the profile and the instan
76
76
# [Bicep](#tab/bicep)
77
77
78
78
` ` ` bicep
79
- resource dataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-08 -15-preview' = {
79
+ resource dataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-09 -15-preview' = {
80
80
parent : aioInstance
81
81
name : ' <NAME>'
82
82
properties : {
@@ -110,7 +110,7 @@ To manually scale the dataflow profile, specify the maximum number of instances
110
110
# [Bicep](#tab/bicep)
111
111
112
112
` ` ` bicep
113
- resource dataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-08 -15-preview' = {
113
+ resource dataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-09 -15-preview' = {
114
114
parent : aioInstance
115
115
name : ' <NAME>'
116
116
properties : {
@@ -145,7 +145,7 @@ For example, to set the log level to debug:
145
145
# [Bicep](#tab/bicep)
146
146
147
147
` ` ` bicep
148
- resource dataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-08 -15-preview' = {
148
+ resource dataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-09 -15-preview' = {
149
149
parent : aioInstance
150
150
name : ' <NAME>'
151
151
properties : {
0 commit comments