aws-sdk-snowball 1.52.0 → 1.54.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 314f5d60486b7777ddc7f7c4f3ad92711f9b056c679fcf4f87e2dd5099205a52
4
- data.tar.gz: 2d6c0468c1be8321c6be1a4579369721ec2870f316d35085bf3d927af029ef45
3
+ metadata.gz: b7c7b89bb593e2344c5222ac05bc9926e0fff305d3d98b9d41dbb5c2dbced580
4
+ data.tar.gz: fc8adf4557ef0ebf2d00c1e6eb17065a1efefc8f071ec46809487c2c023a7c3f
5
5
  SHA512:
6
- metadata.gz: b450beb0103821493a3e41427eb28825fc5ddb2e22bcbc9aff7d2d595d07346610f34f7dabb2bc6bfa74d03a7dd77220d1ab5219e18d418c7ba24ab6ecb8aeb7
7
- data.tar.gz: 1cf56aff7b06adca4b65cdff1fed77b62d11ab624182574132603e9da72df7c5650cf21ab5567079fa2472da9e5e5ea3639d034dedb1e42d987ddcd3df875de4
6
+ metadata.gz: ea690faf312debaff1a9dfc6c47ea9a8a0d76620dd3901211383ca9a88bb57fe6497313263a00a42cc6386ff73721d2905d57d04a2bf1af39bdf0ceda0f4b507
7
+ data.tar.gz: f81b401158479e412c13b5105945734808123e0fe418d804a41e6e57cd4261627196c61cbbef9a1d8df754f4f03bea11d5aff14cf50c231769e03bc2c2bcc57c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.0 (2023-04-20)
5
+ ------------------
6
+
7
+ * Feature - Adds support for Amazon S3 compatible storage. AWS Snow Family customers can now use Amazon S3 compatible storage on Snowball Edge devices. Also adds support for V3_5S. This is a refreshed AWS Snowball Edge Storage Optimized device type with 210TB SSD (customer usable).
8
+
9
+ 1.53.0 (2023-02-13)
10
+ ------------------
11
+
12
+ * Feature - Adds support for EKS Anywhere on Snowball. AWS Snow Family customers can now install EKS Anywhere service on Snowball Edge Compute Optimized devices.
13
+
4
14
  1.52.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.54.0
@@ -534,7 +534,7 @@ module Aws::Snowball
534
534
  # "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html"
535
535
  # (Snow Family Devices and Capacity) in the *Snowcone User Guide*.
536
536
  #
537
- # @option params [required, Types::JobResource] :resources
537
+ # @option params [Types::JobResource] :resources
538
538
  # The resources associated with the cluster job. These resources include
539
539
  # Amazon S3 buckets and optional Lambda functions written in the Python
540
540
  # language.
@@ -561,7 +561,7 @@ module Aws::Snowball
561
561
  #
562
562
  # [1]: https://docs.aws.amazon.com/kms/latest/APIReference/API_CreateKey.html
563
563
  #
564
- # @option params [required, String] :role_arn
564
+ # @option params [String] :role_arn
565
565
  # The `RoleARN` that you want to associate with this cluster. `RoleArn`
566
566
  # values are created by using the [CreateRole][1] API action in Identity
567
567
  # and Access Management (IAM).
@@ -634,9 +634,36 @@ module Aws::Snowball
634
634
  # available when the device arrives at your location. Otherwise, you
635
635
  # need to use the Snowball Client to manage the device.
636
636
  #
637
+ # @option params [Integer] :initial_cluster_size
638
+ # If provided, each job will be automatically created and associated
639
+ # with the new cluster. If not provided, will be treated as 0.
640
+ #
641
+ # @option params [Boolean] :force_create_jobs
642
+ # Force to create cluster when user attempts to overprovision or
643
+ # underprovision a cluster. A cluster is overprovisioned or
644
+ # underprovisioned if the initial size of the cluster is more
645
+ # (overprovisioned) or less (underprovisioned) than what needed to meet
646
+ # capacity requirement specified with `OnDeviceServiceConfiguration`.
647
+ #
648
+ # @option params [Array<String>] :long_term_pricing_ids
649
+ # Lists long-term pricing id that will be used to associate with jobs
650
+ # automatically created for the new cluster.
651
+ #
652
+ # @option params [String] :snowball_capacity_preference
653
+ # If your job is being created in one of the US regions, you have the
654
+ # option of specifying what size Snow device you'd like for this job.
655
+ # In all other regions, Snowballs come with 80 TB in storage capacity.
656
+ #
657
+ # For more information, see
658
+ # "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html"
659
+ # (Snow Family Devices and Capacity) in the *Snowcone User Guide* or
660
+ # "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html"
661
+ # (Snow Family Devices and Capacity) in the *Snowcone User Guide*.
662
+ #
637
663
  # @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
638
664
  #
639
665
  # * {Types::CreateClusterResult#cluster_id #cluster_id} => String
666
+ # * {Types::CreateClusterResult#job_list_entries #job_list_entries} => Array&lt;Types::JobListEntry&gt;
640
667
  #
641
668
  #
642
669
  # @example Example: To create a cluster
@@ -677,7 +704,7 @@ module Aws::Snowball
677
704
  #
678
705
  # resp = client.create_cluster({
679
706
  # job_type: "IMPORT", # required, accepts IMPORT, EXPORT, LOCAL_USE
680
- # resources: { # required
707
+ # resources: {
681
708
  # s3_resources: [
682
709
  # {
683
710
  # bucket_arn: "ResourceARN",
@@ -719,12 +746,22 @@ module Aws::Snowball
719
746
  # storage_limit: 1,
720
747
  # storage_unit: "TB", # accepts TB
721
748
  # },
749
+ # eks_on_device_service: {
750
+ # kubernetes_version: "String",
751
+ # eks_anywhere_version: "String",
752
+ # },
753
+ # s3_on_device_service: {
754
+ # storage_limit: 1.0,
755
+ # storage_unit: "TB", # accepts TB
756
+ # service_size: 1,
757
+ # fault_tolerance: 1,
758
+ # },
722
759
  # },
723
760
  # description: "String",
724
761
  # address_id: "AddressId", # required
725
762
  # kms_key_arn: "KmsKeyARN",
726
- # role_arn: "RoleARN", # required
727
- # snowball_type: "STANDARD", # required, accepts STANDARD, EDGE, EDGE_C, EDGE_CG, EDGE_S, SNC1_HDD, SNC1_SSD, V3_5C
763
+ # role_arn: "RoleARN",
764
+ # snowball_type: "STANDARD", # required, accepts STANDARD, EDGE, EDGE_C, EDGE_CG, EDGE_S, SNC1_HDD, SNC1_SSD, V3_5C, V3_5S
728
765
  # shipping_option: "SECOND_DAY", # required, accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
729
766
  # notification: {
730
767
  # sns_topic_arn: "SnsTopicARN",
@@ -738,11 +775,23 @@ module Aws::Snowball
738
775
  # },
739
776
  # },
740
777
  # remote_management: "INSTALLED_ONLY", # accepts INSTALLED_ONLY, INSTALLED_AUTOSTART
778
+ # initial_cluster_size: 1,
779
+ # force_create_jobs: false,
780
+ # long_term_pricing_ids: ["LongTermPricingId"],
781
+ # snowball_capacity_preference: "T50", # accepts T50, T80, T100, T42, T98, T8, T14, T32, NoPreference, T240
741
782
  # })
742
783
  #
743
784
  # @example Response structure
744
785
  #
745
786
  # resp.cluster_id #=> String
787
+ # resp.job_list_entries #=> Array
788
+ # resp.job_list_entries[0].job_id #=> String
789
+ # resp.job_list_entries[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
790
+ # resp.job_list_entries[0].is_master #=> Boolean
791
+ # resp.job_list_entries[0].job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
792
+ # resp.job_list_entries[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S"
793
+ # resp.job_list_entries[0].creation_date #=> Time
794
+ # resp.job_list_entries[0].description #=> String
746
795
  #
