Skip to content

Commit b2bc8c8

Browse files
authored
Resource version updates (#204)
## Purpose Update Bicep resource versions ## Does this introduce a breaking change? <!-- Mark one with an "x". --> ``` [ ] Yes [x] No ``` ## Pull Request Type What kind of change does this Pull Request introduce? <!-- Please check the one that applies to this PR using "x". --> ``` [ ] Bugfix [ ] Feature [ ] Code style update (formatting, local variables) [ ] Refactoring (no functional changes, no api changes) [x] Documentation content changes [ ] Other... Please describe: ```
1 parent 637e946 commit b2bc8c8

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

samples/custom-connector-bicep/connector-verify.bicep

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ resource aioExtension 'Microsoft.KubernetesConfiguration/extensions@2022-11-01'
3232
scope: connectedCluster
3333
}
3434

35-
resource aioInstance 'Microsoft.IoTOperations/instances@2026-07-01' existing = {
35+
resource aioInstance 'Microsoft.IoTOperations/instances@2026-03-01' existing = {
3636
name: aioInstanceName
3737
}
3838

39-
resource defaultDataflowEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2026-07-01' existing = {
39+
resource defaultDataflowEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2026-03-01' existing = {
4040
name: defaultDataflowEndpointName
4141
}
4242

43-
resource defaultDataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2026-07-01' existing = {
43+
resource defaultDataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2026-03-01' existing = {
4444
name: defaultDataflowProfileName
4545
parent: aioInstance
4646
}
@@ -88,7 +88,7 @@ resource eventHub 'Microsoft.EventHub/namespaces/eventhubs@2024-01-01' = {
8888
/* Data flow */
8989
/*****************************************************************************/
9090

91-
resource dataflowEndpointEventHub 'Microsoft.IoTOperations/instances/dataflowEndpoints@2026-07-01' = {
91+
resource dataflowEndpointEventHub 'Microsoft.IoTOperations/instances/dataflowEndpoints@2026-03-01' = {
9292
parent: aioInstance
9393
name: 'thermostat-eh-endpoint'
9494
extendedLocation: {
@@ -119,7 +119,7 @@ resource dataflowEndpointEventHub 'Microsoft.IoTOperations/instances/dataflowEnd
119119
]
120120
}
121121

122-
resource dataflowThermostat 'Microsoft.IoTOperations/instances/dataflowProfiles/dataflows@2026-07-01' = {
122+
resource dataflowThermostat 'Microsoft.IoTOperations/instances/dataflowProfiles/dataflows@2026-03-01' = {
123123
parent: defaultDataflowProfile
124124
name: 'thermostat-data-flow'
125125
extendedLocation: {

samples/quickstarts/quickstart.bicep

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ resource aioExtension 'Microsoft.KubernetesConfiguration/extensions@2022-11-01'
3232
scope: connectedCluster
3333
}
3434

35-
resource aioInstance 'Microsoft.IoTOperations/instances@2026-07-01' existing = {
35+
resource aioInstance 'Microsoft.IoTOperations/instances@2026-03-01' existing = {
3636
name: aioInstanceName
3737
}
3838

39-
resource defaultDataflowEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2026-07-01' existing = {
39+
resource defaultDataflowEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2026-03-01' existing = {
4040
name: defaultDataflowEndpointName
4141
}
4242

43-
resource defaultDataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2026-07-01' existing = {
43+
resource defaultDataflowProfile 'Microsoft.IoTOperations/instances/dataflowProfiles@2026-03-01' existing = {
4444
name: defaultDataflowProfileName
4545
parent: aioInstance
4646
}

0 commit comments

Comments
 (0)