@azure/arm-storageimportexport 0.1.0 → 2.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/README.md +75 -73
- package/dist/index.js +1999 -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/models/index.d.ts +504 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +40 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +25 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +570 -422
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +17 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/parameters.js +79 -49
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/bitLockerKeys.d.ts +32 -0
- package/dist-esm/src/operations/bitLockerKeys.d.ts.map +1 -0
- package/dist-esm/src/operations/bitLockerKeys.js +101 -0
- package/dist-esm/src/operations/bitLockerKeys.js.map +1 -0
- package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/{esm → dist-esm/src}/operations/index.js +3 -5
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/jobs.d.ts +92 -0
- package/dist-esm/src/operations/jobs.d.ts.map +1 -0
- package/dist-esm/src/operations/jobs.js +376 -0
- package/dist-esm/src/operations/jobs.js.map +1 -0
- package/dist-esm/src/operations/locations.d.ts +35 -0
- package/dist-esm/src/operations/locations.d.ts.map +1 -0
- package/dist-esm/src/operations/locations.js +117 -0
- package/dist-esm/src/operations/locations.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +26 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +90 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/bitLockerKeys.d.ts +14 -0
- package/dist-esm/src/operationsInterfaces/bitLockerKeys.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/bitLockerKeys.js +9 -0
- package/dist-esm/src/operationsInterfaces/bitLockerKeys.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/jobs.d.ts +54 -0
- package/dist-esm/src/operationsInterfaces/jobs.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/jobs.js +9 -0
- package/dist-esm/src/operationsInterfaces/jobs.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/locations.d.ts +19 -0
- package/dist-esm/src/operationsInterfaces/locations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/locations.js +9 -0
- package/dist-esm/src/operationsInterfaces/locations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/src/storageImportExport.d.ts +22 -0
- package/dist-esm/src/storageImportExport.d.ts.map +1 -0
- package/dist-esm/src/storageImportExport.js +54 -0
- package/dist-esm/src/storageImportExport.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 +87 -26
- package/review/arm-storageimportexport.api.md +438 -0
- package/rollup.config.js +184 -27
- package/src/index.ts +12 -0
- package/src/models/index.ts +568 -0
- package/{lib → src}/models/mappers.ts +575 -424
- package/src/models/parameters.ts +171 -0
- package/src/operations/bitLockerKeys.ts +125 -0
- package/{lib → src}/operations/index.ts +3 -5
- package/src/operations/jobs.ts +467 -0
- package/src/operations/locations.ts +134 -0
- package/src/operations/operations.ts +98 -0
- package/src/operationsInterfaces/bitLockerKeys.ts +27 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/jobs.ts +99 -0
- package/src/operationsInterfaces/locations.ts +38 -0
- package/src/operationsInterfaces/operations.ts +22 -0
- package/src/storageImportExport.ts +92 -0
- package/tsconfig.json +20 -7
- package/types/arm-storageimportexport.d.ts +671 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-storageimportexport.js +0 -1754
- package/dist/arm-storageimportexport.js.map +0 -1
- package/dist/arm-storageimportexport.min.js +0 -1
- package/dist/arm-storageimportexport.min.js.map +0 -1
- package/esm/models/bitLockerKeysMappers.d.ts +0 -2
- package/esm/models/bitLockerKeysMappers.d.ts.map +0 -1
- package/esm/models/bitLockerKeysMappers.js +0 -11
- package/esm/models/bitLockerKeysMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -928
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -10
- package/esm/models/index.js.map +0 -1
- package/esm/models/jobsMappers.d.ts +0 -2
- package/esm/models/jobsMappers.d.ts.map +0 -1
- package/esm/models/jobsMappers.js +0 -11
- package/esm/models/jobsMappers.js.map +0 -1
- package/esm/models/locationsMappers.d.ts +0 -2
- package/esm/models/locationsMappers.d.ts.map +0 -1
- package/esm/models/locationsMappers.js +0 -11
- package/esm/models/locationsMappers.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -23
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -11
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -12
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/bitLockerKeys.d.ts +0 -37
- package/esm/operations/bitLockerKeys.d.ts.map +0 -1
- package/esm/operations/bitLockerKeys.js +0 -58
- package/esm/operations/bitLockerKeys.js.map +0 -1
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/jobs.d.ts +0 -189
- package/esm/operations/jobs.d.ts.map +0 -1
- package/esm/operations/jobs.js +0 -276
- package/esm/operations/jobs.js.map +0 -1
- package/esm/operations/locations.d.ts +0 -48
- package/esm/operations/locations.d.ts.map +0 -1
- package/esm/operations/locations.js +0 -79
- package/esm/operations/locations.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -28
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -51
- package/esm/operations/operations.js.map +0 -1
- package/esm/storageImportExportManagementClient.d.ts +0 -21
- package/esm/storageImportExportManagementClient.d.ts.map +0 -1
- package/esm/storageImportExportManagementClient.js +0 -36
- package/esm/storageImportExportManagementClient.js.map +0 -1
- package/esm/storageImportExportManagementClientContext.d.ts +0 -16
- package/esm/storageImportExportManagementClientContext.d.ts.map +0 -1
- package/esm/storageImportExportManagementClientContext.js +0 -55
- package/esm/storageImportExportManagementClientContext.js.map +0 -1
- package/lib/models/bitLockerKeysMappers.ts +0 -17
- package/lib/models/index.ts +0 -975
- package/lib/models/jobsMappers.ts +0 -27
- package/lib/models/locationsMappers.ts +0 -17
- package/lib/models/operationsMappers.ts +0 -17
- package/lib/models/parameters.ts +0 -120
- package/lib/operations/bitLockerKeys.ts +0 -90
- package/lib/operations/jobs.ts +0 -500
- package/lib/operations/locations.ts +0 -127
- package/lib/operations/operations.ts +0 -74
- package/lib/storageImportExportManagementClient.ts +0 -48
- package/lib/storageImportExportManagementClientContext.ts +0 -61
|
@@ -1,21 +1,184 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
* license information.
|
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
|
3
|
+
* Licensed under the MIT License.
|
|
5
4
|
*
|
|
6
5
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
8
|
-
* regenerated.
|
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
9
7
|
*/
|
|
10
8
|
|
|
11
|
-
import
|
|
12
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
9
|
+
import * as coreClient from "@azure/core-client";
|
|
13
10
|
|
|
14
|
-
export const
|
|
15
|
-
|
|
11
|
+
export const LocationsResponse: coreClient.CompositeMapper = {
|
|
12
|
+
type: {
|
|
13
|
+
name: "Composite",
|
|
14
|
+
className: "LocationsResponse",
|
|
15
|
+
modelProperties: {
|
|
16
|
+
value: {
|
|
17
|
+
serializedName: "value",
|
|
18
|
+
type: {
|
|
19
|
+
name: "Sequence",
|
|
20
|
+
element: {
|
|
21
|
+
type: {
|
|
22
|
+
name: "Composite",
|
|
23
|
+
className: "Location"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
};
|
|
16
31
|
|
|
17
|
-
export const
|
|
18
|
-
|
|
32
|
+
export const Location: coreClient.CompositeMapper = {
|
|
33
|
+
type: {
|
|
34
|
+
name: "Composite",
|
|
35
|
+
className: "Location",
|
|
36
|
+
modelProperties: {
|
|
37
|
+
id: {
|
|
38
|
+
serializedName: "id",
|
|
39
|
+
type: {
|
|
40
|
+
name: "String"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
name: {
|
|
44
|
+
serializedName: "name",
|
|
45
|
+
type: {
|
|
46
|
+
name: "String"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
type: {
|
|
50
|
+
serializedName: "type",
|
|
51
|
+
type: {
|
|
52
|
+
name: "String"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
recipientName: {
|
|
56
|
+
serializedName: "properties.recipientName",
|
|
57
|
+
type: {
|
|
58
|
+
name: "String"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
streetAddress1: {
|
|
62
|
+
serializedName: "properties.streetAddress1",
|
|
63
|
+
type: {
|
|
64
|
+
name: "String"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
streetAddress2: {
|
|
68
|
+
serializedName: "properties.streetAddress2",
|
|
69
|
+
type: {
|
|
70
|
+
name: "String"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
city: {
|
|
74
|
+
serializedName: "properties.city",
|
|
75
|
+
type: {
|
|
76
|
+
name: "String"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
stateOrProvince: {
|
|
80
|
+
serializedName: "properties.stateOrProvince",
|
|
81
|
+
type: {
|
|
82
|
+
name: "String"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
postalCode: {
|
|
86
|
+
serializedName: "properties.postalCode",
|
|
87
|
+
type: {
|
|
88
|
+
name: "String"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
countryOrRegion: {
|
|
92
|
+
serializedName: "properties.countryOrRegion",
|
|
93
|
+
type: {
|
|
94
|
+
name: "String"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
phone: {
|
|
98
|
+
serializedName: "properties.phone",
|
|
99
|
+
type: {
|
|
100
|
+
name: "String"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
additionalShippingInformation: {
|
|
104
|
+
serializedName: "properties.additionalShippingInformation",
|
|
105
|
+
type: {
|
|
106
|
+
name: "String"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
supportedCarriers: {
|
|
110
|
+
serializedName: "properties.supportedCarriers",
|
|
111
|
+
type: {
|
|
112
|
+
name: "Sequence",
|
|
113
|
+
element: {
|
|
114
|
+
type: {
|
|
115
|
+
name: "String"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
alternateLocations: {
|
|
121
|
+
serializedName: "properties.alternateLocations",
|
|
122
|
+
type: {
|
|
123
|
+
name: "Sequence",
|
|
124
|
+
element: {
|
|
125
|
+
type: {
|
|
126
|
+
name: "String"
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
};
|
|
134
|
+
|
|
135
|
+
export const ErrorResponse: coreClient.CompositeMapper = {
|
|
136
|
+
type: {
|
|
137
|
+
name: "Composite",
|
|
138
|
+
className: "ErrorResponse",
|
|
139
|
+
modelProperties: {
|
|
140
|
+
code: {
|
|
141
|
+
serializedName: "error.code",
|
|
142
|
+
type: {
|
|
143
|
+
name: "String"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
message: {
|
|
147
|
+
serializedName: "error.message",
|
|
148
|
+
type: {
|
|
149
|
+
name: "String"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
target: {
|
|
153
|
+
serializedName: "error.target",
|
|
154
|
+
type: {
|
|
155
|
+
name: "String"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
details: {
|
|
159
|
+
serializedName: "error.details",
|
|
160
|
+
type: {
|
|
161
|
+
name: "Sequence",
|
|
162
|
+
element: {
|
|
163
|
+
type: {
|
|
164
|
+
name: "Composite",
|
|
165
|
+
className: "ErrorResponseErrorDetailsItem"
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
innererror: {
|
|
171
|
+
serializedName: "error.innererror",
|
|
172
|
+
type: {
|
|
173
|
+
name: "Dictionary",
|
|
174
|
+
value: { type: { name: "any" } }
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
export const ErrorResponseErrorDetailsItem: coreClient.CompositeMapper = {
|
|
19
182
|
type: {
|
|
20
183
|
name: "Composite",
|
|
21
184
|
className: "ErrorResponseErrorDetailsItem",
|
|
@@ -23,87 +186,309 @@ export const ErrorResponseErrorDetailsItem: msRest.CompositeMapper = {
|
|
|
23
186
|
code: {
|
|
24
187
|
serializedName: "code",
|
|
25
188
|
type: {
|
|
26
|
-
name: "String"
|
|
189
|
+
name: "String"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
target: {
|
|
193
|
+
serializedName: "target",
|
|
194
|
+
type: {
|
|
195
|
+
name: "String"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
message: {
|
|
199
|
+
serializedName: "message",
|
|
200
|
+
type: {
|
|
201
|
+
name: "String"
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
};
|
|
207
|
+
|
|
208
|
+
export const ListJobsResponse: coreClient.CompositeMapper = {
|
|
209
|
+
type: {
|
|
210
|
+
name: "Composite",
|
|
211
|
+
className: "ListJobsResponse",
|
|
212
|
+
modelProperties: {
|
|
213
|
+
nextLink: {
|
|
214
|
+
serializedName: "nextLink",
|
|
215
|
+
type: {
|
|
216
|
+
name: "String"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
value: {
|
|
220
|
+
serializedName: "value",
|
|
221
|
+
type: {
|
|
222
|
+
name: "Sequence",
|
|
223
|
+
element: {
|
|
224
|
+
type: {
|
|
225
|
+
name: "Composite",
|
|
226
|
+
className: "JobResponse"
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
};
|
|
234
|
+
|
|
235
|
+
export const JobResponse: coreClient.CompositeMapper = {
|
|
236
|
+
type: {
|
|
237
|
+
name: "Composite",
|
|
238
|
+
className: "JobResponse",
|
|
239
|
+
modelProperties: {
|
|
240
|
+
systemData: {
|
|
241
|
+
serializedName: "systemData",
|
|
242
|
+
type: {
|
|
243
|
+
name: "Composite",
|
|
244
|
+
className: "SystemData"
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
id: {
|
|
248
|
+
serializedName: "id",
|
|
249
|
+
readOnly: true,
|
|
250
|
+
type: {
|
|
251
|
+
name: "String"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
name: {
|
|
255
|
+
serializedName: "name",
|
|
256
|
+
readOnly: true,
|
|
257
|
+
type: {
|
|
258
|
+
name: "String"
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
type: {
|
|
262
|
+
serializedName: "type",
|
|
263
|
+
readOnly: true,
|
|
264
|
+
type: {
|
|
265
|
+
name: "String"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
location: {
|
|
269
|
+
serializedName: "location",
|
|
270
|
+
type: {
|
|
271
|
+
name: "String"
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
tags: {
|
|
275
|
+
serializedName: "tags",
|
|
276
|
+
type: {
|
|
277
|
+
name: "Dictionary",
|
|
278
|
+
value: { type: { name: "any" } }
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
properties: {
|
|
282
|
+
serializedName: "properties",
|
|
283
|
+
type: {
|
|
284
|
+
name: "Composite",
|
|
285
|
+
className: "JobDetails"
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
identity: {
|
|
289
|
+
serializedName: "identity",
|
|
290
|
+
type: {
|
|
291
|
+
name: "Composite",
|
|
292
|
+
className: "IdentityDetails"
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
};
|
|
298
|
+
|
|
299
|
+
export const SystemData: coreClient.CompositeMapper = {
|
|
300
|
+
type: {
|
|
301
|
+
name: "Composite",
|
|
302
|
+
className: "SystemData",
|
|
303
|
+
modelProperties: {
|
|
304
|
+
createdBy: {
|
|
305
|
+
serializedName: "createdBy",
|
|
306
|
+
type: {
|
|
307
|
+
name: "String"
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
createdByType: {
|
|
311
|
+
serializedName: "createdByType",
|
|
312
|
+
type: {
|
|
313
|
+
name: "String"
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
createdAt: {
|
|
317
|
+
serializedName: "createdAt",
|
|
318
|
+
type: {
|
|
319
|
+
name: "DateTime"
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
lastModifiedBy: {
|
|
323
|
+
serializedName: "lastModifiedBy",
|
|
324
|
+
type: {
|
|
325
|
+
name: "String"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
lastModifiedByType: {
|
|
329
|
+
serializedName: "lastModifiedByType",
|
|
330
|
+
type: {
|
|
331
|
+
name: "String"
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
lastModifiedAt: {
|
|
335
|
+
serializedName: "lastModifiedAt",
|
|
336
|
+
type: {
|
|
337
|
+
name: "DateTime"
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
};
|
|
343
|
+
|
|
344
|
+
export const JobDetails: coreClient.CompositeMapper = {
|
|
345
|
+
type: {
|
|
346
|
+
name: "Composite",
|
|
347
|
+
className: "JobDetails",
|
|
348
|
+
modelProperties: {
|
|
349
|
+
storageAccountId: {
|
|
350
|
+
serializedName: "storageAccountId",
|
|
351
|
+
type: {
|
|
352
|
+
name: "String"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
jobType: {
|
|
356
|
+
serializedName: "jobType",
|
|
357
|
+
type: {
|
|
358
|
+
name: "String"
|
|
359
|
+
}
|
|
360
|
+
},
|
|
361
|
+
returnAddress: {
|
|
362
|
+
serializedName: "returnAddress",
|
|
363
|
+
type: {
|
|
364
|
+
name: "Composite",
|
|
365
|
+
className: "ReturnAddress"
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
returnShipping: {
|
|
369
|
+
serializedName: "returnShipping",
|
|
370
|
+
type: {
|
|
371
|
+
name: "Composite",
|
|
372
|
+
className: "ReturnShipping"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
shippingInformation: {
|
|
376
|
+
serializedName: "shippingInformation",
|
|
377
|
+
type: {
|
|
378
|
+
name: "Composite",
|
|
379
|
+
className: "ShippingInformation"
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
deliveryPackage: {
|
|
383
|
+
serializedName: "deliveryPackage",
|
|
384
|
+
type: {
|
|
385
|
+
name: "Composite",
|
|
386
|
+
className: "DeliveryPackageInformation"
|
|
27
387
|
}
|
|
28
388
|
},
|
|
29
|
-
|
|
30
|
-
serializedName: "
|
|
389
|
+
returnPackage: {
|
|
390
|
+
serializedName: "returnPackage",
|
|
31
391
|
type: {
|
|
32
|
-
name: "
|
|
392
|
+
name: "Composite",
|
|
393
|
+
className: "PackageInformation"
|
|
33
394
|
}
|
|
34
395
|
},
|
|
35
|
-
|
|
36
|
-
serializedName: "
|
|
396
|
+
diagnosticsPath: {
|
|
397
|
+
serializedName: "diagnosticsPath",
|
|
37
398
|
type: {
|
|
38
399
|
name: "String"
|
|
39
400
|
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
};
|
|
44
|
-
|
|
45
|
-
export const ErrorResponse: msRest.CompositeMapper = {
|
|
46
|
-
serializedName: "ErrorResponse",
|
|
47
|
-
type: {
|
|
48
|
-
name: "Composite",
|
|
49
|
-
className: "ErrorResponse",
|
|
50
|
-
modelProperties: {
|
|
51
|
-
code: {
|
|
52
|
-
serializedName: "error.code",
|
|
401
|
+
},
|
|
402
|
+
logLevel: {
|
|
403
|
+
serializedName: "logLevel",
|
|
53
404
|
type: {
|
|
54
405
|
name: "String"
|
|
55
406
|
}
|
|
56
407
|
},
|
|
57
|
-
|
|
58
|
-
|
|
408
|
+
backupDriveManifest: {
|
|
409
|
+
defaultValue: false,
|
|
410
|
+
serializedName: "backupDriveManifest",
|
|
411
|
+
type: {
|
|
412
|
+
name: "Boolean"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
state: {
|
|
416
|
+
defaultValue: "Creating",
|
|
417
|
+
serializedName: "state",
|
|
59
418
|
type: {
|
|
60
419
|
name: "String"
|
|
61
420
|
}
|
|
62
421
|
},
|
|
63
|
-
|
|
64
|
-
|
|
422
|
+
cancelRequested: {
|
|
423
|
+
defaultValue: false,
|
|
424
|
+
serializedName: "cancelRequested",
|
|
425
|
+
type: {
|
|
426
|
+
name: "Boolean"
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
percentComplete: {
|
|
430
|
+
serializedName: "percentComplete",
|
|
431
|
+
type: {
|
|
432
|
+
name: "Number"
|
|
433
|
+
}
|
|
434
|
+
},
|
|
435
|
+
incompleteBlobListUri: {
|
|
436
|
+
serializedName: "incompleteBlobListUri",
|
|
65
437
|
type: {
|
|
66
438
|
name: "String"
|
|
67
439
|
}
|
|
68
440
|
},
|
|
69
|
-
|
|
70
|
-
serializedName: "
|
|
441
|
+
driveList: {
|
|
442
|
+
serializedName: "driveList",
|
|
71
443
|
type: {
|
|
72
444
|
name: "Sequence",
|
|
73
445
|
element: {
|
|
74
446
|
type: {
|
|
75
447
|
name: "Composite",
|
|
76
|
-
className: "
|
|
448
|
+
className: "DriveStatus"
|
|
77
449
|
}
|
|
78
450
|
}
|
|
79
451
|
}
|
|
80
452
|
},
|
|
81
|
-
|
|
82
|
-
serializedName: "
|
|
453
|
+
export: {
|
|
454
|
+
serializedName: "export",
|
|
83
455
|
type: {
|
|
84
|
-
name: "
|
|
456
|
+
name: "Composite",
|
|
457
|
+
className: "Export"
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
provisioningState: {
|
|
461
|
+
serializedName: "provisioningState",
|
|
462
|
+
type: {
|
|
463
|
+
name: "String"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
encryptionKey: {
|
|
467
|
+
serializedName: "encryptionKey",
|
|
468
|
+
type: {
|
|
469
|
+
name: "Composite",
|
|
470
|
+
className: "EncryptionKeyDetails"
|
|
85
471
|
}
|
|
86
472
|
}
|
|
87
473
|
}
|
|
88
474
|
}
|
|
89
475
|
};
|
|
90
476
|
|
|
91
|
-
export const ReturnAddress:
|
|
92
|
-
serializedName: "ReturnAddress",
|
|
477
|
+
export const ReturnAddress: coreClient.CompositeMapper = {
|
|
93
478
|
type: {
|
|
94
479
|
name: "Composite",
|
|
95
480
|
className: "ReturnAddress",
|
|
96
481
|
modelProperties: {
|
|
97
482
|
recipientName: {
|
|
98
|
-
required: true,
|
|
99
483
|
serializedName: "recipientName",
|
|
484
|
+
required: true,
|
|
100
485
|
type: {
|
|
101
486
|
name: "String"
|
|
102
487
|
}
|
|
103
488
|
},
|
|
104
489
|
streetAddress1: {
|
|
105
|
-
required: true,
|
|
106
490
|
serializedName: "streetAddress1",
|
|
491
|
+
required: true,
|
|
107
492
|
type: {
|
|
108
493
|
name: "String"
|
|
109
494
|
}
|
|
@@ -115,8 +500,8 @@ export const ReturnAddress: msRest.CompositeMapper = {
|
|
|
115
500
|
}
|
|
116
501
|
},
|
|
117
502
|
city: {
|
|
118
|
-
required: true,
|
|
119
503
|
serializedName: "city",
|
|
504
|
+
required: true,
|
|
120
505
|
type: {
|
|
121
506
|
name: "String"
|
|
122
507
|
}
|
|
@@ -128,29 +513,29 @@ export const ReturnAddress: msRest.CompositeMapper = {
|
|
|
128
513
|
}
|
|
129
514
|
},
|
|
130
515
|
postalCode: {
|
|
131
|
-
required: true,
|
|
132
516
|
serializedName: "postalCode",
|
|
517
|
+
required: true,
|
|
133
518
|
type: {
|
|
134
519
|
name: "String"
|
|
135
520
|
}
|
|
136
521
|
},
|
|
137
522
|
countryOrRegion: {
|
|
138
|
-
required: true,
|
|
139
523
|
serializedName: "countryOrRegion",
|
|
524
|
+
required: true,
|
|
140
525
|
type: {
|
|
141
526
|
name: "String"
|
|
142
527
|
}
|
|
143
528
|
},
|
|
144
529
|
phone: {
|
|
145
|
-
required: true,
|
|
146
530
|
serializedName: "phone",
|
|
531
|
+
required: true,
|
|
147
532
|
type: {
|
|
148
533
|
name: "String"
|
|
149
534
|
}
|
|
150
535
|
},
|
|
151
536
|
email: {
|
|
152
|
-
required: true,
|
|
153
537
|
serializedName: "email",
|
|
538
|
+
required: true,
|
|
154
539
|
type: {
|
|
155
540
|
name: "String"
|
|
156
541
|
}
|
|
@@ -159,22 +544,21 @@ export const ReturnAddress: msRest.CompositeMapper = {
|
|
|
159
544
|
}
|
|
160
545
|
};
|
|
161
546
|
|
|
162
|
-
export const ReturnShipping:
|
|
163
|
-
serializedName: "ReturnShipping",
|
|
547
|
+
export const ReturnShipping: coreClient.CompositeMapper = {
|
|
164
548
|
type: {
|
|
165
549
|
name: "Composite",
|
|
166
550
|
className: "ReturnShipping",
|
|
167
551
|
modelProperties: {
|
|
168
552
|
carrierName: {
|
|
169
|
-
required: true,
|
|
170
553
|
serializedName: "carrierName",
|
|
554
|
+
required: true,
|
|
171
555
|
type: {
|
|
172
556
|
name: "String"
|
|
173
557
|
}
|
|
174
558
|
},
|
|
175
559
|
carrierAccountNumber: {
|
|
176
|
-
required: true,
|
|
177
560
|
serializedName: "carrierAccountNumber",
|
|
561
|
+
required: true,
|
|
178
562
|
type: {
|
|
179
563
|
name: "String"
|
|
180
564
|
}
|
|
@@ -183,21 +567,18 @@ export const ReturnShipping: msRest.CompositeMapper = {
|
|
|
183
567
|
}
|
|
184
568
|
};
|
|
185
569
|
|
|
186
|
-
export const ShippingInformation:
|
|
187
|
-
serializedName: "ShippingInformation",
|
|
570
|
+
export const ShippingInformation: coreClient.CompositeMapper = {
|
|
188
571
|
type: {
|
|
189
572
|
name: "Composite",
|
|
190
573
|
className: "ShippingInformation",
|
|
191
574
|
modelProperties: {
|
|
192
575
|
recipientName: {
|
|
193
|
-
required: true,
|
|
194
576
|
serializedName: "recipientName",
|
|
195
577
|
type: {
|
|
196
578
|
name: "String"
|
|
197
579
|
}
|
|
198
580
|
},
|
|
199
581
|
streetAddress1: {
|
|
200
|
-
required: true,
|
|
201
582
|
serializedName: "streetAddress1",
|
|
202
583
|
type: {
|
|
203
584
|
name: "String"
|
|
@@ -210,28 +591,24 @@ export const ShippingInformation: msRest.CompositeMapper = {
|
|
|
210
591
|
}
|
|
211
592
|
},
|
|
212
593
|
city: {
|
|
213
|
-
required: true,
|
|
214
594
|
serializedName: "city",
|
|
215
595
|
type: {
|
|
216
596
|
name: "String"
|
|
217
597
|
}
|
|
218
598
|
},
|
|
219
599
|
stateOrProvince: {
|
|
220
|
-
required: true,
|
|
221
600
|
serializedName: "stateOrProvince",
|
|
222
601
|
type: {
|
|
223
602
|
name: "String"
|
|
224
603
|
}
|
|
225
604
|
},
|
|
226
605
|
postalCode: {
|
|
227
|
-
required: true,
|
|
228
606
|
serializedName: "postalCode",
|
|
229
607
|
type: {
|
|
230
608
|
name: "String"
|
|
231
609
|
}
|
|
232
610
|
},
|
|
233
611
|
countryOrRegion: {
|
|
234
|
-
required: true,
|
|
235
612
|
serializedName: "countryOrRegion",
|
|
236
613
|
type: {
|
|
237
614
|
name: "String"
|
|
@@ -242,41 +619,82 @@ export const ShippingInformation: msRest.CompositeMapper = {
|
|
|
242
619
|
type: {
|
|
243
620
|
name: "String"
|
|
244
621
|
}
|
|
622
|
+
},
|
|
623
|
+
additionalInformation: {
|
|
624
|
+
serializedName: "additionalInformation",
|
|
625
|
+
readOnly: true,
|
|
626
|
+
type: {
|
|
627
|
+
name: "String"
|
|
628
|
+
}
|
|
245
629
|
}
|
|
246
630
|
}
|
|
247
631
|
}
|
|
248
632
|
};
|
|
249
633
|
|
|
250
|
-
export const
|
|
251
|
-
serializedName: "PackageInfomation",
|
|
634
|
+
export const DeliveryPackageInformation: coreClient.CompositeMapper = {
|
|
252
635
|
type: {
|
|
253
636
|
name: "Composite",
|
|
254
|
-
className: "
|
|
637
|
+
className: "DeliveryPackageInformation",
|
|
255
638
|
modelProperties: {
|
|
256
639
|
carrierName: {
|
|
257
|
-
required: true,
|
|
258
640
|
serializedName: "carrierName",
|
|
641
|
+
required: true,
|
|
259
642
|
type: {
|
|
260
643
|
name: "String"
|
|
261
644
|
}
|
|
262
645
|
},
|
|
263
646
|
trackingNumber: {
|
|
264
|
-
required: true,
|
|
265
647
|
serializedName: "trackingNumber",
|
|
648
|
+
required: true,
|
|
266
649
|
type: {
|
|
267
650
|
name: "String"
|
|
268
651
|
}
|
|
269
652
|
},
|
|
270
653
|
driveCount: {
|
|
271
|
-
required: true,
|
|
272
654
|
serializedName: "driveCount",
|
|
273
655
|
type: {
|
|
274
656
|
name: "Number"
|
|
275
657
|
}
|
|
276
658
|
},
|
|
277
659
|
shipDate: {
|
|
660
|
+
serializedName: "shipDate",
|
|
661
|
+
type: {
|
|
662
|
+
name: "String"
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
};
|
|
668
|
+
|
|
669
|
+
export const PackageInformation: coreClient.CompositeMapper = {
|
|
670
|
+
type: {
|
|
671
|
+
name: "Composite",
|
|
672
|
+
className: "PackageInformation",
|
|
673
|
+
modelProperties: {
|
|
674
|
+
carrierName: {
|
|
675
|
+
serializedName: "carrierName",
|
|
676
|
+
required: true,
|
|
677
|
+
type: {
|
|
678
|
+
name: "String"
|
|
679
|
+
}
|
|
680
|
+
},
|
|
681
|
+
trackingNumber: {
|
|
682
|
+
serializedName: "trackingNumber",
|
|
683
|
+
required: true,
|
|
684
|
+
type: {
|
|
685
|
+
name: "String"
|
|
686
|
+
}
|
|
687
|
+
},
|
|
688
|
+
driveCount: {
|
|
689
|
+
serializedName: "driveCount",
|
|
278
690
|
required: true,
|
|
691
|
+
type: {
|
|
692
|
+
name: "Number"
|
|
693
|
+
}
|
|
694
|
+
},
|
|
695
|
+
shipDate: {
|
|
279
696
|
serializedName: "shipDate",
|
|
697
|
+
required: true,
|
|
280
698
|
type: {
|
|
281
699
|
name: "String"
|
|
282
700
|
}
|
|
@@ -285,8 +703,7 @@ export const PackageInfomation: msRest.CompositeMapper = {
|
|
|
285
703
|
}
|
|
286
704
|
};
|
|
287
705
|
|
|
288
|
-
export const DriveStatus:
|
|
289
|
-
serializedName: "DriveStatus",
|
|
706
|
+
export const DriveStatus: coreClient.CompositeMapper = {
|
|
290
707
|
type: {
|
|
291
708
|
name: "Composite",
|
|
292
709
|
className: "DriveStatus",
|
|
@@ -322,6 +739,7 @@ export const DriveStatus: msRest.CompositeMapper = {
|
|
|
322
739
|
}
|
|
323
740
|
},
|
|
324
741
|
state: {
|
|
742
|
+
defaultValue: "Specified",
|
|
325
743
|
serializedName: "state",
|
|
326
744
|
type: {
|
|
327
745
|
name: "String"
|
|
@@ -367,160 +785,63 @@ export const DriveStatus: msRest.CompositeMapper = {
|
|
|
367
785
|
}
|
|
368
786
|
};
|
|
369
787
|
|
|
370
|
-
export const
|
|
371
|
-
serializedName: "Export",
|
|
788
|
+
export const Export: coreClient.CompositeMapper = {
|
|
372
789
|
type: {
|
|
373
790
|
name: "Composite",
|
|
374
|
-
className: "
|
|
791
|
+
className: "Export",
|
|
375
792
|
modelProperties: {
|
|
376
|
-
|
|
377
|
-
serializedName: "
|
|
793
|
+
blobListBlobPath: {
|
|
794
|
+
serializedName: "blobListBlobPath",
|
|
378
795
|
type: {
|
|
379
|
-
name: "
|
|
380
|
-
element: {
|
|
381
|
-
type: {
|
|
382
|
-
name: "String"
|
|
383
|
-
}
|
|
384
|
-
}
|
|
796
|
+
name: "String"
|
|
385
797
|
}
|
|
386
798
|
},
|
|
387
|
-
|
|
388
|
-
serializedName: "blobList.
|
|
799
|
+
blobPath: {
|
|
800
|
+
serializedName: "blobList.blobPath",
|
|
389
801
|
type: {
|
|
390
802
|
name: "Sequence",
|
|
391
803
|
element: {
|
|
392
804
|
type: {
|
|
393
805
|
name: "String"
|
|
394
806
|
}
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
},
|
|
398
|
-
blobListblobPath: {
|
|
399
|
-
serializedName: "blobListblobPath",
|
|
400
|
-
type: {
|
|
401
|
-
name: "String"
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
}
|
|
405
|
-
}
|
|
406
|
-
};
|
|
407
|
-
|
|
408
|
-
export const JobDetails: msRest.CompositeMapper = {
|
|
409
|
-
serializedName: "JobDetails",
|
|
410
|
-
type: {
|
|
411
|
-
name: "Composite",
|
|
412
|
-
className: "JobDetails",
|
|
413
|
-
modelProperties: {
|
|
414
|
-
storageAccountId: {
|
|
415
|
-
serializedName: "storageAccountId",
|
|
416
|
-
type: {
|
|
417
|
-
name: "String"
|
|
418
|
-
}
|
|
419
|
-
},
|
|
420
|
-
jobType: {
|
|
421
|
-
serializedName: "jobType",
|
|
422
|
-
type: {
|
|
423
|
-
name: "String"
|
|
424
|
-
}
|
|
425
|
-
},
|
|
426
|
-
returnAddress: {
|
|
427
|
-
serializedName: "returnAddress",
|
|
428
|
-
type: {
|
|
429
|
-
name: "Composite",
|
|
430
|
-
className: "ReturnAddress"
|
|
431
|
-
}
|
|
432
|
-
},
|
|
433
|
-
returnShipping: {
|
|
434
|
-
serializedName: "returnShipping",
|
|
435
|
-
type: {
|
|
436
|
-
name: "Composite",
|
|
437
|
-
className: "ReturnShipping"
|
|
438
|
-
}
|
|
439
|
-
},
|
|
440
|
-
shippingInformation: {
|
|
441
|
-
serializedName: "shippingInformation",
|
|
442
|
-
type: {
|
|
443
|
-
name: "Composite",
|
|
444
|
-
className: "ShippingInformation"
|
|
445
|
-
}
|
|
446
|
-
},
|
|
447
|
-
deliveryPackage: {
|
|
448
|
-
serializedName: "deliveryPackage",
|
|
449
|
-
type: {
|
|
450
|
-
name: "Composite",
|
|
451
|
-
className: "PackageInfomation"
|
|
452
|
-
}
|
|
453
|
-
},
|
|
454
|
-
returnPackage: {
|
|
455
|
-
serializedName: "returnPackage",
|
|
456
|
-
type: {
|
|
457
|
-
name: "Composite",
|
|
458
|
-
className: "PackageInfomation"
|
|
459
|
-
}
|
|
460
|
-
},
|
|
461
|
-
diagnosticsPath: {
|
|
462
|
-
serializedName: "diagnosticsPath",
|
|
463
|
-
type: {
|
|
464
|
-
name: "String"
|
|
465
|
-
}
|
|
466
|
-
},
|
|
467
|
-
logLevel: {
|
|
468
|
-
serializedName: "logLevel",
|
|
469
|
-
type: {
|
|
470
|
-
name: "String"
|
|
471
|
-
}
|
|
472
|
-
},
|
|
473
|
-
backupDriveManifest: {
|
|
474
|
-
serializedName: "backupDriveManifest",
|
|
475
|
-
type: {
|
|
476
|
-
name: "Boolean"
|
|
477
|
-
}
|
|
478
|
-
},
|
|
479
|
-
state: {
|
|
480
|
-
serializedName: "state",
|
|
481
|
-
type: {
|
|
482
|
-
name: "String"
|
|
483
|
-
}
|
|
484
|
-
},
|
|
485
|
-
cancelRequested: {
|
|
486
|
-
serializedName: "cancelRequested",
|
|
487
|
-
type: {
|
|
488
|
-
name: "Boolean"
|
|
489
|
-
}
|
|
490
|
-
},
|
|
491
|
-
percentComplete: {
|
|
492
|
-
serializedName: "percentComplete",
|
|
493
|
-
type: {
|
|
494
|
-
name: "Number"
|
|
495
|
-
}
|
|
496
|
-
},
|
|
497
|
-
incompleteBlobListUri: {
|
|
498
|
-
serializedName: "incompleteBlobListUri",
|
|
499
|
-
type: {
|
|
500
|
-
name: "String"
|
|
807
|
+
}
|
|
501
808
|
}
|
|
502
809
|
},
|
|
503
|
-
|
|
504
|
-
serializedName: "
|
|
810
|
+
blobPathPrefix: {
|
|
811
|
+
serializedName: "blobList.blobPathPrefix",
|
|
505
812
|
type: {
|
|
506
813
|
name: "Sequence",
|
|
507
814
|
element: {
|
|
508
815
|
type: {
|
|
509
|
-
name: "
|
|
510
|
-
className: "DriveStatus"
|
|
816
|
+
name: "String"
|
|
511
817
|
}
|
|
512
818
|
}
|
|
513
819
|
}
|
|
820
|
+
}
|
|
821
|
+
}
|
|
822
|
+
}
|
|
823
|
+
};
|
|
824
|
+
|
|
825
|
+
export const EncryptionKeyDetails: coreClient.CompositeMapper = {
|
|
826
|
+
type: {
|
|
827
|
+
name: "Composite",
|
|
828
|
+
className: "EncryptionKeyDetails",
|
|
829
|
+
modelProperties: {
|
|
830
|
+
kekType: {
|
|
831
|
+
defaultValue: "MicrosoftManaged",
|
|
832
|
+
serializedName: "kekType",
|
|
833
|
+
type: {
|
|
834
|
+
name: "String"
|
|
835
|
+
}
|
|
514
836
|
},
|
|
515
|
-
|
|
516
|
-
serializedName: "
|
|
837
|
+
kekUrl: {
|
|
838
|
+
serializedName: "kekUrl",
|
|
517
839
|
type: {
|
|
518
|
-
name: "
|
|
519
|
-
className: "ExportModel"
|
|
840
|
+
name: "String"
|
|
520
841
|
}
|
|
521
842
|
},
|
|
522
|
-
|
|
523
|
-
serializedName: "
|
|
843
|
+
kekVaultResourceID: {
|
|
844
|
+
serializedName: "kekVaultResourceID",
|
|
524
845
|
type: {
|
|
525
846
|
name: "String"
|
|
526
847
|
}
|
|
@@ -529,37 +850,37 @@ export const JobDetails: msRest.CompositeMapper = {
|
|
|
529
850
|
}
|
|
530
851
|
};
|
|
531
852
|
|
|
532
|
-
export const
|
|
533
|
-
serializedName: "PutJobParameters",
|
|
853
|
+
export const IdentityDetails: coreClient.CompositeMapper = {
|
|
534
854
|
type: {
|
|
535
855
|
name: "Composite",
|
|
536
|
-
className: "
|
|
856
|
+
className: "IdentityDetails",
|
|
537
857
|
modelProperties: {
|
|
538
|
-
|
|
539
|
-
|
|
858
|
+
type: {
|
|
859
|
+
defaultValue: "None",
|
|
860
|
+
serializedName: "type",
|
|
540
861
|
type: {
|
|
541
862
|
name: "String"
|
|
542
863
|
}
|
|
543
864
|
},
|
|
544
|
-
|
|
545
|
-
serializedName: "
|
|
865
|
+
principalId: {
|
|
866
|
+
serializedName: "principalId",
|
|
867
|
+
readOnly: true,
|
|
546
868
|
type: {
|
|
547
|
-
name: "
|
|
869
|
+
name: "String"
|
|
548
870
|
}
|
|
549
871
|
},
|
|
550
|
-
|
|
551
|
-
serializedName: "
|
|
872
|
+
tenantId: {
|
|
873
|
+
serializedName: "tenantId",
|
|
874
|
+
readOnly: true,
|
|
552
875
|
type: {
|
|
553
|
-
name: "
|
|
554
|
-
className: "JobDetails"
|
|
876
|
+
name: "String"
|
|
555
877
|
}
|
|
556
878
|
}
|
|
557
879
|
}
|
|
558
880
|
}
|
|
559
881
|
};
|
|
560
882
|
|
|
561
|
-
export const UpdateJobParameters:
|
|
562
|
-
serializedName: "UpdateJobParameters",
|
|
883
|
+
export const UpdateJobParameters: coreClient.CompositeMapper = {
|
|
563
884
|
type: {
|
|
564
885
|
name: "Composite",
|
|
565
886
|
className: "UpdateJobParameters",
|
|
@@ -567,10 +888,12 @@ export const UpdateJobParameters: msRest.CompositeMapper = {
|
|
|
567
888
|
tags: {
|
|
568
889
|
serializedName: "tags",
|
|
569
890
|
type: {
|
|
570
|
-
name: "
|
|
891
|
+
name: "Dictionary",
|
|
892
|
+
value: { type: { name: "any" } }
|
|
571
893
|
}
|
|
572
894
|
},
|
|
573
895
|
cancelRequested: {
|
|
896
|
+
defaultValue: false,
|
|
574
897
|
serializedName: "properties.cancelRequested",
|
|
575
898
|
type: {
|
|
576
899
|
name: "Boolean"
|
|
@@ -600,7 +923,7 @@ export const UpdateJobParameters: msRest.CompositeMapper = {
|
|
|
600
923
|
serializedName: "properties.deliveryPackage",
|
|
601
924
|
type: {
|
|
602
925
|
name: "Composite",
|
|
603
|
-
className: "
|
|
926
|
+
className: "DeliveryPackageInformation"
|
|
604
927
|
}
|
|
605
928
|
},
|
|
606
929
|
logLevel: {
|
|
@@ -610,6 +933,7 @@ export const UpdateJobParameters: msRest.CompositeMapper = {
|
|
|
610
933
|
}
|
|
611
934
|
},
|
|
612
935
|
backupDriveManifest: {
|
|
936
|
+
defaultValue: false,
|
|
613
937
|
serializedName: "properties.backupDriveManifest",
|
|
614
938
|
type: {
|
|
615
939
|
name: "Boolean"
|
|
@@ -631,33 +955,11 @@ export const UpdateJobParameters: msRest.CompositeMapper = {
|
|
|
631
955
|
}
|
|
632
956
|
};
|
|
633
957
|
|
|
634
|
-
export const
|
|
635
|
-
serializedName: "JobResponse",
|
|
958
|
+
export const PutJobParameters: coreClient.CompositeMapper = {
|
|
636
959
|
type: {
|
|
637
960
|
name: "Composite",
|
|
638
|
-
className: "
|
|
961
|
+
className: "PutJobParameters",
|
|
639
962
|
modelProperties: {
|
|
640
|
-
id: {
|
|
641
|
-
readOnly: true,
|
|
642
|
-
serializedName: "id",
|
|
643
|
-
type: {
|
|
644
|
-
name: "String"
|
|
645
|
-
}
|
|
646
|
-
},
|
|
647
|
-
name: {
|
|
648
|
-
readOnly: true,
|
|
649
|
-
serializedName: "name",
|
|
650
|
-
type: {
|
|
651
|
-
name: "String"
|
|
652
|
-
}
|
|
653
|
-
},
|
|
654
|
-
type: {
|
|
655
|
-
readOnly: true,
|
|
656
|
-
serializedName: "type",
|
|
657
|
-
type: {
|
|
658
|
-
name: "String"
|
|
659
|
-
}
|
|
660
|
-
},
|
|
661
963
|
location: {
|
|
662
964
|
serializedName: "location",
|
|
663
965
|
type: {
|
|
@@ -667,7 +969,8 @@ export const JobResponse: msRest.CompositeMapper = {
|
|
|
667
969
|
tags: {
|
|
668
970
|
serializedName: "tags",
|
|
669
971
|
type: {
|
|
670
|
-
name: "
|
|
972
|
+
name: "Dictionary",
|
|
973
|
+
value: { type: { name: "any" } }
|
|
671
974
|
}
|
|
672
975
|
},
|
|
673
976
|
properties: {
|
|
@@ -681,137 +984,19 @@ export const JobResponse: msRest.CompositeMapper = {
|
|
|
681
984
|
}
|
|
682
985
|
};
|
|
683
986
|
|
|
684
|
-
export const
|
|
685
|
-
serializedName: "Operation",
|
|
686
|
-
type: {
|
|
687
|
-
name: "Composite",
|
|
688
|
-
className: "Operation",
|
|
689
|
-
modelProperties: {
|
|
690
|
-
name: {
|
|
691
|
-
required: true,
|
|
692
|
-
serializedName: "name",
|
|
693
|
-
type: {
|
|
694
|
-
name: "String"
|
|
695
|
-
}
|
|
696
|
-
},
|
|
697
|
-
provider: {
|
|
698
|
-
serializedName: "display.provider",
|
|
699
|
-
type: {
|
|
700
|
-
name: "String"
|
|
701
|
-
}
|
|
702
|
-
},
|
|
703
|
-
resource: {
|
|
704
|
-
serializedName: "display.resource",
|
|
705
|
-
type: {
|
|
706
|
-
name: "String"
|
|
707
|
-
}
|
|
708
|
-
},
|
|
709
|
-
operation: {
|
|
710
|
-
serializedName: "display.operation",
|
|
711
|
-
type: {
|
|
712
|
-
name: "String"
|
|
713
|
-
}
|
|
714
|
-
},
|
|
715
|
-
description: {
|
|
716
|
-
serializedName: "display.description",
|
|
717
|
-
type: {
|
|
718
|
-
name: "String"
|
|
719
|
-
}
|
|
720
|
-
}
|
|
721
|
-
}
|
|
722
|
-
}
|
|
723
|
-
};
|
|
724
|
-
|
|
725
|
-
export const Location: msRest.CompositeMapper = {
|
|
726
|
-
serializedName: "Location",
|
|
987
|
+
export const GetBitLockerKeysResponse: coreClient.CompositeMapper = {
|
|
727
988
|
type: {
|
|
728
989
|
name: "Composite",
|
|
729
|
-
className: "
|
|
990
|
+
className: "GetBitLockerKeysResponse",
|
|
730
991
|
modelProperties: {
|
|
731
|
-
|
|
732
|
-
serializedName: "
|
|
733
|
-
type: {
|
|
734
|
-
name: "String"
|
|
735
|
-
}
|
|
736
|
-
},
|
|
737
|
-
name: {
|
|
738
|
-
serializedName: "name",
|
|
739
|
-
type: {
|
|
740
|
-
name: "String"
|
|
741
|
-
}
|
|
742
|
-
},
|
|
743
|
-
type: {
|
|
744
|
-
serializedName: "type",
|
|
745
|
-
type: {
|
|
746
|
-
name: "String"
|
|
747
|
-
}
|
|
748
|
-
},
|
|
749
|
-
recipientName: {
|
|
750
|
-
serializedName: "properties.recipientName",
|
|
751
|
-
type: {
|
|
752
|
-
name: "String"
|
|
753
|
-
}
|
|
754
|
-
},
|
|
755
|
-
streetAddress1: {
|
|
756
|
-
serializedName: "properties.streetAddress1",
|
|
757
|
-
type: {
|
|
758
|
-
name: "String"
|
|
759
|
-
}
|
|
760
|
-
},
|
|
761
|
-
streetAddress2: {
|
|
762
|
-
serializedName: "properties.streetAddress2",
|
|
763
|
-
type: {
|
|
764
|
-
name: "String"
|
|
765
|
-
}
|
|
766
|
-
},
|
|
767
|
-
city: {
|
|
768
|
-
serializedName: "properties.city",
|
|
769
|
-
type: {
|
|
770
|
-
name: "String"
|
|
771
|
-
}
|
|
772
|
-
},
|
|
773
|
-
stateOrProvince: {
|
|
774
|
-
serializedName: "properties.stateOrProvince",
|
|
775
|
-
type: {
|
|
776
|
-
name: "String"
|
|
777
|
-
}
|
|
778
|
-
},
|
|
779
|
-
postalCode: {
|
|
780
|
-
serializedName: "properties.postalCode",
|
|
781
|
-
type: {
|
|
782
|
-
name: "String"
|
|
783
|
-
}
|
|
784
|
-
},
|
|
785
|
-
countryOrRegion: {
|
|
786
|
-
serializedName: "properties.countryOrRegion",
|
|
787
|
-
type: {
|
|
788
|
-
name: "String"
|
|
789
|
-
}
|
|
790
|
-
},
|
|
791
|
-
phone: {
|
|
792
|
-
serializedName: "properties.phone",
|
|
793
|
-
type: {
|
|
794
|
-
name: "String"
|
|
795
|
-
}
|
|
796
|
-
},
|
|
797
|
-
supportedCarriers: {
|
|
798
|
-
serializedName: "properties.supportedCarriers",
|
|
799
|
-
type: {
|
|
800
|
-
name: "Sequence",
|
|
801
|
-
element: {
|
|
802
|
-
type: {
|
|
803
|
-
name: "String"
|
|
804
|
-
}
|
|
805
|
-
}
|
|
806
|
-
}
|
|
807
|
-
},
|
|
808
|
-
alternateLocations: {
|
|
809
|
-
serializedName: "properties.alternateLocations",
|
|
992
|
+
value: {
|
|
993
|
+
serializedName: "value",
|
|
810
994
|
type: {
|
|
811
995
|
name: "Sequence",
|
|
812
996
|
element: {
|
|
813
997
|
type: {
|
|
814
|
-
name: "
|
|
998
|
+
name: "Composite",
|
|
999
|
+
className: "DriveBitLockerKey"
|
|
815
1000
|
}
|
|
816
1001
|
}
|
|
817
1002
|
}
|
|
@@ -820,8 +1005,7 @@ export const Location: msRest.CompositeMapper = {
|
|
|
820
1005
|
}
|
|
821
1006
|
};
|
|
822
1007
|
|
|
823
|
-
export const DriveBitLockerKey:
|
|
824
|
-
serializedName: "DriveBitLockerKey",
|
|
1008
|
+
export const DriveBitLockerKey: coreClient.CompositeMapper = {
|
|
825
1009
|
type: {
|
|
826
1010
|
name: "Composite",
|
|
827
1011
|
className: "DriveBitLockerKey",
|
|
@@ -842,20 +1026,19 @@ export const DriveBitLockerKey: msRest.CompositeMapper = {
|
|
|
842
1026
|
}
|
|
843
1027
|
};
|
|
844
1028
|
|
|
845
|
-
export const
|
|
846
|
-
serializedName: "LocationsResponse",
|
|
1029
|
+
export const ListOperationsResponse: coreClient.CompositeMapper = {
|
|
847
1030
|
type: {
|
|
848
1031
|
name: "Composite",
|
|
849
|
-
className: "
|
|
1032
|
+
className: "ListOperationsResponse",
|
|
850
1033
|
modelProperties: {
|
|
851
1034
|
value: {
|
|
852
|
-
serializedName: "",
|
|
1035
|
+
serializedName: "value",
|
|
853
1036
|
type: {
|
|
854
1037
|
name: "Sequence",
|
|
855
1038
|
element: {
|
|
856
1039
|
type: {
|
|
857
1040
|
name: "Composite",
|
|
858
|
-
className: "
|
|
1041
|
+
className: "Operation"
|
|
859
1042
|
}
|
|
860
1043
|
}
|
|
861
1044
|
}
|
|
@@ -864,72 +1047,40 @@ export const LocationsResponse: msRest.CompositeMapper = {
|
|
|
864
1047
|
}
|
|
865
1048
|
};
|
|
866
1049
|
|
|
867
|
-
export const
|
|
868
|
-
serializedName: "ListJobsResponse",
|
|
1050
|
+
export const Operation: coreClient.CompositeMapper = {
|
|
869
1051
|
type: {
|
|
870
1052
|
name: "Composite",
|
|
871
|
-
className: "
|
|
1053
|
+
className: "Operation",
|
|
872
1054
|
modelProperties: {
|
|
873
|
-
|
|
874
|
-
serializedName: "
|
|
1055
|
+
name: {
|
|
1056
|
+
serializedName: "name",
|
|
1057
|
+
required: true,
|
|
875
1058
|
type: {
|
|
876
1059
|
name: "String"
|
|
877
1060
|
}
|
|
878
1061
|
},
|
|
879
|
-
|
|
880
|
-
serializedName: "",
|
|
1062
|
+
provider: {
|
|
1063
|
+
serializedName: "display.provider",
|
|
881
1064
|
type: {
|
|
882
|
-
name: "
|
|
883
|
-
element: {
|
|
884
|
-
type: {
|
|
885
|
-
name: "Composite",
|
|
886
|
-
className: "JobResponse"
|
|
887
|
-
}
|
|
888
|
-
}
|
|
1065
|
+
name: "String"
|
|
889
1066
|
}
|
|
890
|
-
}
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
};
|
|
894
|
-
|
|
895
|
-
export const GetBitLockerKeysResponse: msRest.CompositeMapper = {
|
|
896
|
-
serializedName: "GetBitLockerKeysResponse",
|
|
897
|
-
type: {
|
|
898
|
-
name: "Composite",
|
|
899
|
-
className: "GetBitLockerKeysResponse",
|
|
900
|
-
modelProperties: {
|
|
901
|
-
value: {
|
|
902
|
-
serializedName: "",
|
|
1067
|
+
},
|
|
1068
|
+
resource: {
|
|
1069
|
+
serializedName: "display.resource",
|
|
903
1070
|
type: {
|
|
904
|
-
name: "
|
|
905
|
-
element: {
|
|
906
|
-
type: {
|
|
907
|
-
name: "Composite",
|
|
908
|
-
className: "DriveBitLockerKey"
|
|
909
|
-
}
|
|
910
|
-
}
|
|
1071
|
+
name: "String"
|
|
911
1072
|
}
|
|
912
|
-
}
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
};
|
|
916
|
-
|
|
917
|
-
export const ListOperationsResponse: msRest.CompositeMapper = {
|
|
918
|
-
serializedName: "ListOperationsResponse",
|
|
919
|
-
type: {
|
|
920
|
-
name: "Composite",
|
|
921
|
-
className: "ListOperationsResponse",
|
|
922
|
-
modelProperties: {
|
|
923
|
-
value: {
|
|
924
|
-
serializedName: "",
|
|
1073
|
+
},
|
|
1074
|
+
operation: {
|
|
1075
|
+
serializedName: "display.operation",
|
|
925
1076
|
type: {
|
|
926
|
-
name: "
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
1077
|
+
name: "String"
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
1080
|
+
description: {
|
|
1081
|
+
serializedName: "display.description",
|
|
1082
|
+
type: {
|
|
1083
|
+
name: "String"
|
|
933
1084
|
}
|
|
934
1085
|
}
|
|
935
1086
|
}
|