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