Skip to content

Commit edc17cf

Browse files
committed
Correct API version
1 parent 38bb13d commit edc17cf

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

articles/iot-operations/connect-to-cloud/howto-configure-dataflow-endpoint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ For example, you can use the default MQTT broker dataflow endpoint. You can use
4242
# [Bicep](#tab/bicep)
4343

4444
```bicep
45-
resource dataflow 'Microsoft.IoTOperations/instances/dataflowProfiles/dataflows@2024-08-15-preview' = {
45+
resource dataflow 'Microsoft.IoTOperations/instances/dataflowProfiles/dataflows@2024-09-15-preview' = {
4646
parent: <DEFAULT_PROFILE_RESOURCE>
4747
name: 'broker-to-broker'
4848
extendedLocation: {
@@ -106,7 +106,7 @@ Similarly, you can create multiple dataflows that use the same MQTT endpoint for
106106
# [Bicep](#tab/bicep)
107107
108108
```bicep
109-
resource dataflow 'Microsoft.IoTOperations/instances/dataflowProfiles/dataflows@2024-08-15-preview' = {
109+
resource dataflow 'Microsoft.IoTOperations/instances/dataflowProfiles/dataflows@2024-09-15-preview' = {
110110
parent: <DEFAULT_PROFILE_RESOURCE>
111111
name: 'broker-to-eh'
112112
extendedLocation: {

articles/iot-operations/connect-to-cloud/howto-configure-dataflow-profile.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ param aioInstanceName string = '<AIO_INSTANCE_NAME>'
3030
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
3131
3232
// 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 = {
3434
name: aioInstanceName
3535
}
3636
@@ -40,7 +40,7 @@ resource customLocation 'Microsoft.ExtendedLocation/customLocations@2021-08-31-p
4040
}
4141
4242
// 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' = {
4444
parent: aioInstance
4545
name: 'default'
4646
extendedLocation: {
@@ -76,7 +76,7 @@ To create a new dataflow profile, specify the name of the profile and the instan
7676
# [Bicep](#tab/bicep)
7777
7878
```bicep
79-
resource dataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-08-15-preview' = {
79+
resource dataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-09-15-preview' = {
8080
parent: aioInstance
8181
name: '<NAME>'
8282
properties: {
@@ -110,7 +110,7 @@ To manually scale the dataflow profile, specify the maximum number of instances
110110
# [Bicep](#tab/bicep)
111111
112112
```bicep
113-
resource dataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-08-15-preview' = {
113+
resource dataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-09-15-preview' = {
114114
parent: aioInstance
115115
name: '<NAME>'
116116
properties: {
@@ -145,7 +145,7 @@ For example, to set the log level to debug:
145145
# [Bicep](#tab/bicep)
146146
147147
```bicep
148-
resource dataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-08-15-preview' = {
148+
resource dataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2024-09-15-preview' = {
149149
parent: aioInstance
150150
name: '<NAME>'
151151
properties: {

0 commit comments

Comments
 (0)