@aws-sdk/client-snowball 3.533.0 → 3.540.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.
Files changed (65) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/Snowball.d.ts +9 -1
  6. package/dist-types/SnowballClient.d.ts +1 -1
  7. package/dist-types/commands/CancelClusterCommand.d.ts +2 -1
  8. package/dist-types/commands/CancelJobCommand.d.ts +2 -1
  9. package/dist-types/commands/CreateAddressCommand.d.ts +2 -1
  10. package/dist-types/commands/CreateClusterCommand.d.ts +2 -1
  11. package/dist-types/commands/CreateJobCommand.d.ts +2 -1
  12. package/dist-types/commands/CreateLongTermPricingCommand.d.ts +2 -1
  13. package/dist-types/commands/CreateReturnShippingLabelCommand.d.ts +2 -1
  14. package/dist-types/commands/DescribeAddressCommand.d.ts +2 -1
  15. package/dist-types/commands/DescribeAddressesCommand.d.ts +2 -1
  16. package/dist-types/commands/DescribeClusterCommand.d.ts +2 -1
  17. package/dist-types/commands/DescribeJobCommand.d.ts +2 -1
  18. package/dist-types/commands/DescribeReturnShippingLabelCommand.d.ts +2 -1
  19. package/dist-types/commands/GetJobManifestCommand.d.ts +2 -1
  20. package/dist-types/commands/GetJobUnlockCodeCommand.d.ts +2 -1
  21. package/dist-types/commands/GetSnowballUsageCommand.d.ts +2 -1
  22. package/dist-types/commands/GetSoftwareUpdatesCommand.d.ts +2 -1
  23. package/dist-types/commands/ListClusterJobsCommand.d.ts +2 -1
  24. package/dist-types/commands/ListClustersCommand.d.ts +2 -1
  25. package/dist-types/commands/ListCompatibleImagesCommand.d.ts +2 -1
  26. package/dist-types/commands/ListJobsCommand.d.ts +2 -1
  27. package/dist-types/commands/ListLongTermPricingCommand.d.ts +2 -1
  28. package/dist-types/commands/ListPickupLocationsCommand.d.ts +2 -1
  29. package/dist-types/commands/ListServiceVersionsCommand.d.ts +2 -1
  30. package/dist-types/commands/UpdateClusterCommand.d.ts +2 -1
  31. package/dist-types/commands/UpdateJobCommand.d.ts +2 -1
  32. package/dist-types/commands/UpdateJobShipmentStateCommand.d.ts +2 -1
  33. package/dist-types/commands/UpdateLongTermPricingCommand.d.ts +2 -1
  34. package/dist-types/index.d.ts +0 -1
  35. package/dist-types/models/models_0.d.ts +314 -314
  36. package/dist-types/ts3.4/Snowball.d.ts +8 -0
  37. package/dist-types/ts3.4/commands/CancelClusterCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/CreateAddressCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/CreateLongTermPricingCommand.d.ts +9 -0
  43. package/dist-types/ts3.4/commands/CreateReturnShippingLabelCommand.d.ts +9 -0
  44. package/dist-types/ts3.4/commands/DescribeAddressCommand.d.ts +9 -0
  45. package/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +9 -0
  46. package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +9 -0
  47. package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +9 -0
  48. package/dist-types/ts3.4/commands/DescribeReturnShippingLabelCommand.d.ts +9 -0
  49. package/dist-types/ts3.4/commands/GetJobManifestCommand.d.ts +9 -0
  50. package/dist-types/ts3.4/commands/GetJobUnlockCodeCommand.d.ts +9 -0
  51. package/dist-types/ts3.4/commands/GetSnowballUsageCommand.d.ts +9 -0
  52. package/dist-types/ts3.4/commands/GetSoftwareUpdatesCommand.d.ts +9 -0
  53. package/dist-types/ts3.4/commands/ListClusterJobsCommand.d.ts +9 -0
  54. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +9 -0
  55. package/dist-types/ts3.4/commands/ListCompatibleImagesCommand.d.ts +9 -0
  56. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +9 -0
  57. package/dist-types/ts3.4/commands/ListLongTermPricingCommand.d.ts +9 -0
  58. package/dist-types/ts3.4/commands/ListPickupLocationsCommand.d.ts +9 -0
  59. package/dist-types/ts3.4/commands/ListServiceVersionsCommand.d.ts +9 -0
  60. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +9 -0
  61. package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +9 -0
  62. package/dist-types/ts3.4/commands/UpdateJobShipmentStateCommand.d.ts +9 -0
  63. package/dist-types/ts3.4/commands/UpdateLongTermPricingCommand.d.ts +9 -0
  64. package/dist-types/ts3.4/index.d.ts +0 -1
  65. package/package.json +40 -40
