aws-sdk-snowball 1.53.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: 0fead9594d00c243f1a2815dd9e09d9179ec3ab37f7993de03aad4a531bb9d2a
4
- data.tar.gz: bdcb15daa46c311780a8af3dd7a31f4201f1058b1fa9857513c539205305ad75
3
+ metadata.gz: b7c7b89bb593e2344c5222ac05bc9926e0fff305d3d98b9d41dbb5c2dbced580
4
+ data.tar.gz: fc8adf4557ef0ebf2d00c1e6eb17065a1efefc8f071ec46809487c2c023a7c3f
5
5
  SHA512:
6
- metadata.gz: d54a7df1d64e84f3a481a5cb811c1c20c5954824133e2ed0ec88fe1f5194c0473fe81acc2379d086b93403167452ba8ed9134a5140829cd87af2ba883aa659b4
7
- data.tar.gz: a5f5014ccc03c2ad16ac58dd56727e6e356b26cdb1d39e04c4325d30101be880c55bfe72f8b7a534d63b0655cf589eaaa99f1584422d70900bf540c7a9ab206f
6
+ metadata.gz: ea690faf312debaff1a9dfc6c47ea9a8a0d76620dd3901211383ca9a88bb57fe6497313263a00a42cc6386ff73721d2905d57d04a2bf1af39bdf0ceda0f4b507
7
+ data.tar.gz: f81b401158479e412c13b5105945734808123e0fe418d804a41e6e57cd4261627196c61cbbef9a1d8df754f4f03bea11d5aff14cf50c231769e03bc2c2bcc57c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.53.0 (2023-02-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.53.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",
@@ -723,12 +750,18 @@ module Aws::Snowball
723
750
  # kubernetes_version: "String",
724
751
  # eks_anywhere_version: "String",
725
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
+ # },
726
759
  # },
727
760
  # description: "String",
728
761
  # address_id: "AddressId", # required
729
762
  # kms_key_arn: "KmsKeyARN",
730
- # role_arn: "RoleARN", # required
731
- # 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
732
765
  # shipping_option: "SECOND_DAY", # required, accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
733
766
  # notification: {
734
767
  # sns_topic_arn: "SnsTopicARN",
@@ -742,11 +775,23 @@ module Aws::Snowball
742
775
  # },
743
776
  # },
744
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
745
782
  # })
746
783
  #
747
784
  # @example Response structure
748
785
  #
749
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
750
795
  #
751
796
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/CreateCluster AWS API Documentation
752
797
  #
@@ -779,7 +824,7 @@ module Aws::Snowball
779
824
  #
780
825
  # **Snow Family devices and their capacities.**
781
826
  #
782
- # * Snow Family device type: **SNC1\_SSD**
827
+ # * Device type: **SNC1\_SSD**
783
828
  #
784
829
  # * Capacity: T14
785
830
  #
@@ -787,7 +832,7 @@ module Aws::Snowball
787
832
  #
788
833
  #
789
834
  #
790
- # * Snow Family device type: **SNC1\_HDD**
835
+ # * Device type: **SNC1\_HDD**
791
836
  #
792
837
  # * Capacity: T8
793
838
  #
@@ -854,6 +899,22 @@ module Aws::Snowball
854
899
  #
855
900
  #
856
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
+ #
857
918
  # [1]: https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services/?p=ngi&amp;loc=4
858
919
  #
859
920
  # @option params [String] :job_type
@@ -1082,12 +1143,18 @@ module Aws::Snowball
1082
1143
  # kubernetes_version: "String",
1083
1144
  # eks_anywhere_version: "String",
1084
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, T32, NoPreference
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: {
@@ -1149,9 +1216,9 @@ module Aws::Snowball
1149
1216
  # @example Request syntax with placeholder values
1150
1217
  #
1151
1218
  # resp = client.create_long_term_pricing({
1152
- # long_term_pricing_type: "OneYear", # required, accepts OneYear, ThreeYear
1219
+ # long_term_pricing_type: "OneYear", # required, accepts OneYear, ThreeYear, OneMonth
1153
1220
  # is_long_term_pricing_auto_renew: false,
1154
- # 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
1155
1222
  # })
1156
1223
  #
1157
1224
  # @example Response structure
@@ -1414,7 +1481,7 @@ module Aws::Snowball
1414
1481
  # resp.cluster_metadata.role_arn #=> String
1415
1482
  # resp.cluster_metadata.cluster_state #=> String, one of "AwaitingQuorum", "Pending", "InUse", "Complete", "Cancelled"
1416
1483
  # resp.cluster_metadata.job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
1417
- # 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"
1418
1485
  # resp.cluster_metadata.creation_date #=> Time
1419
1486
  # resp.cluster_metadata.resources.s3_resources #=> Array
1420
1487
  # resp.cluster_metadata.resources.s3_resources[0].bucket_arn #=> String
@@ -1444,6 +1511,10 @@ module Aws::Snowball
1444
1511
  # resp.cluster_metadata.on_device_service_configuration.tgw_on_device_service.storage_unit #=> String, one of "TB"
1445
1512
  # resp.cluster_metadata.on_device_service_configuration.eks_on_device_service.kubernetes_version #=> String
1446
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", "T32", "NoPreference"
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"
@@ -1568,11 +1639,15 @@ module Aws::Snowball
1568
1639
  # resp.job_metadata.on_device_service_configuration.tgw_on_device_service.storage_unit #=> String, one of "TB"
1569
1640
  # resp.job_metadata.on_device_service_configuration.eks_on_device_service.kubernetes_version #=> String
1570
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
1571
1646
  # resp.sub_job_metadata #=> Array
1572
1647
  # resp.sub_job_metadata[0].job_id #=> String
1573
1648
  # resp.sub_job_metadata[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
1574
1649
  # resp.sub_job_metadata[0].job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
1575
- # 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"
1576
1651
  # resp.sub_job_metadata[0].creation_date #=> Time
1577
1652
  # resp.sub_job_metadata[0].resources.s3_resources #=> Array
1578
1653
  # resp.sub_job_metadata[0].resources.s3_resources[0].bucket_arn #=> String
@@ -1597,7 +1672,7 @@ module Aws::Snowball
1597
1672
  # resp.sub_job_metadata[0].shipping_details.inbound_shipment.tracking_number #=> String
1598
1673
  # resp.sub_job_metadata[0].shipping_details.outbound_shipment.status #=> String
1599
1674
  # resp.sub_job_metadata[0].shipping_details.outbound_shipment.tracking_number #=> String
1600
- # resp.sub_job_metadata[0].snowball_capacity_preference #=> String, one of "T50", "T80", "T100", "T42", "T98", "T8", "T14", "T32", "NoPreference"
1675
+ # resp.sub_job_metadata[0].snowball_capacity_preference #=> String, one of "T50", "T80", "T100", "T42", "T98", "T8", "T14", "T32", "NoPreference", "T240"
1601
1676
  # resp.sub_job_metadata[0].notification.sns_topic_arn #=> String
1602
1677
  # resp.sub_job_metadata[0].notification.job_states_to_notify #=> Array
1603
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"
@@ -1621,6 +1696,10 @@ module Aws::Snowball
1621
1696
  # resp.sub_job_metadata[0].on_device_service_configuration.tgw_on_device_service.storage_unit #=> String, one of "TB"
1622
1697
  # resp.sub_job_metadata[0].on_device_service_configuration.eks_on_device_service.kubernetes_version #=> String
1623
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
1624
1703
  #
1625
1704
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DescribeJob AWS API Documentation
1626
1705
  #
@@ -1974,7 +2053,7 @@ module Aws::Snowball
1974
2053
  # resp.job_list_entries[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
1975
2054
  # resp.job_list_entries[0].is_master #=> Boolean
1976
2055
  # resp.job_list_entries[0].job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
1977
- # 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"
1978
2057
  # resp.job_list_entries[0].creation_date #=> Time
1979
2058
  # resp.job_list_entries[0].description #=> String
1980
2059
  # resp.next_token #=> String
@@ -2056,9 +2135,11 @@ module Aws::Snowball
2056
2135
  # This action returns a list of the different Amazon EC2 Amazon Machine
2057
2136
  # Images (AMIs) that are owned by your Amazon Web Services accountthat
2058
2137
  # would be supported for use on a Snow device. Currently, supported AMIs
2059
- # are based on the CentOS 7 (x86\_64) - with Updates HVM, Ubuntu Server
2060
- # 14.04 LTS (HVM), and Ubuntu 16.04 LTS - Xenial (HVM) images, available
2061
- # 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.
2062
2143
  #
2063
2144
  # @option params [Integer] :max_results
2064
2145
  # The maximum number of results for the list of compatible images.
@@ -2160,7 +2241,7 @@ module Aws::Snowball
2160
2241
  # resp.job_list_entries[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
2161
2242
  # resp.job_list_entries[0].is_master #=> Boolean
2162
2243
  # resp.job_list_entries[0].job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
2163
- # 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"
2164
2245
  # resp.job_list_entries[0].creation_date #=> Time
2165
2246
  # resp.job_list_entries[0].description #=> String
2166
2247
  # resp.next_token #=> String
@@ -2203,12 +2284,12 @@ module Aws::Snowball
2203
2284
  # resp.long_term_pricing_entries[0].long_term_pricing_id #=> String
2204
2285
  # resp.long_term_pricing_entries[0].long_term_pricing_end_date #=> Time
2205
2286
  # resp.long_term_pricing_entries[0].long_term_pricing_start_date #=> Time
2206
- # 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"
2207
2288
  # resp.long_term_pricing_entries[0].current_active_job #=> String
2208
2289
  # resp.long_term_pricing_entries[0].replacement_job #=> String
2209
2290
  # resp.long_term_pricing_entries[0].is_long_term_pricing_auto_renew #=> Boolean
2210
2291
  # resp.long_term_pricing_entries[0].long_term_pricing_status #=> String
2211
- # 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"
2212
2293
  # resp.long_term_pricing_entries[0].job_ids #=> Array
2213
2294
  # resp.long_term_pricing_entries[0].job_ids[0] #=> String
2214
2295
  # resp.next_token #=> String
@@ -2395,6 +2476,12 @@ module Aws::Snowball
2395
2476
  # kubernetes_version: "String",
2396
2477
  # eks_anywhere_version: "String",
2397
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
+ # },
2398
2485
  # },
2399
2486
  # address_id: "AddressId",
2400
2487
  # shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
@@ -2541,11 +2628,17 @@ module Aws::Snowball
2541
2628
  # kubernetes_version: "String",
2542
2629
  # eks_anywhere_version: "String",
2543
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
+ # },
2544
2637
  # },
2545
2638
  # address_id: "AddressId",
2546
2639
  # shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
2547
2640
  # description: "String",
2548
- # snowball_capacity_preference: "T50", # accepts T50, T80, T100, T42, T98, T8, T14, T32, NoPreference
2641
+ # snowball_capacity_preference: "T50", # accepts T50, T80, T100, T42, T98, T8, T14, T32, NoPreference, T240
2549
2642
  # forwarding_address_id: "AddressId",
2550
2643
  # })
2551
2644
  #
@@ -2636,7 +2729,7 @@ module Aws::Snowball
2636
2729
  params: params,
2637
2730
  config: config)
2638
2731
  context[:gem_name] = 'aws-sdk-snowball'
2639
- context[:gem_version] = '1.53.0'
2732
+ context[:gem_version] = '1.54.0'
2640
2733
  Seahorse::Client::Request.new(handlers, context)
2641
2734
  end
2642
2735
 
@@ -72,6 +72,7 @@ module Aws::Snowball
72
72
  GetSoftwareUpdatesRequest = Shapes::StructureShape.new(name: 'GetSoftwareUpdatesRequest')
73
73
  GetSoftwareUpdatesResult = Shapes::StructureShape.new(name: 'GetSoftwareUpdatesResult')
74
74
  INDTaxDocuments = Shapes::StructureShape.new(name: 'INDTaxDocuments')
75
+ InitialClusterSize = Shapes::IntegerShape.new(name: 'InitialClusterSize')
75
76
  Integer = Shapes::IntegerShape.new(name: 'Integer')
76
77
  InvalidAddressException = Shapes::StructureShape.new(name: 'InvalidAddressException')
77
78
  InvalidInputCombinationException = Shapes::StructureShape.new(name: 'InvalidInputCombinationException')
@@ -111,18 +112,23 @@ module Aws::Snowball
111
112
  LongTermPricingAssociatedJobIdList = Shapes::ListShape.new(name: 'LongTermPricingAssociatedJobIdList')
112
113
  LongTermPricingEntryList = Shapes::ListShape.new(name: 'LongTermPricingEntryList')
113
114
  LongTermPricingId = Shapes::StringShape.new(name: 'LongTermPricingId')
115
+ LongTermPricingIdList = Shapes::ListShape.new(name: 'LongTermPricingIdList')
114
116
  LongTermPricingListEntry = Shapes::StructureShape.new(name: 'LongTermPricingListEntry')
115
117
  LongTermPricingType = Shapes::StringShape.new(name: 'LongTermPricingType')
116
118
  NFSOnDeviceServiceConfiguration = Shapes::StructureShape.new(name: 'NFSOnDeviceServiceConfiguration')
119
+ NodeFaultTolerance = Shapes::IntegerShape.new(name: 'NodeFaultTolerance')
117
120
  Notification = Shapes::StructureShape.new(name: 'Notification')
118
121
  OnDeviceServiceConfiguration = Shapes::StructureShape.new(name: 'OnDeviceServiceConfiguration')
119
122
  RemoteManagement = Shapes::StringShape.new(name: 'RemoteManagement')
120
123
  ResourceARN = Shapes::StringShape.new(name: 'ResourceARN')
121
124
  ReturnShippingLabelAlreadyExistsException = Shapes::StructureShape.new(name: 'ReturnShippingLabelAlreadyExistsException')
122
125
  RoleARN = Shapes::StringShape.new(name: 'RoleARN')
126
+ S3OnDeviceServiceConfiguration = Shapes::StructureShape.new(name: 'S3OnDeviceServiceConfiguration')
123
127
  S3Resource = Shapes::StructureShape.new(name: 'S3Resource')
124
128
  S3ResourceList = Shapes::ListShape.new(name: 'S3ResourceList')
129
+ S3StorageLimit = Shapes::FloatShape.new(name: 'S3StorageLimit')
125
130
  ServiceName = Shapes::StringShape.new(name: 'ServiceName')
131
+ ServiceSize = Shapes::IntegerShape.new(name: 'ServiceSize')
126
132
  ServiceVersion = Shapes::StructureShape.new(name: 'ServiceVersion')
127
133
  ServiceVersionList = Shapes::ListShape.new(name: 'ServiceVersionList')
128
134
  Shipment = Shapes::StructureShape.new(name: 'Shipment')
@@ -227,21 +233,26 @@ module Aws::Snowball
227
233
  CreateAddressResult.struct_class = Types::CreateAddressResult
228
234
 
229
235
  CreateClusterRequest.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, required: true, location_name: "JobType"))
