Skip to content

Commit 0339aee

Browse files
committed
update documentation
1 parent 906cd10 commit 0339aee

21 files changed

+208
-207
lines changed

src/DeviceRegistry/DeviceRegistry.Autorest/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@
2525
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
2626
[assembly: System.CLSCompliantAttribute(false)]
2727

28+

src/DeviceRegistry/DeviceRegistry.Autorest/docs/Get-AzDeviceRegistryNamespaceDevice.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ EndpointsInbound : {
9090
},
9191
"method": "Certificate"
9292
},
93-
"endpointType": "Microsoft.IotHub",
93+
"endpointType": "Microsoft.Devices/IotHubs",
9494
"address": "https://myendpoint1.westeurope-1.iothub.azure.net"
9595
},
9696
"endpoint2": {
@@ -101,7 +101,7 @@ EndpointsInbound : {
101101
},
102102
"method": "UsernamePassword"
103103
},
104-
"endpointType": "Microsoft.IotHub",
104+
"endpointType": "Microsoft.Devices/IotHubs",
105105
"address": "https://myendpoint2.westeurope-1.iothub.azure.net"
106106
}
107107
}
@@ -177,7 +177,7 @@ EndpointsInbound : {
177177
},
178178
"method": "Certificate"
179179
},
180-
"endpointType": "Microsoft.IotHub",
180+
"endpointType": "Microsoft.Devices/IotHubs",
181181
"address": "https://myendpoint1.westeurope-1.iothub.azure.net"
182182
},
183183
"endpoint2": {
@@ -188,7 +188,7 @@ EndpointsInbound : {
188188
},
189189
"method": "UsernamePassword"
190190
},
191-
"endpointType": "Microsoft.IotHub",
191+
"endpointType": "Microsoft.Devices/IotHubs",
192192
"address": "https://myendpoint2.westeurope-1.iothub.azure.net"
193193
}
194194
}
@@ -270,7 +270,7 @@ EndpointsInbound : {
270270
},
271271
"method": "Certificate"
272272
},
273-
"endpointType": "Microsoft.IotHub",
273+
"endpointType": "Microsoft.Devices/IotHubs",
274274
"address": "https://myendpoint1.westeurope-1.iothub.azure.net"
275275
},
276276
"endpoint2": {
@@ -281,7 +281,7 @@ EndpointsInbound : {
281281
},
282282
"method": "UsernamePassword"
283283
},
284-
"endpointType": "Microsoft.IotHub",
284+
"endpointType": "Microsoft.Devices/IotHubs",
285285
"address": "https://myendpoint2.westeurope-1.iothub.azure.net"
286286
}
287287
}

src/DeviceRegistry/DeviceRegistry.Autorest/docs/Get-AzDeviceRegistryNamespaceDiscoveredDevice.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ Attribute : {
7979
DiscoveryId : myDiscoveryId
8080
EndpointInbound : {
8181
"endpoint1": {
82-
"endpointType": "Microsoft.IotHub",
82+
"endpointType": "Microsoft.Devices/IotHubs",
8383
"address": "https://myendpoint1.westeurope-1.iothub.azure.net",
8484
"version": "1.0"
8585
},
8686
"endpoint2": {
87-
"endpointType": "Microsoft.IotHub",
87+
"endpointType": "Microsoft.Devices/IotHubs",
8888
"address": "https://myendpoint2.westeurope-1.iothub.azure.net",
8989
"version": "2.0"
9090
}
@@ -139,12 +139,12 @@ Attribute : {
139139
DiscoveryId : myDiscoveryId
140140
EndpointInbound : {
141141
"endpoint1": {
142-
"endpointType": "Microsoft.IotHub",
142+
"endpointType": "Microsoft.Devices/IotHubs",
143143
"address": "https://myendpoint1.westeurope-1.iothub.azure.net",
144144
"version": "1.0"
145145
},
146146
"endpoint2": {
147-
"endpointType": "Microsoft.IotHub",
147+
"endpointType": "Microsoft.Devices/IotHubs",
148148
"address": "https://myendpoint2.westeurope-1.iothub.azure.net",
149149
"version": "2.0"
150150
}
@@ -205,12 +205,12 @@ Attribute : {
205205
DiscoveryId : myDiscoveryId
206206
EndpointInbound : {
207207
"endpoint1": {
208-
"endpointType": "Microsoft.IotHub",
208+
"endpointType": "Microsoft.Devices/IotHubs",
209209
"address": "https://myendpoint1.westeurope-1.iothub.azure.net",
210210
"version": "1.0"
211211
},
212212
"endpoint2": {
213-
"endpointType": "Microsoft.IotHub",
213+
"endpointType": "Microsoft.Devices/IotHubs",
214214
"address": "https://myendpoint2.westeurope-1.iothub.azure.net",
215215
"version": "2.0"
216216
}

src/DeviceRegistry/DeviceRegistry.Autorest/docs/New-AzDeviceRegistryNamespaceDevice.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ $outboundAssigned = @{
5252
$endpointsInbound = @{
5353
"my-inbound-endpoint1" = @{
5454
Address = "https://my-inbound-endpoint1.westeurope-1.iothub.azure.net"
55-
EndpointType = "Microsoft.IotHub"
55+
EndpointType = "Microsoft.Devices/IotHubs"
5656
AuthenticationMethod = "Certificate"
5757
X509CredentialsCertificateSecretName = "my-certificate"
5858
}
5959
"my-inbound-endpoint2" = @{
6060
Address = "https://my-inbound-endpoint2.westeurope-1.iothub.azure.net"
61-
EndpointType = "Microsoft.IotHub"
61+
EndpointType = "Microsoft.Devices/IotHubs"
6262
AuthenticationMethod = "UsernamePassword"
6363
UsernamePasswordCredentialsUsernameSecretName = "my-username"
6464
UsernamePasswordCredentialsPasswordSecretName = "my-password"
@@ -90,7 +90,7 @@ EndpointsInbound : {
9090
},
9191
"method": "Certificate"
9292
},
93-
"endpointType": "Microsoft.IotHub",
93+
"endpointType": "Microsoft.Devices/IotHubs",
9494
"address": "https://my-inbound-endpoint1.westeurope-1.iothub.azure.net"
9595
},
9696
"my-inbound-endpoint2": {
@@ -101,7 +101,7 @@ EndpointsInbound : {
101101
},
102102
"method": "UsernamePassword"
103103
},
104-
"endpointType": "Microsoft.IotHub",
104+
"endpointType": "Microsoft.Devices/IotHubs",
105105
"address": "https://my-inbound-endpoint2.westeurope-1.iothub.azure.net"
106106
}
107107
}
@@ -173,7 +173,7 @@ EndpointsInbound : {
173173
},
174174
"method": "Certificate"
175175
},
176-
"endpointType": "Microsoft.IotHub",
176+
"endpointType": "Microsoft.Devices/IotHubs",
177177
"address": "https://my-inbound-endpoint1.westeurope-1.iothub.azure.net"
178178
},
179179
"my-inbound-endpoint2": {
@@ -184,7 +184,7 @@ EndpointsInbound : {
184184
},
185185
"method": "UsernamePassword"
186186
},
187-
"endpointType": "Microsoft.IotHub",
187+
"endpointType": "Microsoft.Devices/IotHubs",
188188
"address": "https://my-inbound-endpoint2.westeurope-1.iothub.azure.net"
189189
}
190190
}
@@ -257,7 +257,7 @@ EndpointsInbound : {
257257
},
258258
"method": "Certificate"
259259
},
260-
"endpointType": "Microsoft.IotHub",
260+
"endpointType": "Microsoft.Devices/IotHubs",
261261
"address": "https://my-inbound-endpoint1.westeurope-1.iothub.azure.net"
262262
},
263263
"my-inbound-endpoint2": {
@@ -268,7 +268,7 @@ EndpointsInbound : {
268268
},
269269
"method": "UsernamePassword"
270270
},
271-
"endpointType": "Microsoft.IotHub",
271+
"endpointType": "Microsoft.Devices/IotHubs",
272272
"address": "https://my-inbound-endpoint2.westeurope-1.iothub.azure.net"
273273
}
274274
}

