@azure/arm-deviceprovisioningservices 3.0.0 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/LICENSE +21 -0
  3. package/LICENSE.txt +1 -1
  4. package/README.md +70 -78
  5. package/dist/index.js +3185 -0
  6. package/dist/index.js.map +1 -0
  7. package/dist/index.min.js +1 -0
  8. package/dist/index.min.js.map +1 -0
  9. package/dist-esm/src/index.d.ts +5 -0
  10. package/dist-esm/src/index.d.ts.map +1 -0
  11. package/dist-esm/src/index.js +12 -0
  12. package/dist-esm/src/index.js.map +1 -0
  13. package/dist-esm/src/iotDpsClient.d.ts +20 -0
  14. package/dist-esm/src/iotDpsClient.d.ts.map +1 -0
  15. package/dist-esm/src/iotDpsClient.js +53 -0
  16. package/dist-esm/src/iotDpsClient.js.map +1 -0
  17. package/dist-esm/src/lroImpl.d.ts +16 -0
  18. package/dist-esm/src/lroImpl.d.ts.map +1 -0
  19. package/dist-esm/src/lroImpl.js +29 -0
  20. package/dist-esm/src/lroImpl.js.map +1 -0
  21. package/dist-esm/src/models/index.d.ts +878 -0
  22. package/dist-esm/src/models/index.d.ts.map +1 -0
  23. package/dist-esm/src/models/index.js +80 -0
  24. package/dist-esm/src/models/index.js.map +1 -0
  25. package/dist-esm/src/models/mappers.d.ts +37 -0
  26. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  27. package/{esm → dist-esm/src}/models/mappers.js +508 -496
  28. package/dist-esm/src/models/mappers.js.map +1 -0
  29. package/dist-esm/src/models/parameters.d.ts +34 -0
  30. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  31. package/{esm → dist-esm/src}/models/parameters.js +136 -115
  32. package/dist-esm/src/models/parameters.js.map +1 -0
  33. package/dist-esm/src/operations/dpsCertificate.d.ts +70 -0
  34. package/dist-esm/src/operations/dpsCertificate.d.ts.map +1 -0
  35. package/dist-esm/src/operations/dpsCertificate.js +289 -0
  36. package/dist-esm/src/operations/dpsCertificate.js.map +1 -0
  37. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  38. package/dist-esm/src/operations/index.d.ts.map +1 -0
  39. package/{esm → dist-esm/src}/operations/index.js +1 -2
  40. package/dist-esm/src/operations/index.js.map +1 -0
  41. package/dist-esm/src/operations/iotDpsResource.d.ts +253 -0
  42. package/dist-esm/src/operations/iotDpsResource.d.ts.map +1 -0
  43. package/dist-esm/src/operations/iotDpsResource.js +1154 -0
  44. package/dist-esm/src/operations/iotDpsResource.js.map +1 -0
  45. package/dist-esm/src/operations/operations.d.ts +32 -0
  46. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  47. package/dist-esm/src/operations/operations.js +120 -0
  48. package/dist-esm/src/operations/operations.js.map +1 -0
  49. package/dist-esm/src/operationsInterfaces/dpsCertificate.d.ts +62 -0
  50. package/dist-esm/src/operationsInterfaces/dpsCertificate.d.ts.map +1 -0
  51. package/{esm/models/operationsMappers.js → dist-esm/src/operationsInterfaces/dpsCertificate.js} +2 -2
  52. package/dist-esm/src/operationsInterfaces/dpsCertificate.js.map +1 -0
  53. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  54. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  55. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  56. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  57. package/dist-esm/src/operationsInterfaces/iotDpsResource.d.ts +183 -0
  58. package/dist-esm/src/operationsInterfaces/iotDpsResource.d.ts.map +1 -0
  59. package/dist-esm/src/operationsInterfaces/iotDpsResource.js +9 -0
  60. package/dist-esm/src/operationsInterfaces/iotDpsResource.js.map +1 -0
  61. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  62. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  63. package/{esm/models/index.js → dist-esm/src/operationsInterfaces/operations.js} +2 -1
  64. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  65. package/dist-esm/test/sampleTest.d.ts +2 -0
  66. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  67. package/dist-esm/test/sampleTest.js +40 -0
  68. package/dist-esm/test/sampleTest.js.map +1 -0
  69. package/package.json +83 -24
  70. package/review/arm-deviceprovisioningservices.api.md +719 -0
  71. package/rollup.config.js +181 -30
  72. package/src/index.ts +12 -0
  73. package/src/iotDpsClient.ts +72 -36
  74. package/src/lroImpl.ts +34 -0
  75. package/src/models/index.ts +741 -1288
  76. package/src/models/mappers.ts +515 -499
  77. package/src/models/parameters.ts +179 -116
  78. package/src/operations/dpsCertificate.ts +201 -304
  79. package/src/operations/index.ts +1 -2
  80. package/src/operations/iotDpsResource.ts +1157 -872
  81. package/src/operations/operations.ts +85 -73
  82. package/src/operationsInterfaces/dpsCertificate.ts +118 -0
  83. package/src/{models/operationsMappers.ts → operationsInterfaces/index.ts} +3 -6
  84. package/src/operationsInterfaces/iotDpsResource.ts +351 -0
  85. package/src/operationsInterfaces/operations.ts +22 -0
  86. package/tsconfig.json +20 -7
  87. package/types/arm-deviceprovisioningservices.d.ts +1261 -0
  88. package/types/tsdoc-metadata.json +11 -0
  89. package/dist/arm-deviceprovisioningservices.js +0 -2869
  90. package/dist/arm-deviceprovisioningservices.js.map +0 -1
  91. package/dist/arm-deviceprovisioningservices.min.js +0 -1
  92. package/dist/arm-deviceprovisioningservices.min.js.map +0 -1
  93. package/esm/iotDpsClient.d.ts +0 -26
  94. package/esm/iotDpsClient.d.ts.map +0 -1
  95. package/esm/iotDpsClient.js +0 -39
  96. package/esm/iotDpsClient.js.map +0 -1
  97. package/esm/iotDpsClientContext.d.ts +0 -22
  98. package/esm/iotDpsClientContext.d.ts.map +0 -1
  99. package/esm/iotDpsClientContext.js +0 -60
  100. package/esm/iotDpsClientContext.js.map +0 -1
  101. package/esm/models/dpsCertificateMappers.d.ts +0 -2
  102. package/esm/models/dpsCertificateMappers.d.ts.map +0 -1
  103. package/esm/models/dpsCertificateMappers.js +0 -9
  104. package/esm/models/dpsCertificateMappers.js.map +0 -1
  105. package/esm/models/index.d.ts +0 -1433
  106. package/esm/models/index.d.ts.map +0 -1
  107. package/esm/models/index.js.map +0 -1
  108. package/esm/models/iotDpsResourceMappers.d.ts +0 -2
  109. package/esm/models/iotDpsResourceMappers.d.ts.map +0 -1
  110. package/esm/models/iotDpsResourceMappers.js +0 -9
  111. package/esm/models/iotDpsResourceMappers.js.map +0 -1
  112. package/esm/models/mappers.d.ts +0 -38
  113. package/esm/models/mappers.d.ts.map +0 -1
  114. package/esm/models/mappers.js.map +0 -1
  115. package/esm/models/operationsMappers.d.ts +0 -2
  116. package/esm/models/operationsMappers.d.ts.map +0 -1
  117. package/esm/models/operationsMappers.js.map +0 -1
  118. package/esm/models/parameters.d.ts +0 -26
  119. package/esm/models/parameters.d.ts.map +0 -1
  120. package/esm/models/parameters.js.map +0 -1
  121. package/esm/operations/dpsCertificate.d.ts +0 -188
  122. package/esm/operations/dpsCertificate.d.ts.map +0 -1
  123. package/esm/operations/dpsCertificate.js +0 -264
  124. package/esm/operations/dpsCertificate.js.map +0 -1
  125. package/esm/operations/index.d.ts.map +0 -1
  126. package/esm/operations/index.js.map +0 -1
  127. package/esm/operations/iotDpsResource.d.ts +0 -473
  128. package/esm/operations/iotDpsResource.d.ts.map +0 -1
  129. package/esm/operations/iotDpsResource.js +0 -834
  130. package/esm/operations/iotDpsResource.js.map +0 -1
  131. package/esm/operations/operations.d.ts +0 -46
  132. package/esm/operations/operations.d.ts.map +0 -1
  133. package/esm/operations/operations.js +0 -79
  134. package/esm/operations/operations.js.map +0 -1
  135. package/src/iotDpsClientContext.ts +0 -67
  136. package/src/models/dpsCertificateMappers.ts +0 -30
  137. package/src/models/iotDpsResourceMappers.ts +0 -40
