@aws-sdk/client-snowball 3.170.0 → 3.178.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 +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/Snowball.d.ts +0 -25
- package/dist-types/ts3.4/SnowballClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CancelClusterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateAddressCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLongTermPricingCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateReturnShippingLabelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeAddressCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeReturnShippingLabelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetJobManifestCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetJobUnlockCodeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetSnowballUsageCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetSoftwareUpdatesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListClusterJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListCompatibleImagesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListLongTermPricingCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateJobShipmentStateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateLongTermPricingCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/SnowballServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -284
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,67 +1,46 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { SnowballServiceException as __BaseException } from "./SnowballServiceException";
|
|
3
|
-
|
|
4
3
|
export interface Address {
|
|
5
4
|
AddressId?: string;
|
|
6
|
-
|
|
7
5
|
Name?: string;
|
|
8
|
-
|
|
9
6
|
Company?: string;
|
|
10
|
-
|
|
11
7
|
Street1?: string;
|
|
12
|
-
|
|
13
8
|
Street2?: string;
|
|
14
|
-
|
|
15
9
|
Street3?: string;
|
|
16
|
-
|
|
17
10
|
City?: string;
|
|
18
|
-
|
|
19
11
|
StateOrProvince?: string;
|
|
20
|
-
|
|
21
12
|
PrefectureOrDistrict?: string;
|
|
22
|
-
|
|
23
13
|
Landmark?: string;
|
|
24
|
-
|
|
25
14
|
Country?: string;
|
|
26
|
-
|
|
27
15
|
PostalCode?: string;
|
|
28
|
-
|
|
29
16
|
PhoneNumber?: string;
|
|
30
|
-
|
|
31
17
|
IsRestricted?: boolean;
|
|
32
18
|
}
|
|
33
19
|
export interface CancelClusterRequest {
|
|
34
20
|
ClusterId: string | undefined;
|
|
35
21
|
}
|
|
36
22
|
export interface CancelClusterResult {}
|
|
37
|
-
|
|
38
23
|
export declare class InvalidJobStateException extends __BaseException {
|
|
39
24
|
readonly name: "InvalidJobStateException";
|
|
40
25
|
readonly $fault: "client";
|
|
41
26
|
Message?: string;
|
|
42
|
-
|
|
43
27
|
constructor(
|
|
44
28
|
opts: __ExceptionOptionType<InvalidJobStateException, __BaseException>
|
|
45
29
|
);
|
|
46
30
|
}
|
|
47
|
-
|
|
48
31
|
export declare class InvalidResourceException extends __BaseException {
|
|
49
32
|
readonly name: "InvalidResourceException";
|
|
50
33
|
readonly $fault: "client";
|
|
51
34
|
Message?: string;
|
|
52
|
-
|
|
53
35
|
ResourceType?: string;
|
|
54
|
-
|
|
55
36
|
constructor(
|
|
56
37
|
opts: __ExceptionOptionType<InvalidResourceException, __BaseException>
|
|
57
38
|
);
|
|
58
39
|
}
|
|
59
|
-
|
|
60
40
|
export declare class KMSRequestFailedException extends __BaseException {
|
|
61
41
|
readonly name: "KMSRequestFailedException";
|
|
62
42
|
readonly $fault: "client";
|
|
63
43
|
Message?: string;
|
|
64
|
-
|
|
65
44
|
constructor(
|
|
66
45
|
opts: __ExceptionOptionType<KMSRequestFailedException, __BaseException>
|
|
67
46
|
);
|
|
@@ -76,22 +55,18 @@ export interface CreateAddressRequest {
|
|
|
76
55
|
export interface CreateAddressResult {
|
|
77
56
|
AddressId?: string;
|
|
78
57
|
}
|
|
79
|
-
|
|
80
58
|
export declare class InvalidAddressException extends __BaseException {
|
|
81
59
|
readonly name: "InvalidAddressException";
|
|
82
60
|
readonly $fault: "client";
|
|
83
61
|
Message?: string;
|
|
84
|
-
|
|
85
62
|
constructor(
|
|
86
63
|
opts: __ExceptionOptionType<InvalidAddressException, __BaseException>
|
|
87
64
|
);
|
|
88
65
|
}
|
|
89
|
-
|
|
90
66
|
export declare class UnsupportedAddressException extends __BaseException {
|
|
91
67
|
readonly name: "UnsupportedAddressException";
|
|
92
68
|
readonly $fault: "client";
|
|
93
69
|
Message?: string;
|
|
94
|
-
|
|
95
70
|
constructor(
|
|
96
71
|
opts: __ExceptionOptionType<UnsupportedAddressException, __BaseException>
|
|
97
72
|
);
|
|
@@ -116,59 +91,43 @@ export declare enum JobState {
|
|
|
116
91
|
WITH_AWS_SORTING_FACILITY = "WithAWSSortingFacility",
|
|
117
92
|
WITH_CUSTOMER = "WithCustomer",
|
|
118
93
|
}
|
|
119
|
-
|
|
120
94
|
export interface Notification {
|
|
121
95
|
SnsTopicARN?: string;
|
|
122
|
-
|
|
123
96
|
JobStatesToNotify?: (JobState | string)[];
|
|
124
|
-
|
|
125
97
|
NotifyAll?: boolean;
|
|
126
98
|
}
|
|
127
99
|
export declare enum StorageUnit {
|
|
128
100
|
TB = "TB",
|
|
129
101
|
}
|
|
130
|
-
|
|
131
102
|
export interface NFSOnDeviceServiceConfiguration {
|
|
132
103
|
StorageLimit?: number;
|
|
133
|
-
|
|
134
104
|
StorageUnit?: StorageUnit | string;
|
|
135
105
|
}
|
|
136
|
-
|
|
137
106
|
export interface TGWOnDeviceServiceConfiguration {
|
|
138
107
|
StorageLimit?: number;
|
|
139
|
-
|
|
140
108
|
StorageUnit?: StorageUnit | string;
|
|
141
109
|
}
|
|
142
|
-
|
|
143
110
|
export interface OnDeviceServiceConfiguration {
|
|
144
111
|
NFSOnDeviceService?: NFSOnDeviceServiceConfiguration;
|
|
145
|
-
|
|
146
112
|
TGWOnDeviceService?: TGWOnDeviceServiceConfiguration;
|
|
147
113
|
}
|
|
148
114
|
export declare enum RemoteManagement {
|
|
149
115
|
INSTALLED_AUTOSTART = "INSTALLED_AUTOSTART",
|
|
150
116
|
INSTALLED_ONLY = "INSTALLED_ONLY",
|
|
151
117
|
}
|
|
152
|
-
|
|
153
118
|
export interface Ec2AmiResource {
|
|
154
119
|
AmiId: string | undefined;
|
|
155
|
-
|
|
156
120
|
SnowballAmiId?: string;
|
|
157
121
|
}
|
|
158
|
-
|
|
159
122
|
export interface EventTriggerDefinition {
|
|
160
123
|
EventResourceARN?: string;
|
|
161
124
|
}
|
|
162
|
-
|
|
163
125
|
export interface LambdaResource {
|
|
164
126
|
LambdaArn?: string;
|
|
165
|
-
|
|
166
127
|
EventTriggers?: EventTriggerDefinition[];
|
|
167
128
|
}
|
|
168
|
-
|
|
169
129
|
export interface KeyRange {
|
|
170
130
|
BeginMarker?: string;
|
|
171
|
-
|
|
172
131
|
EndMarker?: string;
|
|
173
132
|
}
|
|
174
133
|
export declare enum DeviceServiceName {
|
|
@@ -180,26 +139,18 @@ export declare enum TransferOption {
|
|
|
180
139
|
IMPORT = "IMPORT",
|
|
181
140
|
LOCAL_USE = "LOCAL_USE",
|
|
182
141
|
}
|
|
183
|
-
|
|
184
142
|
export interface TargetOnDeviceService {
|
|
185
143
|
ServiceName?: DeviceServiceName | string;
|
|
186
|
-
|
|
187
144
|
TransferOption?: TransferOption | string;
|
|
188
145
|
}
|
|
189
|
-
|
|
190
146
|
export interface S3Resource {
|
|
191
147
|
BucketArn?: string;
|
|
192
|
-
|
|
193
148
|
KeyRange?: KeyRange;
|
|
194
|
-
|
|
195
149
|
TargetOnDeviceServices?: TargetOnDeviceService[];
|
|
196
150
|
}
|
|
197
|
-
|
|
198
151
|
export interface JobResource {
|
|
199
152
|
S3Resources?: S3Resource[];
|
|
200
|
-
|
|
201
153
|
LambdaResources?: LambdaResource[];
|
|
202
|
-
|
|
203
154
|
Ec2AmiResources?: Ec2AmiResource[];
|
|
204
155
|
}
|
|
205
156
|
export declare enum ShippingOption {
|
|
@@ -217,60 +168,42 @@ export declare enum SnowballType {
|
|
|
217
168
|
SNC1_SSD = "SNC1_SSD",
|
|
218
169
|
STANDARD = "STANDARD",
|
|
219
170
|
}
|
|
220
|
-
|
|
221
171
|
export interface INDTaxDocuments {
|
|
222
172
|
GSTIN?: string;
|
|
223
173
|
}
|
|
224
|
-
|
|
225
174
|
export interface TaxDocuments {
|
|
226
175
|
IND?: INDTaxDocuments;
|
|
227
176
|
}
|
|
228
177
|
export interface CreateClusterRequest {
|
|
229
178
|
JobType: JobType | string | undefined;
|
|
230
|
-
|
|
231
179
|
Resources: JobResource | undefined;
|
|
232
|
-
|
|
233
180
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
234
|
-
|
|
235
181
|
Description?: string;
|
|
236
|
-
|
|
237
182
|
AddressId: string | undefined;
|
|
238
|
-
|
|
239
183
|
KmsKeyARN?: string;
|
|
240
|
-
|
|
241
184
|
RoleARN: string | undefined;
|
|
242
|
-
|
|
243
185
|
SnowballType: SnowballType | string | undefined;
|
|
244
|
-
|
|
245
186
|
ShippingOption: ShippingOption | string | undefined;
|
|
246
|
-
|
|
247
187
|
Notification?: Notification;
|
|
248
|
-
|
|
249
188
|
ForwardingAddressId?: string;
|
|
250
|
-
|
|
251
189
|
TaxDocuments?: TaxDocuments;
|
|
252
|
-
|
|
253
190
|
RemoteManagement?: RemoteManagement | string;
|
|
254
191
|
}
|
|
255
192
|
export interface CreateClusterResult {
|
|
256
193
|
ClusterId?: string;
|
|
257
194
|
}
|
|
258
|
-
|
|
259
195
|
export declare class Ec2RequestFailedException extends __BaseException {
|
|
260
196
|
readonly name: "Ec2RequestFailedException";
|
|
261
197
|
readonly $fault: "client";
|
|
262
198
|
Message?: string;
|
|
263
|
-
|
|
264
199
|
constructor(
|
|
265
200
|
opts: __ExceptionOptionType<Ec2RequestFailedException, __BaseException>
|
|
266
201
|
);
|
|
267
202
|
}
|
|
268
|
-
|
|
269
203
|
export declare class InvalidInputCombinationException extends __BaseException {
|
|
270
204
|
readonly name: "InvalidInputCombinationException";
|
|
271
205
|
readonly $fault: "client";
|
|
272
206
|
Message?: string;
|
|
273
|
-
|
|
274
207
|
constructor(
|
|
275
208
|
opts: __ExceptionOptionType<
|
|
276
209
|
InvalidInputCombinationException,
|
|
@@ -278,25 +211,20 @@ export declare class InvalidInputCombinationException extends __BaseException {
|
|
|
278
211
|
>
|
|
279
212
|
);
|
|
280
213
|
}
|
|
281
|
-
|
|
282
214
|
export declare class ClusterLimitExceededException extends __BaseException {
|
|
283
215
|
readonly name: "ClusterLimitExceededException";
|
|
284
216
|
readonly $fault: "client";
|
|
285
217
|
Message?: string;
|
|
286
|
-
|
|
287
218
|
constructor(
|
|
288
219
|
opts: __ExceptionOptionType<ClusterLimitExceededException, __BaseException>
|
|
289
220
|
);
|
|
290
221
|
}
|
|
291
|
-
|
|
292
222
|
export interface WirelessConnection {
|
|
293
223
|
IsWifiEnabled?: boolean;
|
|
294
224
|
}
|
|
295
|
-
|
|
296
225
|
export interface SnowconeDeviceConfiguration {
|
|
297
226
|
WirelessConnection?: WirelessConnection;
|
|
298
227
|
}
|
|
299
|
-
|
|
300
228
|
export interface DeviceConfiguration {
|
|
301
229
|
SnowconeDeviceConfiguration?: SnowconeDeviceConfiguration;
|
|
302
230
|
}
|
|
@@ -312,37 +240,21 @@ export declare enum SnowballCapacity {
|
|
|
312
240
|
}
|
|
313
241
|
export interface CreateJobRequest {
|
|
314
242
|
JobType?: JobType | string;
|
|
315
|
-
|
|
316
243
|
Resources?: JobResource;
|
|
317
|
-
|
|
318
244
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
319
|
-
|
|
320
245
|
Description?: string;
|
|
321
|
-
|
|
322
246
|
AddressId?: string;
|
|
323
|
-
|
|
324
247
|
KmsKeyARN?: string;
|
|
325
|
-
|
|
326
248
|
RoleARN?: string;
|
|
327
|
-
|
|
328
249
|
SnowballCapacityPreference?: SnowballCapacity | string;
|
|
329
|
-
|
|
330
250
|
ShippingOption?: ShippingOption | string;
|
|
331
|
-
|
|
332
251
|
Notification?: Notification;
|
|
333
|
-
|
|
334
252
|
ClusterId?: string;
|
|
335
|
-
|
|
336
253
|
SnowballType?: SnowballType | string;
|
|
337
|
-
|
|
338
254
|
ForwardingAddressId?: string;
|
|
339
|
-
|
|
340
255
|
TaxDocuments?: TaxDocuments;
|
|
341
|
-
|
|
342
256
|
DeviceConfiguration?: DeviceConfiguration;
|
|
343
|
-
|
|
344
257
|
RemoteManagement?: RemoteManagement | string;
|
|
345
|
-
|
|
346
258
|
LongTermPricingId?: string;
|
|
347
259
|
}
|
|
348
260
|
export interface CreateJobResult {
|
|
@@ -354,27 +266,21 @@ export declare enum LongTermPricingType {
|
|
|
354
266
|
}
|
|
355
267
|
export interface CreateLongTermPricingRequest {
|
|
356
268
|
LongTermPricingType: LongTermPricingType | string | undefined;
|
|
357
|
-
|
|
358
269
|
IsLongTermPricingAutoRenew?: boolean;
|
|
359
|
-
|
|
360
270
|
SnowballType?: SnowballType | string;
|
|
361
271
|
}
|
|
362
272
|
export interface CreateLongTermPricingResult {
|
|
363
273
|
LongTermPricingId?: string;
|
|
364
274
|
}
|
|
365
|
-
|
|
366
275
|
export declare class ConflictException extends __BaseException {
|
|
367
276
|
readonly name: "ConflictException";
|
|
368
277
|
readonly $fault: "client";
|
|
369
|
-
|
|
370
278
|
ConflictResource?: string;
|
|
371
279
|
Message?: string;
|
|
372
|
-
|
|
373
280
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
374
281
|
}
|
|
375
282
|
export interface CreateReturnShippingLabelRequest {
|
|
376
283
|
JobId: string | undefined;
|
|
377
|
-
|
|
378
284
|
ShippingOption?: ShippingOption | string;
|
|
379
285
|
}
|
|
380
286
|
export declare enum ShippingLabelStatus {
|
|
@@ -386,12 +292,10 @@ export declare enum ShippingLabelStatus {
|
|
|
386
292
|
export interface CreateReturnShippingLabelResult {
|
|
387
293
|
Status?: ShippingLabelStatus | string;
|
|
388
294
|
}
|
|
389
|
-
|
|
390
295
|
export declare class ReturnShippingLabelAlreadyExistsException extends __BaseException {
|
|
391
296
|
readonly name: "ReturnShippingLabelAlreadyExistsException";
|
|
392
297
|
readonly $fault: "client";
|
|
393
298
|
Message?: string;
|
|
394
|
-
|
|
395
299
|
constructor(
|
|
396
300
|
opts: __ExceptionOptionType<
|
|
397
301
|
ReturnShippingLabelAlreadyExistsException,
|
|
@@ -407,20 +311,16 @@ export interface DescribeAddressResult {
|
|
|
407
311
|
}
|
|
408
312
|
export interface DescribeAddressesRequest {
|
|
409
313
|
MaxResults?: number;
|
|
410
|
-
|
|
411
314
|
NextToken?: string;
|
|
412
315
|
}
|
|
413
316
|
export interface DescribeAddressesResult {
|
|
414
317
|
Addresses?: Address[];
|
|
415
|
-
|
|
416
318
|
NextToken?: string;
|
|
417
319
|
}
|
|
418
|
-
|
|
419
320
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
420
321
|
readonly name: "InvalidNextTokenException";
|
|
421
322
|
readonly $fault: "client";
|
|
422
323
|
Message?: string;
|
|
423
|
-
|
|
424
324
|
constructor(
|
|
425
325
|
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
426
326
|
);
|
|
@@ -435,36 +335,21 @@ export declare enum ClusterState {
|
|
|
435
335
|
IN_USE = "InUse",
|
|
436
336
|
PENDING = "Pending",
|
|
437
337
|
}
|
|
438
|
-
|
|
439
338
|
export interface ClusterMetadata {
|
|
440
339
|
ClusterId?: string;
|
|
441
|
-
|
|
442
340
|
Description?: string;
|
|
443
|
-
|
|
444
341
|
KmsKeyARN?: string;
|
|
445
|
-
|
|
446
342
|
RoleARN?: string;
|
|
447
|
-
|
|
448
343
|
ClusterState?: ClusterState | string;
|
|
449
|
-
|
|
450
344
|
JobType?: JobType | string;
|
|
451
|
-
|
|
452
345
|
SnowballType?: SnowballType | string;
|
|
453
|
-
|
|
454
346
|
CreationDate?: Date;
|
|
455
|
-
|
|
456
347
|
Resources?: JobResource;
|
|
457
|
-
|
|
458
348
|
AddressId?: string;
|
|
459
|
-
|
|
460
349
|
ShippingOption?: ShippingOption | string;
|
|
461
|
-
|
|
462
350
|
Notification?: Notification;
|
|
463
|
-
|
|
464
351
|
ForwardingAddressId?: string;
|
|
465
|
-
|
|
466
352
|
TaxDocuments?: TaxDocuments;
|
|
467
|
-
|
|
468
353
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
469
354
|
}
|
|
470
355
|
export interface DescribeClusterResult {
|
|
@@ -473,87 +358,52 @@ export interface DescribeClusterResult {
|
|
|
473
358
|
export interface DescribeJobRequest {
|
|
474
359
|
JobId: string | undefined;
|
|
475
360
|
}
|
|
476
|
-
|
|
477
361
|
export interface DataTransfer {
|
|
478
362
|
BytesTransferred?: number;
|
|
479
|
-
|
|
480
363
|
ObjectsTransferred?: number;
|
|
481
|
-
|
|
482
364
|
TotalBytes?: number;
|
|
483
|
-
|
|
484
365
|
TotalObjects?: number;
|
|
485
366
|
}
|
|
486
|
-
|
|
487
367
|
export interface JobLogs {
|
|
488
368
|
JobCompletionReportURI?: string;
|
|
489
|
-
|
|
490
369
|
JobSuccessLogURI?: string;
|
|
491
|
-
|
|
492
370
|
JobFailureLogURI?: string;
|
|
493
371
|
}
|
|
494
|
-
|
|
495
372
|
export interface Shipment {
|
|
496
373
|
Status?: string;
|
|
497
|
-
|
|
498
374
|
TrackingNumber?: string;
|
|
499
375
|
}
|
|
500
|
-
|
|
501
376
|
export interface ShippingDetails {
|
|
502
377
|
ShippingOption?: ShippingOption | string;
|
|
503
|
-
|
|
504
378
|
InboundShipment?: Shipment;
|
|
505
|
-
|
|
506
379
|
OutboundShipment?: Shipment;
|
|
507
380
|
}
|
|
508
|
-
|
|
509
381
|
export interface JobMetadata {
|
|
510
382
|
JobId?: string;
|
|
511
|
-
|
|
512
383
|
JobState?: JobState | string;
|
|
513
|
-
|
|
514
384
|
JobType?: JobType | string;
|
|
515
|
-
|
|
516
385
|
SnowballType?: SnowballType | string;
|
|
517
|
-
|
|
518
386
|
CreationDate?: Date;
|
|
519
|
-
|
|
520
387
|
Resources?: JobResource;
|
|
521
|
-
|
|
522
388
|
Description?: string;
|
|
523
|
-
|
|
524
389
|
KmsKeyARN?: string;
|
|
525
|
-
|
|
526
390
|
RoleARN?: string;
|
|
527
|
-
|
|
528
391
|
AddressId?: string;
|
|
529
|
-
|
|
530
392
|
ShippingDetails?: ShippingDetails;
|
|
531
|
-
|
|
532
393
|
SnowballCapacityPreference?: SnowballCapacity | string;
|
|
533
|
-
|
|
534
394
|
Notification?: Notification;
|
|
535
|
-
|
|
536
395
|
DataTransferProgress?: DataTransfer;
|
|
537
|
-
|
|
538
396
|
JobLogInfo?: JobLogs;
|
|
539
|
-
|
|
540
397
|
ClusterId?: string;
|
|
541
|
-
|
|
542
398
|
ForwardingAddressId?: string;
|
|
543
|
-
|
|
544
399
|
TaxDocuments?: TaxDocuments;
|
|
545
|
-
|
|
546
400
|
DeviceConfiguration?: DeviceConfiguration;
|
|
547
|
-
|
|
548
401
|
RemoteManagement?: RemoteManagement | string;
|
|
549
|
-
|
|
550
402
|
LongTermPricingId?: string;
|
|
551
|
-
|
|
552
403
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
553
404
|
}
|
|
554
405
|
export interface DescribeJobResult {
|
|
555
406
|
JobMetadata?: JobMetadata;
|
|
556
|
-
|
|
557
407
|
SubJobMetadata?: JobMetadata[];
|
|
558
408
|
}
|
|
559
409
|
export interface DescribeReturnShippingLabelRequest {
|
|
@@ -561,9 +411,7 @@ export interface DescribeReturnShippingLabelRequest {
|
|
|
561
411
|
}
|
|
562
412
|
export interface DescribeReturnShippingLabelResult {
|
|
563
413
|
Status?: ShippingLabelStatus | string;
|
|
564
|
-
|
|
565
414
|
ExpirationDate?: Date;
|
|
566
|
-
|
|
567
415
|
ReturnShippingLabelURI?: string;
|
|
568
416
|
}
|
|
569
417
|
export interface GetJobManifestRequest {
|
|
@@ -581,7 +429,6 @@ export interface GetJobUnlockCodeResult {
|
|
|
581
429
|
export interface GetSnowballUsageRequest {}
|
|
582
430
|
export interface GetSnowballUsageResult {
|
|
583
431
|
SnowballLimit?: number;
|
|
584
|
-
|
|
585
432
|
SnowballsInUse?: number;
|
|
586
433
|
}
|
|
587
434
|
export interface GetSoftwareUpdatesRequest {
|
|
@@ -592,149 +439,98 @@ export interface GetSoftwareUpdatesResult {
|
|
|
592
439
|
}
|
|
593
440
|
export interface ListClusterJobsRequest {
|
|
594
441
|
ClusterId: string | undefined;
|
|
595
|
-
|
|
596
442
|
MaxResults?: number;
|
|
597
|
-
|
|
598
443
|
NextToken?: string;
|
|
599
444
|
}
|
|
600
|
-
|
|
601
445
|
export interface JobListEntry {
|
|
602
446
|
JobId?: string;
|
|
603
|
-
|
|
604
447
|
JobState?: JobState | string;
|
|
605
|
-
|
|
606
448
|
IsMaster?: boolean;
|
|
607
|
-
|
|
608
449
|
JobType?: JobType | string;
|
|
609
|
-
|
|
610
450
|
SnowballType?: SnowballType | string;
|
|
611
|
-
|
|
612
451
|
CreationDate?: Date;
|
|
613
|
-
|
|
614
452
|
Description?: string;
|
|
615
453
|
}
|
|
616
454
|
export interface ListClusterJobsResult {
|
|
617
455
|
JobListEntries?: JobListEntry[];
|
|
618
|
-
|
|
619
456
|
NextToken?: string;
|
|
620
457
|
}
|
|
621
458
|
export interface ListClustersRequest {
|
|
622
459
|
MaxResults?: number;
|
|
623
|
-
|
|
624
460
|
NextToken?: string;
|
|
625
461
|
}
|
|
626
|
-
|
|
627
462
|
export interface ClusterListEntry {
|
|
628
463
|
ClusterId?: string;
|
|
629
|
-
|
|
630
464
|
ClusterState?: ClusterState | string;
|
|
631
|
-
|
|
632
465
|
CreationDate?: Date;
|
|
633
|
-
|
|
634
466
|
Description?: string;
|
|
635
467
|
}
|
|
636
468
|
export interface ListClustersResult {
|
|
637
469
|
ClusterListEntries?: ClusterListEntry[];
|
|
638
|
-
|
|
639
470
|
NextToken?: string;
|
|
640
471
|
}
|
|
641
472
|
export interface ListCompatibleImagesRequest {
|
|
642
473
|
MaxResults?: number;
|
|
643
|
-
|
|
644
474
|
NextToken?: string;
|
|
645
475
|
}
|
|
646
|
-
|
|
647
476
|
export interface CompatibleImage {
|
|
648
477
|
AmiId?: string;
|
|
649
|
-
|
|
650
478
|
Name?: string;
|
|
651
479
|
}
|
|
652
480
|
export interface ListCompatibleImagesResult {
|
|
653
481
|
CompatibleImages?: CompatibleImage[];
|
|
654
|
-
|
|
655
482
|
NextToken?: string;
|
|
656
483
|
}
|
|
657
484
|
export interface ListJobsRequest {
|
|
658
485
|
MaxResults?: number;
|
|
659
|
-
|
|
660
486
|
NextToken?: string;
|
|
661
487
|
}
|
|
662
488
|
export interface ListJobsResult {
|
|
663
489
|
JobListEntries?: JobListEntry[];
|
|
664
|
-
|
|
665
490
|
NextToken?: string;
|
|
666
491
|
}
|
|
667
492
|
export interface ListLongTermPricingRequest {
|
|
668
493
|
MaxResults?: number;
|
|
669
|
-
|
|
670
494
|
NextToken?: string;
|
|
671
495
|
}
|
|
672
|
-
|
|
673
496
|
export interface LongTermPricingListEntry {
|
|
674
497
|
LongTermPricingId?: string;
|
|
675
|
-
|
|
676
498
|
LongTermPricingEndDate?: Date;
|
|
677
|
-
|
|
678
499
|
LongTermPricingStartDate?: Date;
|
|
679
|
-
|
|
680
500
|
LongTermPricingType?: LongTermPricingType | string;
|
|
681
|
-
|
|
682
501
|
CurrentActiveJob?: string;
|
|
683
|
-
|
|
684
502
|
ReplacementJob?: string;
|
|
685
|
-
|
|
686
503
|
IsLongTermPricingAutoRenew?: boolean;
|
|
687
|
-
|
|
688
504
|
LongTermPricingStatus?: string;
|
|
689
|
-
|
|
690
505
|
SnowballType?: SnowballType | string;
|
|
691
|
-
|
|
692
506
|
JobIds?: string[];
|
|
693
507
|
}
|
|
694
508
|
export interface ListLongTermPricingResult {
|
|
695
509
|
LongTermPricingEntries?: LongTermPricingListEntry[];
|
|
696
|
-
|
|
697
510
|
NextToken?: string;
|
|
698
511
|
}
|
|
699
512
|
export interface UpdateClusterRequest {
|
|
700
513
|
ClusterId: string | undefined;
|
|
701
|
-
|
|
702
514
|
RoleARN?: string;
|
|
703
|
-
|
|
704
515
|
Description?: string;
|
|
705
|
-
|
|
706
516
|
Resources?: JobResource;
|
|
707
|
-
|
|
708
517
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
709
|
-
|
|
710
518
|
AddressId?: string;
|
|
711
|
-
|
|
712
519
|
ShippingOption?: ShippingOption | string;
|
|
713
|
-
|
|
714
520
|
Notification?: Notification;
|
|
715
|
-
|
|
716
521
|
ForwardingAddressId?: string;
|
|
717
522
|
}
|
|
718
523
|
export interface UpdateClusterResult {}
|
|
719
524
|
export interface UpdateJobRequest {
|
|
720
525
|
JobId: string | undefined;
|
|
721
|
-
|
|
722
526
|
RoleARN?: string;
|
|
723
|
-
|
|
724
527
|
Notification?: Notification;
|
|
725
|
-
|
|
726
528
|
Resources?: JobResource;
|
|
727
|
-
|
|
728
529
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
729
|
-
|
|
730
530
|
AddressId?: string;
|
|
731
|
-
|
|
732
531
|
ShippingOption?: ShippingOption | string;
|
|
733
|
-
|
|
734
532
|
Description?: string;
|
|
735
|
-
|
|
736
533
|
SnowballCapacityPreference?: SnowballCapacity | string;
|
|
737
|
-
|
|
738
534
|
ForwardingAddressId?: string;
|
|
739
535
|
}
|
|
740
536
|
export interface UpdateJobResult {}
|
|
@@ -744,301 +540,221 @@ export declare enum ShipmentState {
|
|
|
744
540
|
}
|
|
745
541
|
export interface UpdateJobShipmentStateRequest {
|
|
746
542
|
JobId: string | undefined;
|
|
747
|
-
|
|
748
543
|
ShipmentState: ShipmentState | string | undefined;
|
|
749
544
|
}
|
|
750
545
|
export interface UpdateJobShipmentStateResult {}
|
|
751
546
|
export interface UpdateLongTermPricingRequest {
|
|
752
547
|
LongTermPricingId: string | undefined;
|
|
753
|
-
|
|
754
548
|
ReplacementJob?: string;
|
|
755
|
-
|
|
756
549
|
IsLongTermPricingAutoRenew?: boolean;
|
|
757
550
|
}
|
|
758
551
|
export interface UpdateLongTermPricingResult {}
|
|
759
|
-
|
|
760
552
|
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
761
|
-
|
|
762
553
|
export declare const CancelClusterRequestFilterSensitiveLog: (
|
|
763
554
|
obj: CancelClusterRequest
|
|
764
555
|
) => any;
|
|
765
|
-
|
|
766
556
|
export declare const CancelClusterResultFilterSensitiveLog: (
|
|
767
557
|
obj: CancelClusterResult
|
|
768
558
|
) => any;
|
|
769
|
-
|
|
770
559
|
export declare const CancelJobRequestFilterSensitiveLog: (
|
|
771
560
|
obj: CancelJobRequest
|
|
772
561
|
) => any;
|
|
773
|
-
|
|
774
562
|
export declare const CancelJobResultFilterSensitiveLog: (
|
|
775
563
|
obj: CancelJobResult
|
|
776
564
|
) => any;
|
|
777
|
-
|
|
778
565
|
export declare const CreateAddressRequestFilterSensitiveLog: (
|
|
779
566
|
obj: CreateAddressRequest
|
|
780
567
|
) => any;
|
|
781
|
-
|
|
782
568
|
export declare const CreateAddressResultFilterSensitiveLog: (
|
|
783
569
|
obj: CreateAddressResult
|
|
784
570
|
) => any;
|
|
785
|
-
|
|
786
571
|
export declare const NotificationFilterSensitiveLog: (obj: Notification) => any;
|
|
787
|
-
|
|
788
572
|
export declare const NFSOnDeviceServiceConfigurationFilterSensitiveLog: (
|
|
789
573
|
obj: NFSOnDeviceServiceConfiguration
|
|
790
574
|
) => any;
|
|
791
|
-
|
|
792
575
|
export declare const TGWOnDeviceServiceConfigurationFilterSensitiveLog: (
|
|
793
576
|
obj: TGWOnDeviceServiceConfiguration
|
|
794
577
|
) => any;
|
|
795
|
-
|
|
796
578
|
export declare const OnDeviceServiceConfigurationFilterSensitiveLog: (
|
|
797
579
|
obj: OnDeviceServiceConfiguration
|
|
798
580
|
) => any;
|
|
799
|
-
|
|
800
581
|
export declare const Ec2AmiResourceFilterSensitiveLog: (
|
|
801
582
|
obj: Ec2AmiResource
|
|
802
583
|
) => any;
|
|
803
|
-
|
|
804
584
|
export declare const EventTriggerDefinitionFilterSensitiveLog: (
|
|
805
585
|
obj: EventTriggerDefinition
|
|
806
586
|
) => any;
|
|
807
|
-
|
|
808
587
|
export declare const LambdaResourceFilterSensitiveLog: (
|
|
809
588
|
obj: LambdaResource
|
|
810
589
|
) => any;
|
|
811
|
-
|
|
812
590
|
export declare const KeyRangeFilterSensitiveLog: (obj: KeyRange) => any;
|
|
813
|
-
|
|
814
591
|
export declare const TargetOnDeviceServiceFilterSensitiveLog: (
|
|
815
592
|
obj: TargetOnDeviceService
|
|
816
593
|
) => any;
|
|
817
|
-
|
|
818
594
|
export declare const S3ResourceFilterSensitiveLog: (obj: S3Resource) => any;
|
|
819
|
-
|
|
820
595
|
export declare const JobResourceFilterSensitiveLog: (obj: JobResource) => any;
|
|
821
|
-
|
|
822
596
|
export declare const INDTaxDocumentsFilterSensitiveLog: (
|
|
823
597
|
obj: INDTaxDocuments
|
|
824
598
|
) => any;
|
|
825
|
-
|
|
826
599
|
export declare const TaxDocumentsFilterSensitiveLog: (obj: TaxDocuments) => any;
|
|
827
|
-
|
|
828
600
|
export declare const CreateClusterRequestFilterSensitiveLog: (
|
|
829
601
|
obj: CreateClusterRequest
|
|
830
602
|
) => any;
|
|
831
|
-
|
|
832
603
|
export declare const CreateClusterResultFilterSensitiveLog: (
|
|
833
604
|
obj: CreateClusterResult
|
|
834
605
|
) => any;
|
|
835
|
-
|
|
836
606
|
export declare const WirelessConnectionFilterSensitiveLog: (
|
|
837
607
|
obj: WirelessConnection
|
|
838
608
|
) => any;
|
|
839
|
-
|
|
840
609
|
export declare const SnowconeDeviceConfigurationFilterSensitiveLog: (
|
|
841
610
|
obj: SnowconeDeviceConfiguration
|
|
842
611
|
) => any;
|
|
843
|
-
|
|
844
612
|
export declare const DeviceConfigurationFilterSensitiveLog: (
|
|
845
613
|
obj: DeviceConfiguration
|
|
846
614
|
) => any;
|
|
847
|
-
|
|
848
615
|
export declare const CreateJobRequestFilterSensitiveLog: (
|
|
849
616
|
obj: CreateJobRequest
|
|
850
617
|
) => any;
|
|
851
|
-
|
|
852
618
|
export declare const CreateJobResultFilterSensitiveLog: (
|
|
853
619
|
obj: CreateJobResult
|
|
854
620
|
) => any;
|
|
855
|
-
|
|
856
621
|
export declare const CreateLongTermPricingRequestFilterSensitiveLog: (
|
|
857
622
|
obj: CreateLongTermPricingRequest
|
|
858
623
|
) => any;
|
|
859
|
-
|
|
860
624
|
export declare const CreateLongTermPricingResultFilterSensitiveLog: (
|
|
861
625
|
obj: CreateLongTermPricingResult
|
|
862
626
|
) => any;
|
|
863
|
-
|
|
864
627
|
export declare const CreateReturnShippingLabelRequestFilterSensitiveLog: (
|
|
865
628
|
obj: CreateReturnShippingLabelRequest
|
|
866
629
|
) => any;
|
|
867
|
-
|
|
868
630
|
export declare const CreateReturnShippingLabelResultFilterSensitiveLog: (
|
|
869
631
|
obj: CreateReturnShippingLabelResult
|
|
870
632
|
) => any;
|
|
871
|
-
|
|
872
633
|
export declare const DescribeAddressRequestFilterSensitiveLog: (
|
|
873
634
|
obj: DescribeAddressRequest
|
|
874
635
|
) => any;
|
|
875
|
-
|
|
876
636
|
export declare const DescribeAddressResultFilterSensitiveLog: (
|
|
877
637
|
obj: DescribeAddressResult
|
|
878
638
|
) => any;
|
|
879
|
-
|
|
880
639
|
export declare const DescribeAddressesRequestFilterSensitiveLog: (
|
|
881
640
|
obj: DescribeAddressesRequest
|
|
882
641
|
) => any;
|
|
883
|
-
|
|
884
642
|
export declare const DescribeAddressesResultFilterSensitiveLog: (
|
|
885
643
|
obj: DescribeAddressesResult
|
|
886
644
|
) => any;
|
|
887
|
-
|
|
888
645
|
export declare const DescribeClusterRequestFilterSensitiveLog: (
|
|
889
646
|
obj: DescribeClusterRequest
|
|
890
647
|
) => any;
|
|
891
|
-
|
|
892
648
|
export declare const ClusterMetadataFilterSensitiveLog: (
|
|
893
649
|
obj: ClusterMetadata
|
|
894
650
|
) => any;
|
|
895
|
-
|
|
896
651
|
export declare const DescribeClusterResultFilterSensitiveLog: (
|
|
897
652
|
obj: DescribeClusterResult
|
|
898
653
|
) => any;
|
|
899
|
-
|
|
900
654
|
export declare const DescribeJobRequestFilterSensitiveLog: (
|
|
901
655
|
obj: DescribeJobRequest
|
|
902
656
|
) => any;
|
|
903
|
-
|
|
904
657
|
export declare const DataTransferFilterSensitiveLog: (obj: DataTransfer) => any;
|
|
905
|
-
|
|
906
658
|
export declare const JobLogsFilterSensitiveLog: (obj: JobLogs) => any;
|
|
907
|
-
|
|
908
659
|
export declare const ShipmentFilterSensitiveLog: (obj: Shipment) => any;
|
|
909
|
-
|
|
910
660
|
export declare const ShippingDetailsFilterSensitiveLog: (
|
|
911
661
|
obj: ShippingDetails
|
|
912
662
|
) => any;
|
|
913
|
-
|
|
914
663
|
export declare const JobMetadataFilterSensitiveLog: (obj: JobMetadata) => any;
|
|
915
|
-
|
|
916
664
|
export declare const DescribeJobResultFilterSensitiveLog: (
|
|
917
665
|
obj: DescribeJobResult
|
|
918
666
|
) => any;
|
|
919
|
-
|
|
920
667
|
export declare const DescribeReturnShippingLabelRequestFilterSensitiveLog: (
|
|
921
668
|
obj: DescribeReturnShippingLabelRequest
|
|
922
669
|
) => any;
|
|
923
|
-
|
|
924
670
|
export declare const DescribeReturnShippingLabelResultFilterSensitiveLog: (
|
|
925
671
|
obj: DescribeReturnShippingLabelResult
|
|
926
672
|
) => any;
|
|
927
|
-
|
|
928
673
|
export declare const GetJobManifestRequestFilterSensitiveLog: (
|
|
929
674
|
obj: GetJobManifestRequest
|
|
930
675
|
) => any;
|
|
931
|
-
|
|
932
676
|
export declare const GetJobManifestResultFilterSensitiveLog: (
|
|
933
677
|
obj: GetJobManifestResult
|
|
934
678
|
) => any;
|
|
935
|
-
|
|
936
679
|
export declare const GetJobUnlockCodeRequestFilterSensitiveLog: (
|
|
937
680
|
obj: GetJobUnlockCodeRequest
|
|
938
681
|
) => any;
|
|
939
|
-
|
|
940
682
|
export declare const GetJobUnlockCodeResultFilterSensitiveLog: (
|
|
941
683
|
obj: GetJobUnlockCodeResult
|
|
942
684
|
) => any;
|
|
943
|
-
|
|
944
685
|
export declare const GetSnowballUsageRequestFilterSensitiveLog: (
|
|
945
686
|
obj: GetSnowballUsageRequest
|
|
946
687
|
) => any;
|
|
947
|
-
|
|
948
688
|
export declare const GetSnowballUsageResultFilterSensitiveLog: (
|
|
949
689
|
obj: GetSnowballUsageResult
|
|
950
690
|
) => any;
|
|
951
|
-
|
|
952
691
|
export declare const GetSoftwareUpdatesRequestFilterSensitiveLog: (
|
|
953
692
|
obj: GetSoftwareUpdatesRequest
|
|
954
693
|
) => any;
|
|
955
|
-
|
|
956
694
|
export declare const GetSoftwareUpdatesResultFilterSensitiveLog: (
|
|
957
695
|
obj: GetSoftwareUpdatesResult
|
|
958
696
|
) => any;
|
|
959
|
-
|
|
960
697
|
export declare const ListClusterJobsRequestFilterSensitiveLog: (
|
|
961
698
|
obj: ListClusterJobsRequest
|
|
962
699
|
) => any;
|
|
963
|
-
|
|
964
700
|
export declare const JobListEntryFilterSensitiveLog: (obj: JobListEntry) => any;
|
|
965
|
-
|
|
966
701
|
export declare const ListClusterJobsResultFilterSensitiveLog: (
|
|
967
702
|
obj: ListClusterJobsResult
|
|
968
703
|
) => any;
|
|
969
|
-
|
|
970
704
|
export declare const ListClustersRequestFilterSensitiveLog: (
|
|
971
705
|
obj: ListClustersRequest
|
|
972
706
|
) => any;
|
|
973
|
-
|
|
974
707
|
export declare const ClusterListEntryFilterSensitiveLog: (
|
|
975
708
|
obj: ClusterListEntry
|
|
976
709
|
) => any;
|
|
977
|
-
|
|
978
710
|
export declare const ListClustersResultFilterSensitiveLog: (
|
|
979
711
|
obj: ListClustersResult
|
|
980
712
|
) => any;
|
|
981
|
-
|
|
982
713
|
export declare const ListCompatibleImagesRequestFilterSensitiveLog: (
|
|
983
714
|
obj: ListCompatibleImagesRequest
|
|
984
715
|
) => any;
|
|
985
|
-
|
|
986
716
|
export declare const CompatibleImageFilterSensitiveLog: (
|
|
987
717
|
obj: CompatibleImage
|
|
988
718
|
) => any;
|
|
989
|
-
|
|
990
719
|
export declare const ListCompatibleImagesResultFilterSensitiveLog: (
|
|
991
720
|
obj: ListCompatibleImagesResult
|
|
992
721
|
) => any;
|
|
993
|
-
|
|
994
722
|
export declare const ListJobsRequestFilterSensitiveLog: (
|
|
995
723
|
obj: ListJobsRequest
|
|
996
724
|
) => any;
|
|
997
|
-
|
|
998
725
|
export declare const ListJobsResultFilterSensitiveLog: (
|
|
999
726
|
obj: ListJobsResult
|
|
1000
727
|
) => any;
|
|
1001
|
-
|
|
1002
728
|
export declare const ListLongTermPricingRequestFilterSensitiveLog: (
|
|
1003
729
|
obj: ListLongTermPricingRequest
|
|
1004
730
|
) => any;
|
|
1005
|
-
|
|
1006
731
|
export declare const LongTermPricingListEntryFilterSensitiveLog: (
|
|
1007
732
|
obj: LongTermPricingListEntry
|
|
1008
733
|
) => any;
|
|
1009
|
-
|
|
1010
734
|
export declare const ListLongTermPricingResultFilterSensitiveLog: (
|
|
1011
735
|
obj: ListLongTermPricingResult
|
|
1012
736
|
) => any;
|
|
1013
|
-
|
|
1014
737
|
export declare const UpdateClusterRequestFilterSensitiveLog: (
|
|
1015
738
|
obj: UpdateClusterRequest
|
|
1016
739
|
) => any;
|
|
1017
|
-
|
|
1018
740
|
export declare const UpdateClusterResultFilterSensitiveLog: (
|
|
1019
741
|
obj: UpdateClusterResult
|
|
1020
742
|
) => any;
|
|
1021
|
-
|
|
1022
743
|
export declare const UpdateJobRequestFilterSensitiveLog: (
|
|
1023
744
|
obj: UpdateJobRequest
|
|
1024
745
|
) => any;
|
|
1025
|
-
|
|
1026
746
|
export declare const UpdateJobResultFilterSensitiveLog: (
|
|
1027
747
|
obj: UpdateJobResult
|
|
1028
748
|
) => any;
|
|
1029
|
-
|
|
1030
749
|
export declare const UpdateJobShipmentStateRequestFilterSensitiveLog: (
|
|
1031
750
|
obj: UpdateJobShipmentStateRequest
|
|
1032
751
|
) => any;
|
|
1033
|
-
|
|
1034
752
|
export declare const UpdateJobShipmentStateResultFilterSensitiveLog: (
|
|
1035
753
|
obj: UpdateJobShipmentStateResult
|
|
1036
754
|
) => any;
|
|
1037
|
-
|
|
1038
755
|
export declare const UpdateLongTermPricingRequestFilterSensitiveLog: (
|
|
1039
756
|
obj: UpdateLongTermPricingRequest
|
|
1040
757
|
) => any;
|
|
1041
|
-
|
|
1042
758
|
export declare const UpdateLongTermPricingResultFilterSensitiveLog: (
|
|
1043
759
|
obj: UpdateLongTermPricingResult
|
|
1044
760
|
) => any;
|