@aws-sdk/client-snowball 3.721.0 → 3.726.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/dist-cjs/index.js +212 -146
- package/dist-es/SnowballClient.js +1 -0
- package/dist-es/models/models_0.js +35 -22
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -190,7 +190,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
190
190
|
}, "resolveRuntimeExtensions");
|
|
191
191
|
|
|
192
192
|
// src/SnowballClient.ts
|
|
193
|
-
var
|
|
193
|
+
var SnowballClient = class extends import_smithy_client.Client {
|
|
194
|
+
static {
|
|
195
|
+
__name(this, "SnowballClient");
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* The resolved configuration of SnowballClient class. This is resolved and normalized from the {@link SnowballClientConfig | constructor configuration interface}.
|
|
199
|
+
*/
|
|
200
|
+
config;
|
|
194
201
|
constructor(...[configuration]) {
|
|
195
202
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
196
203
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -200,7 +207,7 @@ var _SnowballClient = class _SnowballClient extends import_smithy_client.Client
|
|
|
200
207
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
201
208
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
202
209
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
203
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
210
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
204
211
|
super(_config_8);
|
|
205
212
|
this.config = _config_8;
|
|
206
213
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -228,8 +235,6 @@ var _SnowballClient = class _SnowballClient extends import_smithy_client.Client
|
|
|
228
235
|
super.destroy();
|
|
229
236
|
}
|
|
230
237
|
};
|
|
231
|
-
__name(_SnowballClient, "SnowballClient");
|
|
232
|
-
var SnowballClient = _SnowballClient;
|
|
233
238
|
|
|
234
239
|
// src/Snowball.ts
|
|
235
240
|
|
|
@@ -249,7 +254,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
249
254
|
|
|
250
255
|
// src/models/SnowballServiceException.ts
|
|
251
256
|
|
|
252
|
-
var
|
|
257
|
+
var SnowballServiceException = class _SnowballServiceException extends import_smithy_client.ServiceException {
|
|
258
|
+
static {
|
|
259
|
+
__name(this, "SnowballServiceException");
|
|
260
|
+
}
|
|
253
261
|
/**
|
|
254
262
|
* @internal
|
|
255
263
|
*/
|
|
@@ -258,15 +266,19 @@ var _SnowballServiceException = class _SnowballServiceException extends import_s
|
|
|
258
266
|
Object.setPrototypeOf(this, _SnowballServiceException.prototype);
|
|
259
267
|
}
|
|
260
268
|
};
|
|
261
|
-
__name(_SnowballServiceException, "SnowballServiceException");
|
|
262
|
-
var SnowballServiceException = _SnowballServiceException;
|
|
263
269
|
|
|
264
270
|
// src/models/models_0.ts
|
|
265
271
|
var AddressType = {
|
|
266
272
|
AWS_SHIP: "AWS_SHIP",
|
|
267
273
|
CUST_PICKUP: "CUST_PICKUP"
|
|
268
274
|
};
|
|
269
|
-
var
|
|
275
|
+
var InvalidJobStateException = class _InvalidJobStateException extends SnowballServiceException {
|
|
276
|
+
static {
|
|
277
|
+
__name(this, "InvalidJobStateException");
|
|
278
|
+
}
|
|
279
|
+
name = "InvalidJobStateException";
|
|
280
|
+
$fault = "client";
|
|
281
|
+
Message;
|
|
270
282
|
/**
|
|
271
283
|
* @internal
|
|
272
284
|
*/
|
|
@@ -276,15 +288,22 @@ var _InvalidJobStateException = class _InvalidJobStateException extends Snowball
|
|
|
276
288
|
$fault: "client",
|
|
277
289
|
...opts
|
|
278
290
|
});
|
|
279
|
-
this.name = "InvalidJobStateException";
|
|
280
|
-
this.$fault = "client";
|
|
281
291
|
Object.setPrototypeOf(this, _InvalidJobStateException.prototype);
|
|
282
292
|
this.Message = opts.Message;
|
|
283
293
|
}
|
|
284
294
|
};
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
295
|
+
var InvalidResourceException = class _InvalidResourceException extends SnowballServiceException {
|
|
296
|
+
static {
|
|
297
|
+
__name(this, "InvalidResourceException");
|
|
298
|
+
}
|
|
299
|
+
name = "InvalidResourceException";
|
|
300
|
+
$fault = "client";
|
|
301
|
+
Message;
|
|
302
|
+
/**
|
|
303
|
+
* <p>The provided resource value is invalid.</p>
|
|
304
|
+
* @public
|
|
305
|
+
*/
|
|
306
|
+
ResourceType;
|
|
288
307
|
/**
|
|
289
308
|
* @internal
|
|
290
309
|
*/
|
|
@@ -294,16 +313,18 @@ var _InvalidResourceException = class _InvalidResourceException extends Snowball
|
|
|
294
313
|
$fault: "client",
|
|
295
314
|
...opts
|
|
296
315
|
});
|
|
297
|
-
this.name = "InvalidResourceException";
|
|
298
|
-
this.$fault = "client";
|
|
299
316
|
Object.setPrototypeOf(this, _InvalidResourceException.prototype);
|
|
300
317
|
this.Message = opts.Message;
|
|
301
318
|
this.ResourceType = opts.ResourceType;
|
|
302
319
|
}
|
|
303
320
|
};
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
321
|
+
var KMSRequestFailedException = class _KMSRequestFailedException extends SnowballServiceException {
|
|
322
|
+
static {
|
|
323
|
+
__name(this, "KMSRequestFailedException");
|
|
324
|
+
}
|
|
325
|
+
name = "KMSRequestFailedException";
|
|
326
|
+
$fault = "client";
|
|
327
|
+
Message;
|
|
307
328
|
/**
|
|
308
329
|
* @internal
|
|
309
330
|
*/
|
|
@@ -313,15 +334,17 @@ var _KMSRequestFailedException = class _KMSRequestFailedException extends Snowba
|
|
|
313
334
|
$fault: "client",
|
|
314
335
|
...opts
|
|
315
336
|
});
|
|
316
|
-
this.name = "KMSRequestFailedException";
|
|
317
|
-
this.$fault = "client";
|
|
318
337
|
Object.setPrototypeOf(this, _KMSRequestFailedException.prototype);
|
|
319
338
|
this.Message = opts.Message;
|
|
320
339
|
}
|
|
321
340
|
};
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
341
|
+
var InvalidAddressException = class _InvalidAddressException extends SnowballServiceException {
|
|
342
|
+
static {
|
|
343
|
+
__name(this, "InvalidAddressException");
|
|
344
|
+
}
|
|
345
|
+
name = "InvalidAddressException";
|
|
346
|
+
$fault = "client";
|
|
347
|
+
Message;
|
|
325
348
|
/**
|
|
326
349
|
* @internal
|
|
327
350
|
*/
|
|
@@ -331,15 +354,17 @@ var _InvalidAddressException = class _InvalidAddressException extends SnowballSe
|
|
|
331
354
|
$fault: "client",
|
|
332
355
|
...opts
|
|
333
356
|
});
|
|
334
|
-
this.name = "InvalidAddressException";
|
|
335
|
-
this.$fault = "client";
|
|
336
357
|
Object.setPrototypeOf(this, _InvalidAddressException.prototype);
|
|
337
358
|
this.Message = opts.Message;
|
|
338
359
|
}
|
|
339
360
|
};
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
361
|
+
var UnsupportedAddressException = class _UnsupportedAddressException extends SnowballServiceException {
|
|
362
|
+
static {
|
|
363
|
+
__name(this, "UnsupportedAddressException");
|
|
364
|
+
}
|
|
365
|
+
name = "UnsupportedAddressException";
|
|
366
|
+
$fault = "client";
|
|
367
|
+
Message;
|
|
343
368
|
/**
|
|
344
369
|
* @internal
|
|
345
370
|
*/
|
|
@@ -349,14 +374,10 @@ var _UnsupportedAddressException = class _UnsupportedAddressException extends Sn
|
|
|
349
374
|
$fault: "client",
|
|
350
375
|
...opts
|
|
351
376
|
});
|
|
352
|
-
this.name = "UnsupportedAddressException";
|
|
353
|
-
this.$fault = "client";
|
|
354
377
|
Object.setPrototypeOf(this, _UnsupportedAddressException.prototype);
|
|
355
378
|
this.Message = opts.Message;
|
|
356
379
|
}
|
|
357
380
|
};
|
|
358
|
-
__name(_UnsupportedAddressException, "UnsupportedAddressException");
|
|
359
|
-
var UnsupportedAddressException = _UnsupportedAddressException;
|
|
360
381
|
var JobType = {
|
|
361
382
|
EXPORT: "EXPORT",
|
|
362
383
|
IMPORT: "IMPORT",
|
|
@@ -425,7 +446,13 @@ var SnowballType = {
|
|
|
425
446
|
V3_5C: "V3_5C",
|
|
426
447
|
V3_5S: "V3_5S"
|
|
427
448
|
};
|
|
428
|
-
var
|
|
449
|
+
var Ec2RequestFailedException = class _Ec2RequestFailedException extends SnowballServiceException {
|
|
450
|
+
static {
|
|
451
|
+
__name(this, "Ec2RequestFailedException");
|
|
452
|
+
}
|
|
453
|
+
name = "Ec2RequestFailedException";
|
|
454
|
+
$fault = "client";
|
|
455
|
+
Message;
|
|
429
456
|
/**
|
|
430
457
|
* @internal
|
|
431
458
|
*/
|
|
@@ -435,15 +462,17 @@ var _Ec2RequestFailedException = class _Ec2RequestFailedException extends Snowba
|
|
|
435
462
|
$fault: "client",
|
|
436
463
|
...opts
|
|
437
464
|
});
|
|
438
|
-
this.name = "Ec2RequestFailedException";
|
|
439
|
-
this.$fault = "client";
|
|
440
465
|
Object.setPrototypeOf(this, _Ec2RequestFailedException.prototype);
|
|
441
466
|
this.Message = opts.Message;
|
|
442
467
|
}
|
|
443
468
|
};
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
469
|
+
var InvalidInputCombinationException = class _InvalidInputCombinationException extends SnowballServiceException {
|
|
470
|
+
static {
|
|
471
|
+
__name(this, "InvalidInputCombinationException");
|
|
472
|
+
}
|
|
473
|
+
name = "InvalidInputCombinationException";
|
|
474
|
+
$fault = "client";
|
|
475
|
+
Message;
|
|
447
476
|
/**
|
|
448
477
|
* @internal
|
|
449
478
|
*/
|
|
@@ -453,15 +482,17 @@ var _InvalidInputCombinationException = class _InvalidInputCombinationException
|
|
|
453
482
|
$fault: "client",
|
|
454
483
|
...opts
|
|
455
484
|
});
|
|
456
|
-
this.name = "InvalidInputCombinationException";
|
|
457
|
-
this.$fault = "client";
|
|
458
485
|
Object.setPrototypeOf(this, _InvalidInputCombinationException.prototype);
|
|
459
486
|
this.Message = opts.Message;
|
|
460
487
|
}
|
|
461
488
|
};
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
489
|
+
var ClusterLimitExceededException = class _ClusterLimitExceededException extends SnowballServiceException {
|
|
490
|
+
static {
|
|
491
|
+
__name(this, "ClusterLimitExceededException");
|
|
492
|
+
}
|
|
493
|
+
name = "ClusterLimitExceededException";
|
|
494
|
+
$fault = "client";
|
|
495
|
+
Message;
|
|
465
496
|
/**
|
|
466
497
|
* @internal
|
|
467
498
|
*/
|
|
@@ -471,14 +502,10 @@ var _ClusterLimitExceededException = class _ClusterLimitExceededException extend
|
|
|
471
502
|
$fault: "client",
|
|
472
503
|
...opts
|
|
473
504
|
});
|
|
474
|
-
this.name = "ClusterLimitExceededException";
|
|
475
|
-
this.$fault = "client";
|
|
476
505
|
Object.setPrototypeOf(this, _ClusterLimitExceededException.prototype);
|
|
477
506
|
this.Message = opts.Message;
|
|
478
507
|
}
|
|
479
508
|
};
|
|
480
|
-
__name(_ClusterLimitExceededException, "ClusterLimitExceededException");
|
|
481
|
-
var ClusterLimitExceededException = _ClusterLimitExceededException;
|
|
482
509
|
var ImpactLevel = {
|
|
483
510
|
IL2: "IL2",
|
|
484
511
|
IL4: "IL4",
|
|
@@ -491,7 +518,18 @@ var LongTermPricingType = {
|
|
|
491
518
|
ONE_YEAR: "OneYear",
|
|
492
519
|
THREE_YEAR: "ThreeYear"
|
|
493
520
|
};
|
|
494
|
-
var
|
|
521
|
+
var ConflictException = class _ConflictException extends SnowballServiceException {
|
|
522
|
+
static {
|
|
523
|
+
__name(this, "ConflictException");
|
|
524
|
+
}
|
|
525
|
+
name = "ConflictException";
|
|
526
|
+
$fault = "client";
|
|
527
|
+
/**
|
|
528
|
+
* <p>You get this resource when you call <code>CreateReturnShippingLabel</code> more than once when other requests are not completed. .</p>
|
|
529
|
+
* @public
|
|
530
|
+
*/
|
|
531
|
+
ConflictResource;
|
|
532
|
+
Message;
|
|
495
533
|
/**
|
|
496
534
|
* @internal
|
|
497
535
|
*/
|
|
@@ -501,22 +539,24 @@ var _ConflictException = class _ConflictException extends SnowballServiceExcepti
|
|
|
501
539
|
$fault: "client",
|
|
502
540
|
...opts
|
|
503
541
|
});
|
|
504
|
-
this.name = "ConflictException";
|
|
505
|
-
this.$fault = "client";
|
|
506
542
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
507
543
|
this.ConflictResource = opts.ConflictResource;
|
|
508
544
|
this.Message = opts.Message;
|
|
509
545
|
}
|
|
510
546
|
};
|
|
511
|
-
__name(_ConflictException, "ConflictException");
|
|
512
|
-
var ConflictException = _ConflictException;
|
|
513
547
|
var ShippingLabelStatus = {
|
|
514
548
|
FAILED: "Failed",
|
|
515
549
|
IN_PROGRESS: "InProgress",
|
|
516
550
|
SUCCEEDED: "Succeeded",
|
|
517
551
|
TIMED_OUT: "TimedOut"
|
|
518
552
|
};
|
|
519
|
-
var
|
|
553
|
+
var ReturnShippingLabelAlreadyExistsException = class _ReturnShippingLabelAlreadyExistsException extends SnowballServiceException {
|
|
554
|
+
static {
|
|
555
|
+
__name(this, "ReturnShippingLabelAlreadyExistsException");
|
|
556
|
+
}
|
|
557
|
+
name = "ReturnShippingLabelAlreadyExistsException";
|
|
558
|
+
$fault = "client";
|
|
559
|
+
Message;
|
|
520
560
|
/**
|
|
521
561
|
* @internal
|
|
522
562
|
*/
|
|
@@ -526,15 +566,17 @@ var _ReturnShippingLabelAlreadyExistsException = class _ReturnShippingLabelAlrea
|
|
|
526
566
|
$fault: "client",
|
|
527
567
|
...opts
|
|
528
568
|
});
|
|
529
|
-
this.name = "ReturnShippingLabelAlreadyExistsException";
|
|
530
|
-
this.$fault = "client";
|
|
531
569
|
Object.setPrototypeOf(this, _ReturnShippingLabelAlreadyExistsException.prototype);
|
|
532
570
|
this.Message = opts.Message;
|
|
533
571
|
}
|
|
534
572
|
};
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
573
|
+
var InvalidNextTokenException = class _InvalidNextTokenException extends SnowballServiceException {
|
|
574
|
+
static {
|
|
575
|
+
__name(this, "InvalidNextTokenException");
|
|
576
|
+
}
|
|
577
|
+
name = "InvalidNextTokenException";
|
|
578
|
+
$fault = "client";
|
|
579
|
+
Message;
|
|
538
580
|
/**
|
|
539
581
|
* @internal
|
|
540
582
|
*/
|
|
@@ -544,14 +586,10 @@ var _InvalidNextTokenException = class _InvalidNextTokenException extends Snowba
|
|
|
544
586
|
$fault: "client",
|
|
545
587
|
...opts
|
|
546
588
|
});
|
|
547
|
-
this.name = "InvalidNextTokenException";
|
|
548
|
-
this.$fault = "client";
|
|
549
589
|
Object.setPrototypeOf(this, _InvalidNextTokenException.prototype);
|
|
550
590
|
this.Message = opts.Message;
|
|
551
591
|
}
|
|
552
592
|
};
|
|
553
|
-
__name(_InvalidNextTokenException, "InvalidNextTokenException");
|
|
554
|
-
var InvalidNextTokenException = _InvalidNextTokenException;
|
|
555
593
|
var ClusterState = {
|
|
556
594
|
AWAITING_QUORUM: "AwaitingQuorum",
|
|
557
595
|
CANCELLED: "Cancelled",
|
|
@@ -1565,379 +1603,406 @@ function sharedHeaders(operation) {
|
|
|
1565
1603
|
__name(sharedHeaders, "sharedHeaders");
|
|
1566
1604
|
|
|
1567
1605
|
// src/commands/CancelClusterCommand.ts
|
|
1568
|
-
var
|
|
1606
|
+
var CancelClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1569
1607
|
return [
|
|
1570
1608
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1571
1609
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1572
1610
|
];
|
|
1573
1611
|
}).s("AWSIESnowballJobManagementService", "CancelCluster", {}).n("SnowballClient", "CancelClusterCommand").f(void 0, void 0).ser(se_CancelClusterCommand).de(de_CancelClusterCommand).build() {
|
|
1612
|
+
static {
|
|
1613
|
+
__name(this, "CancelClusterCommand");
|
|
1614
|
+
}
|
|
1574
1615
|
};
|
|
1575
|
-
__name(_CancelClusterCommand, "CancelClusterCommand");
|
|
1576
|
-
var CancelClusterCommand = _CancelClusterCommand;
|
|
1577
1616
|
|
|
1578
1617
|
// src/commands/CancelJobCommand.ts
|
|
1579
1618
|
|
|
1580
1619
|
|
|
1581
1620
|
|
|
1582
|
-
var
|
|
1621
|
+
var CancelJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1583
1622
|
return [
|
|
1584
1623
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1585
1624
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1586
1625
|
];
|
|
1587
1626
|
}).s("AWSIESnowballJobManagementService", "CancelJob", {}).n("SnowballClient", "CancelJobCommand").f(void 0, void 0).ser(se_CancelJobCommand).de(de_CancelJobCommand).build() {
|
|
1627
|
+
static {
|
|
1628
|
+
__name(this, "CancelJobCommand");
|
|
1629
|
+
}
|
|
1588
1630
|
};
|
|
1589
|
-
__name(_CancelJobCommand, "CancelJobCommand");
|
|
1590
|
-
var CancelJobCommand = _CancelJobCommand;
|
|
1591
1631
|
|
|
1592
1632
|
// src/commands/CreateAddressCommand.ts
|
|
1593
1633
|
|
|
1594
1634
|
|
|
1595
1635
|
|
|
1596
|
-
var
|
|
1636
|
+
var CreateAddressCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1597
1637
|
return [
|
|
1598
1638
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1599
1639
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1600
1640
|
];
|
|
1601
1641
|
}).s("AWSIESnowballJobManagementService", "CreateAddress", {}).n("SnowballClient", "CreateAddressCommand").f(void 0, void 0).ser(se_CreateAddressCommand).de(de_CreateAddressCommand).build() {
|
|
1642
|
+
static {
|
|
1643
|
+
__name(this, "CreateAddressCommand");
|
|
1644
|
+
}
|
|
1602
1645
|
};
|
|
1603
|
-
__name(_CreateAddressCommand, "CreateAddressCommand");
|
|
1604
|
-
var CreateAddressCommand = _CreateAddressCommand;
|
|
1605
1646
|
|
|
1606
1647
|
// src/commands/CreateClusterCommand.ts
|
|
1607
1648
|
|
|
1608
1649
|
|
|
1609
1650
|
|
|
1610
|
-
var
|
|
1651
|
+
var CreateClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1611
1652
|
return [
|
|
1612
1653
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1613
1654
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1614
1655
|
];
|
|
1615
1656
|
}).s("AWSIESnowballJobManagementService", "CreateCluster", {}).n("SnowballClient", "CreateClusterCommand").f(void 0, void 0).ser(se_CreateClusterCommand).de(de_CreateClusterCommand).build() {
|
|
1657
|
+
static {
|
|
1658
|
+
__name(this, "CreateClusterCommand");
|
|
1659
|
+
}
|
|
1616
1660
|
};
|
|
1617
|
-
__name(_CreateClusterCommand, "CreateClusterCommand");
|
|
1618
|
-
var CreateClusterCommand = _CreateClusterCommand;
|
|
1619
1661
|
|
|
1620
1662
|
// src/commands/CreateJobCommand.ts
|
|
1621
1663
|
|
|
1622
1664
|
|
|
1623
1665
|
|
|
1624
|
-
var
|
|
1666
|
+
var CreateJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1625
1667
|
return [
|
|
1626
1668
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1627
1669
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1628
1670
|
];
|
|
1629
1671
|
}).s("AWSIESnowballJobManagementService", "CreateJob", {}).n("SnowballClient", "CreateJobCommand").f(CreateJobRequestFilterSensitiveLog, void 0).ser(se_CreateJobCommand).de(de_CreateJobCommand).build() {
|
|
1672
|
+
static {
|
|
1673
|
+
__name(this, "CreateJobCommand");
|
|
1674
|
+
}
|
|
1630
1675
|
};
|
|
1631
|
-
__name(_CreateJobCommand, "CreateJobCommand");
|
|
1632
|
-
var CreateJobCommand = _CreateJobCommand;
|
|
1633
1676
|
|
|
1634
1677
|
// src/commands/CreateLongTermPricingCommand.ts
|
|
1635
1678
|
|
|
1636
1679
|
|
|
1637
1680
|
|
|
1638
|
-
var
|
|
1681
|
+
var CreateLongTermPricingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1639
1682
|
return [
|
|
1640
1683
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1641
1684
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1642
1685
|
];
|
|
1643
1686
|
}).s("AWSIESnowballJobManagementService", "CreateLongTermPricing", {}).n("SnowballClient", "CreateLongTermPricingCommand").f(void 0, void 0).ser(se_CreateLongTermPricingCommand).de(de_CreateLongTermPricingCommand).build() {
|
|
1687
|
+
static {
|
|
1688
|
+
__name(this, "CreateLongTermPricingCommand");
|
|
1689
|
+
}
|
|
1644
1690
|
};
|
|
1645
|
-
__name(_CreateLongTermPricingCommand, "CreateLongTermPricingCommand");
|
|
1646
|
-
var CreateLongTermPricingCommand = _CreateLongTermPricingCommand;
|
|
1647
1691
|
|
|
1648
1692
|
// src/commands/CreateReturnShippingLabelCommand.ts
|
|
1649
1693
|
|
|
1650
1694
|
|
|
1651
1695
|
|
|
1652
|
-
var
|
|
1696
|
+
var CreateReturnShippingLabelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1653
1697
|
return [
|
|
1654
1698
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1655
1699
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1656
1700
|
];
|
|
1657
1701
|
}).s("AWSIESnowballJobManagementService", "CreateReturnShippingLabel", {}).n("SnowballClient", "CreateReturnShippingLabelCommand").f(void 0, void 0).ser(se_CreateReturnShippingLabelCommand).de(de_CreateReturnShippingLabelCommand).build() {
|
|
1702
|
+
static {
|
|
1703
|
+
__name(this, "CreateReturnShippingLabelCommand");
|
|
1704
|
+
}
|
|
1658
1705
|
};
|
|
1659
|
-
__name(_CreateReturnShippingLabelCommand, "CreateReturnShippingLabelCommand");
|
|
1660
|
-
var CreateReturnShippingLabelCommand = _CreateReturnShippingLabelCommand;
|
|
1661
1706
|
|
|
1662
1707
|
// src/commands/DescribeAddressCommand.ts
|
|
1663
1708
|
|
|
1664
1709
|
|
|
1665
1710
|
|
|
1666
|
-
var
|
|
1711
|
+
var DescribeAddressCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1667
1712
|
return [
|
|
1668
1713
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1669
1714
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1670
1715
|
];
|
|
1671
1716
|
}).s("AWSIESnowballJobManagementService", "DescribeAddress", {}).n("SnowballClient", "DescribeAddressCommand").f(void 0, void 0).ser(se_DescribeAddressCommand).de(de_DescribeAddressCommand).build() {
|
|
1717
|
+
static {
|
|
1718
|
+
__name(this, "DescribeAddressCommand");
|
|
1719
|
+
}
|
|
1672
1720
|
};
|
|
1673
|
-
__name(_DescribeAddressCommand, "DescribeAddressCommand");
|
|
1674
|
-
var DescribeAddressCommand = _DescribeAddressCommand;
|
|
1675
1721
|
|
|
1676
1722
|
// src/commands/DescribeAddressesCommand.ts
|
|
1677
1723
|
|
|
1678
1724
|
|
|
1679
1725
|
|
|
1680
|
-
var
|
|
1726
|
+
var DescribeAddressesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1681
1727
|
return [
|
|
1682
1728
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1683
1729
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1684
1730
|
];
|
|
1685
1731
|
}).s("AWSIESnowballJobManagementService", "DescribeAddresses", {}).n("SnowballClient", "DescribeAddressesCommand").f(void 0, void 0).ser(se_DescribeAddressesCommand).de(de_DescribeAddressesCommand).build() {
|
|
1732
|
+
static {
|
|
1733
|
+
__name(this, "DescribeAddressesCommand");
|
|
1734
|
+
}
|
|
1686
1735
|
};
|
|
1687
|
-
__name(_DescribeAddressesCommand, "DescribeAddressesCommand");
|
|
1688
|
-
var DescribeAddressesCommand = _DescribeAddressesCommand;
|
|
1689
1736
|
|
|
1690
1737
|
// src/commands/DescribeClusterCommand.ts
|
|
1691
1738
|
|
|
1692
1739
|
|
|
1693
1740
|
|
|
1694
|
-
var
|
|
1741
|
+
var DescribeClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1695
1742
|
return [
|
|
1696
1743
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1697
1744
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1698
1745
|
];
|
|
1699
1746
|
}).s("AWSIESnowballJobManagementService", "DescribeCluster", {}).n("SnowballClient", "DescribeClusterCommand").f(void 0, void 0).ser(se_DescribeClusterCommand).de(de_DescribeClusterCommand).build() {
|
|
1747
|
+
static {
|
|
1748
|
+
__name(this, "DescribeClusterCommand");
|
|
1749
|
+
}
|
|
1700
1750
|
};
|
|
1701
|
-
__name(_DescribeClusterCommand, "DescribeClusterCommand");
|
|
1702
|
-
var DescribeClusterCommand = _DescribeClusterCommand;
|
|
1703
1751
|
|
|
1704
1752
|
// src/commands/DescribeJobCommand.ts
|
|
1705
1753
|
|
|
1706
1754
|
|
|
1707
1755
|
|
|
1708
|
-
var
|
|
1756
|
+
var DescribeJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1709
1757
|
return [
|
|
1710
1758
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1711
1759
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1712
1760
|
];
|
|
1713
1761
|
}).s("AWSIESnowballJobManagementService", "DescribeJob", {}).n("SnowballClient", "DescribeJobCommand").f(void 0, DescribeJobResultFilterSensitiveLog).ser(se_DescribeJobCommand).de(de_DescribeJobCommand).build() {
|
|
1762
|
+
static {
|
|
1763
|
+
__name(this, "DescribeJobCommand");
|
|
1764
|
+
}
|
|
1714
1765
|
};
|
|
1715
|
-
__name(_DescribeJobCommand, "DescribeJobCommand");
|
|
1716
|
-
var DescribeJobCommand = _DescribeJobCommand;
|
|
1717
1766
|
|
|
1718
1767
|
// src/commands/DescribeReturnShippingLabelCommand.ts
|
|
1719
1768
|
|
|
1720
1769
|
|
|
1721
1770
|
|
|
1722
|
-
var
|
|
1771
|
+
var DescribeReturnShippingLabelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1723
1772
|
return [
|
|
1724
1773
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1725
1774
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1726
1775
|
];
|
|
1727
1776
|
}).s("AWSIESnowballJobManagementService", "DescribeReturnShippingLabel", {}).n("SnowballClient", "DescribeReturnShippingLabelCommand").f(void 0, void 0).ser(se_DescribeReturnShippingLabelCommand).de(de_DescribeReturnShippingLabelCommand).build() {
|
|
1777
|
+
static {
|
|
1778
|
+
__name(this, "DescribeReturnShippingLabelCommand");
|
|
1779
|
+
}
|
|
1728
1780
|
};
|
|
1729
|
-
__name(_DescribeReturnShippingLabelCommand, "DescribeReturnShippingLabelCommand");
|
|
1730
|
-
var DescribeReturnShippingLabelCommand = _DescribeReturnShippingLabelCommand;
|
|
1731
1781
|
|
|
1732
1782
|
// src/commands/GetJobManifestCommand.ts
|
|
1733
1783
|
|
|
1734
1784
|
|
|
1735
1785
|
|
|
1736
|
-
var
|
|
1786
|
+
var GetJobManifestCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1737
1787
|
return [
|
|
1738
1788
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1739
1789
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1740
1790
|
];
|
|
1741
1791
|
}).s("AWSIESnowballJobManagementService", "GetJobManifest", {}).n("SnowballClient", "GetJobManifestCommand").f(void 0, void 0).ser(se_GetJobManifestCommand).de(de_GetJobManifestCommand).build() {
|
|
1792
|
+
static {
|
|
1793
|
+
__name(this, "GetJobManifestCommand");
|
|
1794
|
+
}
|
|
1742
1795
|
};
|
|
1743
|
-
__name(_GetJobManifestCommand, "GetJobManifestCommand");
|
|
1744
|
-
var GetJobManifestCommand = _GetJobManifestCommand;
|
|
1745
1796
|
|
|
1746
1797
|
// src/commands/GetJobUnlockCodeCommand.ts
|
|
1747
1798
|
|
|
1748
1799
|
|
|
1749
1800
|
|
|
1750
|
-
var
|
|
1801
|
+
var GetJobUnlockCodeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1751
1802
|
return [
|
|
1752
1803
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1753
1804
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1754
1805
|
];
|
|
1755
1806
|
}).s("AWSIESnowballJobManagementService", "GetJobUnlockCode", {}).n("SnowballClient", "GetJobUnlockCodeCommand").f(void 0, void 0).ser(se_GetJobUnlockCodeCommand).de(de_GetJobUnlockCodeCommand).build() {
|
|
1807
|
+
static {
|
|
1808
|
+
__name(this, "GetJobUnlockCodeCommand");
|
|
1809
|
+
}
|
|
1756
1810
|
};
|
|
1757
|
-
__name(_GetJobUnlockCodeCommand, "GetJobUnlockCodeCommand");
|
|
1758
|
-
var GetJobUnlockCodeCommand = _GetJobUnlockCodeCommand;
|
|
1759
1811
|
|
|
1760
1812
|
// src/commands/GetSnowballUsageCommand.ts
|
|
1761
1813
|
|
|
1762
1814
|
|
|
1763
1815
|
|
|
1764
|
-
var
|
|
1816
|
+
var GetSnowballUsageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1765
1817
|
return [
|
|
1766
1818
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1767
1819
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1768
1820
|
];
|
|
1769
1821
|
}).s("AWSIESnowballJobManagementService", "GetSnowballUsage", {}).n("SnowballClient", "GetSnowballUsageCommand").f(void 0, void 0).ser(se_GetSnowballUsageCommand).de(de_GetSnowballUsageCommand).build() {
|
|
1822
|
+
static {
|
|
1823
|
+
__name(this, "GetSnowballUsageCommand");
|
|
1824
|
+
}
|
|
1770
1825
|
};
|
|
1771
|
-
__name(_GetSnowballUsageCommand, "GetSnowballUsageCommand");
|
|
1772
|
-
var GetSnowballUsageCommand = _GetSnowballUsageCommand;
|
|
1773
1826
|
|
|
1774
1827
|
// src/commands/GetSoftwareUpdatesCommand.ts
|
|
1775
1828
|
|
|
1776
1829
|
|
|
1777
1830
|
|
|
1778
|
-
var
|
|
1831
|
+
var GetSoftwareUpdatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1779
1832
|
return [
|
|
1780
1833
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1781
1834
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1782
1835
|
];
|
|
1783
1836
|
}).s("AWSIESnowballJobManagementService", "GetSoftwareUpdates", {}).n("SnowballClient", "GetSoftwareUpdatesCommand").f(void 0, void 0).ser(se_GetSoftwareUpdatesCommand).de(de_GetSoftwareUpdatesCommand).build() {
|
|
1837
|
+
static {
|
|
1838
|
+
__name(this, "GetSoftwareUpdatesCommand");
|
|
1839
|
+
}
|
|
1784
1840
|
};
|
|
1785
|
-
__name(_GetSoftwareUpdatesCommand, "GetSoftwareUpdatesCommand");
|
|
1786
|
-
var GetSoftwareUpdatesCommand = _GetSoftwareUpdatesCommand;
|
|
1787
1841
|
|
|
1788
1842
|
// src/commands/ListClusterJobsCommand.ts
|
|
1789
1843
|
|
|
1790
1844
|
|
|
1791
1845
|
|
|
1792
|
-
var
|
|
1846
|
+
var ListClusterJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1793
1847
|
return [
|
|
1794
1848
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1795
1849
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1796
1850
|
];
|
|
1797
1851
|
}).s("AWSIESnowballJobManagementService", "ListClusterJobs", {}).n("SnowballClient", "ListClusterJobsCommand").f(void 0, void 0).ser(se_ListClusterJobsCommand).de(de_ListClusterJobsCommand).build() {
|
|
1852
|
+
static {
|
|
1853
|
+
__name(this, "ListClusterJobsCommand");
|
|
1854
|
+
}
|
|
1798
1855
|
};
|
|
1799
|
-
__name(_ListClusterJobsCommand, "ListClusterJobsCommand");
|
|
1800
|
-
var ListClusterJobsCommand = _ListClusterJobsCommand;
|
|
1801
1856
|
|
|
1802
1857
|
// src/commands/ListClustersCommand.ts
|
|
1803
1858
|
|
|
1804
1859
|
|
|
1805
1860
|
|
|
1806
|
-
var
|
|
1861
|
+
var ListClustersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1807
1862
|
return [
|
|
1808
1863
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1809
1864
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1810
1865
|
];
|
|
1811
1866
|
}).s("AWSIESnowballJobManagementService", "ListClusters", {}).n("SnowballClient", "ListClustersCommand").f(void 0, void 0).ser(se_ListClustersCommand).de(de_ListClustersCommand).build() {
|
|
1867
|
+
static {
|
|
1868
|
+
__name(this, "ListClustersCommand");
|
|
1869
|
+
}
|
|
1812
1870
|
};
|
|
1813
|
-
__name(_ListClustersCommand, "ListClustersCommand");
|
|
1814
|
-
var ListClustersCommand = _ListClustersCommand;
|
|
1815
1871
|
|
|
1816
1872
|
// src/commands/ListCompatibleImagesCommand.ts
|
|
1817
1873
|
|
|
1818
1874
|
|
|
1819
1875
|
|
|
1820
|
-
var
|
|
1876
|
+
var ListCompatibleImagesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1821
1877
|
return [
|
|
1822
1878
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1823
1879
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1824
1880
|
];
|
|
1825
1881
|
}).s("AWSIESnowballJobManagementService", "ListCompatibleImages", {}).n("SnowballClient", "ListCompatibleImagesCommand").f(void 0, void 0).ser(se_ListCompatibleImagesCommand).de(de_ListCompatibleImagesCommand).build() {
|
|
1882
|
+
static {
|
|
1883
|
+
__name(this, "ListCompatibleImagesCommand");
|
|
1884
|
+
}
|
|
1826
1885
|
};
|
|
1827
|
-
__name(_ListCompatibleImagesCommand, "ListCompatibleImagesCommand");
|
|
1828
|
-
var ListCompatibleImagesCommand = _ListCompatibleImagesCommand;
|
|
1829
1886
|
|
|
1830
1887
|
// src/commands/ListJobsCommand.ts
|
|
1831
1888
|
|
|
1832
1889
|
|
|
1833
1890
|
|
|
1834
|
-
var
|
|
1891
|
+
var ListJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1835
1892
|
return [
|
|
1836
1893
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1837
1894
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1838
1895
|
];
|
|
1839
1896
|
}).s("AWSIESnowballJobManagementService", "ListJobs", {}).n("SnowballClient", "ListJobsCommand").f(void 0, void 0).ser(se_ListJobsCommand).de(de_ListJobsCommand).build() {
|
|
1897
|
+
static {
|
|
1898
|
+
__name(this, "ListJobsCommand");
|
|
1899
|
+
}
|
|
1840
1900
|
};
|
|
1841
|
-
__name(_ListJobsCommand, "ListJobsCommand");
|
|
1842
|
-
var ListJobsCommand = _ListJobsCommand;
|
|
1843
1901
|
|
|
1844
1902
|
// src/commands/ListLongTermPricingCommand.ts
|
|
1845
1903
|
|
|
1846
1904
|
|
|
1847
1905
|
|
|
1848
|
-
var
|
|
1906
|
+
var ListLongTermPricingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1849
1907
|
return [
|
|
1850
1908
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1851
1909
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1852
1910
|
];
|
|
1853
1911
|
}).s("AWSIESnowballJobManagementService", "ListLongTermPricing", {}).n("SnowballClient", "ListLongTermPricingCommand").f(void 0, void 0).ser(se_ListLongTermPricingCommand).de(de_ListLongTermPricingCommand).build() {
|
|
1912
|
+
static {
|
|
1913
|
+
__name(this, "ListLongTermPricingCommand");
|
|
1914
|
+
}
|
|
1854
1915
|
};
|
|
1855
|
-
__name(_ListLongTermPricingCommand, "ListLongTermPricingCommand");
|
|
1856
|
-
var ListLongTermPricingCommand = _ListLongTermPricingCommand;
|
|
1857
1916
|
|
|
1858
1917
|
// src/commands/ListPickupLocationsCommand.ts
|
|
1859
1918
|
|
|
1860
1919
|
|
|
1861
1920
|
|
|
1862
|
-
var
|
|
1921
|
+
var ListPickupLocationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1863
1922
|
return [
|
|
1864
1923
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1865
1924
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1866
1925
|
];
|
|
1867
1926
|
}).s("AWSIESnowballJobManagementService", "ListPickupLocations", {}).n("SnowballClient", "ListPickupLocationsCommand").f(void 0, void 0).ser(se_ListPickupLocationsCommand).de(de_ListPickupLocationsCommand).build() {
|
|
1927
|
+
static {
|
|
1928
|
+
__name(this, "ListPickupLocationsCommand");
|
|
1929
|
+
}
|
|
1868
1930
|
};
|
|
1869
|
-
__name(_ListPickupLocationsCommand, "ListPickupLocationsCommand");
|
|
1870
|
-
var ListPickupLocationsCommand = _ListPickupLocationsCommand;
|
|
1871
1931
|
|
|
1872
1932
|
// src/commands/ListServiceVersionsCommand.ts
|
|
1873
1933
|
|
|
1874
1934
|
|
|
1875
1935
|
|
|
1876
|
-
var
|
|
1936
|
+
var ListServiceVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1877
1937
|
return [
|
|
1878
1938
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1879
1939
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1880
1940
|
];
|
|
1881
1941
|
}).s("AWSIESnowballJobManagementService", "ListServiceVersions", {}).n("SnowballClient", "ListServiceVersionsCommand").f(void 0, void 0).ser(se_ListServiceVersionsCommand).de(de_ListServiceVersionsCommand).build() {
|
|
1942
|
+
static {
|
|
1943
|
+
__name(this, "ListServiceVersionsCommand");
|
|
1944
|
+
}
|
|
1882
1945
|
};
|
|
1883
|
-
__name(_ListServiceVersionsCommand, "ListServiceVersionsCommand");
|
|
1884
|
-
var ListServiceVersionsCommand = _ListServiceVersionsCommand;
|
|
1885
1946
|
|
|
1886
1947
|
// src/commands/UpdateClusterCommand.ts
|
|
1887
1948
|
|
|
1888
1949
|
|
|
1889
1950
|
|
|
1890
|
-
var
|
|
1951
|
+
var UpdateClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1891
1952
|
return [
|
|
1892
1953
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1893
1954
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1894
1955
|
];
|
|
1895
1956
|
}).s("AWSIESnowballJobManagementService", "UpdateCluster", {}).n("SnowballClient", "UpdateClusterCommand").f(void 0, void 0).ser(se_UpdateClusterCommand).de(de_UpdateClusterCommand).build() {
|
|
1957
|
+
static {
|
|
1958
|
+
__name(this, "UpdateClusterCommand");
|
|
1959
|
+
}
|
|
1896
1960
|
};
|
|
1897
|
-
__name(_UpdateClusterCommand, "UpdateClusterCommand");
|
|
1898
|
-
var UpdateClusterCommand = _UpdateClusterCommand;
|
|
1899
1961
|
|
|
1900
1962
|
// src/commands/UpdateJobCommand.ts
|
|
1901
1963
|
|
|
1902
1964
|
|
|
1903
1965
|
|
|
1904
|
-
var
|
|
1966
|
+
var UpdateJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1905
1967
|
return [
|
|
1906
1968
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1907
1969
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1908
1970
|
];
|
|
1909
1971
|
}).s("AWSIESnowballJobManagementService", "UpdateJob", {}).n("SnowballClient", "UpdateJobCommand").f(UpdateJobRequestFilterSensitiveLog, void 0).ser(se_UpdateJobCommand).de(de_UpdateJobCommand).build() {
|
|
1972
|
+
static {
|
|
1973
|
+
__name(this, "UpdateJobCommand");
|
|
1974
|
+
}
|
|
1910
1975
|
};
|
|
1911
|
-
__name(_UpdateJobCommand, "UpdateJobCommand");
|
|
1912
|
-
var UpdateJobCommand = _UpdateJobCommand;
|
|
1913
1976
|
|
|
1914
1977
|
// src/commands/UpdateJobShipmentStateCommand.ts
|
|
1915
1978
|
|
|
1916
1979
|
|
|
1917
1980
|
|
|
1918
|
-
var
|
|
1981
|
+
var UpdateJobShipmentStateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1919
1982
|
return [
|
|
1920
1983
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1921
1984
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1922
1985
|
];
|
|
1923
1986
|
}).s("AWSIESnowballJobManagementService", "UpdateJobShipmentState", {}).n("SnowballClient", "UpdateJobShipmentStateCommand").f(void 0, void 0).ser(se_UpdateJobShipmentStateCommand).de(de_UpdateJobShipmentStateCommand).build() {
|
|
1987
|
+
static {
|
|
1988
|
+
__name(this, "UpdateJobShipmentStateCommand");
|
|
1989
|
+
}
|
|
1924
1990
|
};
|
|
1925
|
-
__name(_UpdateJobShipmentStateCommand, "UpdateJobShipmentStateCommand");
|
|
1926
|
-
var UpdateJobShipmentStateCommand = _UpdateJobShipmentStateCommand;
|
|
1927
1991
|
|
|
1928
1992
|
// src/commands/UpdateLongTermPricingCommand.ts
|
|
1929
1993
|
|
|
1930
1994
|
|
|
1931
1995
|
|
|
1932
|
-
var
|
|
1996
|
+
var UpdateLongTermPricingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1933
1997
|
return [
|
|
1934
1998
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1935
1999
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1936
2000
|
];
|
|
1937
2001
|
}).s("AWSIESnowballJobManagementService", "UpdateLongTermPricing", {}).n("SnowballClient", "UpdateLongTermPricingCommand").f(void 0, void 0).ser(se_UpdateLongTermPricingCommand).de(de_UpdateLongTermPricingCommand).build() {
|
|
2002
|
+
static {
|
|
2003
|
+
__name(this, "UpdateLongTermPricingCommand");
|
|
2004
|
+
}
|
|
1938
2005
|
};
|
|
1939
|
-
__name(_UpdateLongTermPricingCommand, "UpdateLongTermPricingCommand");
|
|
1940
|
-
var UpdateLongTermPricingCommand = _UpdateLongTermPricingCommand;
|
|
1941
2006
|
|
|
1942
2007
|
// src/Snowball.ts
|
|
1943
2008
|
var commands = {
|
|
@@ -1969,10 +2034,11 @@ var commands = {
|
|
|
1969
2034
|
UpdateJobShipmentStateCommand,
|
|
1970
2035
|
UpdateLongTermPricingCommand
|
|
1971
2036
|
};
|
|
1972
|
-
var
|
|
2037
|
+
var Snowball = class extends SnowballClient {
|
|
2038
|
+
static {
|
|
2039
|
+
__name(this, "Snowball");
|
|
2040
|
+
}
|
|
1973
2041
|
};
|
|
1974
|
-
__name(_Snowball, "Snowball");
|
|
1975
|
-
var Snowball = _Snowball;
|
|
1976
2042
|
(0, import_smithy_client.createAggregatedClient)(commands, Snowball);
|
|
1977
2043
|
|
|
1978
2044
|
// src/pagination/DescribeAddressesPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class SnowballClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -5,67 +5,73 @@ export const AddressType = {
|
|
|
5
5
|
CUST_PICKUP: "CUST_PICKUP",
|
|
6
6
|
};
|
|
7
7
|
export class InvalidJobStateException extends __BaseException {
|
|
8
|
+
name = "InvalidJobStateException";
|
|
9
|
+
$fault = "client";
|
|
10
|
+
Message;
|
|
8
11
|
constructor(opts) {
|
|
9
12
|
super({
|
|
10
13
|
name: "InvalidJobStateException",
|
|
11
14
|
$fault: "client",
|
|
12
15
|
...opts,
|
|
13
16
|
});
|
|
14
|
-
this.name = "InvalidJobStateException";
|
|
15
|
-
this.$fault = "client";
|
|
16
17
|
Object.setPrototypeOf(this, InvalidJobStateException.prototype);
|
|
17
18
|
this.Message = opts.Message;
|
|
18
19
|
}
|
|
19
20
|
}
|
|
20
21
|
export class InvalidResourceException extends __BaseException {
|
|
22
|
+
name = "InvalidResourceException";
|
|
23
|
+
$fault = "client";
|
|
24
|
+
Message;
|
|
25
|
+
ResourceType;
|
|
21
26
|
constructor(opts) {
|
|
22
27
|
super({
|
|
23
28
|
name: "InvalidResourceException",
|
|
24
29
|
$fault: "client",
|
|
25
30
|
...opts,
|
|
26
31
|
});
|
|
27
|
-
this.name = "InvalidResourceException";
|
|
28
|
-
this.$fault = "client";
|
|
29
32
|
Object.setPrototypeOf(this, InvalidResourceException.prototype);
|
|
30
33
|
this.Message = opts.Message;
|
|
31
34
|
this.ResourceType = opts.ResourceType;
|
|
32
35
|
}
|
|
33
36
|
}
|
|
34
37
|
export class KMSRequestFailedException extends __BaseException {
|
|
38
|
+
name = "KMSRequestFailedException";
|
|
39
|
+
$fault = "client";
|
|
40
|
+
Message;
|
|
35
41
|
constructor(opts) {
|
|
36
42
|
super({
|
|
37
43
|
name: "KMSRequestFailedException",
|
|
38
44
|
$fault: "client",
|
|
39
45
|
...opts,
|
|
40
46
|
});
|
|
41
|
-
this.name = "KMSRequestFailedException";
|
|
42
|
-
this.$fault = "client";
|
|
43
47
|
Object.setPrototypeOf(this, KMSRequestFailedException.prototype);
|
|
44
48
|
this.Message = opts.Message;
|
|
45
49
|
}
|
|
46
50
|
}
|
|
47
51
|
export class InvalidAddressException extends __BaseException {
|
|
52
|
+
name = "InvalidAddressException";
|
|
53
|
+
$fault = "client";
|
|
54
|
+
Message;
|
|
48
55
|
constructor(opts) {
|
|
49
56
|
super({
|
|
50
57
|
name: "InvalidAddressException",
|
|
51
58
|
$fault: "client",
|
|
52
59
|
...opts,
|
|
53
60
|
});
|
|
54
|
-
this.name = "InvalidAddressException";
|
|
55
|
-
this.$fault = "client";
|
|
56
61
|
Object.setPrototypeOf(this, InvalidAddressException.prototype);
|
|
57
62
|
this.Message = opts.Message;
|
|
58
63
|
}
|
|
59
64
|
}
|
|
60
65
|
export class UnsupportedAddressException extends __BaseException {
|
|
66
|
+
name = "UnsupportedAddressException";
|
|
67
|
+
$fault = "client";
|
|
68
|
+
Message;
|
|
61
69
|
constructor(opts) {
|
|
62
70
|
super({
|
|
63
71
|
name: "UnsupportedAddressException",
|
|
64
72
|
$fault: "client",
|
|
65
73
|
...opts,
|
|
66
74
|
});
|
|
67
|
-
this.name = "UnsupportedAddressException";
|
|
68
|
-
this.$fault = "client";
|
|
69
75
|
Object.setPrototypeOf(this, UnsupportedAddressException.prototype);
|
|
70
76
|
this.Message = opts.Message;
|
|
71
77
|
}
|
|
@@ -139,40 +145,43 @@ export const SnowballType = {
|
|
|
139
145
|
V3_5S: "V3_5S",
|
|
140
146
|
};
|
|
141
147
|
export class Ec2RequestFailedException extends __BaseException {
|
|
148
|
+
name = "Ec2RequestFailedException";
|
|
149
|
+
$fault = "client";
|
|
150
|
+
Message;
|
|
142
151
|
constructor(opts) {
|
|
143
152
|
super({
|
|
144
153
|
name: "Ec2RequestFailedException",
|
|
145
154
|
$fault: "client",
|
|
146
155
|
...opts,
|
|
147
156
|
});
|
|
148
|
-
this.name = "Ec2RequestFailedException";
|
|
149
|
-
this.$fault = "client";
|
|
150
157
|
Object.setPrototypeOf(this, Ec2RequestFailedException.prototype);
|
|
151
158
|
this.Message = opts.Message;
|
|
152
159
|
}
|
|
153
160
|
}
|
|
154
161
|
export class InvalidInputCombinationException extends __BaseException {
|
|
162
|
+
name = "InvalidInputCombinationException";
|
|
163
|
+
$fault = "client";
|
|
164
|
+
Message;
|
|
155
165
|
constructor(opts) {
|
|
156
166
|
super({
|
|
157
167
|
name: "InvalidInputCombinationException",
|
|
158
168
|
$fault: "client",
|
|
159
169
|
...opts,
|
|
160
170
|
});
|
|
161
|
-
this.name = "InvalidInputCombinationException";
|
|
162
|
-
this.$fault = "client";
|
|
163
171
|
Object.setPrototypeOf(this, InvalidInputCombinationException.prototype);
|
|
164
172
|
this.Message = opts.Message;
|
|
165
173
|
}
|
|
166
174
|
}
|
|
167
175
|
export class ClusterLimitExceededException extends __BaseException {
|
|
176
|
+
name = "ClusterLimitExceededException";
|
|
177
|
+
$fault = "client";
|
|
178
|
+
Message;
|
|
168
179
|
constructor(opts) {
|
|
169
180
|
super({
|
|
170
181
|
name: "ClusterLimitExceededException",
|
|
171
182
|
$fault: "client",
|
|
172
183
|
...opts,
|
|
173
184
|
});
|
|
174
|
-
this.name = "ClusterLimitExceededException";
|
|
175
|
-
this.$fault = "client";
|
|
176
185
|
Object.setPrototypeOf(this, ClusterLimitExceededException.prototype);
|
|
177
186
|
this.Message = opts.Message;
|
|
178
187
|
}
|
|
@@ -190,14 +199,16 @@ export const LongTermPricingType = {
|
|
|
190
199
|
THREE_YEAR: "ThreeYear",
|
|
191
200
|
};
|
|
192
201
|
export class ConflictException extends __BaseException {
|
|
202
|
+
name = "ConflictException";
|
|
203
|
+
$fault = "client";
|
|
204
|
+
ConflictResource;
|
|
205
|
+
Message;
|
|
193
206
|
constructor(opts) {
|
|
194
207
|
super({
|
|
195
208
|
name: "ConflictException",
|
|
196
209
|
$fault: "client",
|
|
197
210
|
...opts,
|
|
198
211
|
});
|
|
199
|
-
this.name = "ConflictException";
|
|
200
|
-
this.$fault = "client";
|
|
201
212
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
202
213
|
this.ConflictResource = opts.ConflictResource;
|
|
203
214
|
this.Message = opts.Message;
|
|
@@ -210,27 +221,29 @@ export const ShippingLabelStatus = {
|
|
|
210
221
|
TIMED_OUT: "TimedOut",
|
|
211
222
|
};
|
|
212
223
|
export class ReturnShippingLabelAlreadyExistsException extends __BaseException {
|
|
224
|
+
name = "ReturnShippingLabelAlreadyExistsException";
|
|
225
|
+
$fault = "client";
|
|
226
|
+
Message;
|
|
213
227
|
constructor(opts) {
|
|
214
228
|
super({
|
|
215
229
|
name: "ReturnShippingLabelAlreadyExistsException",
|
|
216
230
|
$fault: "client",
|
|
217
231
|
...opts,
|
|
218
232
|
});
|
|
219
|
-
this.name = "ReturnShippingLabelAlreadyExistsException";
|
|
220
|
-
this.$fault = "client";
|
|
221
233
|
Object.setPrototypeOf(this, ReturnShippingLabelAlreadyExistsException.prototype);
|
|
222
234
|
this.Message = opts.Message;
|
|
223
235
|
}
|
|
224
236
|
}
|
|
225
237
|
export class InvalidNextTokenException extends __BaseException {
|
|
238
|
+
name = "InvalidNextTokenException";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
Message;
|
|
226
241
|
constructor(opts) {
|
|
227
242
|
super({
|
|
228
243
|
name: "InvalidNextTokenException",
|
|
229
244
|
$fault: "client",
|
|
230
245
|
...opts,
|
|
231
246
|
});
|
|
232
|
-
this.name = "InvalidNextTokenException";
|
|
233
|
-
this.$fault = "client";
|
|
234
247
|
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
235
248
|
this.Message = opts.Message;
|
|
236
249
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-snowball",
|
|
3
3
|
"description": "AWS SDK for JavaScript Snowball Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.726.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-snowball",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.726.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.726.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.726.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.726.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.726.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.726.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|