230
- 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"))
231
237
  CreateClusterRequest.add_member(:on_device_service_configuration, Shapes::ShapeRef.new(shape: OnDeviceServiceConfiguration, location_name: "OnDeviceServiceConfiguration"))
232
238
  CreateClusterRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
233
239
  CreateClusterRequest.add_member(:address_id, Shapes::ShapeRef.new(shape: AddressId, required: true, location_name: "AddressId"))
234
240
  CreateClusterRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyARN, location_name: "KmsKeyARN"))
235
- 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"))
236
242
  CreateClusterRequest.add_member(:snowball_type, Shapes::ShapeRef.new(shape: SnowballType, required: true, location_name: "SnowballType"))
237
243
  CreateClusterRequest.add_member(:shipping_option, Shapes::ShapeRef.new(shape: ShippingOption, required: true, location_name: "ShippingOption"))
238
244
  CreateClusterRequest.add_member(:notification, Shapes::ShapeRef.new(shape: Notification, location_name: "Notification"))
239
245
  CreateClusterRequest.add_member(:forwarding_address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "ForwardingAddressId"))
240
246
  CreateClusterRequest.add_member(:tax_documents, Shapes::ShapeRef.new(shape: TaxDocuments, location_name: "TaxDocuments"))
241
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"))
242
252
  CreateClusterRequest.struct_class = Types::CreateClusterRequest
