Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1735,6 +1735,7 @@ WGXM
whitelisted
Whitelisting
Whitelistings
whitespaces
Whois
Widevine
windowsazuremediaservices
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"title": "Get components from a device",
"description": "Get the list of components in a device.",
"parameters": {
"centralDnsSuffixInPath": "azureiotcentral.com",
"subdomain": "appsubdomain",
"device_id": "device1"
},
"responses": {
"200": {
"body": {
"value": [
{
"@id": "<id>",
"@type": [
"InterfaceInstance"
],
"name": "LocationTracking"
},
{
"@id": "<id>",
"@type": [
"InterfaceInstance"
],
"name": "EnvironmentSensing"
}
]
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"title": "Get components from a module in an Edge device",
"description": "Get a list of components from a module in an IoT Edge device.",
"parameters": {
"centralDnsSuffixInPath": "azureiotcentral.com",
"subdomain": "appsubdomain",
"device_id": "edgedevice1",
"module_name": "edgemodule"
},
"responses": {
"200": {
"body": {
"value": [
{
"@id": "<id>",
"@type": [
"InterfaceInstance"
],
"name": "interfaceA",
"displayName": "InterfaceA"
}
]
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"title": "Get modules from an Edge device",
"description": "Get the list of modules in an IoT Edge device.",
"parameters": {
"centralDnsSuffixInPath": "azureiotcentral.com",
"subdomain": "appsubdomain",
"device_id": "edgedevice1"
},
"responses": {
"200": {
"body": {
"value": [
{
"@id": "<id>",
"@type": [
"Relationship",
"SemanticType/EdgeModule"
],
"name": "Environment"
},
{
"@id": "<id>",
"@type": [
"Relationship",
"SemanticType/EdgeModule"
],
"name": "Camera"
}
]
}
}
}
}
Loading