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