243
253
 
244
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"))
245
256
  CreateClusterResult.struct_class = Types::CreateClusterResult
246
257
 
247
258
  CreateJobRequest.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, location_name: "JobType"))
@@ -511,6 +522,8 @@ module Aws::Snowball
511
522
 
512
523
  LongTermPricingEntryList.member = Shapes::ShapeRef.new(shape: LongTermPricingListEntry)
513
524
 
525
+ LongTermPricingIdList.member = Shapes::ShapeRef.new(shape: LongTermPricingId)
526
+
514
527
  LongTermPricingListEntry.add_member(:long_term_pricing_id, Shapes::ShapeRef.new(shape: LongTermPricingId, location_name: "LongTermPricingId"))
515
528
  LongTermPricingListEntry.add_member(:long_term_pricing_end_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LongTermPricingEndDate"))
516
529
  LongTermPricingListEntry.add_member(:long_term_pricing_start_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LongTermPricingStartDate"))
@@ -535,11 +548,18 @@ module Aws::Snowball
535
548
  OnDeviceServiceConfiguration.add_member(:nfs_on_device_service, Shapes::ShapeRef.new(shape: NFSOnDeviceServiceConfiguration, location_name: "NFSOnDeviceService"))
536
549
  OnDeviceServiceConfiguration.add_member(:tgw_on_device_service, Shapes::ShapeRef.new(shape: TGWOnDeviceServiceConfiguration, location_name: "TGWOnDeviceService"))
537
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"))
538
552
  OnDeviceServiceConfiguration.struct_class = Types::OnDeviceServiceConfiguration
539
553
 
540
554
  ReturnShippingLabelAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
541
555
  ReturnShippingLabelAlreadyExistsException.struct_class = Types::ReturnShippingLabelAlreadyExistsException
542
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
+
543
563
  S3Resource.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: ResourceARN, location_name: "BucketArn"))
