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