@aws-sdk/client-snowball 3.267.0 → 3.271.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 (35) hide show
  1. package/dist-cjs/Snowball.js +15 -0
  2. package/dist-cjs/commands/ListServiceVersionsCommand.js +46 -0
  3. package/dist-cjs/commands/index.js +1 -0
  4. package/dist-cjs/endpoint/ruleset.js +3 -3
  5. package/dist-cjs/models/models_0.js +28 -3
  6. package/dist-cjs/protocols/Aws_json1_1.js +142 -1
  7. package/dist-es/Snowball.js +15 -0
  8. package/dist-es/commands/ListServiceVersionsCommand.js +42 -0
  9. package/dist-es/commands/index.js +1 -0
  10. package/dist-es/endpoint/ruleset.js +3 -3
  11. package/dist-es/models/models_0.js +20 -0
  12. package/dist-es/protocols/Aws_json1_1.js +138 -0
  13. package/dist-types/Snowball.d.ts +8 -26
  14. package/dist-types/SnowballClient.d.ts +18 -17
  15. package/dist-types/commands/CreateJobCommand.d.ts +0 -18
  16. package/dist-types/commands/GetJobManifestCommand.d.ts +0 -5
  17. package/dist-types/commands/GetJobUnlockCodeCommand.d.ts +0 -2
  18. package/dist-types/commands/GetSnowballUsageCommand.d.ts +0 -1
  19. package/dist-types/commands/ListServiceVersionsCommand.d.ts +38 -0
  20. package/dist-types/commands/index.d.ts +1 -0
  21. package/dist-types/models/models_0.d.ts +102 -20
  22. package/dist-types/protocols/Aws_json1_1.d.ts +3 -0
  23. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  24. package/dist-types/runtimeConfig.d.ts +1 -1
  25. package/dist-types/runtimeConfig.native.d.ts +4 -4
  26. package/dist-types/ts3.4/Snowball.d.ts +17 -0
  27. package/dist-types/ts3.4/SnowballClient.d.ts +10 -4
  28. package/dist-types/ts3.4/commands/ListServiceVersionsCommand.d.ts +38 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +43 -0
  31. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
  32. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
  35. package/package.json +29 -29
