You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/iot-edge/module-composition.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,7 @@ The $edgeAgent properties follow this structure:
82
82
"modulesContent": {
83
83
"$edgeAgent": {
84
84
"properties.desired": {
85
-
"schemaVersion": "1.1",
85
+
"schemaVersion": "1.4",
86
86
"runtime": {
87
87
"settings":{
88
88
"registryCredentials":{
@@ -115,7 +115,7 @@ The $edgeAgent properties follow this structure:
115
115
}
116
116
```
117
117
118
-
The IoT Edge agent schema version 1.1 was released along with IoT Edge version 1.0.10, and enables module startup order. Schema version 1.1 is recommended for any IoT Edge deployment running version 1.0.10 or later.
118
+
The IoT Edge agent schema version 1.4 was released along with IoT Edge version 1.0.10, and enables module startup order. Schema version 1.4 is recommended for any IoT Edge deployment running version 1.0.10 or later.
119
119
120
120
### Module configuration and management
121
121
@@ -130,7 +130,7 @@ For example:
130
130
"modulesContent": {
131
131
"$edgeAgent": {
132
132
"properties.desired": {
133
-
"schemaVersion": "1.1",
133
+
"schemaVersion": "1.4",
134
134
"runtime": { ... },
135
135
"systemModules": {
136
136
"edgeAgent": { ... },
@@ -195,7 +195,7 @@ Routes are declared in the **$edgeHub** desired properties with the following sy
195
195
"$edgeAgent": { ... },
196
196
"$edgeHub": {
197
197
"properties.desired": {
198
-
"schemaVersion": "1.1",
198
+
"schemaVersion": "1.4",
199
199
"routes": {
200
200
"route1": "FROM <source> WHERE <condition> INTO <sink>",
201
201
"route2": {
@@ -215,7 +215,7 @@ Routes are declared in the **$edgeHub** desired properties with the following sy
215
215
}
216
216
```
217
217
218
-
The IoT Edge hub schema version 1.1 was released along with IoT Edge version 1.0.10, and enables route prioritization and time to live. Schema version 1.1 is recommended for any IoT Edge deployment running version 1.0.10 or later.
218
+
The IoT Edge hub schema version 1.4 was released along with IoT Edge version 1.0.10, and enables route prioritization and time to live. Schema version 1.4 is recommended for any IoT Edge deployment running version 1.0.10 or later.
219
219
220
220
Every route needs a *source* where the messages come from and a *sink* where the messages go. The *condition* is an optional piece that you can use to filter messages.
221
221
@@ -284,7 +284,7 @@ Option 1:
284
284
"route1": "FROM <source> WHERE <condition> INTO <sink>",
285
285
```
286
286
287
-
Option 2, introduced in IoT Edge version 1.0.10 with IoT Edge hub schema version 1.1:
287
+
Option 2, introduced in IoT Edge version 1.0.10 with IoT Edge hub schema version 1.4:
288
288
289
289
```json
290
290
"route2": {
@@ -317,7 +317,7 @@ The following example shows what a valid deployment manifest document may look l
317
317
"modulesContent": {
318
318
"$edgeAgent": {
319
319
"properties.desired": {
320
-
"schemaVersion": "1.1",
320
+
"schemaVersion": "1.4",
321
321
"runtime": {
322
322
"type": "docker",
323
323
"settings": {
@@ -336,7 +336,7 @@ The following example shows what a valid deployment manifest document may look l
0 commit comments