747
796
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/CreateCluster AWS API Documentation
748
797
  #
@@ -775,7 +824,7 @@ module Aws::Snowball
775
824
  #
776
825
  # **Snow Family devices and their capacities.**
777
826
  #
778
- # * Snow Family device type: **SNC1\_SSD**
827
+ # * Device type: **SNC1\_SSD**
779
828
  #
780
829
  # * Capacity: T14
781
830
  #
@@ -783,7 +832,7 @@ module Aws::Snowball
783
832
  #
784
833
  #
785
834
  #
786
- # * Snow Family device type: **SNC1\_HDD**
835
+ # * Device type: **SNC1\_HDD**
787
836
  #
788
837
  # * Capacity: T8
789
838
  #
@@ -824,14 +873,6 @@ module Aws::Snowball
824
873
  #
825
874
  #
826
875
  #
827
- # * Device type: **V3\_5C**
828
- #
829
- # * Capacity: T32
830
- #
831
- # * Description: Snowball Edge Compute Optimized without GPU
832
- #
833
- #
834
- #
835
876
  # * Device type: **STANDARD**
836
877
  #
837
878
  # * Capacity: T50
@@ -858,6 +899,22 @@ module Aws::Snowball
858
899
  #
859
900
  #
860
901
  #
902
+ # * Device type: **V3\_5C**
903
+ #
904
+ # * Capacity: T32
905
+ #
906
+ # * Description: Snowball Edge Compute Optimized without GPU
907
+ #
908
+ #
909
+ #
910
+ # * Device type: **V3\_5S**
911
+ #
912
+ # * Capacity: T240
913
+ #
914
+ # * Description: Snowball Edge Storage Optimized 210TB
915
+ #
916
+ #
917
+ #
861
918
  # [1]: https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services/?p=ngi&amp;loc=4
862
919
  #
863
920
  # @option params [String] :job_type
@@ -1082,12 +1139,22 @@ module Aws::Snowball
1082
1139
  # storage_limit: 1,
1083
1140
  # storage_unit: "TB", # accepts TB
1084
1141
  # },
1142
+ # eks_on_device_service: {
1143
+ # kubernetes_version: "String",
1144
+ # eks_anywhere_version: "String",
1145
+ # },
1146
+ # s3_on_device_service: {
1147
+ # storage_limit: 1.0,
1148
+ # storage_unit: "TB", # accepts TB
1149
+ # service_size: 1,
1150
+ # fault_tolerance: 1,
1151
+ # },
1085
1152
  # },
1086
1153
  # description: "String",
1087
1154
  # address_id: "AddressId",
1088
1155
  # kms_key_arn: "KmsKeyARN",
1089
1156
  # role_arn: "RoleARN",
1090
- # snowball_capacity_preference: "T50", # accepts T50, T80, T100, T42, T98, T8, T14, NoPreference, T32
1157
+ # snowball_capacity_preference: "T50", # accepts T50, T80, T100, T42, T98, T8, T14, T32, NoPreference, T240
1091
1158
  # shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
1092
1159
  # notification: {
1093
1160
  # sns_topic_arn: "SnsTopicARN",
@@ -1095,7 +1162,7 @@ module Aws::Snowball
1095
1162
  # notify_all: false,
1096
1163
  # },
1097
1164
  # cluster_id: "ClusterId",
1098
- # snowball_type: "STANDARD", # accepts STANDARD, EDGE, EDGE_C, EDGE_CG, EDGE_S, SNC1_HDD, SNC1_SSD, V3_5C
1165
+ # snowball_type: "STANDARD", # accepts STANDARD, EDGE, EDGE_C, EDGE_CG, EDGE_S, SNC1_HDD, SNC1_SSD, V3_5C, V3_5S
1099
1166
  # forwarding_address_id: "AddressId",
1100
1167
  # tax_documents: {
1101
1168
  # ind: {
@@ -1136,8 +1203,6 @@ module Aws::Snowball
1136
1203
  # 1-year or 3-year long-term pricing.
1137
1204
  #
1138
1205
  # @option params [Boolean] :is_long_term_pricing_auto_renew
1139
- # snowballty
1140
- #
1141
1206
  # Specifies whether the current long-term pricing type for the device
1142
1207
  # should be renewed.
1143
1208
  #
@@ -1151,9 +1216,9 @@ module Aws::Snowball
1151
1216
  # @example Request syntax with placeholder values
1152
1217
  #
1153
1218
  # resp = client.create_long_term_pricing({
1154
- # long_term_pricing_type: "OneYear", # required, accepts OneYear, ThreeYear
1219
+ # long_term_pricing_type: "OneYear", # required, accepts OneYear, ThreeYear, OneMonth
1155
1220
  # is_long_term_pricing_auto_renew: false,
1156
- # snowball_type: "STANDARD", # accepts STANDARD, EDGE, EDGE_C, EDGE_CG, EDGE_S, SNC1_HDD, SNC1_SSD, V3_5C
1221
+ # snowball_type: "STANDARD", # accepts STANDARD, EDGE, EDGE_C, EDGE_CG, EDGE_S, SNC1_HDD, SNC1_SSD, V3_5C, V3_5S
1157
1222
  # })
1158
1223
  #
1159
1224
  # @example Response structure
@@ -1416,7 +1481,7 @@ module Aws::Snowball
1416
1481
  # resp.cluster_metadata.role_arn #=> String
1417
1482
  # resp.cluster_metadata.cluster_state #=> String, one of "AwaitingQuorum", "Pending", "InUse", "Complete", "Cancelled"
1418
1483
  # resp.cluster_metadata.job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
1419
- # resp.cluster_metadata.snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C"
1484
+ # resp.cluster_metadata.snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S"
1420
1485
  # resp.cluster_metadata.creation_date #=> Time
1421
1486
  # resp.cluster_metadata.resources.s3_resources #=> Array
1422
1487
  # resp.cluster_metadata.resources.s3_resources[0].bucket_arn #=> String
@@ -1444,6 +1509,12 @@ module Aws::Snowball
1444
1509
  # resp.cluster_metadata.on_device_service_configuration.nfs_on_device_service.storage_unit #=> String, one of "TB"
1445
1510
  # resp.cluster_metadata.on_device_service_configuration.tgw_on_device_service.storage_limit #=> Integer
1446
1511
  # resp.cluster_metadata.on_device_service_configuration.tgw_on_device_service.storage_unit #=> String, one of "TB"
1512
+ # resp.cluster_metadata.on_device_service_configuration.eks_on_device_service.kubernetes_version #=> String
1513
+ # resp.cluster_metadata.on_device_service_configuration.eks_on_device_service.eks_anywhere_version #=> String
1514
+ # resp.cluster_metadata.on_device_service_configuration.s3_on_device_service.storage_limit #=> Float
1515
+ # resp.cluster_metadata.on_device_service_configuration.s3_on_device_service.storage_unit #=> String, one of "TB"
1516
+ # resp.cluster_metadata.on_device_service_configuration.s3_on_device_service.service_size #=> Integer
1517
+ # resp.cluster_metadata.on_device_service_configuration.s3_on_device_service.fault_tolerance #=> Integer
1447
1518
  #
1448
1519
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DescribeCluster AWS API Documentation
1449
1520
  #
@@ -1519,7 +1590,7 @@ module Aws::Snowball
1519
1590
  # resp.job_metadata.job_id #=> String
1520
1591
  # resp.job_metadata.job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
1521
1592
  # resp.job_metadata.job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
1522
- # resp.job_metadata.snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C"
1593
+ # resp.job_metadata.snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S"
1523
1594
  # resp.job_metadata.creation_date #=> Time
1524
1595
  # resp.job_metadata.resources.s3_resources #=> Array
1525
1596
  # resp.job_metadata.resources.s3_resources[0].bucket_arn #=> String