@@ -161,6 +161,7 @@ export interface Snowball {
161
161
  options: __HttpHandlerOptions,
162
162
  cb: (err: any, data?: CreateClusterCommandOutput) => void
163
163
  ): void;
164
+ createJob(): Promise<CreateJobCommandOutput>;
164
165
  createJob(
165
166
  args: CreateJobCommandInput,
166
167
  options?: __HttpHandlerOptions
@@ -213,6 +214,7 @@ export interface Snowball {
213
214
  options: __HttpHandlerOptions,
214
215
  cb: (err: any, data?: DescribeAddressCommandOutput) => void
215
216
  ): void;
217
+ describeAddresses(): Promise<DescribeAddressesCommandOutput>;
216
218
  describeAddresses(
217
219
  args: DescribeAddressesCommandInput,
218
220
  options?: __HttpHandlerOptions
@@ -291,6 +293,7 @@ export interface Snowball {
291
293
  options: __HttpHandlerOptions,
292
294
  cb: (err: any, data?: GetJobUnlockCodeCommandOutput) => void
293
295
  ): void;
296
+ getSnowballUsage(): Promise<GetSnowballUsageCommandOutput>;
294
297
  getSnowballUsage(
295
298
  args: GetSnowballUsageCommandInput,
296
299
  options?: __HttpHandlerOptions
@@ -330,6 +333,7 @@ export interface Snowball {
330
333
  options: __HttpHandlerOptions,
331
334
  cb: (err: any, data?: ListClusterJobsCommandOutput) => void
332
335
  ): void;
336
+ listClusters(): Promise<ListClustersCommandOutput>;
333
337
  listClusters(
334
338
  args: ListClustersCommandInput,
335
339
  options?: __HttpHandlerOptions
@@ -343,6 +347,7 @@ export interface Snowball {
343
347
  options: __HttpHandlerOptions,
344
348
  cb: (err: any, data?: ListClustersCommandOutput) => void
345
349
  ): void;
350
+ listCompatibleImages(): Promise<ListCompatibleImagesCommandOutput>;
346
351
  listCompatibleImages(
347
352
  args: ListCompatibleImagesCommandInput,
348
353
  options?: __HttpHandlerOptions
@@ -356,6 +361,7 @@ export interface Snowball {
356
361
  options: __HttpHandlerOptions,
357
362
  cb: (err: any, data?: ListCompatibleImagesCommandOutput) => void
358
363
  ): void;
364
+ listJobs(): Promise<ListJobsCommandOutput>;
359
365
  listJobs(
360
366
  args: ListJobsCommandInput,
361
367
  options?: __HttpHandlerOptions
@@ -369,6 +375,7 @@ export interface Snowball {
369
375
  options: __HttpHandlerOptions,
370
376
  cb: (err: any, data?: ListJobsCommandOutput) => void
371
377
  ): void;
378
+ listLongTermPricing(): Promise<ListLongTermPricingCommandOutput>;
372
379
  listLongTermPricing(
373
380
  args: ListLongTermPricingCommandInput,
374
381
  options?: __HttpHandlerOptions
@@ -382,6 +389,7 @@ export interface Snowball {
382
389
  options: __HttpHandlerOptions,
383
390
  cb: (err: any, data?: ListLongTermPricingCommandOutput) => void
384
391
  ): void;
392
+ listPickupLocations(): Promise<ListPickupLocationsCommandOutput>;
385
393
  listPickupLocations(
386
394
  args: ListPickupLocationsCommandInput,
387
395
  options?: __HttpHandlerOptions
@@ -21,6 +21,15 @@ declare const CancelClusterCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: CancelClusterCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ CancelClusterCommandInput,
28
+ CancelClusterCommandOutput,
29
+ SnowballClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class CancelClusterCommand extends CancelClusterCommand_base {}
@@ -21,6 +21,15 @@ declare const CancelJobCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: CancelJobCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ CancelJobCommandInput,
28
+ CancelJobCommandOutput,
29
+ SnowballClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class CancelJobCommand extends CancelJobCommand_base {}
@@ -21,6 +21,15 @@ declare const CreateAddressCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: CreateAddressCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ CreateAddressCommandInput,
28
+ CreateAddressCommandOutput,
29
+ SnowballClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class CreateAddressCommand extends CreateAddressCommand_base {}
@@ -21,6 +21,15 @@ declare const CreateClusterCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: CreateClusterCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ CreateClusterCommandInput,
28
+ CreateClusterCommandOutput,
29
+ SnowballClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class CreateClusterCommand extends CreateClusterCommand_base {}
@@ -21,6 +21,15 @@ declare const CreateJobCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ ...[input]: [] | [CreateJobCommandInput]
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ CreateJobCommandInput,
28
+ CreateJobCommandOutput,
29
+ SnowballClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class CreateJobCommand extends CreateJobCommand_base {}
@@ -25,6 +25,15 @@ declare const CreateLongTermPricingCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: CreateLongTermPricingCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateLongTermPricingCommandInput,
32
+ CreateLongTermPricingCommandOutput,
33
+ SnowballClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class CreateLongTermPricingCommand extends CreateLongTermPricingCommand_base {}
@@ -25,6 +25,15 @@ declare const CreateReturnShippingLabelCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: CreateReturnShippingLabelCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateReturnShippingLabelCommandInput,
32
+ CreateReturnShippingLabelCommandOutput,
33
+ SnowballClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class CreateReturnShippingLabelCommand extends CreateReturnShippingLabelCommand_base {}
@@ -24,6 +24,15 @@ declare const DescribeAddressCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: DescribeAddressCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ DescribeAddressCommandInput,
31
+ DescribeAddressCommandOutput,
32
+ SnowballClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class DescribeAddressCommand extends DescribeAddressCommand_base {}
@@ -25,6 +25,15 @@ declare const DescribeAddressesCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [DescribeAddressesCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DescribeAddressesCommandInput,
32
+ DescribeAddressesCommandOutput,
33
+ SnowballClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DescribeAddressesCommand extends DescribeAddressesCommand_base {}
@@ -24,6 +24,15 @@ declare const DescribeClusterCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: DescribeClusterCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ DescribeClusterCommandInput,
31
+ DescribeClusterCommandOutput,
32
+ SnowballClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class DescribeClusterCommand extends DescribeClusterCommand_base {}
@@ -21,6 +21,15 @@ declare const DescribeJobCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: DescribeJobCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DescribeJobCommandInput,
28
+ DescribeJobCommandOutput,
29
+ SnowballClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class DescribeJobCommand extends DescribeJobCommand_base {}
@@ -25,6 +25,15 @@ declare const DescribeReturnShippingLabelCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DescribeReturnShippingLabelCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DescribeReturnShippingLabelCommandInput,
32
+ DescribeReturnShippingLabelCommandOutput,
33
+ SnowballClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DescribeReturnShippingLabelCommand extends DescribeReturnShippingLabelCommand_base {}
@@ -24,6 +24,15 @@ declare const GetJobManifestCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: GetJobManifestCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ GetJobManifestCommandInput,
31
+ GetJobManifestCommandOutput,
32
+ SnowballClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class GetJobManifestCommand extends GetJobManifestCommand_base {}
@@ -24,6 +24,15 @@ declare const GetJobUnlockCodeCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: GetJobUnlockCodeCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ GetJobUnlockCodeCommandInput,
31
+ GetJobUnlockCodeCommandOutput,
32
+ SnowballClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class GetJobUnlockCodeCommand extends GetJobUnlockCodeCommand_base {}
@@ -24,6 +24,15 @@ declare const GetSnowballUsageCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ ...[input]: [] | [GetSnowballUsageCommandInput]
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ GetSnowballUsageCommandInput,
31
+ GetSnowballUsageCommandOutput,
32
+ SnowballClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class GetSnowballUsageCommand extends GetSnowballUsageCommand_base {}
@@ -25,6 +25,15 @@ declare const GetSoftwareUpdatesCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: GetSoftwareUpdatesCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetSoftwareUpdatesCommandInput,
32
+ GetSoftwareUpdatesCommandOutput,
33
+ SnowballClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class GetSoftwareUpdatesCommand extends GetSoftwareUpdatesCommand_base {}
@@ -24,6 +24,15 @@ declare const ListClusterJobsCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: ListClusterJobsCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ ListClusterJobsCommandInput,
31
+ ListClusterJobsCommandOutput,
32
+ SnowballClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class ListClusterJobsCommand extends ListClusterJobsCommand_base {}
@@ -21,6 +21,15 @@ declare const ListClustersCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ ...[input]: [] | [ListClustersCommandInput]
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ ListClustersCommandInput,
28
+ ListClustersCommandOutput,
29
+ SnowballClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class ListClustersCommand extends ListClustersCommand_base {}
@@ -25,6 +25,15 @@ declare const ListCompatibleImagesCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [ListCompatibleImagesCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListCompatibleImagesCommandInput,
32
+ ListCompatibleImagesCommandOutput,
33
+ SnowballClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListCompatibleImagesCommand extends ListCompatibleImagesCommand_base {}
@@ -21,6 +21,15 @@ declare const ListJobsCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ ...[input]: [] | [ListJobsCommandInput]
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ ListJobsCommandInput,
28
+ ListJobsCommandOutput,
29
+ SnowballClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class ListJobsCommand extends ListJobsCommand_base {}
@@ -25,6 +25,15 @@ declare const ListLongTermPricingCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [ListLongTermPricingCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListLongTermPricingCommandInput,
32
+ ListLongTermPricingCommandOutput,
33
+ SnowballClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListLongTermPricingCommand extends ListLongTermPricingCommand_base {}
@@ -25,6 +25,15 @@ declare const ListPickupLocationsCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [ListPickupLocationsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListPickupLocationsCommandInput,
32
+ ListPickupLocationsCommandOutput,
33
+ SnowballClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListPickupLocationsCommand extends ListPickupLocationsCommand_base {}
@@ -25,6 +25,15 @@ declare const ListServiceVersionsCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: ListServiceVersionsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListServiceVersionsCommandInput,
32
+ ListServiceVersionsCommandOutput,
33
+ SnowballClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListServiceVersionsCommand extends ListServiceVersionsCommand_base {}
@@ -21,6 +21,15 @@ declare const UpdateClusterCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: UpdateClusterCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ UpdateClusterCommandInput,
28
+ UpdateClusterCommandOutput,
29
+ SnowballClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class UpdateClusterCommand extends UpdateClusterCommand_base {}
@@ -21,6 +21,15 @@ declare const UpdateJobCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: UpdateJobCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ UpdateJobCommandInput,
28
+ UpdateJobCommandOutput,
29
+ SnowballClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class UpdateJobCommand extends UpdateJobCommand_base {}
@@ -25,6 +25,15 @@ declare const UpdateJobShipmentStateCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: UpdateJobShipmentStateCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateJobShipmentStateCommandInput,
32
+ UpdateJobShipmentStateCommandOutput,
33
+ SnowballClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class UpdateJobShipmentStateCommand extends UpdateJobShipmentStateCommand_base {}
@@ -25,6 +25,15 @@ declare const UpdateLongTermPricingCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: UpdateLongTermPricingCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateLongTermPricingCommandInput,
32
+ UpdateLongTermPricingCommandOutput,
33
+ SnowballClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class UpdateLongTermPricingCommand extends UpdateLongTermPricingCommand_base {}
@@ -6,5 +6,4 @@ export { SnowballExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./models";
9
- import "@aws-sdk/util-endpoints";
10
9
  export { SnowballServiceException } from "./models/SnowballServiceException";
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.533.0",
4
+ "version": "3.540.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,47 +20,47 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.533.0",
24
- "@aws-sdk/core": "3.533.0",
25
- "@aws-sdk/credential-provider-node": "3.533.0",
26
- "@aws-sdk/middleware-host-header": "3.533.0",
27
- "@aws-sdk/middleware-logger": "3.533.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.533.0",
29
- "@aws-sdk/middleware-user-agent": "3.533.0",
30
- "@aws-sdk/region-config-resolver": "3.533.0",
31
- "@aws-sdk/types": "3.533.0",
32
- "@aws-sdk/util-endpoints": "3.533.0",
33
- "@aws-sdk/util-user-agent-browser": "3.533.0",
34
- "@aws-sdk/util-user-agent-node": "3.533.0",
35
- "@smithy/config-resolver": "^2.1.5",
36
- "@smithy/core": "^1.3.8",
37
- "@smithy/fetch-http-handler": "^2.4.5",
38
- "@smithy/hash-node": "^2.1.4",
39
- "@smithy/invalid-dependency": "^2.1.4",
40
- "@smithy/middleware-content-length": "^2.1.4",
41
- "@smithy/middleware-endpoint": "^2.4.6",
42
- "@smithy/middleware-retry": "^2.1.7",
43
- "@smithy/middleware-serde": "^2.2.1",
44
- "@smithy/middleware-stack": "^2.1.4",
45
- "@smithy/node-config-provider": "^2.2.5",
46
- "@smithy/node-http-handler": "^2.4.3",
47
- "@smithy/protocol-http": "^3.2.2",
48
- "@smithy/smithy-client": "^2.4.5",
49
- "@smithy/types": "^2.11.0",
50
- "@smithy/url-parser": "^2.1.4",
51
- "@smithy/util-base64": "^2.2.1",
52
- "@smithy/util-body-length-browser": "^2.1.1",
53
- "@smithy/util-body-length-node": "^2.2.2",
54
- "@smithy/util-defaults-mode-browser": "^2.1.7",
55
- "@smithy/util-defaults-mode-node": "^2.2.7",
56
- "@smithy/util-endpoints": "^1.1.5",
57
- "@smithy/util-middleware": "^2.1.4",
58
- "@smithy/util-retry": "^2.1.4",
59
- "@smithy/util-utf8": "^2.2.0",
60
- "tslib": "^2.5.0"
23
+ "@aws-sdk/client-sts": "3.540.0",
24
+ "@aws-sdk/core": "3.535.0",
25
+ "@aws-sdk/credential-provider-node": "3.540.0",
26
+ "@aws-sdk/middleware-host-header": "3.535.0",
27
+ "@aws-sdk/middleware-logger": "3.535.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.535.0",
29
+ "@aws-sdk/middleware-user-agent": "3.540.0",
30
+ "@aws-sdk/region-config-resolver": "3.535.0",
31
+ "@aws-sdk/types": "3.535.0",
32
+ "@aws-sdk/util-endpoints": "3.540.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.535.0",
34
+ "@aws-sdk/util-user-agent-node": "3.535.0",
35
+ "@smithy/config-resolver": "^2.2.0",
36
+ "@smithy/core": "^1.4.0",
37
+ "@smithy/fetch-http-handler": "^2.5.0",
38
+ "@smithy/hash-node": "^2.2.0",
39
+ "@smithy/invalid-dependency": "^2.2.0",
40
+ "@smithy/middleware-content-length": "^2.2.0",
41
+ "@smithy/middleware-endpoint": "^2.5.0",
42
+ "@smithy/middleware-retry": "^2.2.0",
43
+ "@smithy/middleware-serde": "^2.3.0",
44
+ "@smithy/middleware-stack": "^2.2.0",
45
+ "@smithy/node-config-provider": "^2.3.0",
46
+ "@smithy/node-http-handler": "^2.5.0",
47
+ "@smithy/protocol-http": "^3.3.0",
48
+ "@smithy/smithy-client": "^2.5.0",
49
+ "@smithy/types": "^2.12.0",
50
+ "@smithy/url-parser": "^2.2.0",
51
+ "@smithy/util-base64": "^2.3.0",
52
+ "@smithy/util-body-length-browser": "^2.2.0",
53
+ "@smithy/util-body-length-node": "^2.3.0",
54
+ "@smithy/util-defaults-mode-browser": "^2.2.0",
55
+ "@smithy/util-defaults-mode-node": "^2.3.0",
56
+ "@smithy/util-endpoints": "^1.2.0",
57
+ "@smithy/util-middleware": "^2.2.0",
58
+ "@smithy/util-retry": "^2.2.0",
59
+ "@smithy/util-utf8": "^2.3.0",
60
+ "tslib": "^2.6.2"
61
61
  },
62
62
  "devDependencies": {
63
- "@smithy/service-client-documentation-generator": "^2.1.1",
63
+ "@smithy/service-client-documentation-generator": "^2.2.0",
64
64
  "@tsconfig/node14": "1.0.3",
65
65
  "@types/node": "^14.14.31",
66
66
  "concurrently": "7.0.0",