@@ -5,30 +5,114 @@
5
5
  * Code generated by Microsoft (R) AutoRest Code Generator.
6
6
  * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
7
  */
8
- import { __assign } from "tslib";
9
- import { CloudErrorMapper, BaseResourceMapper } from "@azure/ms-rest-azure-js";
10
- export var CloudError = CloudErrorMapper;
11
- export var BaseResource = BaseResourceMapper;
12
- export var ErrorMesssage = {
13
- serializedName: "ErrorMesssage",
8
+ export const OperationListResult = {
14
9
  type: {
15
10
  name: "Composite",
16
- className: "ErrorMesssage",
11
+ className: "OperationListResult",
12
+ modelProperties: {
13
+ value: {
14
+ serializedName: "value",
15
+ readOnly: true,
16
+ type: {
17
+ name: "Sequence",
18
+ element: {
19
+ type: {
20
+ name: "Composite",
21
+ className: "Operation"
22
+ }
23
+ }
24
+ }
25
+ },
26
+ nextLink: {
27
+ serializedName: "nextLink",
28
+ readOnly: true,
29
+ type: {
30
+ name: "String"
31
+ }
32
+ }
33
+ }
34
+ }
35
+ };
36
+ export const Operation = {
37
+ type: {
38
+ name: "Composite",
39
+ className: "Operation",
40
+ modelProperties: {
41
+ name: {
42
+ serializedName: "name",
43
+ readOnly: true,
44
+ type: {
45
+ name: "String"
46
+ }
47
+ },
48
+ display: {
49
+ serializedName: "display",
50
+ type: {
51
+ name: "Composite",
52
+ className: "OperationDisplay"
53
+ }
54
+ }
55
+ }
56
+ }
57
+ };
58
+ export const OperationDisplay = {
59
+ type: {
60
+ name: "Composite",
61
+ className: "OperationDisplay",
62
+ modelProperties: {
63
+ provider: {
64
+ serializedName: "provider",
65
+ readOnly: true,
66
+ type: {
67
+ name: "String"
68
+ }
69
+ },
70
+ resource: {
71
+ serializedName: "resource",
72
+ readOnly: true,
73
+ type: {
74
+ name: "String"
75
+ }
76
+ },
77
+ operation: {
78
+ serializedName: "operation",
79
+ readOnly: true,
80
+ type: {
81
+ name: "String"
82
+ }
83
+ }
84
+ }
85
+ }
86
+ };
87
+ export const ErrorDetails = {
88
+ type: {
89
+ name: "Composite",
90
+ className: "ErrorDetails",
17
91
  modelProperties: {
18
92
  code: {
19
93
  serializedName: "code",
94
+ readOnly: true,
95
+ type: {
96
+ name: "String"
97
+ }
98
+ },
99
+ httpStatusCode: {
100
+ serializedName: "httpStatusCode",
101
+ readOnly: true,
20
102
  type: {
21
103
  name: "String"
22
104
  }
23
105
  },
24
106
  message: {
25
107
  serializedName: "message",
108
+ readOnly: true,
26
109
  type: {
27
110
  name: "String"
28
111
  }
29
112
  },
30
113
  details: {
31
114
  serializedName: "details",
115
+ readOnly: true,
32
116
  type: {
33
117
  name: "String"
34
118
  }
@@ -36,79 +120,106 @@ export var ErrorMesssage = {
36
120
  }
37
121
  }
38
122
  };
39
- export var AsyncOperationResult = {
40
- serializedName: "AsyncOperationResult",
123
+ export const CertificateResponse = {
41
124
  type: {
42
125
  name: "Composite",
43
- className: "AsyncOperationResult",
126
+ className: "CertificateResponse",
44
127
  modelProperties: {
45
- status: {
46
- serializedName: "status",
128
+ properties: {
129
+ serializedName: "properties",
130
+ type: {
131
+ name: "Composite",
132
+ className: "CertificateProperties"
133
+ }
134
+ },
135
+ id: {
136
+ serializedName: "id",
137
+ readOnly: true,
47
138
  type: {
48
139
  name: "String"
49
140
  }
50
141
  },
51
- error: {
52
- serializedName: "error",
142
+ name: {
143
+ serializedName: "name",
144
+ readOnly: true,
145
+ type: {
146
+ name: "String"
147
+ }
148
+ },
149
+ etag: {
150
+ serializedName: "etag",
151
+ readOnly: true,
152
+ type: {
153
+ name: "String"
154
+ }
155
+ },
156
+ type: {
157
+ serializedName: "type",
158
+ readOnly: true,
159
+ type: {
160
+ name: "String"
161
+ }
162
+ },
163
+ systemData: {
164
+ serializedName: "systemData",
53
165
  type: {
54
166
  name: "Composite",
55
- className: "ErrorMesssage"
167
+ className: "SystemData"
56
168
  }
57
169
  }
58
170
  }
59
171
  }
60
172
  };
61
- export var CertificateProperties = {
62
- serializedName: "CertificateProperties",
173
+ export const CertificateProperties = {
63
174
  type: {
64
175
  name: "Composite",
65
176
  className: "CertificateProperties",
66
177
  modelProperties: {
67
178
  subject: {
68
- readOnly: true,
69
179
  serializedName: "subject",
180
+ readOnly: true,
70
181
  type: {
71
182
  name: "String"
72
183
  }
73
184
  },
74
185
  expiry: {
75
- readOnly: true,
76
186
  serializedName: "expiry",
187
+ readOnly: true,
77
188
  type: {
78
189
  name: "DateTimeRfc1123"
79
190
  }
80
191
  },
81
192
  thumbprint: {
82
- readOnly: true,
83
193
  serializedName: "thumbprint",
194
+ readOnly: true,
84
195
  type: {
85
196
  name: "String"
86
197
  }
87
198
  },
88
199
  isVerified: {
89
- readOnly: true,
90
200
  serializedName: "isVerified",
201
+ readOnly: true,
91
202
  type: {
92
203
  name: "Boolean"
93
204
  }
94
205
  },
95
206
  certificate: {
96
- readOnly: true,
97
207
  serializedName: "certificate",
208
+ readOnly: true,
98
209
  type: {
99
210
  name: "ByteArray"
100
211
  }
101
212
  },
102
213
  created: {
103
- readOnly: true,
104
214
  serializedName: "created",
215
+ readOnly: true,
105
216
  type: {
106
217
  name: "DateTimeRfc1123"
107
218
  }
108
219
  },
109
220
  updated: {
110
- readOnly: true,
111
221
  serializedName: "updated",
222
+ readOnly: true,
112
223
  type: {
113
224
  name: "DateTimeRfc1123"
114
225
  }
@@ -116,73 +227,51 @@ export var CertificateProperties = {
116
227
  }
117
228
  }
118
229
  };
119
- export var CertificateResponse = {
120
- serializedName: "CertificateResponse",
230
+ export const SystemData = {
121
231
  type: {
122
232
  name: "Composite",
123
- className: "CertificateResponse",
233
+ className: "SystemData",
124
234
  modelProperties: {
125
- properties: {
126
- serializedName: "properties",
235
+ createdBy: {
236
+ serializedName: "createdBy",
127
237
  type: {
128
- name: "Composite",
129
- className: "CertificateProperties"
238
+ name: "String"
130
239
  }
131
240
  },
132
- id: {
133
- readOnly: true,
134
- serializedName: "id",
241
+ createdByType: {
242
+ serializedName: "createdByType",
135
243
  type: {
136
244
  name: "String"
137
245
  }
138
246
  },
139
- name: {
140
- readOnly: true,
141
- serializedName: "name",
247
+ createdAt: {
248
+ serializedName: "createdAt",
142
249
  type: {
143
- name: "String"
250
+ name: "DateTime"
144
251
  }
145
252
  },
146
- etag: {
147
- readOnly: true,
148
- serializedName: "etag",
253
+ lastModifiedBy: {
254
+ serializedName: "lastModifiedBy",
149
255
  type: {
150
256
  name: "String"
151
257
  }
152
258
  },
153
- type: {
154
- readOnly: true,
155
- serializedName: "type",
259
+ lastModifiedByType: {
260
+ serializedName: "lastModifiedByType",
156
261
  type: {
157
262
  name: "String"
158
263
  }
159
- }
160
- }
161
- }
162
- };
163
- export var CertificateListDescription = {
164
- serializedName: "CertificateListDescription",
165
- type: {
166
- name: "Composite",
167
- className: "CertificateListDescription",
168
- modelProperties: {
169
- value: {
170
- serializedName: "value",
264
+ },
265
+ lastModifiedAt: {
266
+ serializedName: "lastModifiedAt",
171
267
  type: {
172
- name: "Sequence",
173
- element: {
174
- type: {
175
- name: "Composite",
176
- className: "CertificateResponse"
177
- }
178
- }
268
+ name: "DateTime"
179
269
  }
180
270
  }
181
271
  }
182
272
  }
183
273
  };
184
- export var CertificateBodyDescription = {
185
- serializedName: "CertificateBodyDescription",
274
+ export const CertificateBodyDescription = {
186
275
  type: {
187
276
  name: "Composite",
188
277
  className: "CertificateBodyDescription",
@@ -202,61 +291,136 @@ export var CertificateBodyDescription = {
202
291
  }
203
292
  }
204
293
  };
205
- export var IotDpsSkuInfo = {
206
- serializedName: "IotDpsSkuInfo",
294
+ export const IotDpsPropertiesDescription = {
207
295
  type: {
208
296
  name: "Composite",
209
- className: "IotDpsSkuInfo",
297
+ className: "IotDpsPropertiesDescription",
210
298
  modelProperties: {
211
- name: {
212
- serializedName: "name",
299
+ state: {
300
+ serializedName: "state",
213
301
  type: {
214
302
  name: "String"
215
303
  }
216
304
  },
217
- tier: {
305
+ publicNetworkAccess: {
306
+ serializedName: "publicNetworkAccess",
307
+ type: {
308
+ name: "String"
309
+ }
310
+ },
311
+ ipFilterRules: {
312
+ serializedName: "ipFilterRules",
313
+ type: {
314
+ name: "Sequence",
315
+ element: {
316
+ type: {
317
+ name: "Composite",
318
+ className: "IpFilterRule"
319
+ }
320
+ }
321
+ }
322
+ },
323
+ privateEndpointConnections: {
324
+ serializedName: "privateEndpointConnections",
325
+ type: {
326
+ name: "Sequence",
327
+ element: {
328
+ type: {
329
+ name: "Composite",
330
+ className: "PrivateEndpointConnection"
331
+ }
332
+ }
333
+ }
334
+ },
335
+ provisioningState: {
336
+ serializedName: "provisioningState",
337
+ type: {
338
+ name: "String"
339
+ }
340
+ },
341
+ iotHubs: {
342
+ serializedName: "iotHubs",
343
+ type: {
344
+ name: "Sequence",
345
+ element: {
346
+ type: {
347
+ name: "Composite",
348
+ className: "IotHubDefinitionDescription"
349
+ }
350
+ }
351
+ }
352
+ },
353
+ allocationPolicy: {
354
+ serializedName: "allocationPolicy",
355
+ type: {
356
+ name: "String"
357
+ }
358
+ },
359
+ serviceOperationsHostName: {
360
+ serializedName: "serviceOperationsHostName",
218
361
  readOnly: true,
219
- serializedName: "tier",
220
362
  type: {
221
363
  name: "String"
222
364
  }
223
365
  },
224
- capacity: {
225
- serializedName: "capacity",
366
+ deviceProvisioningHostName: {
367
+ serializedName: "deviceProvisioningHostName",
368
+ readOnly: true,
226
369
  type: {
227
- name: "Number"
370
+ name: "String"
371
+ }
372
+ },
373
+ idScope: {
374
+ serializedName: "idScope",
375
+ readOnly: true,
376
+ type: {
377
+ name: "String"
378
+ }
379
+ },
380
+ authorizationPolicies: {
381
+ serializedName: "authorizationPolicies",
382
+ type: {
383
+ name: "Sequence",
384
+ element: {
385
+ type: {
386
+ name: "Composite",
387
+ className: "SharedAccessSignatureAuthorizationRuleAccessRightsDescription"
388
+ }
389
+ }
390
+ }
391
+ },
392
+ enableDataResidency: {
393
+ serializedName: "enableDataResidency",
394
+ type: {
395
+ name: "Boolean"
228
396
  }
229
397
  }
230
398
  }
231
399
  }
232
400
  };
233
- export var IpFilterRule = {
234
- serializedName: "IpFilterRule",
401
+ export const IpFilterRule = {
235
402
  type: {
236
403
  name: "Composite",
237
404
  className: "IpFilterRule",
238
405
  modelProperties: {
239
406
  filterName: {
240
- required: true,
241
407
  serializedName: "filterName",
408
+ required: true,
242
409
  type: {
243
410
  name: "String"
244
411
  }
245
412
  },
246
413
  action: {
247
- required: true,
248
414
  serializedName: "action",
415
+ required: true,
249
416
  type: {
250
417
  name: "Enum",
251
- allowedValues: [
252
- "Accept",
253
- "Reject"
254
- ]
418
+ allowedValues: ["Accept", "Reject"]
255
419
  }
256
420
  },
257
421
  ipMask: {
258
- required: true,
259
422
  serializedName: "ipMask",
423
+ required: true,
260
424
  type: {
261
425
  name: "String"
262
426
  }
@@ -265,63 +429,59 @@ export var IpFilterRule = {
265
429
  serializedName: "target",
266
430
  type: {
267
431
  name: "Enum",
268
- allowedValues: [
269
- "all",
270
- "serviceApi",
271
- "deviceApi"
272
- ]
432
+ allowedValues: ["all", "serviceApi", "deviceApi"]
273
433
  }
274
434
  }
275
435
  }
276
436
  }
277
437
  };
278
- export var PrivateEndpoint = {
279
- serializedName: "PrivateEndpoint",
438
+ export const PrivateEndpointConnection = {
280
439
  type: {
281
440
  name: "Composite",
282
- className: "PrivateEndpoint",
441
+ className: "PrivateEndpointConnection",
283
442
  modelProperties: {
284
443
  id: {
285
- readOnly: true,
286
444
  serializedName: "id",
445
+ readOnly: true,
287
446
  type: {
288
447
  name: "String"
289
448
  }
290
- }
291
- }
292
- }
293
- };
294
- export var PrivateLinkServiceConnectionState = {
295
- serializedName: "PrivateLinkServiceConnectionState",
296
- type: {
297
- name: "Composite",
298
- className: "PrivateLinkServiceConnectionState",
299
- modelProperties: {
300
- status: {
301
- required: true,
302
- serializedName: "status",
449
+ },
450
+ name: {
451
+ constraints: {
452
+ Pattern: new RegExp("^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$")
453
+ },
454
+ serializedName: "name",
455
+ readOnly: true,
303
456
  type: {
304
457
  name: "String"
305
458
  }
306
459
  },
307
- description: {
308
- required: true,
309
- serializedName: "description",
460
+ type: {
461
+ serializedName: "type",
462
+ readOnly: true,
310
463
  type: {
311
464
  name: "String"
312
465
  }
313
466
  },
314
- actionsRequired: {
315
- serializedName: "actionsRequired",
467
+ properties: {
468
+ serializedName: "properties",
316
469
  type: {
317
- name: "String"
470
+ name: "Composite",
471
+ className: "PrivateEndpointConnectionProperties"
472
+ }
473
+ },
474
+ systemData: {
475
+ serializedName: "systemData",
476
+ type: {
477
+ name: "Composite",
478
+ className: "SystemData"
318
479
  }
319
480
  }
320
481
  }
321
482
  }
322
483
  };
323
- export var PrivateEndpointConnectionProperties = {
324
- serializedName: "PrivateEndpointConnectionProperties",
484
+ export const PrivateEndpointConnectionProperties = {
325
485
  type: {
326
486
  name: "Composite",
327
487
  className: "PrivateEndpointConnectionProperties",
@@ -334,7 +494,6 @@ export var PrivateEndpointConnectionProperties = {
334
494
  }
335
495
  },
336
496
  privateLinkServiceConnectionState: {
337
- required: true,
338
497
  serializedName: "privateLinkServiceConnectionState",
339
498
  type: {
340
499
  name: "Composite",
@@ -344,49 +503,50 @@ export var PrivateEndpointConnectionProperties = {
344
503
  }
345
504
  }
346
505
  };
347
- export var PrivateEndpointConnection = {
348
- serializedName: "PrivateEndpointConnection",
506
+ export const PrivateEndpoint = {
349
507
  type: {
350
508
  name: "Composite",
351
- className: "PrivateEndpointConnection",
509
+ className: "PrivateEndpoint",
352
510
  modelProperties: {
353
511
  id: {
354
- readOnly: true,
355
512
  serializedName: "id",
513
+ readOnly: true,
514
+ type: {
515
+ name: "String"
516
+ }
517
+ }
518
+ }
519
+ }
520
+ };
521
+ export const PrivateLinkServiceConnectionState = {
522
+ type: {
523
+ name: "Composite",
524
+ className: "PrivateLinkServiceConnectionState",
525
+ modelProperties: {
526
+ status: {
527
+ serializedName: "status",
528
+ required: true,
356
529
  type: {
357
530
  name: "String"
358
531
  }
359
532
  },
360
- name: {
361
- readOnly: true,
362
- serializedName: "name",
363
- constraints: {
364
- Pattern: /^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$/
365
- },
533
+ description: {
534
+ serializedName: "description",
535
+ required: true,
366
536
  type: {
367
537
  name: "String"
368
538
  }
369
539
  },
370
- type: {
371
- readOnly: true,
372
- serializedName: "type",
540
+ actionsRequired: {
541
+ serializedName: "actionsRequired",
373
542
  type: {
374
543
  name: "String"
375
544
  }
376
- },
377
- properties: {
378
- required: true,
379
- serializedName: "properties",
380
- type: {
381
- name: "Composite",
382
- className: "PrivateEndpointConnectionProperties"
383
- }
384
545
  }
385
546
  }
386
547
  }
387
548
  };
388
- export var IotHubDefinitionDescription = {
389
- serializedName: "IotHubDefinitionDescription",
549
+ export const IotHubDefinitionDescription = {
390
550
  type: {
391
551
  name: "Composite",
392
552
  className: "IotHubDefinitionDescription",
@@ -404,22 +564,22 @@ export var IotHubDefinitionDescription = {
404
564
  }
405
565
  },
406
566
  name: {
407
- readOnly: true,
408
567
  serializedName: "name",
568
+ readOnly: true,
409
569
  type: {
410
570
  name: "String"
411
571
  }
412
572
  },
413
573
  connectionString: {
414
- required: true,
415
574
  serializedName: "connectionString",
575
+ required: true,
416
576
  type: {
417
577
  name: "String"
418
578
  }
419
579
  },
420
580
  location: {
421
- required: true,
422
581
  serializedName: "location",
582
+ required: true,
423
583
  type: {
424
584
  name: "String"
425
585
  }
@@ -427,15 +587,14 @@ export var IotHubDefinitionDescription = {
427
587
  }
428
588
  }
429
589
  };
430
- export var SharedAccessSignatureAuthorizationRuleAccessRightsDescription = {
431
- serializedName: "SharedAccessSignatureAuthorizationRule_AccessRightsDescription_",
590
+ export const SharedAccessSignatureAuthorizationRuleAccessRightsDescription = {
432
591
  type: {
433
592
  name: "Composite",
434
593
  className: "SharedAccessSignatureAuthorizationRuleAccessRightsDescription",
435
594
  modelProperties: {
436
595
  keyName: {
437
- required: true,
438
596
  serializedName: "keyName",
597
+ required: true,
439
598
  type: {
440
599
  name: "String"
441
600
  }
@@ -453,8 +612,8 @@ export var SharedAccessSignatureAuthorizationRuleAccessRightsDescription = {
453
612
  }
454
613
  },
455
614
  rights: {
456
- required: true,
457
615
  serializedName: "rights",
616
+ required: true,
458
617
  type: {
459
618
  name: "String"
460
619
  }
@@ -462,141 +621,65 @@ export var SharedAccessSignatureAuthorizationRuleAccessRightsDescription = {
462
621
  }
463
622
  }
464
623
  };
465
- export var IotDpsPropertiesDescription = {
466
- serializedName: "IotDpsPropertiesDescription",
624
+ export const IotDpsSkuInfo = {
467
625
  type: {
468
626
  name: "Composite",
469
- className: "IotDpsPropertiesDescription",
627
+ className: "IotDpsSkuInfo",
470
628
  modelProperties: {
471
- state: {
472
- serializedName: "state",
473
- type: {
474
- name: "String"
475
- }
476
- },
477
- publicNetworkAccess: {
478
- serializedName: "publicNetworkAccess",
479
- type: {
480
- name: "String"
481
- }
482
- },
483
- ipFilterRules: {
484
- serializedName: "ipFilterRules",
485
- type: {
486
- name: "Sequence",
487
- element: {
488
- type: {
489
- name: "Composite",
490
- className: "IpFilterRule"
491
- }
492
- }
493
- }
494
- },
495
- privateEndpointConnections: {
496
- serializedName: "privateEndpointConnections",
497
- type: {
498
- name: "Sequence",
499
- element: {
500
- type: {
501
- name: "Composite",
502
- className: "PrivateEndpointConnection"
503
- }
504
- }
505
- }
506
- },
507
- provisioningState: {
508
- serializedName: "provisioningState",
509
- type: {
510
- name: "String"
511
- }
512
- },
513
- iotHubs: {
514
- serializedName: "iotHubs",
515
- type: {
516
- name: "Sequence",
517
- element: {
518
- type: {
519
- name: "Composite",
520
- className: "IotHubDefinitionDescription"
521
- }
522
- }
523
- }
524
- },
525
- allocationPolicy: {
526
- serializedName: "allocationPolicy",
527
- type: {
528
- name: "String"
529
- }
530
- },
531
- serviceOperationsHostName: {
532
- readOnly: true,
533
- serializedName: "serviceOperationsHostName",
534
- type: {
535
- name: "String"
536
- }
537
- },
538
- deviceProvisioningHostName: {
539
- readOnly: true,
540
- serializedName: "deviceProvisioningHostName",
629
+ name: {
630
+ serializedName: "name",
541
631
  type: {
542
632
  name: "String"
543
633
  }
544
634
  },
545
- idScope: {
635
+ tier: {
636
+ serializedName: "tier",
546
637
  readOnly: true,
547
- serializedName: "idScope",
548
638
  type: {
549
639
  name: "String"
550
640
  }
551
641
  },
552
- authorizationPolicies: {
553
- serializedName: "authorizationPolicies",
642
+ capacity: {
643
+ serializedName: "capacity",
554
644
  type: {
555
- name: "Sequence",
556
- element: {
557
- type: {
558
- name: "Composite",
559
- className: "SharedAccessSignatureAuthorizationRuleAccessRightsDescription"
560
- }
561
- }
645
+ name: "Number"
562
646
  }
563
647
  }
564
648
  }
565
649
  }
566
650
  };
567
- export var Resource = {
568
- serializedName: "Resource",
651
+ export const Resource = {
569
652
  type: {
570
653
  name: "Composite",
571
654
  className: "Resource",
572
655
  modelProperties: {
573
656
  id: {
574
- readOnly: true,
575
657
  serializedName: "id",
658
+ readOnly: true,
576
659
  type: {
577
660
  name: "String"
578
661
  }
579
662
  },
580
663
  name: {
581
- readOnly: true,
582
- serializedName: "name",
583
664
  constraints: {
584
- Pattern: /^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$/
665
+ Pattern: new RegExp("^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$")
585
666
  },
667
+ serializedName: "name",
668
+ readOnly: true,
586
669
  type: {
587
670
  name: "String"
588
671
  }
589
672
  },
590
673
  type: {
591
- readOnly: true,
592
674
  serializedName: "type",
675
+ readOnly: true,
593
676
  type: {
594
677
  name: "String"
595
678
  }
596
679
  },
597
680
  location: {
598
- required: true,
599
681
  serializedName: "location",
682
+ required: true,
600
683
  type: {
601
684
  name: "String"
602
685
  }
@@ -605,73 +688,40 @@ export var Resource = {
605
688
  serializedName: "tags",
606
689
  type: {
607
690
  name: "Dictionary",
608
- value: {
609
- type: {
610
- name: "String"
611
- }
612
- }
691
+ value: { type: { name: "String" } }
613
692
  }
614
693
  }
615
694
  }
616
695
  }
617
696
  };
618
- export var ProvisioningServiceDescription = {
619
- serializedName: "ProvisioningServiceDescription",
697
+ export const TagsResource = {
620
698
  type: {
621
699
  name: "Composite",
622
- className: "ProvisioningServiceDescription",
623
- modelProperties: __assign(__assign({}, Resource.type.modelProperties), { etag: {
624
- serializedName: "etag",
625
- type: {
626
- name: "String"
627
- }
628
- }, properties: {
629
- required: true,
630
- serializedName: "properties",
631
- type: {
632
- name: "Composite",
633
- className: "IotDpsPropertiesDescription"
634
- }
635
- }, sku: {
636
- required: true,
637
- serializedName: "sku",
700
+ className: "TagsResource",
701
+ modelProperties: {
702
+ tags: {
703
+ serializedName: "tags",
638
704
  type: {
639
- name: "Composite",
640
- className: "IotDpsSkuInfo"
705
+ name: "Dictionary",
706
+ value: { type: { name: "String" } }
641
707
  }
642
- } })
708
+ }
709
+ }
643
710
  }
644
711
  };
645
- export var GroupIdInformationProperties = {
646
- serializedName: "GroupIdInformationProperties",
712
+ export const CertificateListDescription = {
647
713
  type: {
648
714
  name: "Composite",
649
- className: "GroupIdInformationProperties",
715
+ className: "CertificateListDescription",
650
716
  modelProperties: {
651
- groupId: {
652
- serializedName: "groupId",
653
- type: {
654
- name: "String"
655
- }
656
- },
657
- requiredMembers: {
658
- serializedName: "requiredMembers",
659
- type: {
660
- name: "Sequence",
661
- element: {
662
- type: {
663
- name: "String"
664
- }
665
- }
666
- }
667
- },
668
- requiredZoneNames: {
669
- serializedName: "requiredZoneNames",
717
+ value: {
718
+ serializedName: "value",
670
719
  type: {
671
720
  name: "Sequence",
672
721
  element: {
673
722
  type: {
674
- name: "String"
723
+ name: "Composite",
724
+ className: "CertificateResponse"
675
725
  }
676
726
  }
677
727
  }
@@ -679,52 +729,10 @@ export var GroupIdInformationProperties = {
679
729
  }
680
730
  }
681
731
  };
682
- export var GroupIdInformation = {
683
- serializedName: "GroupIdInformation",
684
- type: {
685
- name: "Composite",
686
- className: "GroupIdInformation",
687
- modelProperties: {
688
- id: {
689
- readOnly: true,
690
- serializedName: "id",
691
- type: {
692
- name: "String"
693
- }
694
- },
695
- name: {
696
- readOnly: true,
697
- serializedName: "name",
698
- constraints: {
699
- Pattern: /^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$/
700
- },
701
- type: {
702
- name: "String"
703
- }
704
- },
705
- type: {
706
- readOnly: true,
707
- serializedName: "type",
708
- type: {
709
- name: "String"
710
- }
711
- },
712
- properties: {
713
- required: true,
714
- serializedName: "properties",
715
- type: {
716
- name: "Composite",
717
- className: "GroupIdInformationProperties"
718
- }
719
- }
720
- }
721
- }
722
- };
723
- export var PrivateLinkResources = {
724
- serializedName: "PrivateLinkResources",
732
+ export const ProvisioningServiceDescriptionListResult = {
725
733
  type: {
726
734
  name: "Composite",
727
- className: "PrivateLinkResources",
735
+ className: "ProvisioningServiceDescriptionListResult",
728
736
  modelProperties: {
729
737
  value: {
730
738
  serializedName: "value",
@@ -733,37 +741,14 @@ export var PrivateLinkResources = {
733
741
  element: {
734
742
  type: {
735
743
  name: "Composite",
736
- className: "GroupIdInformation"
744
+ className: "ProvisioningServiceDescription"
737
745
  }
738
746
  }
739
747
  }
740
- }
741
- }
742
- }
743
- };
744
- export var OperationDisplay = {
745
- serializedName: "Operation_display",
746
- type: {
747
- name: "Composite",
748
- className: "OperationDisplay",
749
- modelProperties: {
750
- provider: {
751
- readOnly: true,
752
- serializedName: "provider",
753
- type: {
754
- name: "String"
755
- }
756
- },
757
- resource: {
758
- readOnly: true,
759
- serializedName: "resource",
760
- type: {
761
- name: "String"
762
- }
763
748
  },
764
- operation: {
749
+ nextLink: {
750
+ serializedName: "nextLink",
765
751
  readOnly: true,
766
- serializedName: "operation",
767
752
  type: {
768
753
  name: "String"
769
754
  }
@@ -771,58 +756,45 @@ export var OperationDisplay = {
771
756
  }
772
757
  }
773
758
  };
774
- export var Operation = {
775
- serializedName: "Operation",
759
+ export const AsyncOperationResult = {
776
760
  type: {
777
761
  name: "Composite",
778
- className: "Operation",
762
+ className: "AsyncOperationResult",
779
763
  modelProperties: {
780
- name: {
781
- readOnly: true,
782
- serializedName: "name",
764
+ status: {
765
+ serializedName: "status",
783
766
  type: {
784
767
  name: "String"
785
768
  }
786
769
  },
787
- display: {
788
- serializedName: "display",
770
+ error: {
771
+ serializedName: "error",
789
772
  type: {
790
773
  name: "Composite",
791
- className: "OperationDisplay"
774
+ className: "ErrorMesssage"
792
775
  }
793
776
  }
794
777
  }
795
778
  }
796
779
  };
797
- export var ErrorDetails = {
798
- serializedName: "ErrorDetails",
780
+ export const ErrorMesssage = {
799
781
  type: {
800
782
  name: "Composite",
801
- className: "ErrorDetails",
783
+ className: "ErrorMesssage",
802
784
  modelProperties: {
803
785
  code: {
804
- readOnly: true,
805
786
  serializedName: "code",
806
787
  type: {
807
788
  name: "String"
808
789
  }
809
790
  },
810
- httpStatusCode: {
811
- readOnly: true,
812
- serializedName: "httpStatusCode",
813
- type: {
814
- name: "String"
815
- }
816
- },
817
791
  message: {
818
- readOnly: true,
819
792
  serializedName: "message",
820
793
  type: {
821
794
  name: "String"
822
795
  }
823
796
  },
824
797
  details: {
825
- readOnly: true,
826
798
  serializedName: "details",
827
799
  type: {
828
800
  name: "String"
@@ -831,14 +803,26 @@ export var ErrorDetails = {
831
803
  }
832
804
  }
833
805
  };
834
- export var IotDpsSkuDefinition = {
835
- serializedName: "IotDpsSkuDefinition",
806
+ export const IotDpsSkuDefinitionListResult = {
836
807
  type: {
837
808
  name: "Composite",
838
- className: "IotDpsSkuDefinition",
809
+ className: "IotDpsSkuDefinitionListResult",
839
810
  modelProperties: {
840
- name: {
841
- serializedName: "name",
811
+ value: {
812
+ serializedName: "value",
813
+ type: {
814
+ name: "Sequence",
815
+ element: {
816
+ type: {
817
+ name: "Composite",
818
+ className: "IotDpsSkuDefinition"
819
+ }
820
+ }
821
+ }
822
+ },
823
+ nextLink: {
824
+ serializedName: "nextLink",
825
+ readOnly: true,
842
826
  type: {
843
827
  name: "String"
844
828
  }
@@ -846,14 +830,12 @@ export var IotDpsSkuDefinition = {
846
830
  }
847
831
  }
848
832
  };
849
- export var OperationInputs = {
850
- serializedName: "OperationInputs",
833
+ export const IotDpsSkuDefinition = {
851
834
  type: {
852
835
  name: "Composite",
853
- className: "OperationInputs",
836
+ className: "IotDpsSkuDefinition",
854
837
  modelProperties: {
855
838
  name: {
856
- required: true,
857
839
  serializedName: "name",
858
840
  type: {
859
841
  name: "String"
@@ -862,55 +844,50 @@ export var OperationInputs = {
862
844
  }
863
845
  }
864
846
  };
865
- export var NameAvailabilityInfo = {
866
- serializedName: "NameAvailabilityInfo",
847
+ export const VerificationCodeResponse = {
867
848
  type: {
868
849
  name: "Composite",
869
- className: "NameAvailabilityInfo",
850
+ className: "VerificationCodeResponse",
870
851
  modelProperties: {
871
- nameAvailable: {
872
- serializedName: "nameAvailable",
852
+ name: {
853
+ serializedName: "name",
854
+ readOnly: true,
873
855
  type: {
874
- name: "Boolean"
856
+ name: "String"
875
857
  }
876
858
  },
877
- reason: {
878
- serializedName: "reason",
859
+ etag: {
860
+ serializedName: "etag",
861
+ readOnly: true,
879
862
  type: {
880
863
  name: "String"
881
864
  }
882
865
  },
883
- message: {
884
- serializedName: "message",
866
+ id: {
867
+ serializedName: "id",
868
+ readOnly: true,
885
869
  type: {
886
870
  name: "String"
887
871
  }
888
- }
889
- }
890
- }
891
- };
892
- export var TagsResource = {
893
- serializedName: "TagsResource",
894
- type: {
895
- name: "Composite",
896
- className: "TagsResource",
897
- modelProperties: {
898
- tags: {
899
- serializedName: "tags",
872
+ },
873
+ type: {
874
+ serializedName: "type",
875
+ readOnly: true,
900
876
  type: {
901
- name: "Dictionary",
902
- value: {
903
- type: {
904
- name: "String"
905
- }
906
- }
877
+ name: "String"
878
+ }
879
+ },
880
+ properties: {
881
+ serializedName: "properties",
882
+ type: {
883
+ name: "Composite",
884
+ className: "VerificationCodeResponseProperties"
907
885
  }
908
886
  }
909
887
  }
910
888
  }
911
889
  };
912
- export var VerificationCodeResponseProperties = {
913
- serializedName: "VerificationCodeResponse_properties",
890
+ export const VerificationCodeResponseProperties = {
914
891
  type: {
915
892
  name: "Composite",
916
893
  className: "VerificationCodeResponseProperties",
@@ -966,58 +943,28 @@ export var VerificationCodeResponseProperties = {
966
943
  }
967
944
  }
968
945
  };
969
- export var VerificationCodeResponse = {
970
- serializedName: "VerificationCodeResponse",
946
+ export const VerificationCodeRequest = {
971
947
  type: {
972
948
  name: "Composite",
973
- className: "VerificationCodeResponse",
949
+ className: "VerificationCodeRequest",
974
950
  modelProperties: {
975
- name: {
976
- readOnly: true,
977
- serializedName: "name",
978
- type: {
979
- name: "String"
980
- }
981
- },
982
- etag: {
983
- readOnly: true,
984
- serializedName: "etag",
985
- type: {
986
- name: "String"
987
- }
988
- },
989
- id: {
990
- readOnly: true,
991
- serializedName: "id",
992
- type: {
993
- name: "String"
994
- }
995
- },
996
- type: {
997
- readOnly: true,
998
- serializedName: "type",
951
+ certificate: {
952
+ serializedName: "certificate",
999
953
  type: {
1000
954
  name: "String"
1001
955
  }
1002
- },
1003
- properties: {
1004
- serializedName: "properties",
1005
- type: {
1006
- name: "Composite",
1007
- className: "VerificationCodeResponseProperties"
1008
- }
1009
956
  }
1010
957
  }
1011
958
  }
1012
959
  };
1013
- export var VerificationCodeRequest = {
1014
- serializedName: "VerificationCodeRequest",
960
+ export const OperationInputs = {
1015
961
  type: {
1016
962
  name: "Composite",
1017
- className: "VerificationCodeRequest",
963
+ className: "OperationInputs",
1018
964
  modelProperties: {
1019
- certificate: {
1020
- serializedName: "certificate",
965
+ name: {
966
+ serializedName: "name",
967
+ required: true,
1021
968
  type: {
1022
969
  name: "String"
1023
970
  }
@@ -1025,28 +972,25 @@ export var VerificationCodeRequest = {
1025
972
  }
1026
973
  }
1027
974
  };
1028
- export var OperationListResult = {
1029
- serializedName: "OperationListResult",
975
+ export const NameAvailabilityInfo = {
1030
976
  type: {
1031
977
  name: "Composite",
1032
- className: "OperationListResult",
978
+ className: "NameAvailabilityInfo",
1033
979
  modelProperties: {
1034
- value: {
1035
- readOnly: true,
1036
- serializedName: "",
980
+ nameAvailable: {
981
+ serializedName: "nameAvailable",
1037
982
  type: {
1038
- name: "Sequence",
1039
- element: {
1040
- type: {
1041
- name: "Composite",
1042
- className: "Operation"
1043
- }
1044
- }
983
+ name: "Boolean"
1045
984
  }
1046
985
  },
1047
- nextLink: {
1048
- readOnly: true,
1049
- serializedName: "nextLink",
986
+ reason: {
987
+ serializedName: "reason",
988
+ type: {
989
+ name: "String"
990
+ }
991
+ },
992
+ message: {
993
+ serializedName: "message",
1050
994
  type: {
1051
995
  name: "String"
1052
996
  }
@@ -1054,27 +998,26 @@ export var OperationListResult = {
1054
998
  }
1055
999
  }
1056
1000
  };
1057
- export var ProvisioningServiceDescriptionListResult = {
1058
- serializedName: "ProvisioningServiceDescriptionListResult",
1001
+ export const SharedAccessSignatureAuthorizationRuleListResult = {
1059
1002
  type: {
1060
1003
  name: "Composite",
1061
- className: "ProvisioningServiceDescriptionListResult",
1004
+ className: "SharedAccessSignatureAuthorizationRuleListResult",
1062
1005
  modelProperties: {
1063
1006
  value: {
1064
- serializedName: "",
1007
+ serializedName: "value",
1065
1008
  type: {
1066
1009
  name: "Sequence",
1067
1010
  element: {
1068
1011
  type: {
1069
1012
  name: "Composite",
1070
- className: "ProvisioningServiceDescription"
1013
+ className: "SharedAccessSignatureAuthorizationRuleAccessRightsDescription"
1071
1014
  }
1072
1015
  }
1073
1016
  }
1074
1017
  },
1075
1018
  nextLink: {
1076
- readOnly: true,
1077
1019
  serializedName: "nextLink",
1020
+ readOnly: true,
1078
1021
  type: {
1079
1022
  name: "String"
1080
1023
  }
@@ -1082,60 +1025,129 @@ export var ProvisioningServiceDescriptionListResult = {
1082
1025
  }
1083
1026
  }
1084
1027
  };
1085
- export var IotDpsSkuDefinitionListResult = {
1086
- serializedName: "IotDpsSkuDefinitionListResult",
1028
+ export const PrivateLinkResources = {
1087
1029
  type: {
1088
1030
  name: "Composite",
1089
- className: "IotDpsSkuDefinitionListResult",
1031
+ className: "PrivateLinkResources",
1090
1032
  modelProperties: {
1091
1033
  value: {
1092
- serializedName: "",
1034
+ serializedName: "value",
1093
1035
  type: {
1094
1036
  name: "Sequence",
1095
1037
  element: {
1096
1038
  type: {
1097
1039
  name: "Composite",
1098
- className: "IotDpsSkuDefinition"
1040
+ className: "GroupIdInformation"
1099
1041
  }
1100
1042
  }
1101
1043
  }
1044
+ }
1045
+ }
1046
+ }
1047
+ };
1048
+ export const GroupIdInformation = {
1049
+ type: {
1050
+ name: "Composite",
1051
+ className: "GroupIdInformation",
1052
+ modelProperties: {
1053
+ id: {
1054
+ serializedName: "id",
1055
+ readOnly: true,
1056
+ type: {
1057
+ name: "String"
1058
+ }
1102
1059
  },
1103
- nextLink: {
1060
+ name: {
1061
+ constraints: {
1062
+ Pattern: new RegExp("^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$")
1063
+ },
1064
+ serializedName: "name",
1065
+ readOnly: true,
1066
+ type: {
1067
+ name: "String"
1068
+ }
1069
+ },
1070
+ type: {
1071
+ serializedName: "type",
1104
1072
  readOnly: true,
1105
- serializedName: "nextLink",
1106
1073
  type: {
1107
1074
  name: "String"
1108
1075
  }
1076
+ },
1077
+ properties: {
1078
+ serializedName: "properties",
1079
+ type: {
1080
+ name: "Composite",
1081
+ className: "GroupIdInformationProperties"
1082
+ }
1109
1083
  }
1110
1084
  }
1111
1085
  }
1112
1086
  };
1113
- export var SharedAccessSignatureAuthorizationRuleListResult = {
1114
- serializedName: "SharedAccessSignatureAuthorizationRuleListResult",
1087
+ export const GroupIdInformationProperties = {
1115
1088
  type: {
1116
1089
  name: "Composite",
1117
- className: "SharedAccessSignatureAuthorizationRuleListResult",
1090
+ className: "GroupIdInformationProperties",
1118
1091
  modelProperties: {
1119
- value: {
1120
- serializedName: "",
1092
+ groupId: {
1093
+ serializedName: "groupId",
1094
+ type: {
1095
+ name: "String"
1096
+ }
1097
+ },
1098
+ requiredMembers: {
1099
+ serializedName: "requiredMembers",
1121
1100
  type: {
1122
1101
  name: "Sequence",
1123
1102
  element: {
1124
1103
  type: {
1125
- name: "Composite",
1126
- className: "SharedAccessSignatureAuthorizationRuleAccessRightsDescription"
1104
+ name: "String"
1127
1105
  }
1128
1106
  }
1129
1107
  }
1130
1108
  },
1131
- nextLink: {
1132
- readOnly: true,
1133
- serializedName: "nextLink",
1109
+ requiredZoneNames: {
1110
+ serializedName: "requiredZoneNames",
1134
1111
  type: {
1135
- name: "String"
1112
+ name: "Sequence",
1113
+ element: {
1114
+ type: {
1115
+ name: "String"
1116
+ }
1117
+ }
1136
1118
  }
1137
1119
  }
1138
1120
  }
1139
1121
  }
1140
1122
  };
1123
+ export const ProvisioningServiceDescription = {
1124
+ type: {
1125
+ name: "Composite",
1126
+ className: "ProvisioningServiceDescription",
1127
+ modelProperties: Object.assign(Object.assign({}, Resource.type.modelProperties), { etag: {
1128
+ serializedName: "etag",
1129
+ type: {
1130
+ name: "String"
1131
+ }
1132
+ }, properties: {
1133
+ serializedName: "properties",
1134
+ type: {
1135
+ name: "Composite",
1136
+ className: "IotDpsPropertiesDescription"
1137
+ }
1138
+ }, sku: {
1139
+ serializedName: "sku",
1140
+ type: {
1141
+ name: "Composite",
1142
+ className: "IotDpsSkuInfo"
1143
+ }
1144
+ }, systemData: {
1145
+ serializedName: "systemData",
1146
+ type: {
1147
+ name: "Composite",
1148
+ className: "SystemData"
1149
+ }
1150
+ } })
1151
+ }
1152
+ };
1141
1153
  //# sourceMappingURL=mappers.js.map