544
564
  S3Resource.add_member(:key_range, Shapes::ShapeRef.new(shape: KeyRange, location_name: "KeyRange"))
545
565
  S3Resource.add_member(:target_on_device_services, Shapes::ShapeRef.new(shape: TargetOnDeviceServiceList, location_name: "TargetOnDeviceServices"))
@@ -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
@@ -1069,8 +1114,8 @@ module Aws::Snowball
1069
1114
  include Aws::Structure
1070
1115
  end
1071
1116
 
1072
- # Your IAM user lacks the necessary Amazon EC2 permissions to perform
1073
- # the attempted action.
1117
+ # Your user lacks the necessary Amazon EC2 permissions to perform the
1118
+ # attempted action.
1074
1119
  #
1075
1120
  # @!attribute [rw] message
1076
1121
  # @return [String]
@@ -2061,12 +2106,18 @@ module Aws::Snowball
2061
2106
  # The configuration of EKS Anywhere on the Snow Family device.
2062
2107
  # @return [Types::EKSOnDeviceServiceConfiguration]
2063
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
+ #
2064
2114
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/OnDeviceServiceConfiguration AWS API Documentation
2065
2115
  #
2066
2116
  class OnDeviceServiceConfiguration < Struct.new(
2067
2117
  :nfs_on_device_service,
2068
2118
  :tgw_on_device_service,
2069
- :eks_on_device_service)
2119
+ :eks_on_device_service,
2120
+ :s3_on_device_service)
2070
2121
  SENSITIVE = []
2071
2122
  include Aws::Structure
2072
2123
  end
@@ -2086,6 +2137,47 @@ module Aws::Snowball
2086
2137
  include Aws::Structure
2087
2138
  end
2088
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
+
2089
2181
  # Each `S3Resource` object represents an Amazon S3 bucket that your
2090
2182
  # transferred data will be exported from or imported into. For export
2091
2183
  # jobs, this object can have an optional `KeyRange` value. The length of
@@ -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.53.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.53.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-02-13 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