@azure/arm-storageimportexport 2.1.1-alpha.20250620.1 → 2.1.1-alpha.20250718.1

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "sdk-type": "mgmt",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "A generated SDK for StorageImportExport.",
6
- "version": "2.1.1-alpha.20250620.1",
6
+ "version": "2.1.1-alpha.20250718.1",
7
7
  "engines": {
8
8
  "node": ">=20.0.0"
9
9
  },
@@ -1,420 +1,420 @@
1
- ## API Report File for "@azure/arm-storageimportexport"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import * as coreAuth from '@azure/core-auth';
8
- import * as coreClient from '@azure/core-client';
9
- import { PagedAsyncIterableIterator } from '@azure/core-paging';
10
-
11
- // @public
12
- export interface BitLockerKeys {
13
- list(jobName: string, resourceGroupName: string, options?: BitLockerKeysListOptionalParams): PagedAsyncIterableIterator<DriveBitLockerKey>;
14
- }
15
-
16
- // @public
17
- export interface BitLockerKeysListOptionalParams extends coreClient.OperationOptions {
18
- }
19
-
20
- // @public
21
- export type BitLockerKeysListResponse = GetBitLockerKeysResponse;
22
-
23
- // @public
24
- export type CreatedByType = string;
25
-
26
- // @public
27
- export interface DeliveryPackageInformation {
28
- carrierName: string;
29
- driveCount?: number;
30
- shipDate?: string;
31
- trackingNumber: string;
32
- }
33
-
34
- // @public
35
- export interface DriveBitLockerKey {
36
- bitLockerKey?: string;
37
- driveId?: string;
38
- }
39
-
40
- // @public
41
- export type DriveState = string;
42
-
43
- // @public
44
- export interface DriveStatus {
45
- bitLockerKey?: string;
46
- bytesSucceeded?: number;
47
- copyStatus?: string;
48
- driveHeaderHash?: string;
49
- driveId?: string;
50
- errorLogUri?: string;
51
- manifestFile?: string;
52
- manifestHash?: string;
53
- manifestUri?: string;
54
- percentComplete?: number;
55
- state?: DriveState;
56
- verboseLogUri?: string;
57
- }
58
-
59
- // @public
60
- export type EncryptionKekType = string;
61
-
62
- // @public
63
- export interface EncryptionKeyDetails {
64
- kekType?: EncryptionKekType;
65
- kekUrl?: string;
66
- kekVaultResourceID?: string;
67
- }
68
-
69
- // @public
70
- export interface ErrorResponse {
71
- code?: string;
72
- details?: ErrorResponseErrorDetailsItem[];
73
- innererror?: Record<string, unknown>;
74
- message?: string;
75
- target?: string;
76
- }
77
-
78
- // @public (undocumented)
79
- export interface ErrorResponseErrorDetailsItem {
80
- code?: string;
81
- message?: string;
82
- target?: string;
83
- }
84
-
85
- // @public
86
- export interface Export {
87
- blobListBlobPath?: string;
88
- blobPath?: string[];
89
- blobPathPrefix?: string[];
90
- }
91
-
92
- // @public
93
- export interface GetBitLockerKeysResponse {
94
- value?: DriveBitLockerKey[];
95
- }
96
-
97
- // @public
98
- export function getContinuationToken(page: unknown): string | undefined;
99
-
100
- // @public
101
- export interface IdentityDetails {
102
- readonly principalId?: string;
103
- readonly tenantId?: string;
104
- type?: IdentityType;
105
- }
106
-
107
- // @public
108
- export type IdentityType = string;
109
-
110
- // @public
111
- export interface JobDetails {
112
- backupDriveManifest?: boolean;
113
- cancelRequested?: boolean;
114
- deliveryPackage?: DeliveryPackageInformation;
115
- diagnosticsPath?: string;
116
- driveList?: DriveStatus[];
117
- encryptionKey?: EncryptionKeyDetails;
118
- export?: Export;
119
- incompleteBlobListUri?: string;
120
- jobType?: string;
121
- logLevel?: string;
122
- percentComplete?: number;
123
- provisioningState?: string;
124
- returnAddress?: ReturnAddress;
125
- returnPackage?: PackageInformation;
126
- returnShipping?: ReturnShipping;
127
- shippingInformation?: ShippingInformation;
128
- state?: string;
129
- storageAccountId?: string;
130
- }
131
-
132
- // @public
133
- export interface JobResponse {
134
- readonly id?: string;
135
- identity?: IdentityDetails;
136
- location?: string;
137
- readonly name?: string;
138
- properties?: JobDetails;
139
- readonly systemData?: SystemData;
140
- tags?: Record<string, unknown>;
141
- readonly type?: string;
142
- }
143
-
144
- // @public
145
- export interface Jobs {
146
- create(jobName: string, resourceGroupName: string, body: PutJobParameters, options?: JobsCreateOptionalParams): Promise<JobsCreateResponse>;
147
- delete(jobName: string, resourceGroupName: string, options?: JobsDeleteOptionalParams): Promise<void>;
148
- get(jobName: string, resourceGroupName: string, options?: JobsGetOptionalParams): Promise<JobsGetResponse>;
149
- listByResourceGroup(resourceGroupName: string, options?: JobsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<JobResponse>;
150
- listBySubscription(options?: JobsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<JobResponse>;
151
- update(jobName: string, resourceGroupName: string, body: UpdateJobParameters, options?: JobsUpdateOptionalParams): Promise<JobsUpdateResponse>;
152
- }
153
-
154
- // @public
155
- export interface JobsCreateOptionalParams extends coreClient.OperationOptions {
156
- clientTenantId?: string;
157
- }
158
-
159
- // @public
160
- export type JobsCreateResponse = JobResponse;
161
-
162
- // @public
163
- export interface JobsDeleteOptionalParams extends coreClient.OperationOptions {
164
- }
165
-
166
- // @public
167
- export interface JobsGetOptionalParams extends coreClient.OperationOptions {
168
- }
169
-
170
- // @public
171
- export type JobsGetResponse = JobResponse;
172
-
173
- // @public
174
- export interface JobsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
175
- }
176
-
177
- // @public
178
- export type JobsListByResourceGroupNextResponse = ListJobsResponse;
179
-
180
- // @public
181
- export interface JobsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
182
- filter?: string;
183
- top?: number;
184
- }
185
-
186
- // @public
187
- export type JobsListByResourceGroupResponse = ListJobsResponse;
188
-
189
- // @public
190
- export interface JobsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
191
- }
192
-
193
- // @public
194
- export type JobsListBySubscriptionNextResponse = ListJobsResponse;
195
-
196
- // @public
197
- export interface JobsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
198
- filter?: string;
199
- top?: number;
200
- }
201
-
202
- // @public
203
- export type JobsListBySubscriptionResponse = ListJobsResponse;
204
-
205
- // @public
206
- export interface JobsUpdateOptionalParams extends coreClient.OperationOptions {
207
- }
208
-
209
- // @public
210
- export type JobsUpdateResponse = JobResponse;
211
-
212
- // @public
213
- export enum KnownCreatedByType {
214
- Application = "Application",
215
- Key = "Key",
216
- ManagedIdentity = "ManagedIdentity",
217
- User = "User"
218
- }
219
-
220
- // @public
221
- export enum KnownDriveState {
222
- Completed = "Completed",
223
- CompletedMoreInfo = "CompletedMoreInfo",
224
- NeverReceived = "NeverReceived",
225
- Received = "Received",
226
- ShippedBack = "ShippedBack",
227
- Specified = "Specified",
228
- Transferring = "Transferring"
229
- }
230
-
231
- // @public
232
- export enum KnownEncryptionKekType {
233
- CustomerManaged = "CustomerManaged",
234
- MicrosoftManaged = "MicrosoftManaged"
235
- }
236
-
237
- // @public
238
- export enum KnownIdentityType {
239
- None = "None",
240
- SystemAssigned = "SystemAssigned",
241
- UserAssigned = "UserAssigned"
242
- }
243
-
244
- // @public
245
- export interface ListJobsResponse {
246
- nextLink?: string;
247
- value?: JobResponse[];
248
- }
249
-
250
- // @public
251
- export interface ListOperationsResponse {
252
- value?: Operation[];
253
- }
254
-
255
- // @public
256
- export interface Location {
257
- additionalShippingInformation?: string;
258
- alternateLocations?: string[];
259
- city?: string;
260
- countryOrRegion?: string;
261
- id?: string;
262
- name?: string;
263
- phone?: string;
264
- postalCode?: string;
265
- recipientName?: string;
266
- stateOrProvince?: string;
267
- streetAddress1?: string;
268
- streetAddress2?: string;
269
- supportedCarriers?: string[];
270
- type?: string;
271
- }
272
-
273
- // @public
274
- export interface Locations {
275
- get(locationName: string, options?: LocationsGetOptionalParams): Promise<LocationsGetResponse>;
276
- list(options?: LocationsListOptionalParams): PagedAsyncIterableIterator<Location>;
277
- }
278
-
279
- // @public
280
- export interface LocationsGetOptionalParams extends coreClient.OperationOptions {
281
- }
282
-
283
- // @public
284
- export type LocationsGetResponse = Location;
285
-
286
- // @public
287
- export interface LocationsListOptionalParams extends coreClient.OperationOptions {
288
- }
289
-
290
- // @public
291
- export type LocationsListResponse = LocationsResponse;
292
-
293
- // @public
294
- export interface LocationsResponse {
295
- value?: Location[];
296
- }
297
-
298
- // @public
299
- export interface Operation {
300
- description?: string;
301
- name: string;
302
- operation?: string;
303
- provider?: string;
304
- resource?: string;
305
- }
306
-
307
- // @public
308
- export interface Operations {
309
- list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
310
- }
311
-
312
- // @public
313
- export interface OperationsListOptionalParams extends coreClient.OperationOptions {
314
- }
315
-
316
- // @public
317
- export type OperationsListResponse = ListOperationsResponse;
318
-
319
- // @public
320
- export interface PackageInformation {
321
- carrierName: string;
322
- driveCount: number;
323
- shipDate: string;
324
- trackingNumber: string;
325
- }
326
-
327
- // @public
328
- export interface PutJobParameters {
329
- location?: string;
330
- properties?: JobDetails;
331
- tags?: Record<string, unknown>;
332
- }
333
-
334
- // @public
335
- export interface ReturnAddress {
336
- city: string;
337
- countryOrRegion: string;
338
- email: string;
339
- phone: string;
340
- postalCode: string;
341
- recipientName: string;
342
- stateOrProvince?: string;
343
- streetAddress1: string;
344
- streetAddress2?: string;
345
- }
346
-
347
- // @public
348
- export interface ReturnShipping {
349
- carrierAccountNumber: string;
350
- carrierName: string;
351
- }
352
-
353
- // @public
354
- export interface ShippingInformation {
355
- readonly additionalInformation?: string;
356
- city?: string;
357
- countryOrRegion?: string;
358
- phone?: string;
359
- postalCode?: string;
360
- recipientName?: string;
361
- stateOrProvince?: string;
362
- streetAddress1?: string;
363
- streetAddress2?: string;
364
- }
365
-
366
- // @public (undocumented)
367
- export class StorageImportExport extends coreClient.ServiceClient {
368
- // (undocumented)
369
- $host: string;
370
- constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: StorageImportExportOptionalParams);
371
- // (undocumented)
372
- acceptLanguage?: string;
373
- // (undocumented)
374
- apiVersion: string;
375
- // (undocumented)
376
- bitLockerKeys: BitLockerKeys;
377
- // (undocumented)
378
- jobs: Jobs;
379
- // (undocumented)
380
- locations: Locations;
381
- // (undocumented)
382
- operations: Operations;
383
- // (undocumented)
384
- subscriptionId: string;
385
- }
386
-
387
- // @public
388
- export interface StorageImportExportOptionalParams extends coreClient.ServiceClientOptions {
389
- $host?: string;
390
- acceptLanguage?: string;
391
- apiVersion?: string;
392
- endpoint?: string;
393
- }
394
-
395
- // @public
396
- export interface SystemData {
397
- createdAt?: Date;
398
- createdBy?: string;
399
- createdByType?: CreatedByType;
400
- lastModifiedAt?: Date;
401
- lastModifiedBy?: string;
402
- lastModifiedByType?: CreatedByType;
403
- }
404
-
405
- // @public
406
- export interface UpdateJobParameters {
407
- backupDriveManifest?: boolean;
408
- cancelRequested?: boolean;
409
- deliveryPackage?: DeliveryPackageInformation;
410
- driveList?: DriveStatus[];
411
- logLevel?: string;
412
- returnAddress?: ReturnAddress;
413
- returnShipping?: ReturnShipping;
414
- state?: string;
415
- tags?: Record<string, unknown>;
416
- }
417
-
418
- // (No @packageDocumentation comment for this package)
419
-
420
- ```
1
+ ## API Report File for "@azure/arm-storageimportexport"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import * as coreAuth from '@azure/core-auth';
8
+ import * as coreClient from '@azure/core-client';
9
+ import { PagedAsyncIterableIterator } from '@azure/core-paging';
10
+
11
+ // @public
12
+ export interface BitLockerKeys {
13
+ list(jobName: string, resourceGroupName: string, options?: BitLockerKeysListOptionalParams): PagedAsyncIterableIterator<DriveBitLockerKey>;
14
+ }
15
+
16
+ // @public
17
+ export interface BitLockerKeysListOptionalParams extends coreClient.OperationOptions {
18
+ }
19
+
20
+ // @public
21
+ export type BitLockerKeysListResponse = GetBitLockerKeysResponse;
22
+
23
+ // @public
24
+ export type CreatedByType = string;
25
+
26
+ // @public
27
+ export interface DeliveryPackageInformation {
28
+ carrierName: string;
29
+ driveCount?: number;
30
+ shipDate?: string;
31
+ trackingNumber: string;
32
+ }
33
+
34
+ // @public
35
+ export interface DriveBitLockerKey {
36
+ bitLockerKey?: string;
37
+ driveId?: string;
38
+ }
39
+
40
+ // @public
41
+ export type DriveState = string;
42
+
43
+ // @public
44
+ export interface DriveStatus {
45
+ bitLockerKey?: string;
46
+ bytesSucceeded?: number;
47
+ copyStatus?: string;
48
+ driveHeaderHash?: string;
49
+ driveId?: string;
50
+ errorLogUri?: string;
51
+ manifestFile?: string;
52
+ manifestHash?: string;
53
+ manifestUri?: string;
54
+ percentComplete?: number;
55
+ state?: DriveState;
56
+ verboseLogUri?: string;
57
+ }
58
+
59
+ // @public
60
+ export type EncryptionKekType = string;
61
+
62
+ // @public
63
+ export interface EncryptionKeyDetails {
64
+ kekType?: EncryptionKekType;
65
+ kekUrl?: string;
66
+ kekVaultResourceID?: string;
67
+ }
68
+
69
+ // @public
70
+ export interface ErrorResponse {
71
+ code?: string;
72
+ details?: ErrorResponseErrorDetailsItem[];
73
+ innererror?: Record<string, unknown>;
74
+ message?: string;
75
+ target?: string;
76
+ }
77
+
78
+ // @public (undocumented)
79
+ export interface ErrorResponseErrorDetailsItem {
80
+ code?: string;
81
+ message?: string;
82
+ target?: string;
83
+ }
84
+
85
+ // @public
86
+ export interface Export {
87
+ blobListBlobPath?: string;
88
+ blobPath?: string[];
89
+ blobPathPrefix?: string[];
90
+ }
91
+
92
+ // @public
93
+ export interface GetBitLockerKeysResponse {
94
+ value?: DriveBitLockerKey[];
95
+ }
96
+
97
+ // @public
98
+ export function getContinuationToken(page: unknown): string | undefined;
99
+
100
+ // @public
101
+ export interface IdentityDetails {
102
+ readonly principalId?: string;
103
+ readonly tenantId?: string;
104
+ type?: IdentityType;
105
+ }
106
+
107
+ // @public
108
+ export type IdentityType = string;
109
+
110
+ // @public
111
+ export interface JobDetails {
112
+ backupDriveManifest?: boolean;
113
+ cancelRequested?: boolean;
114
+ deliveryPackage?: DeliveryPackageInformation;
115
+ diagnosticsPath?: string;
116
+ driveList?: DriveStatus[];
117
+ encryptionKey?: EncryptionKeyDetails;
118
+ export?: Export;
119
+ incompleteBlobListUri?: string;
120
+ jobType?: string;
121
+ logLevel?: string;
122
+ percentComplete?: number;
123
+ provisioningState?: string;
124
+ returnAddress?: ReturnAddress;
125
+ returnPackage?: PackageInformation;
126
+ returnShipping?: ReturnShipping;
127
+ shippingInformation?: ShippingInformation;
128
+ state?: string;
129
+ storageAccountId?: string;
130
+ }
131
+
132
+ // @public
133
+ export interface JobResponse {
134
+ readonly id?: string;
135
+ identity?: IdentityDetails;
136
+ location?: string;
137
+ readonly name?: string;
138
+ properties?: JobDetails;
139
+ readonly systemData?: SystemData;
140
+ tags?: Record<string, unknown>;
141
+ readonly type?: string;
142
+ }
143
+
144
+ // @public
145
+ export interface Jobs {
146
+ create(jobName: string, resourceGroupName: string, body: PutJobParameters, options?: JobsCreateOptionalParams): Promise<JobsCreateResponse>;
147
+ delete(jobName: string, resourceGroupName: string, options?: JobsDeleteOptionalParams): Promise<void>;
148
+ get(jobName: string, resourceGroupName: string, options?: JobsGetOptionalParams): Promise<JobsGetResponse>;
149
+ listByResourceGroup(resourceGroupName: string, options?: JobsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<JobResponse>;
150
+ listBySubscription(options?: JobsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<JobResponse>;
151
+ update(jobName: string, resourceGroupName: string, body: UpdateJobParameters, options?: JobsUpdateOptionalParams): Promise<JobsUpdateResponse>;
152
+ }
153
+
154
+ // @public
155
+ export interface JobsCreateOptionalParams extends coreClient.OperationOptions {
156
+ clientTenantId?: string;
157
+ }
158
+
159
+ // @public
160
+ export type JobsCreateResponse = JobResponse;
161
+
162
+ // @public
163
+ export interface JobsDeleteOptionalParams extends coreClient.OperationOptions {
164
+ }
165
+
166
+ // @public
167
+ export interface JobsGetOptionalParams extends coreClient.OperationOptions {
168
+ }
169
+
170
+ // @public
171
+ export type JobsGetResponse = JobResponse;
172
+
173
+ // @public
174
+ export interface JobsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
175
+ }
176
+
177
+ // @public
178
+ export type JobsListByResourceGroupNextResponse = ListJobsResponse;
179
+
180
+ // @public
181
+ export interface JobsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
182
+ filter?: string;
183
+ top?: number;
184
+ }
185
+
186
+ // @public
187
+ export type JobsListByResourceGroupResponse = ListJobsResponse;
188
+
189
+ // @public
190
+ export interface JobsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
191
+ }
192
+
193
+ // @public
194
+ export type JobsListBySubscriptionNextResponse = ListJobsResponse;
195
+
196
+ // @public
197
+ export interface JobsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
198
+ filter?: string;
199
+ top?: number;
200
+ }
201
+
202
+ // @public
203
+ export type JobsListBySubscriptionResponse = ListJobsResponse;
204
+
205
+ // @public
206
+ export interface JobsUpdateOptionalParams extends coreClient.OperationOptions {
207
+ }
208
+
209
+ // @public
210
+ export type JobsUpdateResponse = JobResponse;
211
+
212
+ // @public
213
+ export enum KnownCreatedByType {
214
+ Application = "Application",
215
+ Key = "Key",
216
+ ManagedIdentity = "ManagedIdentity",
217
+ User = "User"
218
+ }
219
+
220
+ // @public
221
+ export enum KnownDriveState {
222
+ Completed = "Completed",
223
+ CompletedMoreInfo = "CompletedMoreInfo",
224
+ NeverReceived = "NeverReceived",
225
+ Received = "Received",
226
+ ShippedBack = "ShippedBack",
227
+ Specified = "Specified",
228
+ Transferring = "Transferring"
229
+ }
230
+
231
+ // @public
232
+ export enum KnownEncryptionKekType {
233
+ CustomerManaged = "CustomerManaged",
234
+ MicrosoftManaged = "MicrosoftManaged"
235
+ }
236
+
237
+ // @public
238
+ export enum KnownIdentityType {
239
+ None = "None",
240
+ SystemAssigned = "SystemAssigned",
241
+ UserAssigned = "UserAssigned"
242
+ }
243
+
244
+ // @public
245
+ export interface ListJobsResponse {
246
+ nextLink?: string;
247
+ value?: JobResponse[];
248
+ }
249
+
250
+ // @public
251
+ export interface ListOperationsResponse {
252
+ value?: Operation[];
253
+ }
254
+
255
+ // @public
256
+ export interface Location {
257
+ additionalShippingInformation?: string;
258
+ alternateLocations?: string[];
259
+ city?: string;
260
+ countryOrRegion?: string;
261
+ id?: string;
262
+ name?: string;
263
+ phone?: string;
264
+ postalCode?: string;
265
+ recipientName?: string;
266
+ stateOrProvince?: string;
267
+ streetAddress1?: string;
268
+ streetAddress2?: string;
269
+ supportedCarriers?: string[];
270
+ type?: string;
271
+ }
272
+
273
+ // @public
274
+ export interface Locations {
275
+ get(locationName: string, options?: LocationsGetOptionalParams): Promise<LocationsGetResponse>;
276
+ list(options?: LocationsListOptionalParams): PagedAsyncIterableIterator<Location>;
277
+ }
278
+
279
+ // @public
280
+ export interface LocationsGetOptionalParams extends coreClient.OperationOptions {
281
+ }
282
+
283
+ // @public
284
+ export type LocationsGetResponse = Location;
285
+
286
+ // @public
287
+ export interface LocationsListOptionalParams extends coreClient.OperationOptions {
288
+ }
289
+
290
+ // @public
291
+ export type LocationsListResponse = LocationsResponse;
292
+
293
+ // @public
294
+ export interface LocationsResponse {
295
+ value?: Location[];
296
+ }
297
+
298
+ // @public
299
+ export interface Operation {
300
+ description?: string;
301
+ name: string;
302
+ operation?: string;
303
+ provider?: string;
304
+ resource?: string;
305
+ }
306
+
307
+ // @public
308
+ export interface Operations {
309
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
310
+ }
311
+
312
+ // @public
313
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
314
+ }
315
+
316
+ // @public
317
+ export type OperationsListResponse = ListOperationsResponse;
318
+
319
+ // @public
320
+ export interface PackageInformation {
321
+ carrierName: string;
322
+ driveCount: number;
323
+ shipDate: string;
324
+ trackingNumber: string;
325
+ }
326
+
327
+ // @public
328
+ export interface PutJobParameters {
329
+ location?: string;
330
+ properties?: JobDetails;
331
+ tags?: Record<string, unknown>;
332
+ }
333
+
334
+ // @public
335
+ export interface ReturnAddress {
336
+ city: string;
337
+ countryOrRegion: string;
338
+ email: string;
339
+ phone: string;
340
+ postalCode: string;
341
+ recipientName: string;
342
+ stateOrProvince?: string;
343
+ streetAddress1: string;
344
+ streetAddress2?: string;
345
+ }
346
+
347
+ // @public
348
+ export interface ReturnShipping {
349
+ carrierAccountNumber: string;
350
+ carrierName: string;
351
+ }
352
+
353
+ // @public
354
+ export interface ShippingInformation {
355
+ readonly additionalInformation?: string;
356
+ city?: string;
357
+ countryOrRegion?: string;
358
+ phone?: string;
359
+ postalCode?: string;
360
+ recipientName?: string;
361
+ stateOrProvince?: string;
362
+ streetAddress1?: string;
363
+ streetAddress2?: string;
364
+ }
365
+
366
+ // @public (undocumented)
367
+ export class StorageImportExport extends coreClient.ServiceClient {
368
+ // (undocumented)
369
+ $host: string;
370
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: StorageImportExportOptionalParams);
371
+ // (undocumented)
372
+ acceptLanguage?: string;
373
+ // (undocumented)
374
+ apiVersion: string;
375
+ // (undocumented)
376
+ bitLockerKeys: BitLockerKeys;
377
+ // (undocumented)
378
+ jobs: Jobs;
379
+ // (undocumented)
380
+ locations: Locations;
381
+ // (undocumented)
382
+ operations: Operations;
383
+ // (undocumented)
384
+ subscriptionId: string;
385
+ }
386
+
387
+ // @public
388
+ export interface StorageImportExportOptionalParams extends coreClient.ServiceClientOptions {
389
+ $host?: string;
390
+ acceptLanguage?: string;
391
+ apiVersion?: string;
392
+ endpoint?: string;
393
+ }
394
+
395
+ // @public
396
+ export interface SystemData {
397
+ createdAt?: Date;
398
+ createdBy?: string;
399
+ createdByType?: CreatedByType;
400
+ lastModifiedAt?: Date;
401
+ lastModifiedBy?: string;
402
+ lastModifiedByType?: CreatedByType;
403
+ }
404
+
405
+ // @public
406
+ export interface UpdateJobParameters {
407
+ backupDriveManifest?: boolean;
408
+ cancelRequested?: boolean;
409
+ deliveryPackage?: DeliveryPackageInformation;
410
+ driveList?: DriveStatus[];
411
+ logLevel?: string;
412
+ returnAddress?: ReturnAddress;
413
+ returnShipping?: ReturnShipping;
414
+ state?: string;
415
+ tags?: Record<string, unknown>;
416
+ }
417
+
418
+ // (No @packageDocumentation comment for this package)
419
+
420
+ ```