@@ -197,7 +197,6 @@ export declare enum JobState {
197
197
  * with a specific job. The <code>Notification</code> object is returned as a part of the
198
198
  * response syntax of the <code>DescribeJob</code> action in the <code>JobMetadata</code> data
199
199
  * type.</p>
200
- *
201
200
  * <p>When the notification settings are defined during job creation, you can choose to
202
201
  * notify based on a specific set of job states using the <code>JobStatesToNotify</code> array of
203
202
  * strings, or you can specify that you want to have Amazon SNS notifications sent out for all
@@ -208,7 +207,6 @@ export interface Notification {
208
207
  * <p>The new SNS <code>TopicArn</code> that you want to associate with this job. You can
209
208
  * create Amazon Resource Names (ARNs) for topics by using the <a href="https://docs.aws.amazon.com/sns/latest/api/API_CreateTopic.html">CreateTopic</a> Amazon SNS API
210
209
  * action.</p>
211
- *
212
210
  * <p>You can subscribe email addresses to an Amazon SNS topic through the Amazon Web Services Management Console, or by using the <a href="https://docs.aws.amazon.com/sns/latest/api/API_Subscribe.html">Subscribe</a> Amazon Simple Notification
213
211
  * Service (Amazon SNS) API action.</p>
214
212
  */
@@ -222,6 +220,19 @@ export interface Notification {
222
220
  */
223
221
  NotifyAll?: boolean;
224
222
  }
223
+ /**
224
+ * <p>An object representing the metadata and configuration settings of EKS Anywhere on the Snow Family device.</p>
225
+ */
226
+ export interface EKSOnDeviceServiceConfiguration {
227
+ /**
228
+ * <p>The Kubernetes version for EKS Anywhere on the Snow Family device.</p>
229
+ */
230
+ KubernetesVersion?: string;
231
+ /**
232
+ * <p>The version of EKS Anywhere on the Snow Family device.</p>
233
+ */
234
+ EKSAnywhereVersion?: string;
235
+ }
225
236
  export declare enum StorageUnit {
226
237
  TB = "TB"
227
238
  }
@@ -268,6 +279,10 @@ export interface OnDeviceServiceConfiguration {
268
279
  * <p>Represents the Storage Gateway service Tape Gateway type on a Snow Family device.</p>
269
280
  */
270
281
  TGWOnDeviceService?: TGWOnDeviceServiceConfiguration;
282
+ /**
283
+ * <p>The configuration of EKS Anywhere on the Snow Family device.</p>
284
+ */
285
+ EKSOnDeviceService?: EKSOnDeviceServiceConfiguration;
271
286
  }
272
287
  export declare enum RemoteManagement {
273
288
  INSTALLED_AUTOSTART = "INSTALLED_AUTOSTART",
@@ -439,7 +454,6 @@ export interface CreateClusterRequest {
439
454
  /**
440
455
  * <p>The type of job for this cluster. Currently, the only job type supported for clusters
441
456
  * is <code>LOCAL_USE</code>.</p>
442
- *
443
457
  * <p>For more information, see
444
458
  * "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow
445
459
  * Family Devices and Capacity) in the <i>Snowcone User Guide</i> or
@@ -484,7 +498,6 @@ export interface CreateClusterRequest {
484
498
  * <p>For cluster jobs, Amazon Web Services Snow Family currently supports only the
485
499
  * <code>EDGE</code> device type.</p>
486
500
  * </note>
487
- *
488
501
  * <p>For more information, see
489
502
  * "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow
490
503
  * Family Devices and Capacity) in the <i>Snowcone User Guide</i> or
@@ -515,7 +528,6 @@ export interface CreateClusterRequest {
515
528
  * two-day shipping.</p>
516
529
  * </li>
517
530
  * </ul>
518
- *
519
531
  * <ul>
520
532
  * <li>
521
533
  * <p>In Australia, you have access to express shipping. Typically, devices shipped
@@ -650,10 +662,8 @@ export interface CreateJobRequest {
650
662
  JobType?: JobType | string;
651
663
  /**
652
664
  * <p>Defines the Amazon S3 buckets associated with this job.</p>
653
- *
654
665
  * <p>With <code>IMPORT</code> jobs, you specify the bucket or buckets that your transferred
655
666
  * data will be imported into.</p>
656
- *
657
667
  * <p>With <code>EXPORT</code> jobs, you specify the bucket or buckets that your transferred
658
668
  * data will be exported from. Optionally, you can also specify a <code>KeyRange</code> value. If
659
669
  * you choose to export a range, you define the length of the range by providing either an
@@ -692,7 +702,6 @@ export interface CreateJobRequest {
692
702
  * <p>If your job is being created in one of the US regions, you have the option of
693
703
  * specifying what size Snow device you'd like for this job. In all other regions, Snowballs come
694
704
  * with 80 TB in storage capacity.</p>
695
- *
696
705
  * <p>For more information, see
697
706
  * "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow
698
707
  * Family Devices and Capacity) in the <i>Snowcone User Guide</i> or
@@ -704,7 +713,6 @@ export interface CreateJobRequest {
704
713
  * <p>The shipping speed for this job. This speed doesn't dictate how soon you'll get the
705
714
  * Snow device, rather it represents how quickly the Snow device moves to its destination while
706
715
  * in transit. Regional shipping speeds are as follows:</p>
707
- *
708
716
  * <ul>
709
717
  * <li>
710
718
  * <p>In Australia, you have access to express shipping. Typically, Snow devices shipped
@@ -747,7 +755,6 @@ export interface CreateJobRequest {
747
755
  * supported device type for cluster jobs is <code>EDGE</code>.</p>
748
756
  * <p>For more information, see <a href="https://docs.aws.amazon.com/snowball/latest/developer-guide/device-differences.html">Snowball Edge Device
749
757
  * Options</a> in the Snowball Edge Developer Guide.</p>
750
- *
751
758
  * <p>For more information, see
752
759
  * "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow
753
760
  * Family Devices and Capacity) in the <i>Snowcone User Guide</i> or
@@ -766,7 +773,6 @@ export interface CreateJobRequest {
766
773
  TaxDocuments?: TaxDocuments;
767
774
  /**
768
775
  * <p>Defines the device configuration for an Snowcone job.</p>
769
- *
770
776
  * <p>For more information, see
771
777
  * "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow
772
778
  * Family Devices and Capacity) in the <i>Snowcone User Guide</i> or
@@ -804,8 +810,7 @@ export interface CreateLongTermPricingRequest {
804
810
  */
805
811
  LongTermPricingType: LongTermPricingType | string | undefined;
806
812
  /**
807
- * <p>snowballty</p>
808
- * <p>Specifies whether the current long-term pricing type for the device should be
813
+ * <p>Specifies whether the current long-term pricing type for the device should be
809
814
  * renewed.</p>
810
815
  */
811
816
  IsLongTermPricingAutoRenew?: boolean;
@@ -996,7 +1001,6 @@ export interface ClusterMetadata {
996
1001
  * <p>The shipping speed for each node in this cluster. This speed doesn't dictate how soon
997
1002
  * you'll get each device, rather it represents how quickly each device moves to its destination
998
1003
  * while in transit. Regional shipping speeds are as follows:</p>
999
- *
1000
1004
  * <ul>
1001
1005
  * <li>
1002
1006
  * <p>In Australia, you have access to express shipping. Typically, devices shipped
@@ -1084,14 +1088,11 @@ export interface DataTransfer {
1084
1088
  * <code>JobMetadata</code> data type. The job logs can be accessed for up to 60 minutes after
1085
1089
  * this request has been made. To access any of the job logs after 60 minutes have passed, you'll
1086
1090
  * have to make another call to the <code>DescribeJob</code> action.</p>
1087
- *
1088
1091
  * <p>For import jobs, the PDF job report becomes available at the end of the import process.
1089
1092
  * For export jobs, your job report typically becomes available while the Snow device for your
1090
1093
  * job part is being delivered to you.</p>
1091
- *
1092
1094
  * <p>The job report provides you insight into the state of your Amazon S3 data transfer. The
1093
1095
  * report includes details about your job or job part for your records.</p>
1094
- *
1095
1096
  * <p>For deeper visibility into the status of your transferred objects, you can look at the
1096
1097
  * two associated logs: a success log and a failure log. The logs are saved in comma-separated
1097
1098
  * value (CSV) format, and the name of each log includes the ID of the job or job part that the
@@ -1138,7 +1139,6 @@ export interface ShippingDetails {
1138
1139
  * <p>The shipping speed for a particular job. This speed doesn't dictate how soon you'll get
1139
1140
  * the Snow device from the job's creation date. This speed represents how quickly it moves to
1140
1141
  * its destination while in transit. Regional shipping speeds are as follows:</p>
1141
- *
1142
1142
  * <ul>
1143
1143
  * <li>
1144
1144
  * <p>In Australia, you have access to express shipping. Typically, Snow devices shipped
@@ -1231,7 +1231,6 @@ export interface JobMetadata {
1231
1231
  * <p>The Snow device capacity preference for this job, specified at job creation. In US
1232
1232
  * regions, you can choose between 50 TB and 80 TB Snowballs. All other regions use 80 TB
1233
1233
  * capacity Snowballs.</p>
1234
- *
1235
1234
  * <p>For more information, see
1236
1235
  * "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow
1237
1236
  * Family Devices and Capacity) in the <i>Snowcone User Guide</i> or
@@ -1640,6 +1639,70 @@ export interface ListLongTermPricingResult {
1640
1639
  */
1641
1640
  NextToken?: string;
1642
1641
  }
1642
+ export declare enum ServiceName {
1643
+ EKS_ANYWHERE = "EKS_ANYWHERE",
1644
+ KUBERNETES = "KUBERNETES"
1645
+ }
1646
+ /**
1647
+ * <p>The version of the requested service.</p>
1648
+ */
1649
+ export interface ServiceVersion {
1650
+ /**
1651
+ * <p>The version number of the requested service.</p>
1652
+ */
1653
+ Version?: string;
1654
+ }
1655
+ /**
1656
+ * <p>The name and version of the service dependant on the requested service.</p>
1657
+ */
1658
+ export interface DependentService {
1659
+ /**
1660
+ * <p>The name of the dependent service.</p>
1661
+ */
1662
+ ServiceName?: ServiceName | string;
1663
+ /**
1664
+ * <p>The version of the dependent service.</p>
1665
+ */
1666
+ ServiceVersion?: ServiceVersion;
1667
+ }
1668
+ export interface ListServiceVersionsRequest {
1669
+ /**
1670
+ * <p>The name of the service for which you're requesting supported versions.</p>
1671
+ */
1672
+ ServiceName: ServiceName | string | undefined;
1673
+ /**
1674
+ * <p>A list of names and versions of dependant services of the requested service.</p>
1675
+ */
1676
+ DependentServices?: DependentService[];
1677
+ /**
1678
+ * <p>The maximum number of <code>ListServiceVersions</code> objects to return.</p>
1679
+ */
1680
+ MaxResults?: number;
1681
+ /**
1682
+ * <p>Because HTTP requests are stateless, this is the starting point for the next list of returned
1683
+ * <code>ListServiceVersionsRequest</code> versions.</p>
1684
+ */
1685
+ NextToken?: string;
1686
+ }
1687
+ export interface ListServiceVersionsResult {
1688
+ /**
1689
+ * <p>A list of supported versions.</p>
1690
+ */
1691
+ ServiceVersions: ServiceVersion[] | undefined;
1692
+ /**
1693
+ * <p>The name of the service for which the system provided supported versions.</p>
1694
+ */
1695
+ ServiceName: ServiceName | string | undefined;
1696
+ /**
1697
+ * <p>A list of names and versions of dependant services of the service for which the system provided supported versions.</p>
1698
+ */
1699
+ DependentServices?: DependentService[];
1700
+ /**
1701
+ * <p>Because HTTP requests are stateless, this is the starting point of the next list of returned
1702
+ * <code>ListServiceVersionsResult</code> results.</p>
1703
+ */
1704
+ NextToken?: string;
1705
+ }
1643
1706
  export interface UpdateClusterRequest {
1644
1707
  /**
1645
1708
  * <p>The cluster ID of the cluster that you want to update, for example
@@ -1729,7 +1792,6 @@ export interface UpdateJobRequest {
1729
1792
  /**
1730
1793
  * <p>The updated <code>SnowballCapacityPreference</code> of this job's <a>JobMetadata</a> object. The 50 TB Snowballs are only available in the US
1731
1794
  * regions.</p>
1732
- *
1733
1795
  * <p>For more information, see
1734
1796
  * "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow
1735
1797
  * Family Devices and Capacity) in the <i>Snowcone User Guide</i> or
@@ -1814,6 +1876,10 @@ export declare const CreateAddressResultFilterSensitiveLog: (obj: CreateAddressR
1814
1876
  * @internal
1815
1877
  */
1816
1878
  export declare const NotificationFilterSensitiveLog: (obj: Notification) => any;
1879
+ /**
1880
+ * @internal
1881
+ */
1882
+ export declare const EKSOnDeviceServiceConfigurationFilterSensitiveLog: (obj: EKSOnDeviceServiceConfiguration) => any;
1817
1883
  /**
1818
1884
  * @internal
1819
1885
  */
@@ -2058,6 +2124,22 @@ export declare const LongTermPricingListEntryFilterSensitiveLog: (obj: LongTermP
2058
2124
  * @internal
2059
2125
  */
2060
2126
  export declare const ListLongTermPricingResultFilterSensitiveLog: (obj: ListLongTermPricingResult) => any;
2127
+ /**
2128
+ * @internal
2129
+ */
2130
+ export declare const ServiceVersionFilterSensitiveLog: (obj: ServiceVersion) => any;
2131
+ /**
2132
+ * @internal
2133
+ */
2134
+ export declare const DependentServiceFilterSensitiveLog: (obj: DependentService) => any;
2135
+ /**
2136
+ * @internal
2137
+ */
2138
+ export declare const ListServiceVersionsRequestFilterSensitiveLog: (obj: ListServiceVersionsRequest) => any;
2139
+ /**
2140
+ * @internal
2141
+ */
2142
+ export declare const ListServiceVersionsResultFilterSensitiveLog: (obj: ListServiceVersionsResult) => any;
2061
2143
  /**
2062
2144
  * @internal
2063
2145
  */
@@ -21,6 +21,7 @@ import { ListClustersCommandInput, ListClustersCommandOutput } from "../commands
21
21
  import { ListCompatibleImagesCommandInput, ListCompatibleImagesCommandOutput } from "../commands/ListCompatibleImagesCommand";
22
22
  import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
23
23
  import { ListLongTermPricingCommandInput, ListLongTermPricingCommandOutput } from "../commands/ListLongTermPricingCommand";
24
+ import { ListServiceVersionsCommandInput, ListServiceVersionsCommandOutput } from "../commands/ListServiceVersionsCommand";
24
25
  import { UpdateClusterCommandInput, UpdateClusterCommandOutput } from "../commands/UpdateClusterCommand";
25
26
  import { UpdateJobCommandInput, UpdateJobCommandOutput } from "../commands/UpdateJobCommand";
26
27
  import { UpdateJobShipmentStateCommandInput, UpdateJobShipmentStateCommandOutput } from "../commands/UpdateJobShipmentStateCommand";
@@ -46,6 +47,7 @@ export declare const serializeAws_json1_1ListClustersCommand: (input: ListCluste
46
47
  export declare const serializeAws_json1_1ListCompatibleImagesCommand: (input: ListCompatibleImagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
48
  export declare const serializeAws_json1_1ListJobsCommand: (input: ListJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
49
  export declare const serializeAws_json1_1ListLongTermPricingCommand: (input: ListLongTermPricingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
+ export declare const serializeAws_json1_1ListServiceVersionsCommand: (input: ListServiceVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
51
  export declare const serializeAws_json1_1UpdateClusterCommand: (input: UpdateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
52
  export declare const serializeAws_json1_1UpdateJobCommand: (input: UpdateJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
53
  export declare const serializeAws_json1_1UpdateJobShipmentStateCommand: (input: UpdateJobShipmentStateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -71,6 +73,7 @@ export declare const deserializeAws_json1_1ListClustersCommand: (output: __HttpR
71
73
  export declare const deserializeAws_json1_1ListCompatibleImagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCompatibleImagesCommandOutput>;
72
74
  export declare const deserializeAws_json1_1ListJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobsCommandOutput>;
73
75
  export declare const deserializeAws_json1_1ListLongTermPricingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLongTermPricingCommandOutput>;
76
+ export declare const deserializeAws_json1_1ListServiceVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServiceVersionsCommandOutput>;
74
77
  export declare const deserializeAws_json1_1UpdateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateClusterCommandOutput>;
75
78
  export declare const deserializeAws_json1_1UpdateJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateJobCommandOutput>;
76
79
  export declare const deserializeAws_json1_1UpdateJobShipmentStateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateJobShipmentStateCommandOutput>;
@@ -24,8 +24,8 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
24
24
  utf8Decoder: import("@aws-sdk/types").Decoder;
25
25
  utf8Encoder: import("@aws-sdk/types").Encoder;
26
26
  disableHostPrefix: boolean;
27
- logger: import("@aws-sdk/types").Logger;
28
27
  serviceId: string;
28
+ logger: import("@aws-sdk/types").Logger;
29
29
  endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
30
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
31
  logger?: import("@aws-sdk/types").Logger | undefined;
@@ -24,8 +24,8 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
24
24
  utf8Decoder: import("@aws-sdk/types").Decoder;
25
25
  utf8Encoder: import("@aws-sdk/types").Encoder;
26
26
  disableHostPrefix: boolean;
27
- logger: import("@aws-sdk/types").Logger;
28
27
  serviceId: string;
28
+ logger: import("@aws-sdk/types").Logger;
29
29
  endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
30
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
31
  logger?: import("@aws-sdk/types").Logger | undefined;
@@ -15,15 +15,15 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
15
15
  utf8Decoder: import("@aws-sdk/types").Decoder;
16
16
  utf8Encoder: import("@aws-sdk/types").Encoder;
17
17
  disableHostPrefix: boolean;
18
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
- retryMode: string | import("@aws-sdk/types").Provider<string>;
20
- logger: import("@aws-sdk/types").Logger;
18
+ serviceId: string;
21
19
  useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
22
20
  useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
23
- serviceId: string;
24
21
  region: string | import("@aws-sdk/types").Provider<any>;
25
22
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
23
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
24
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
25
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
26
+ logger: import("@aws-sdk/types").Logger;
27
27
  defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
28
28
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
29
29
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
@@ -83,6 +83,10 @@ import {
83
83
  ListLongTermPricingCommandInput,
84
84
  ListLongTermPricingCommandOutput,
85
85
  } from "./commands/ListLongTermPricingCommand";
86
+ import {
87
+ ListServiceVersionsCommandInput,
88
+ ListServiceVersionsCommandOutput,
89
+ } from "./commands/ListServiceVersionsCommand";
86
90
  import {
87
91
  UpdateClusterCommandInput,
88
92
  UpdateClusterCommandOutput,
@@ -374,6 +378,19 @@ export declare class Snowball extends SnowballClient {
374
378
  options: __HttpHandlerOptions,
375
379
  cb: (err: any, data?: ListLongTermPricingCommandOutput) => void
376
380
  ): void;
381
+ listServiceVersions(
382
+ args: ListServiceVersionsCommandInput,
383
+ options?: __HttpHandlerOptions
384
+ ): Promise<ListServiceVersionsCommandOutput>;
385
+ listServiceVersions(
386
+ args: ListServiceVersionsCommandInput,
387
+ cb: (err: any, data?: ListServiceVersionsCommandOutput) => void
388
+ ): void;
389
+ listServiceVersions(
390
+ args: ListServiceVersionsCommandInput,
391
+ options: __HttpHandlerOptions,
392
+ cb: (err: any, data?: ListServiceVersionsCommandOutput) => void
393
+ ): void;
377
394
  updateCluster(
378
395
  args: UpdateClusterCommandInput,
379
396
  options?: __HttpHandlerOptions
@@ -128,6 +128,10 @@ import {
128
128
  ListLongTermPricingCommandInput,
129
129
  ListLongTermPricingCommandOutput,
130
130
  } from "./commands/ListLongTermPricingCommand";
131
+ import {
132
+ ListServiceVersionsCommandInput,
133
+ ListServiceVersionsCommandOutput,
134
+ } from "./commands/ListServiceVersionsCommand";
131
135
  import {
132
136
  UpdateClusterCommandInput,
133
137
  UpdateClusterCommandOutput,
@@ -171,6 +175,7 @@ export declare type ServiceInputTypes =
171
175
  | ListCompatibleImagesCommandInput
172
176
  | ListJobsCommandInput
173
177
  | ListLongTermPricingCommandInput
178
+ | ListServiceVersionsCommandInput
174
179
  | UpdateClusterCommandInput
175
180
  | UpdateJobCommandInput
176
181
  | UpdateJobShipmentStateCommandInput
@@ -197,6 +202,7 @@ export declare type ServiceOutputTypes =
197
202
  | ListCompatibleImagesCommandOutput
198
203
  | ListJobsCommandOutput
199
204
  | ListLongTermPricingCommandOutput
205
+ | ListServiceVersionsCommandOutput
200
206
  | UpdateClusterCommandOutput
201
207
  | UpdateJobCommandOutput
202
208
  | UpdateJobShipmentStateCommandOutput
@@ -214,15 +220,15 @@ export interface ClientDefaults
214
220
  utf8Encoder?: __Encoder;
215
221
  runtime?: string;
216
222
  disableHostPrefix?: boolean;
217
- maxAttempts?: number | __Provider<number>;
218
- retryMode?: string | __Provider<string>;
219
- logger?: __Logger;
223
+ serviceId?: string;
220
224
  useDualstackEndpoint?: boolean | __Provider<boolean>;
221
225
  useFipsEndpoint?: boolean | __Provider<boolean>;
222
- serviceId?: string;
223
226
  region?: string | __Provider<string>;
224
227
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
225
228
  defaultUserAgentProvider?: Provider<__UserAgent>;
229
+ maxAttempts?: number | __Provider<number>;
230
+ retryMode?: string | __Provider<string>;
231
+ logger?: __Logger;
226
232
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
227
233
  }
228
234
  declare type SnowballClientConfigType = Partial<
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ListServiceVersionsRequest,
11
+ ListServiceVersionsResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SnowballClientResolvedConfig,
17
+ } from "../SnowballClient";
18
+ export interface ListServiceVersionsCommandInput
19
+ extends ListServiceVersionsRequest {}
20
+ export interface ListServiceVersionsCommandOutput
21
+ extends ListServiceVersionsResult,
22
+ __MetadataBearer {}
23
+ export declare class ListServiceVersionsCommand extends $Command<
24
+ ListServiceVersionsCommandInput,
25
+ ListServiceVersionsCommandOutput,
26
+ SnowballClientResolvedConfig
27
+ > {
28
+ readonly input: ListServiceVersionsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListServiceVersionsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SnowballClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListServiceVersionsCommandInput, ListServiceVersionsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -19,6 +19,7 @@ export * from "./ListClustersCommand";
19
19
  export * from "./ListCompatibleImagesCommand";
20
20
  export * from "./ListJobsCommand";
21
21
  export * from "./ListLongTermPricingCommand";
22
+ export * from "./ListServiceVersionsCommand";
22
23
  export * from "./UpdateClusterCommand";
23
24
  export * from "./UpdateJobCommand";
24
25
  export * from "./UpdateJobShipmentStateCommand";
@@ -96,6 +96,10 @@ export interface Notification {
96
96
  JobStatesToNotify?: (JobState | string)[];
97
97
  NotifyAll?: boolean;
98
98
  }
99
+ export interface EKSOnDeviceServiceConfiguration {
100
+ KubernetesVersion?: string;
101
+ EKSAnywhereVersion?: string;
102
+ }
99
103
  export declare enum StorageUnit {
100
104
  TB = "TB",
101
105
  }
@@ -110,6 +114,7 @@ export interface TGWOnDeviceServiceConfiguration {
110
114
  export interface OnDeviceServiceConfiguration {
111
115
  NFSOnDeviceService?: NFSOnDeviceServiceConfiguration;
112
116
  TGWOnDeviceService?: TGWOnDeviceServiceConfiguration;
117
+ EKSOnDeviceService?: EKSOnDeviceServiceConfiguration;
113
118
  }
114
119
  export declare enum RemoteManagement {
115
120
  INSTALLED_AUTOSTART = "INSTALLED_AUTOSTART",
@@ -511,6 +516,29 @@ export interface ListLongTermPricingResult {
511
516
  LongTermPricingEntries?: LongTermPricingListEntry[];
512
517
  NextToken?: string;
513
518
  }
519
+ export declare enum ServiceName {
520
+ EKS_ANYWHERE = "EKS_ANYWHERE",
521
+ KUBERNETES = "KUBERNETES",
522
+ }
523
+ export interface ServiceVersion {
524
+ Version?: string;
525
+ }
526
+ export interface DependentService {
527
+ ServiceName?: ServiceName | string;
528
+ ServiceVersion?: ServiceVersion;
529
+ }
530
+ export interface ListServiceVersionsRequest {
531
+ ServiceName: ServiceName | string | undefined;
532
+ DependentServices?: DependentService[];
533
+ MaxResults?: number;
534
+ NextToken?: string;
535
+ }
536
+ export interface ListServiceVersionsResult {
537
+ ServiceVersions: ServiceVersion[] | undefined;
538
+ ServiceName: ServiceName | string | undefined;
539
+ DependentServices?: DependentService[];
540
+ NextToken?: string;
541
+ }
514
542
  export interface UpdateClusterRequest {
515
543
  ClusterId: string | undefined;
516
544
  RoleARN?: string;
@@ -571,6 +599,9 @@ export declare const CreateAddressResultFilterSensitiveLog: (
571
599
  obj: CreateAddressResult
572
600
  ) => any;
573
601
  export declare const NotificationFilterSensitiveLog: (obj: Notification) => any;
602
+ export declare const EKSOnDeviceServiceConfigurationFilterSensitiveLog: (
603
+ obj: EKSOnDeviceServiceConfiguration
604
+ ) => any;
574
605
  export declare const NFSOnDeviceServiceConfigurationFilterSensitiveLog: (
575
606
  obj: NFSOnDeviceServiceConfiguration
576
607
  ) => any;
@@ -736,6 +767,18 @@ export declare const LongTermPricingListEntryFilterSensitiveLog: (
736
767
  export declare const ListLongTermPricingResultFilterSensitiveLog: (
737
768
  obj: ListLongTermPricingResult
738
769
  ) => any;
770
+ export declare const ServiceVersionFilterSensitiveLog: (
771
+ obj: ServiceVersion
772
+ ) => any;
773
+ export declare const DependentServiceFilterSensitiveLog: (
774
+ obj: DependentService
775
+ ) => any;
776
+ export declare const ListServiceVersionsRequestFilterSensitiveLog: (
777
+ obj: ListServiceVersionsRequest
778
+ ) => any;
779
+ export declare const ListServiceVersionsResultFilterSensitiveLog: (
780
+ obj: ListServiceVersionsResult
781
+ ) => any;
739
782
  export declare const UpdateClusterRequestFilterSensitiveLog: (
740
783
  obj: UpdateClusterRequest
741
784
  ) => any;
@@ -87,6 +87,10 @@ import {
87
87
  ListLongTermPricingCommandInput,
88
88
  ListLongTermPricingCommandOutput,
89
89
  } from "../commands/ListLongTermPricingCommand";
90
+ import {
91
+ ListServiceVersionsCommandInput,
92
+ ListServiceVersionsCommandOutput,
93
+ } from "../commands/ListServiceVersionsCommand";
90
94
  import {
91
95
  UpdateClusterCommandInput,
92
96
  UpdateClusterCommandOutput,
@@ -187,6 +191,10 @@ export declare const serializeAws_json1_1ListLongTermPricingCommand: (
187
191
  input: ListLongTermPricingCommandInput,
188
192
  context: __SerdeContext
189
193
  ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_json1_1ListServiceVersionsCommand: (
195
+ input: ListServiceVersionsCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
190
198
  export declare const serializeAws_json1_1UpdateClusterCommand: (
191
199
  input: UpdateClusterCommandInput,
192
200
  context: __SerdeContext
@@ -287,6 +295,10 @@ export declare const deserializeAws_json1_1ListLongTermPricingCommand: (
287
295
  output: __HttpResponse,
288
296
  context: __SerdeContext
289
297
  ) => Promise<ListLongTermPricingCommandOutput>;
298
+ export declare const deserializeAws_json1_1ListServiceVersionsCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<ListServiceVersionsCommandOutput>;
290
302
  export declare const deserializeAws_json1_1UpdateClusterCommand: (
291
303
  output: __HttpResponse,
292
304
  context: __SerdeContext
@@ -34,8 +34,8 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
34
34
  utf8Decoder: import("@aws-sdk/types").Decoder;
35
35
  utf8Encoder: import("@aws-sdk/types").Encoder;
36
36
  disableHostPrefix: boolean;
37
- logger: import("@aws-sdk/types").Logger;
38
37
  serviceId: string;
38
+ logger: import("@aws-sdk/types").Logger;
39
39
  endpoint?:
40
40
  | ((
41
41
  | string
@@ -34,8 +34,8 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
34
34
  utf8Decoder: import("@aws-sdk/types").Decoder;
35
35
  utf8Encoder: import("@aws-sdk/types").Encoder;
36
36
  disableHostPrefix: boolean;
37
- logger: import("@aws-sdk/types").Logger;
38
37
  serviceId: string;
38
+ logger: import("@aws-sdk/types").Logger;
39
39
  endpoint?:
40
40
  | ((
41
41
  | string
@@ -19,12 +19,9 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
19
19
  utf8Decoder: import("@aws-sdk/types").Decoder;
20
20
  utf8Encoder: import("@aws-sdk/types").Encoder;
21
21
  disableHostPrefix: boolean;
22
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
23
- retryMode: string | import("@aws-sdk/types").Provider<string>;
24
- logger: import("@aws-sdk/types").Logger;
22
+ serviceId: string;
25
23
  useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
26
24
  useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
27
- serviceId: string;
28
25
  region: string | import("@aws-sdk/types").Provider<any>;
29
26
  credentialDefaultProvider: (
30
27
  input: any
@@ -32,6 +29,9 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
32
29
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<
33
30
  import("@aws-sdk/types").UserAgent
34
31
  >;
32
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
33
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
34
+ logger: import("@aws-sdk/types").Logger;
35
35
  defaultsMode:
36
36
  | import("@aws-sdk/smithy-client").DefaultsMode
37
37
  | import("@aws-sdk/types").Provider<