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