src/DeviceRegistry/DeviceRegistry.Autorest/docs/New-AzDeviceRegistryNamespaceDiscoveredDevice.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ $outboundAssigned = @{
5252
$endpointInbound = @{
5353
"endpoint1" = @{
5454
Address = "https://myendpoint1.westeurope-1.iothub.azure.net"
55-
EndpointType = "Microsoft.IotHub"
55+
EndpointType = "Microsoft.Devices/IotHubs"
5656
Version = "1.0"
5757
}
5858
"endpoint2" = @{
5959
Address = "https://myendpoint2.westeurope-1.iothub.azure.net"
60-
EndpointType = "Microsoft.IotHub"
60+
EndpointType = "Microsoft.Devices/IotHubs"
6161
Version = "2.0"
6262
}
6363
}
@@ -76,12 +76,12 @@ Attribute : {
7676
DiscoveryId : myDiscoveryId
7777
EndpointInbound : {
7878
"endpoint1": {
79-
"endpointType": "Microsoft.IotHub",
79+
"endpointType": "Microsoft.Devices/IotHubs",
8080
"address": "https://myendpoint1.westeurope-1.iothub.azure.net",
8181
"version": "1.0"
8282
},
8383
"endpoint2": {
84-
"endpointType": "Microsoft.IotHub",
84+
"endpointType": "Microsoft.Devices/IotHubs",
8585
"address": "https://myendpoint2.westeurope-1.iothub.azure.net",
8686
"version": "2.0"
8787
}
@@ -135,12 +135,12 @@ Attribute : {
135135
DiscoveryId : myDiscoveryId
136136
EndpointInbound : {
137137
"endpoint1": {
138-
"endpointType": "Microsoft.IotHub",
138+
"endpointType": "Microsoft.Devices/IotHubs",
139139
"address": "https://myendpoint1.westeurope-1.iothub.azure.net",
140140
"version": "1.0"
141141
},
142142
"endpoint2": {
143-
"endpointType": "Microsoft.IotHub",
143+
"endpointType": "Microsoft.Devices/IotHubs",
144144
"address": "https://myendpoint2.westeurope-1.iothub.azure.net",
145145
"version": "2.0"
146146
}
@@ -195,12 +195,12 @@ Attribute : {
195195
DiscoveryId : myDiscoveryId
196196
EndpointInbound : {
197197
"endpoint1": {
198-
"endpointType": "Microsoft.IotHub",
198+
"endpointType": "Microsoft.Devices/IotHubs",
199199
"address": "https://myendpoint1.westeurope-1.iothub.azure.net",
200200
"version": "1.0"
201201
},
202202
"endpoint2": {
203-
"endpointType": "Microsoft.IotHub",
203+
"endpointType": "Microsoft.Devices/IotHubs",
204204
"address": "https://myendpoint2.westeurope-1.iothub.azure.net",
205205
"version": "2.0"
206206
}

0 commit comments

Comments
 (0)