@@ -1544,7 +1615,7 @@ module Aws::Snowball
1544
1615
  # resp.job_metadata.shipping_details.inbound_shipment.tracking_number #=> String
1545
1616
  # resp.job_metadata.shipping_details.outbound_shipment.status #=> String
1546
1617
  # resp.job_metadata.shipping_details.outbound_shipment.tracking_number #=> String
1547
- # resp.job_metadata.snowball_capacity_preference #=> String, one of "T50", "T80", "T100", "T42", "T98", "T8", "T14", "NoPreference", "T32"
1618
+ # resp.job_metadata.snowball_capacity_preference #=> String, one of "T50", "T80", "T100", "T42", "T98", "T8", "T14", "T32", "NoPreference", "T240"
1548
1619
  # resp.job_metadata.notification.sns_topic_arn #=> String
1549
1620
  # resp.job_metadata.notification.job_states_to_notify #=> Array
1550
1621
  # resp.job_metadata.notification.job_states_to_notify[0] #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
@@ -1566,11 +1637,17 @@ module Aws::Snowball
1566
1637
  # resp.job_metadata.on_device_service_configuration.nfs_on_device_service.storage_unit #=> String, one of "TB"
1567
1638
  # resp.job_metadata.on_device_service_configuration.tgw_on_device_service.storage_limit #=> Integer
1568
1639
  # resp.job_metadata.on_device_service_configuration.tgw_on_device_service.storage_unit #=> String, one of "TB"
1640
+ # resp.job_metadata.on_device_service_configuration.eks_on_device_service.kubernetes_version #=> String
1641
+ # resp.job_metadata.on_device_service_configuration.eks_on_device_service.eks_anywhere_version #=> String
1642
+ # resp.job_metadata.on_device_service_configuration.s3_on_device_service.storage_limit #=> Float
1643
+ # resp.job_metadata.on_device_service_configuration.s3_on_device_service.storage_unit #=> String, one of "TB"
1644
+ # resp.job_metadata.on_device_service_configuration.s3_on_device_service.service_size #=> Integer
1645
+ # resp.job_metadata.on_device_service_configuration.s3_on_device_service.fault_tolerance #=> Integer
1569
1646
  # resp.sub_job_metadata #=> Array
1570
1647
  # resp.sub_job_metadata[0].job_id #=> String
1571
1648
  # resp.sub_job_metadata[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
1572
1649
  # resp.sub_job_metadata[0].job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
1573
- # resp.sub_job_metadata[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C"
1650
+ # resp.sub_job_metadata[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S"
1574
1651
  # resp.sub_job_metadata[0].creation_date #=> Time
1575
1652
  # resp.sub_job_metadata[0].resources.s3_resources #=> Array
1576
1653
  # resp.sub_job_metadata[0].resources.s3_resources[0].bucket_arn #=> String
@@ -1595,7 +1672,7 @@ module Aws::Snowball
1595
1672
  # resp.sub_job_metadata[0].shipping_details.inbound_shipment.tracking_number #=> String
1596
1673
  # resp.sub_job_metadata[0].shipping_details.outbound_shipment.status #=> String
1597
1674
  # resp.sub_job_metadata[0].shipping_details.outbound_shipment.tracking_number #=> String
1598
- # resp.sub_job_metadata[0].snowball_capacity_preference #=> String, one of "T50", "T80", "T100", "T42", "T98", "T8", "T14", "NoPreference", "T32"
1675
+ # resp.sub_job_metadata[0].snowball_capacity_preference #=> String, one of "T50", "T80", "T100", "T42", "T98", "T8", "T14", "T32", "NoPreference", "T240"
1599
1676
  # resp.sub_job_metadata[0].notification.sns_topic_arn #=> String
1600
1677
  # resp.sub_job_metadata[0].notification.job_states_to_notify #=> Array
1601
1678
  # resp.sub_job_metadata[0].notification.job_states_to_notify[0] #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
@@ -1617,6 +1694,12 @@ module Aws::Snowball
1617
1694
  # resp.sub_job_metadata[0].on_device_service_configuration.nfs_on_device_service.storage_unit #=> String, one of "TB"
1618
1695
  # resp.sub_job_metadata[0].on_device_service_configuration.tgw_on_device_service.storage_limit #=> Integer
1619
1696
  # resp.sub_job_metadata[0].on_device_service_configuration.tgw_on_device_service.storage_unit #=> String, one of "TB"
1697
+ # resp.sub_job_metadata[0].on_device_service_configuration.eks_on_device_service.kubernetes_version #=> String
1698
+ # resp.sub_job_metadata[0].on_device_service_configuration.eks_on_device_service.eks_anywhere_version #=> String
1699
+ # resp.sub_job_metadata[0].on_device_service_configuration.s3_on_device_service.storage_limit #=> Float
1700
+ # resp.sub_job_metadata[0].on_device_service_configuration.s3_on_device_service.storage_unit #=> String, one of "TB"
1701
+ # resp.sub_job_metadata[0].on_device_service_configuration.s3_on_device_service.service_size #=> Integer
1702
+ # resp.sub_job_metadata[0].on_device_service_configuration.s3_on_device_service.fault_tolerance #=> Integer
1620
1703
  #
1621
1704
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DescribeJob AWS API Documentation
1622
1705
  #
@@ -1970,7 +2053,7 @@ module Aws::Snowball
1970
2053
  # resp.job_list_entries[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
1971
2054
  # resp.job_list_entries[0].is_master #=> Boolean
1972
2055
  # resp.job_list_entries[0].job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
1973
- # resp.job_list_entries[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C"
2056
+ # resp.job_list_entries[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S"
1974
2057
  # resp.job_list_entries[0].creation_date #=> Time
1975
2058
  # resp.job_list_entries[0].description #=> String
1976
2059
  # resp.next_token #=> String
@@ -2052,9 +2135,11 @@ module Aws::Snowball
2052
2135
  # This action returns a list of the different Amazon EC2 Amazon Machine
2053
2136
  # Images (AMIs) that are owned by your Amazon Web Services accountthat
2054
2137
  # would be supported for use on a Snow device. Currently, supported AMIs
2055
- # are based on the CentOS 7 (x86\_64) - with Updates HVM, Ubuntu Server
2056
- # 14.04 LTS (HVM), and Ubuntu 16.04 LTS - Xenial (HVM) images, available
2057
- # on the Amazon Web Services Marketplace.
2138
+ # are based on the Amazon Linux-2, Ubuntu 20.04 LTS - Focal, or Ubuntu
2139
+ # 22.04 LTS - Jammy images, available on the Amazon Web Services
2140
+ # Marketplace. Ubuntu 16.04 LTS - Xenial (HVM) images are no longer
2141
+ # supported in the Market, but still supported for use on devices
2142
+ # through Amazon EC2 VM Import/Export and running locally in AMIs.
2058
2143
  #
2059
2144
  # @option params [Integer] :max_results
2060
2145
  # The maximum number of results for the list of compatible images.
@@ -2156,7 +2241,7 @@ module Aws::Snowball
2156
2241
  # resp.job_list_entries[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
2157
2242
  # resp.job_list_entries[0].is_master #=> Boolean
2158
2243
  # resp.job_list_entries[0].job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
2159
- # resp.job_list_entries[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C"
2244
+ # resp.job_list_entries[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S"
2160
2245
  # resp.job_list_entries[0].creation_date #=> Time
2161
2246
  # resp.job_list_entries[0].description #=> String
2162
2247
  # resp.next_token #=> String
@@ -2199,12 +2284,12 @@ module Aws::Snowball
2199
2284
  # resp.long_term_pricing_entries[0].long_term_pricing_id #=> String
2200
2285
  # resp.long_term_pricing_entries[0].long_term_pricing_end_date #=> Time
2201
2286
  # resp.long_term_pricing_entries[0].long_term_pricing_start_date #=> Time
