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