2202
- # resp.long_term_pricing_entries[0].long_term_pricing_type #=> String, one of "OneYear", "ThreeYear"
2287
+ # resp.long_term_pricing_entries[0].long_term_pricing_type #=> String, one of "OneYear", "ThreeYear", "OneMonth"
2203
2288
  # resp.long_term_pricing_entries[0].current_active_job #=> String
2204
2289
  # resp.long_term_pricing_entries[0].replacement_job #=> String
2205
2290
  # resp.long_term_pricing_entries[0].is_long_term_pricing_auto_renew #=> Boolean
2206
2291
  # resp.long_term_pricing_entries[0].long_term_pricing_status #=> String
2207
- # resp.long_term_pricing_entries[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C"
2292
+ # resp.long_term_pricing_entries[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S"
2208
2293
  # resp.long_term_pricing_entries[0].job_ids #=> Array
2209
2294
  # resp.long_term_pricing_entries[0].job_ids[0] #=> String
2210
2295
  # resp.next_token #=> String
@@ -2218,6 +2303,67 @@ module Aws::Snowball
2218
2303
  req.send_request(options)
2219
2304
  end
2220
2305
 
2306
+ # Lists all supported versions for Snow on-device services. Returns an
2307
+ # array of `ServiceVersion` object containing the supported versions for
2308
+ # a particular service.
2309
+ #
2310
+ # @option params [required, String] :service_name
2311
+ # The name of the service for which you're requesting supported
2312
+ # versions.
2313
+ #
2314
+ # @option params [Array<Types::DependentService>] :dependent_services
2315
+ # A list of names and versions of dependant services of the requested
2316
+ # service.
2317
+ #
2318
+ # @option params [Integer] :max_results
2319
+ # The maximum number of `ListServiceVersions` objects to return.
2320
+ #
2321
+ # @option params [String] :next_token
2322
+ # Because HTTP requests are stateless, this is the starting point for
2323
+ # the next list of returned `ListServiceVersionsRequest` versions.
2324
+ #
2325
+ # @return [Types::ListServiceVersionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2326
+ #
2327
+ # * {Types::ListServiceVersionsResult#service_versions #service_versions} => Array&lt;Types::ServiceVersion&gt;
2328
+ # * {Types::ListServiceVersionsResult#service_name #service_name} => String
2329
+ # * {Types::ListServiceVersionsResult#dependent_services #dependent_services} => Array&lt;Types::DependentService&gt;
2330
+ # * {Types::ListServiceVersionsResult#next_token #next_token} => String
2331
+ #
2332
+ # @example Request syntax with placeholder values
2333
+ #
2334
+ # resp = client.list_service_versions({
2335
+ # service_name: "KUBERNETES", # required, accepts KUBERNETES, EKS_ANYWHERE
2336
+ # dependent_services: [
2337
+ # {
2338
+ # service_name: "KUBERNETES", # accepts KUBERNETES, EKS_ANYWHERE
2339
+ # service_version: {
2340
+ # version: "String",
2341
+ # },
2342
+ # },
2343
+ # ],
2344
+ # max_results: 1,
2345
+ # next_token: "String",
2346
+ # })
2347
+ #
2348
+ # @example Response structure
2349
+ #
2350
+ # resp.service_versions #=> Array
2351
+ # resp.service_versions[0].version #=> String
2352
+ # resp.service_name #=> String, one of "KUBERNETES", "EKS_ANYWHERE"
2353
+ # resp.dependent_services #=> Array
2354
+ # resp.dependent_services[0].service_name #=> String, one of "KUBERNETES", "EKS_ANYWHERE"
2355
+ # resp.dependent_services[0].service_version.version #=> String
2356
+ # resp.next_token #=> String
2357
+ #
2358
+ # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/ListServiceVersions AWS API Documentation
2359
+ #
2360
+ # @overload list_service_versions(params = {})
2361
+ # @param [Hash] params ({})
2362
+ def list_service_versions(params = {}, options = {})
2363
+ req = build_request(:list_service_versions, params)
2364
+ req.send_request(options)
2365
+ end
2366
+
2221
2367
  # While a cluster's `ClusterState` value is in the `AwaitingQuorum`
2222
2368
  # state, you can update some of the information associated with a
2223
2369
  # cluster. Once the cluster changes to a different job state, usually 60
@@ -2326,6 +2472,16 @@ module Aws::Snowball
2326
2472
  # storage_limit: 1,
2327
2473
  # storage_unit: "TB", # accepts TB
2328
2474
  # },
2475
+ # eks_on_device_service: {
2476
+ # kubernetes_version: "String",
2477
+ # eks_anywhere_version: "String",
2478
+ # },
2479
+ # s3_on_device_service: {
2480
+ # storage_limit: 1.0,
2481
+ # storage_unit: "TB", # accepts TB
2482
+ # service_size: 1,
2483
+ # fault_tolerance: 1,
2484
+ # },
2329
2485
  # },
2330
2486
  # address_id: "AddressId",
2331
2487
  # shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
@@ -2468,11 +2624,21 @@ module Aws::Snowball
2468
2624
  # storage_limit: 1,
2469
2625
  # storage_unit: "TB", # accepts TB
2470
2626
  # },
2627
+ # eks_on_device_service: {
2628
+ # kubernetes_version: "String",
2629
+ # eks_anywhere_version: "String",
2630
+ # },
2631
+ # s3_on_device_service: {
2632
+ # storage_limit: 1.0,
2633
+ # storage_unit: "TB", # accepts TB
2634
+ # service_size: 1,
2635
+ # fault_tolerance: 1,
2636
+ # },
2471
2637
  # },
2472
2638
  # address_id: "AddressId",
2473
2639
  # shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
2474
2640
  # description: "String",
2475
- # snowball_capacity_preference: "T50", # accepts T50, T80, T100, T42, T98, T8, T14, NoPreference, T32
2641
+ # snowball_capacity_preference: "T50", # accepts T50, T80, T100, T42, T98, T8, T14, T32, NoPreference, T240
2476
2642
  # forwarding_address_id: "AddressId",
2477
2643
  # })
2478
2644
  #
@@ -2563,7 +2729,7 @@ module Aws::Snowball
2563
2729
  params: params,
2564
2730
  config: config)
2565
2731
  context[:gem_name] = 'aws-sdk-snowball'
2566
- context[:gem_version] = '1.52.0'
2732
+ context[:gem_version] = '1.54.0'
2567
2733
  Seahorse::Client::Request.new(handlers, context)
2568
2734
  end
2569
2735
 
@@ -42,6 +42,8 @@ module Aws::Snowball
42
42
  CreateReturnShippingLabelRequest = Shapes::StructureShape.new(name: 'CreateReturnShippingLabelRequest')
43
43
  CreateReturnShippingLabelResult = Shapes::StructureShape.new(name: 'CreateReturnShippingLabelResult')
44
44
  DataTransfer = Shapes::StructureShape.new(name: 'DataTransfer')
45
+ DependentService = Shapes::StructureShape.new(name: 'DependentService')
46
+ DependentServiceList = Shapes::ListShape.new(name: 'DependentServiceList')
45
47
  DescribeAddressRequest = Shapes::StructureShape.new(name: 'DescribeAddressRequest')
46
48
  DescribeAddressResult = Shapes::StructureShape.new(name: 'DescribeAddressResult')
47
49
  DescribeAddressesRequest = Shapes::StructureShape.new(name: 'DescribeAddressesRequest')
@@ -54,6 +56,7 @@ module Aws::Snowball
54
56
  DescribeReturnShippingLabelResult = Shapes::StructureShape.new(name: 'DescribeReturnShippingLabelResult')
55
57
  DeviceConfiguration = Shapes::StructureShape.new(name: 'DeviceConfiguration')
56
58
  DeviceServiceName = Shapes::StringShape.new(name: 'DeviceServiceName')
59
+ EKSOnDeviceServiceConfiguration = Shapes::StructureShape.new(name: 'EKSOnDeviceServiceConfiguration')
57
60
  Ec2AmiResource = Shapes::StructureShape.new(name: 'Ec2AmiResource')
58
61
  Ec2AmiResourceList = Shapes::ListShape.new(name: 'Ec2AmiResourceList')
59
62
  Ec2RequestFailedException = Shapes::StructureShape.new(name: 'Ec2RequestFailedException')
@@ -69,6 +72,7 @@ module Aws::Snowball
69
72
  GetSoftwareUpdatesRequest = Shapes::StructureShape.new(name: 'GetSoftwareUpdatesRequest')
70
73
  GetSoftwareUpdatesResult = Shapes::StructureShape.new(name: 'GetSoftwareUpdatesResult')
71
74
  INDTaxDocuments = Shapes::StructureShape.new(name: 'INDTaxDocuments')
75
+ InitialClusterSize = Shapes::IntegerShape.new(name: 'InitialClusterSize')
72
76
  Integer = Shapes::IntegerShape.new(name: 'Integer')
73
77
  InvalidAddressException = Shapes::StructureShape.new(name: 'InvalidAddressException')
74
78
  InvalidInputCombinationException = Shapes::StructureShape.new(name: 'InvalidInputCombinationException')
@@ -102,21 +106,31 @@ module Aws::Snowball
102
106
  ListLimit = Shapes::IntegerShape.new(name: 'ListLimit')
103
107
  ListLongTermPricingRequest = Shapes::StructureShape.new(name: 'ListLongTermPricingRequest')
104
108
  ListLongTermPricingResult = Shapes::StructureShape.new(name: 'ListLongTermPricingResult')
109
+ ListServiceVersionsRequest = Shapes::StructureShape.new(name: 'ListServiceVersionsRequest')
110
+ ListServiceVersionsResult = Shapes::StructureShape.new(name: 'ListServiceVersionsResult')
105
111
  Long = Shapes::IntegerShape.new(name: 'Long')
106
112
  LongTermPricingAssociatedJobIdList = Shapes::ListShape.new(name: 'LongTermPricingAssociatedJobIdList')
107
113
  LongTermPricingEntryList = Shapes::ListShape.new(name: 'LongTermPricingEntryList')
108
114
  LongTermPricingId = Shapes::StringShape.new(name: 'LongTermPricingId')
115
+ LongTermPricingIdList = Shapes::ListShape.new(name: 'LongTermPricingIdList')
109
116
  LongTermPricingListEntry = Shapes::StructureShape.new(name: 'LongTermPricingListEntry')
110
117
  LongTermPricingType = Shapes::StringShape.new(name: 'LongTermPricingType')
111
118
  NFSOnDeviceServiceConfiguration = Shapes::StructureShape.new(name: 'NFSOnDeviceServiceConfiguration')
119
+ NodeFaultTolerance = Shapes::IntegerShape.new(name: 'NodeFaultTolerance')
112
120
  Notification = Shapes::StructureShape.new(name: 'Notification')
113
121
  OnDeviceServiceConfiguration = Shapes::StructureShape.new(name: 'OnDeviceServiceConfiguration')
114
122
  RemoteManagement = Shapes::StringShape.new(name: 'RemoteManagement')
115
123
  ResourceARN = Shapes::StringShape.new(name: 'ResourceARN')
116
124
  ReturnShippingLabelAlreadyExistsException = Shapes::StructureShape.new(name: 'ReturnShippingLabelAlreadyExistsException')
117
125
  RoleARN = Shapes::StringShape.new(name: 'RoleARN')
126
+ S3OnDeviceServiceConfiguration = Shapes::StructureShape.new(name: 'S3OnDeviceServiceConfiguration')
118
127
  S3Resource = Shapes::StructureShape.new(name: 'S3Resource')
119
128
  S3ResourceList = Shapes::ListShape.new(name: 'S3ResourceList')
129
+ S3StorageLimit = Shapes::FloatShape.new(name: 'S3StorageLimit')
130
+ ServiceName = Shapes::StringShape.new(name: 'ServiceName')
131
+ ServiceSize = Shapes::IntegerShape.new(name: 'ServiceSize')
132
+ ServiceVersion = Shapes::StructureShape.new(name: 'ServiceVersion')
133
+ ServiceVersionList = Shapes::ListShape.new(name: 'ServiceVersionList')
120
134
  Shipment = Shapes::StructureShape.new(name: 'Shipment')
121
135
  ShipmentState = Shapes::StringShape.new(name: 'ShipmentState')
122
136
  ShippingDetails = Shapes::StructureShape.new(name: 'ShippingDetails')
@@ -219,21 +233,26 @@ module Aws::Snowball
219
233
  CreateAddressResult.struct_class = Types::CreateAddressResult
220
234
 
221
235
  CreateClusterRequest.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, required: true, location_name: "JobType"))
222
- CreateClusterRequest.add_member(:resources, Shapes::ShapeRef.new(shape: JobResource, required: true, location_name: "Resources"))
236
+ CreateClusterRequest.add_member(:resources, Shapes::ShapeRef.new(shape: JobResource, location_name: "Resources"))
223
237
  CreateClusterRequest.add_member(:on_device_service_configuration, Shapes::ShapeRef.new(shape: OnDeviceServiceConfiguration, location_name: "OnDeviceServiceConfiguration"))
224
238
  CreateClusterRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
225
239
  CreateClusterRequest.add_member(:address_id, Shapes::ShapeRef.new(shape: AddressId, required: true, location_name: "AddressId"))
226
240
  CreateClusterRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyARN, location_name: "KmsKeyARN"))
227
- CreateClusterRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
241
+ CreateClusterRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
228
242
  CreateClusterRequest.add_member(:snowball_type, Shapes::ShapeRef.new(shape: SnowballType, required: true, location_name: "SnowballType"))
229
243
  CreateClusterRequest.add_member(:shipping_option, Shapes::ShapeRef.new(shape: ShippingOption, required: true, location_name: "ShippingOption"))
230
244
  CreateClusterRequest.add_member(:notification, Shapes::ShapeRef.new(shape: Notification, location_name: "Notification"))
231
245
  CreateClusterRequest.add_member(:forwarding_address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "ForwardingAddressId"))
232
246
  CreateClusterRequest.add_member(:tax_documents, Shapes::ShapeRef.new(shape: TaxDocuments, location_name: "TaxDocuments"))
233
247
  CreateClusterRequest.add_member(:remote_management, Shapes::ShapeRef.new(shape: RemoteManagement, location_name: "RemoteManagement"))
248
+ CreateClusterRequest.add_member(:initial_cluster_size, Shapes::ShapeRef.new(shape: InitialClusterSize, location_name: "InitialClusterSize"))
249
+ CreateClusterRequest.add_member(:force_create_jobs, Shapes::ShapeRef.new(shape: Boolean, location_name: "ForceCreateJobs"))
250
+ CreateClusterRequest.add_member(:long_term_pricing_ids, Shapes::ShapeRef.new(shape: LongTermPricingIdList, location_name: "LongTermPricingIds"))
251
+ CreateClusterRequest.add_member(:snowball_capacity_preference, Shapes::ShapeRef.new(shape: SnowballCapacity, location_name: "SnowballCapacityPreference"))
234
252
  CreateClusterRequest.struct_class = Types::CreateClusterRequest
235
253
 
236
254
  CreateClusterResult.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, location_name: "ClusterId"))
255
+ CreateClusterResult.add_member(:job_list_entries, Shapes::ShapeRef.new(shape: JobListEntryList, location_name: "JobListEntries"))
237
256
  CreateClusterResult.struct_class = Types::CreateClusterResult
238
257
 
239
258
  CreateJobRequest.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, location_name: "JobType"))
@@ -279,6 +298,12 @@ module Aws::Snowball
279
298
  DataTransfer.add_member(:total_objects, Shapes::ShapeRef.new(shape: Long, location_name: "TotalObjects"))
280
299
  DataTransfer.struct_class = Types::DataTransfer
281
300
 
301
+ DependentService.add_member(:service_name, Shapes::ShapeRef.new(shape: ServiceName, location_name: "ServiceName"))
302
+ DependentService.add_member(:service_version, Shapes::ShapeRef.new(shape: ServiceVersion, location_name: "ServiceVersion"))
303
+ DependentService.struct_class = Types::DependentService
304
+
305
+ DependentServiceList.member = Shapes::ShapeRef.new(shape: DependentService)
306
+
282
307
  DescribeAddressRequest.add_member(:address_id, Shapes::ShapeRef.new(shape: AddressId, required: true, location_name: "AddressId"))
283
308
  DescribeAddressRequest.struct_class = Types::DescribeAddressRequest
284
309
 
@@ -317,6 +342,10 @@ module Aws::Snowball
317
342
  DeviceConfiguration.add_member(:snowcone_device_configuration, Shapes::ShapeRef.new(shape: SnowconeDeviceConfiguration, location_name: "SnowconeDeviceConfiguration"))
318
343
  DeviceConfiguration.struct_class = Types::DeviceConfiguration
319
344
 
345
+ EKSOnDeviceServiceConfiguration.add_member(:kubernetes_version, Shapes::ShapeRef.new(shape: String, location_name: "KubernetesVersion"))
346
+ EKSOnDeviceServiceConfiguration.add_member(:eks_anywhere_version, Shapes::ShapeRef.new(shape: String, location_name: "EKSAnywhereVersion"))
347
+ EKSOnDeviceServiceConfiguration.struct_class = Types::EKSOnDeviceServiceConfiguration
348
+
320
349
  Ec2AmiResource.add_member(:ami_id, Shapes::ShapeRef.new(shape: AmiId, required: true, location_name: "AmiId"))
321
350
  Ec2AmiResource.add_member(:snowball_ami_id, Shapes::ShapeRef.new(shape: String, location_name: "SnowballAmiId"))
322
351
  Ec2AmiResource.struct_class = Types::Ec2AmiResource
@@ -477,10 +506,24 @@ module Aws::Snowball
477
506
  ListLongTermPricingResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
478
507
  ListLongTermPricingResult.struct_class = Types::ListLongTermPricingResult
479
508
 
509
+ ListServiceVersionsRequest.add_member(:service_name, Shapes::ShapeRef.new(shape: ServiceName, required: true, location_name: "ServiceName"))
510
+ ListServiceVersionsRequest.add_member(:dependent_services, Shapes::ShapeRef.new(shape: DependentServiceList, location_name: "DependentServices"))
511
+ ListServiceVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListLimit, location_name: "MaxResults"))
512
+ ListServiceVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
513
+ ListServiceVersionsRequest.struct_class = Types::ListServiceVersionsRequest
514
+
515
+ ListServiceVersionsResult.add_member(:service_versions, Shapes::ShapeRef.new(shape: ServiceVersionList, required: true, location_name: "ServiceVersions"))
516
+ ListServiceVersionsResult.add_member(:service_name, Shapes::ShapeRef.new(shape: ServiceName, required: true, location_name: "ServiceName"))
517
+ ListServiceVersionsResult.add_member(:dependent_services, Shapes::ShapeRef.new(shape: DependentServiceList, location_name: "DependentServices"))
518
+ ListServiceVersionsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
519
+ ListServiceVersionsResult.struct_class = Types::ListServiceVersionsResult
520
+
480
521
  LongTermPricingAssociatedJobIdList.member = Shapes::ShapeRef.new(shape: JobId)
481
522
 
482
523
  LongTermPricingEntryList.member = Shapes::ShapeRef.new(shape: LongTermPricingListEntry)
483
524
 
525
+ LongTermPricingIdList.member = Shapes::ShapeRef.new(shape: LongTermPricingId)
526
+
484
527
  LongTermPricingListEntry.add_member(:long_term_pricing_id, Shapes::ShapeRef.new(shape: LongTermPricingId, location_name: "LongTermPricingId"))
485
528
  LongTermPricingListEntry.add_member(:long_term_pricing_end_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LongTermPricingEndDate"))
486
529
  LongTermPricingListEntry.add_member(:long_term_pricing_start_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LongTermPricingStartDate"))
@@ -504,11 +547,19 @@ module Aws::Snowball
504
547
 
505
548
  OnDeviceServiceConfiguration.add_member(:nfs_on_device_service, Shapes::ShapeRef.new(shape: NFSOnDeviceServiceConfiguration, location_name: "NFSOnDeviceService"))
506
549
  OnDeviceServiceConfiguration.add_member(:tgw_on_device_service, Shapes::ShapeRef.new(shape: TGWOnDeviceServiceConfiguration, location_name: "TGWOnDeviceService"))
550
+ OnDeviceServiceConfiguration.add_member(:eks_on_device_service, Shapes::ShapeRef.new(shape: EKSOnDeviceServiceConfiguration, location_name: "EKSOnDeviceService"))
551
+ OnDeviceServiceConfiguration.add_member(:s3_on_device_service, Shapes::ShapeRef.new(shape: S3OnDeviceServiceConfiguration, location_name: "S3OnDeviceService"))
507
552
  OnDeviceServiceConfiguration.struct_class = Types::OnDeviceServiceConfiguration
508
553
 
509
554
  ReturnShippingLabelAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
510
555
  ReturnShippingLabelAlreadyExistsException.struct_class = Types::ReturnShippingLabelAlreadyExistsException
511
556
 
557
+ S3OnDeviceServiceConfiguration.add_member(:storage_limit, Shapes::ShapeRef.new(shape: S3StorageLimit, location_name: "StorageLimit"))
558
+ S3OnDeviceServiceConfiguration.add_member(:storage_unit, Shapes::ShapeRef.new(shape: StorageUnit, location_name: "StorageUnit"))
559
+ S3OnDeviceServiceConfiguration.add_member(:service_size, Shapes::ShapeRef.new(shape: ServiceSize, location_name: "ServiceSize"))
560
+ S3OnDeviceServiceConfiguration.add_member(:fault_tolerance, Shapes::ShapeRef.new(shape: NodeFaultTolerance, location_name: "FaultTolerance"))
561
+ S3OnDeviceServiceConfiguration.struct_class = Types::S3OnDeviceServiceConfiguration
562
+
512
563
  S3Resource.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: ResourceARN, location_name: "BucketArn"))
513
564
  S3Resource.add_member(:key_range, Shapes::ShapeRef.new(shape: KeyRange, location_name: "KeyRange"))
514
565
  S3Resource.add_member(:target_on_device_services, Shapes::ShapeRef.new(shape: TargetOnDeviceServiceList, location_name: "TargetOnDeviceServices"))
@@ -516,6 +567,11 @@ module Aws::Snowball
516
567
 
517
568
  S3ResourceList.member = Shapes::ShapeRef.new(shape: S3Resource)
518
569
 
570
+ ServiceVersion.add_member(:version, Shapes::ShapeRef.new(shape: String, location_name: "Version"))
571
+ ServiceVersion.struct_class = Types::ServiceVersion
572
+
573
+ ServiceVersionList.member = Shapes::ShapeRef.new(shape: ServiceVersion)
574
+
519
575
  Shipment.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
520
576
  Shipment.add_member(:tracking_number, Shapes::ShapeRef.new(shape: String, location_name: "TrackingNumber"))
521
577
  Shipment.struct_class = Types::Shipment
@@ -855,6 +911,16 @@ module Aws::Snowball
855
911
  )
856
912
  end)
857
913
 
914
+ api.add_operation(:list_service_versions, Seahorse::Model::Operation.new.tap do |o|
915
+ o.name = "ListServiceVersions"
916
+ o.http_method = "POST"
917
+ o.http_request_uri = "/"
918
+ o.input = Shapes::ShapeRef.new(shape: ListServiceVersionsRequest)
919
+ o.output = Shapes::ShapeRef.new(shape: ListServiceVersionsResult)
920
+ o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
921
+ o.errors << Shapes::ShapeRef.new(shape: InvalidResourceException)
922
+ end)
923
+
858
924
  api.add_operation(:update_cluster, Seahorse::Model::Operation.new.tap do |o|
859
925
  o.name = "UpdateCluster"
860
926
  o.http_method = "POST"
@@ -14,36 +14,39 @@ module Aws::Snowball
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
- end
22
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
- end
25
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
- end
27
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
- return Aws::Endpoints::Endpoint.new(url: "https://snowball-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
- end
31
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
- end
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
33
18
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
- return Aws::Endpoints::Endpoint.new(url: "https://snowball-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
- end
37
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
38
20
  end
39
21
  if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
- return Aws::Endpoints::Endpoint.new(url: "https://snowball.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://snowball-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://snowball-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://snowball.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
42
45
  end
43
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
46
+ return Aws::Endpoints::Endpoint.new(url: "https://snowball.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
47
  end
45
- return Aws::Endpoints::Endpoint.new(url: "https://snowball.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
46
48
  end
49
+ raise ArgumentError, "Invalid Configuration: Missing Region"
47
50
  raise ArgumentError, 'No endpoint could be resolved'
48
51
 
49
52
  end
@@ -305,6 +305,20 @@ module Aws::Snowball
305
305
  end
306
306
  end
307
307
 
308
+ class ListServiceVersions
309
+ def self.build(context)
310
+ unless context.config.regional_endpoint
311
+ endpoint = context.config.endpoint.to_s
312
+ end
313
+ Aws::Snowball::EndpointParameters.new(
314
+ region: context.config.region,
315
+ use_dual_stack: context.config.use_dualstack_endpoint,
316
+ use_fips: context.config.use_fips_endpoint,
317
+ endpoint: endpoint,
318
+ )
319
+ end
320
+ end
321
+
308
322
  class UpdateCluster
309
323
  def self.build(context)
310
324
  unless context.config.regional_endpoint
@@ -98,6 +98,8 @@ module Aws::Snowball
98
98
  Aws::Snowball::Endpoints::ListJobs.build(context)
99
99
  when :list_long_term_pricing
100
100
  Aws::Snowball::Endpoints::ListLongTermPricing.build(context)
101
+ when :list_service_versions
102
+ Aws::Snowball::Endpoints::ListServiceVersions.build(context)
101
103
  when :update_cluster
102
104
  Aws::Snowball::Endpoints::UpdateCluster.build(context)
103
105
  when :update_job
@@ -500,6 +500,37 @@ module Aws::Snowball
500
500
  # need to use the Snowball Client to manage the device.
501
501
  # @return [String]
502
502
  #
503
+ # @!attribute [rw] initial_cluster_size
504
+ # If provided, each job will be automatically created and associated
505
+ # with the new cluster. If not provided, will be treated as 0.
506
+ # @return [Integer]
507
+ #
508
+ # @!attribute [rw] force_create_jobs
509
+ # Force to create cluster when user attempts to overprovision or
510
+ # underprovision a cluster. A cluster is overprovisioned or
511
+ # underprovisioned if the initial size of the cluster is more
512
+ # (overprovisioned) or less (underprovisioned) than what needed to
513
+ # meet capacity requirement specified with
514
+ # `OnDeviceServiceConfiguration`.
515
+ # @return [Boolean]
516
+ #
517
+ # @!attribute [rw] long_term_pricing_ids
518
+ # Lists long-term pricing id that will be used to associate with jobs
519
+ # automatically created for the new cluster.
520
+ # @return [Array<String>]
521
+ #
522
+ # @!attribute [rw] snowball_capacity_preference
523
+ # If your job is being created in one of the US regions, you have the
524
+ # option of specifying what size Snow device you'd like for this job.
525
+ # In all other regions, Snowballs come with 80 TB in storage capacity.
526
+ #
527
+ # For more information, see
528
+ # "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html"
529
+ # (Snow Family Devices and Capacity) in the *Snowcone User Guide* or
530
+ # "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html"
531
+ # (Snow Family Devices and Capacity) in the *Snowcone User Guide*.
532
+ # @return [String]
533
+ #
503
534
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/CreateClusterRequest AWS API Documentation
504
535
  #
505
536
  class CreateClusterRequest < Struct.new(
@@ -515,7 +546,11 @@ module Aws::Snowball
515
546
  :notification,
516
547
  :forwarding_address_id,
517
548
  :tax_documents,
518
- :remote_management)
549
+ :remote_management,
550
+ :initial_cluster_size,
551
+ :force_create_jobs,
552
+ :long_term_pricing_ids,
553
+ :snowball_capacity_preference)
519
554
  SENSITIVE = []
520
555
  include Aws::Structure
521
556
  end
@@ -524,10 +559,20 @@ module Aws::Snowball
524
559
  # The automatically generated ID for a cluster.
525
560
  # @return [String]
526
561
  #
562
+ # @!attribute [rw] job_list_entries
563
+ # List of jobs created for this cluster. For syntax, see
564
+ # [ListJobsResult$JobListEntries][1] in this guide.
565
+ #
566
+ #
567
+ #
568
+ # [1]: https://docs.aws.amazon.com/snowball/latest/api-reference/API_ListJobs.html#API_ListJobs_ResponseSyntax
569
+ # @return [Array<Types::JobListEntry>]
570
+ #
527
571
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/CreateClusterResult AWS API Documentation
528
572
  #
529
573
  class CreateClusterResult < Struct.new(
530
- :cluster_id)
574
+ :cluster_id,
575
+ :job_list_entries)
531
576
  SENSITIVE = []
532
577
  include Aws::Structure
533
578
  end
@@ -730,8 +775,6 @@ module Aws::Snowball
730
775
  # @return [String]
731
776
  #
732
777
  # @!attribute [rw] is_long_term_pricing_auto_renew
733
- # snowballty
734
- #
735
778
  # Specifies whether the current long-term pricing type for the device
736
779
  # should be renewed.
737
780
  # @return [Boolean]
@@ -834,6 +877,26 @@ module Aws::Snowball
834
877
  include Aws::Structure
835
878
  end
836
879
 
880
+ # The name and version of the service dependant on the requested
881
+ # service.
882
+ #
883
+ # @!attribute [rw] service_name
884
+ # The name of the dependent service.
885
+ # @return [String]
886
+ #
887
+ # @!attribute [rw] service_version
888
+ # The version of the dependent service.
889
+ # @return [Types::ServiceVersion]
890
+ #
891
+ # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DependentService AWS API Documentation
892
+ #
893
+ class DependentService < Struct.new(
894
+ :service_name,
895
+ :service_version)
896
+ SENSITIVE = []
897
+ include Aws::Structure
898
+ end
899
+
837
900
  # @!attribute [rw] address_id
838
901
  # The automatically generated ID for a specific address.
839
902
  # @return [String]
@@ -1009,6 +1072,26 @@ module Aws::Snowball
1009
1072
  include Aws::Structure
1010
1073
  end
1011
1074
 
1075
+ # An object representing the metadata and configuration settings of EKS
1076
+ # Anywhere on the Snow Family device.
1077
+ #
1078
+ # @!attribute [rw] kubernetes_version
1079
+ # The Kubernetes version for EKS Anywhere on the Snow Family device.
1080
+ # @return [String]
1081
+ #
1082
+ # @!attribute [rw] eks_anywhere_version
1083
+ # The version of EKS Anywhere on the Snow Family device.
1084
+ # @return [String]
1085
+ #
1086
+ # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/EKSOnDeviceServiceConfiguration AWS API Documentation
1087
+ #
1088
+ class EKSOnDeviceServiceConfiguration < Struct.new(
1089
+ :kubernetes_version,
1090
+ :eks_anywhere_version)
1091
+ SENSITIVE = []
1092
+ include Aws::Structure
1093
+ end
1094
+
1012
1095
  # A JSON-formatted object that contains the IDs for an Amazon Machine
1013
1096
  # Image (AMI), including the Amazon EC2 AMI ID and the Snow device AMI
1014
1097
  # ID. Each AMI has these two IDs to simplify identifying the AMI in both
@@ -1031,8 +1114,8 @@ module Aws::Snowball
1031
1114
  include Aws::Structure
1032
1115
  end
1033
1116
 
1034
- # Your IAM user lacks the necessary Amazon EC2 permissions to perform
1035
- # the attempted action.
1117
+ # Your user lacks the necessary Amazon EC2 permissions to perform the
1118
+ # attempted action.
1036
1119
  #
1037
1120
  # @!attribute [rw] message
1038
1121
  # @return [String]
@@ -1812,6 +1895,66 @@ module Aws::Snowball
1812
1895
  include Aws::Structure
1813
1896
  end
1814
1897
 
1898
+ # @!attribute [rw] service_name
1899
+ # The name of the service for which you're requesting supported
1900
+ # versions.
1901
+ # @return [String]
1902
+ #
1903
+ # @!attribute [rw] dependent_services
1904
+ # A list of names and versions of dependant services of the requested
1905
+ # service.
1906
+ # @return [Array<Types::DependentService>]
1907
+ #
1908
+ # @!attribute [rw] max_results
1909
+ # The maximum number of `ListServiceVersions` objects to return.
1910
+ # @return [Integer]
1911
+ #
1912
+ # @!attribute [rw] next_token
1913
+ # Because HTTP requests are stateless, this is the starting point for
1914
+ # the next list of returned `ListServiceVersionsRequest` versions.
1915
+ # @return [String]
1916
+ #
1917
+ # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/ListServiceVersionsRequest AWS API Documentation
1918
+ #
1919
+ class ListServiceVersionsRequest < Struct.new(
1920
+ :service_name,
1921
+ :dependent_services,
1922
+ :max_results,
1923
+ :next_token)
1924
+ SENSITIVE = []
1925
+ include Aws::Structure
1926
+ end
1927
+
1928
+ # @!attribute [rw] service_versions
1929
+ # A list of supported versions.
1930
+ # @return [Array<Types::ServiceVersion>]
1931
+ #
1932
+ # @!attribute [rw] service_name
1933
+ # The name of the service for which the system provided supported
1934
+ # versions.
1935
+ # @return [String]
1936
+ #
1937
+ # @!attribute [rw] dependent_services
1938
+ # A list of names and versions of dependant services of the service
1939
+ # for which the system provided supported versions.
1940
+ # @return [Array<Types::DependentService>]
1941
+ #
1942
+ # @!attribute [rw] next_token
1943
+ # Because HTTP requests are stateless, this is the starting point of
1944
+ # the next list of returned `ListServiceVersionsResult` results.
1945
+ # @return [String]
1946
+ #
1947
+ # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/ListServiceVersionsResult AWS API Documentation
1948
+ #
1949
+ class ListServiceVersionsResult < Struct.new(
1950
+ :service_versions,
1951
+ :service_name,
1952
+ :dependent_services,
1953
+ :next_token)
1954
+ SENSITIVE = []
1955
+ include Aws::Structure
1956
+ end
1957
+
1815
1958
  # Each `LongTermPricingListEntry` object contains information about a
1816
1959
  # long-term pricing type.
1817
1960
  #
@@ -1959,11 +2102,22 @@ module Aws::Snowball
1959
2102
  # Family device.
1960
2103
  # @return [Types::TGWOnDeviceServiceConfiguration]
1961
2104
  #
2105
+ # @!attribute [rw] eks_on_device_service
2106
+ # The configuration of EKS Anywhere on the Snow Family device.
2107
+ # @return [Types::EKSOnDeviceServiceConfiguration]
2108
+ #
2109
+ # @!attribute [rw] s3_on_device_service
2110
+ # Configuration for Amazon S3 compatible storage on Snow family
2111
+ # devices.
2112
+ # @return [Types::S3OnDeviceServiceConfiguration]
2113
+ #
1962
2114
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/OnDeviceServiceConfiguration AWS API Documentation
1963
2115
  #
1964
2116
  class OnDeviceServiceConfiguration < Struct.new(
1965
2117
  :nfs_on_device_service,
1966
- :tgw_on_device_service)
2118
+ :tgw_on_device_service,
2119
+ :eks_on_device_service,
2120
+ :s3_on_device_service)
1967
2121
  SENSITIVE = []
1968
2122
  include Aws::Structure
1969
2123
  end
@@ -1983,6 +2137,47 @@ module Aws::Snowball
1983
2137
  include Aws::Structure
1984
2138
  end
1985
2139
 
2140
+ # Amazon S3 compatible storage on Snow family devices configuration
2141
+ # items.
2142
+ #
2143
+ # @!attribute [rw] storage_limit
2144
+ # If the specified storage limit value matches storage limit of one of
2145
+ # the defined configurations, that configuration will be used. If the
2146
+ # specified storage limit value does not match any defined
2147
+ # configuration, the request will fail. If more than one configuration
2148
+ # has the same storage limit as specified, the other input need to be
2149
+ # provided.
2150
+ # @return [Float]
2151
+ #
2152
+ # @!attribute [rw] storage_unit
2153
+ # Storage unit. Currently the only supported unit is TB.
2154
+ # @return [String]
2155
+ #
2156
+ # @!attribute [rw] service_size
2157
+ # Applicable when creating a cluster. Specifies how many nodes are
2158
+ # needed for Amazon S3 compatible storage on Snow family devices. If
2159
+ # specified, the other input can be omitted.
2160
+ # @return [Integer]
2161
+ #
2162
+ # @!attribute [rw] fault_tolerance
2163
+ # &gt;Fault tolerance level of the cluster. This indicates the number
2164
+ # of nodes that can go down without degrading the performance of the
2165
+ # cluster. This additional input helps when the specified
2166
+ # `StorageLimit` matches more than one Amazon S3 compatible storage on
2167
+ # Snow family devices service configuration.
2168
+ # @return [Integer]
2169
+ #
2170
+ # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/S3OnDeviceServiceConfiguration AWS API Documentation
2171
+ #
2172
+ class S3OnDeviceServiceConfiguration < Struct.new(
2173
+ :storage_limit,
2174
+ :storage_unit,
2175
+ :service_size,
2176
+ :fault_tolerance)
2177
+ SENSITIVE = []
2178
+ include Aws::Structure
2179
+ end
2180
+
1986
2181
  # Each `S3Resource` object represents an Amazon S3 bucket that your
1987
2182
  # transferred data will be exported from or imported into. For export
1988
2183
  # jobs, this object can have an optional `KeyRange` value. The length of
@@ -2018,6 +2213,20 @@ module Aws::Snowball
2018
2213
  include Aws::Structure
2019
2214
  end
2020
2215
 
2216
+ # The version of the requested service.
2217
+ #
2218
+ # @!attribute [rw] version
2219
+ # The version number of the requested service.
2220
+ # @return [String]
2221
+ #
2222
+ # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/ServiceVersion AWS API Documentation
2223
+ #
2224
+ class ServiceVersion < Struct.new(
2225
+ :version)
2226
+ SENSITIVE = []
2227
+ include Aws::Structure
2228
+ end
2229
+
2021
2230
  # The `Status` and `TrackingNumber` information for an inbound or
2022
2231
  # outbound shipment.
2023
2232
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-snowball/customizations'
52
52
  # @!group service
53
53
  module Aws::Snowball
54
54
 
55
- GEM_VERSION = '1.52.0'
55
+ GEM_VERSION = '1.54.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-snowball
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.52.0
4
+ version: 1.54.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core