aws-sdk-snowball 1.44.0 → 1.48.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: a34c3c799d21412ff892fa71fc1ad734c4454e7fe696e8570cef27a37a89125d
4
- data.tar.gz: 4dc46f3bbf0644e7f1aea006d24473ff4f6c5881350d69d4485f7e5ba8cfdde5
3
+ metadata.gz: 52a66a5788ea075f4a4ceab8d0987e66f27a082f5482bab5c27f7d2558d98868
4
+ data.tar.gz: 1a9c4a9b852fa225df370cfbb8a20367820be0b9613ce358b2f5ac082d304ab5
5
5
  SHA512:
6
- metadata.gz: 347890fcf39ec64c97767673b77d713de49a6384b525366febd06a7af12c6f6a30cdb9a714dc7bc85188cc7ddb2ffe3dd72025b963b2a5dbc6382a5c0d7ad1d2
7
- data.tar.gz: 4855adbbce7053d353a1779759b416e3350f823241baa5ffe8fffac2385bbdb3a9ebc261461c8cf70957dd8301b0c229b38327d15cb97ad54cce45d8f68fd79f
6
+ metadata.gz: d253a5d453da196a04c7155651f213f68fffd16d4d1e192c2da243bb20380e6a69681b386598846c7d183e19e99a25f22a3267679addbbf9d96f09505d2df8c6
7
+ data.tar.gz: ba8d0f7cdcbcb1cff62868dbe798ded5b10fb85bdfe4f4136d60bcdf0c625d4017ae7388ef713b1c0f70b54cdb41bf1b1283cdb25285299c6c090fb2b13bdacc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.48.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.47.0 (2022-01-05)
10
+ ------------------
11
+
12
+ * Feature - Updating validation rules for interfaces used in the Snowball API to tighten security of service.
13
+
14
+ 1.46.0 (2021-12-21)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.45.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Tapeball is to integrate tape gateway onto snowball, it enables customer to transfer local data on the tape to snowball,and then ingest the data into tape gateway on the cloud.
23
+
4
24
  1.44.0 (2021-11-04)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
1
+ 1.48.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::Snowball
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
82
 
@@ -119,7 +123,9 @@ module Aws::Snowball
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::Snowball
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -305,7 +315,7 @@ module Aws::Snowball
305
315
  # seconds to wait when opening a HTTP session before raising a
306
316
  # `Timeout::Error`.
307
317
  #
308
- # @option options [Integer] :http_read_timeout (60) The default
318
+ # @option options [Float] :http_read_timeout (60) The default
309
319
  # number of seconds to wait for response data. This value can
310
320
  # safely be set per-request on the session.
311
321
  #
@@ -321,6 +331,9 @@ module Aws::Snowball
321
331
  # disables this behaviour. This value can safely be set per
322
332
  # request on the session.
323
333
  #
334
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
335
+ # in seconds.
336
+ #
324
337
  # @option options [Boolean] :http_wire_trace (false) When `true`,
325
338
  # HTTP debug output will be sent to the `:logger`.
326
339
  #
@@ -504,13 +517,14 @@ module Aws::Snowball
504
517
  #
505
518
  # @option params [required, Types::JobResource] :resources
506
519
  # The resources associated with the cluster job. These resources include
507
- # Amazon S3 buckets and optional AWS Lambda functions written in the
508
- # Python language.
520
+ # Amazon S3 buckets and optional Lambda functions written in the Python
521
+ # language.
509
522
  #
510
523
  # @option params [Types::OnDeviceServiceConfiguration] :on_device_service_configuration
511
524
  # Specifies the service or services on the Snow Family device that your
512
- # transferred data will be exported from or imported into. AWS Snow
513
- # Family supports Amazon S3 and NFS (Network File System).
525
+ # transferred data will be exported from or imported into. Amazon Web
526
+ # Services Snow Family device clusters support Amazon S3 and NFS
527
+ # (Network File System).
514
528
  #
515
529
  # @option params [String] :description
516
530
  # An optional description of this specific cluster, for example
@@ -522,7 +536,7 @@ module Aws::Snowball
522
536
  # @option params [String] :kms_key_arn
523
537
  # The `KmsKeyARN` value that you want to associate with this cluster.
524
538
  # `KmsKeyARN` values are created by using the [CreateKey][1] API action
525
- # in AWS Key Management Service (AWS KMS).
539
+ # in Key Management Service (KMS).
526
540
  #
527
541
  #
528
542
  #
@@ -530,18 +544,18 @@ module Aws::Snowball
530
544
  #
531
545
  # @option params [required, String] :role_arn
532
546
  # The `RoleARN` that you want to associate with this cluster. `RoleArn`
533
- # values are created by using the [CreateRole][1] API action in AWS
534
- # Identity and Access Management (IAM).
547
+ # values are created by using the [CreateRole][1] API action in Identity
548
+ # and Access Management (IAM).
535
549
  #
536
550
  #
537
551
  #
538
552
  # [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateRole.html
539
553
  #
540
554
  # @option params [required, String] :snowball_type
541
- # The type of AWS Snow Family device to use for this cluster.
555
+ # The type of Snow Family Devices to use for this cluster.
542
556
  #
543
- # <note markdown="1"> For cluster jobs, AWS Snow Family currently supports only the `EDGE`
544
- # device type.
557
+ # <note markdown="1"> For cluster jobs, Amazon Web Services Snow Family currently supports
558
+ # only the `EDGE` device type.
545
559
  #
546
560
  # </note>
547
561
  #
@@ -592,7 +606,7 @@ module Aws::Snowball
592
606
  # in most regions.
593
607
  #
594
608
  # @option params [Types::TaxDocuments] :tax_documents
595
- # The tax documents required in your AWS Region.
609
+ # The tax documents required in your Amazon Web Services Region.
596
610
  #
597
611
  # @option params [String] :remote_management
598
612
  # Allows you to securely operate and manage Snow devices in a cluster
@@ -682,6 +696,10 @@ module Aws::Snowball
682
696
  # storage_limit: 1,
683
697
  # storage_unit: "TB", # accepts TB
684
698
  # },
699
+ # tgw_on_device_service: {
700
+ # storage_limit: 1,
701
+ # storage_unit: "TB", # accepts TB
702
+ # },
685
703
  # },
686
704
  # description: "String",
687
705
  # address_id: "AddressId", # required
@@ -717,25 +735,26 @@ module Aws::Snowball
717
735
  end
718
736
 
719
737
  # Creates a job to import or export data between Amazon S3 and your
720
- # on-premises data center. Your AWS account must have the right trust
721
- # policies and permissions in place to create a job for a Snow device.
722
- # If you're creating a job for a node in a cluster, you only need to
723
- # provide the `clusterId` value; the other job attributes are inherited
724
- # from the cluster.
738
+ # on-premises data center. Your Amazon Web Services account must have
739
+ # the right trust policies and permissions in place to create a job for
740
+ # a Snow device. If you're creating a job for a node in a cluster, you
741
+ # only need to provide the `clusterId` value; the other job attributes
742
+ # are inherited from the cluster.
725
743
  #
726
744
  # <note markdown="1"> Only the Snowball; Edge device type is supported when ordering
727
745
  # clustered jobs.
728
746
  #
729
747
  # The device capacity is optional.
730
748
  #
731
- # Availability of device types differ by AWS Region. For more
732
- # information about Region availability, see [AWS Regional Services][1].
749
+ # Availability of device types differ by Amazon Web Services Region. For
750
+ # more information about Region availability, see [Amazon Web Services
751
+ # Regional Services][1].
733
752
  #
734
753
  # </note>
735
754
  #
736
755
  #
737
756
  #
738
- # **AWS Snow Family device types and their capacities.**
757
+ # **Snow Family Devices and their capacities.**
739
758
  #
740
759
  # * Snow Family device type: **SNC1\_SSD**
741
760
  #
@@ -793,7 +812,7 @@ module Aws::Snowball
793
812
  # * Description: Original Snowball device
794
813
  #
795
814
  # <note markdown="1"> This device is only available in the Ningxia, Beijing, and
796
- # Singapore AWS Regions.
815
+ # Singapore Amazon Web Services Region
797
816
  #
798
817
  # </note>
799
818
  #
@@ -806,7 +825,7 @@ module Aws::Snowball
806
825
  # * Description: Original Snowball device
807
826
  #
808
827
  # <note markdown="1"> This device is only available in the Ningxia, Beijing, and
809
- # Singapore AWS Regions.
828
+ # Singapore Amazon Web Services Region.
810
829
  #
811
830
  # </note>
812
831
  #
@@ -832,8 +851,9 @@ module Aws::Snowball
832
851
  #
833
852
  # @option params [Types::OnDeviceServiceConfiguration] :on_device_service_configuration
834
853
  # Specifies the service or services on the Snow Family device that your
835
- # transferred data will be exported from or imported into. AWS Snow
836
- # Family supports Amazon S3 and NFS (Network File System).
854
+ # transferred data will be exported from or imported into. Amazon Web
855
+ # Services Snow Family supports Amazon S3 and NFS (Network File System)
856
+ # and the Amazon Web Services Storage Gateway service Tape Gateway type.
837
857
  #
838
858
  # @option params [String] :description
839
859
  # Defines an optional description of this specific job, for example
@@ -844,8 +864,8 @@ module Aws::Snowball
844
864
  #
845
865
  # @option params [String] :kms_key_arn
846
866
  # The `KmsKeyARN` that you want to associate with this job. `KmsKeyARN`s
847
- # are created using the [CreateKey][1] AWS Key Management Service (KMS)
848
- # API action.
867
+ # are created using the [CreateKey][1] Key Management Service (KMS) API
868
+ # action.
849
869
  #
850
870
  #
851
871
  #
@@ -853,8 +873,8 @@ module Aws::Snowball
853
873
  #
854
874
  # @option params [String] :role_arn
855
875
  # The `RoleARN` that you want to associate with this job. `RoleArn`s are
856
- # created using the [CreateRole][1] AWS Identity and Access Management
857
- # (IAM) API action.
876
+ # created using the [CreateRole][1] Identity and Access Management (IAM)
877
+ # API action.
858
878
  #
859
879
  #
860
880
  #
@@ -899,15 +919,15 @@ module Aws::Snowball
899
919
  # job attributes are inherited from the cluster.
900
920
  #
901
921
  # @option params [String] :snowball_type
902
- # The type of AWS Snow Family device to use for this job.
922
+ # The type of Snow Family Devices to use for this job.
903
923
  #
904
- # <note markdown="1"> For cluster jobs, AWS Snow Family currently supports only the `EDGE`
905
- # device type.
924
+ # <note markdown="1"> For cluster jobs, Amazon Web Services Snow Family currently supports
925
+ # only the `EDGE` device type.
906
926
  #
907
927
  # </note>
908
928
  #
909
- # The type of AWS Snow device to use for this job. Currently, the only
910
- # supported device type for cluster jobs is `EDGE`.
929
+ # The type of Amazon Web Services Snow device to use for this job.
930
+ # Currently, the only supported device type for cluster jobs is `EDGE`.
911
931
  #
912
932
  # For more information, see [Snowball Edge Device Options][1] in the
913
933
  # Snowball Edge Developer Guide.
@@ -927,10 +947,10 @@ module Aws::Snowball
927
947
  # most Regions.
928
948
  #
929
949
  # @option params [Types::TaxDocuments] :tax_documents
930
- # The tax documents required in your AWS Region.
950
+ # The tax documents required in your Amazon Web Services Region.
931
951
  #
932
952
  # @option params [Types::DeviceConfiguration] :device_configuration
933
- # Defines the device configuration for an AWS Snowcone job.
953
+ # Defines the device configuration for an Snowcone job.
934
954
  #
935
955
  # For more information, see
936
956
  # "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html"
@@ -1031,6 +1051,10 @@ module Aws::Snowball
1031
1051
  # storage_limit: 1,
1032
1052
  # storage_unit: "TB", # accepts TB
1033
1053
  # },
1054
+ # tgw_on_device_service: {
1055
+ # storage_limit: 1,
1056
+ # storage_unit: "TB", # accepts TB
1057
+ # },
1034
1058
  # },
1035
1059
  # description: "String",
1036
1060
  # address_id: "AddressId",
@@ -1077,8 +1101,8 @@ module Aws::Snowball
1077
1101
 
1078
1102
  # Creates a job with the long-term usage option for a device. The
1079
1103
  # long-term usage is a 1-year or 3-year long-term pricing type for the
1080
- # device. You are billed upfront, and AWS provides discounts for
1081
- # long-term pricing.
1104
+ # device. You are billed upfront, and Amazon Web Services provides
1105
+ # discounts for long-term pricing.
1082
1106
  #
1083
1107
  # @option params [required, String] :long_term_pricing_type
1084
1108
  # The type of long-term pricing option you want for the device, either
@@ -1089,8 +1113,7 @@ module Aws::Snowball
1089
1113
  # should be renewed.
1090
1114
  #
1091
1115
  # @option params [String] :snowball_type
1092
- # The type of AWS Snow Family device to use for the long-term pricing
1093
- # job.
1116
+ # The type of Snow Family Devices to use for the long-term pricing job.
1094
1117
  #
1095
1118
  # @return [Types::CreateLongTermPricingResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1096
1119
  #
@@ -1118,7 +1141,7 @@ module Aws::Snowball
1118
1141
  end
1119
1142
 
1120
1143
  # Creates a shipping label that will be used to return the Snow device
1121
- # to AWS.
1144
+ # to Amazon Web Services.
1122
1145
  #
1123
1146
  # @option params [required, String] :job_id
1124
1147
  # The ID for a job that you want to create the return shipping label
@@ -1126,9 +1149,9 @@ module Aws::Snowball
1126
1149
  #
1127
1150
  # @option params [String] :shipping_option
1128
1151
  # The shipping speed for a particular job. This speed doesn't dictate
1129
- # how soon the device is returned to AWS. This speed represents how
1130
- # quickly it moves to its destination while in transit. Regional
1131
- # shipping speeds are as follows:
1152
+ # how soon the device is returned to Amazon Web Services. This speed
1153
+ # represents how quickly it moves to its destination while in transit.
1154
+ # Regional shipping speeds are as follows:
1132
1155
  #
1133
1156
  # @return [Types::CreateReturnShippingLabelResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1134
1157
  #
@@ -1390,6 +1413,8 @@ module Aws::Snowball
1390
1413
  # resp.cluster_metadata.tax_documents.ind.gstin #=> String
1391
1414
  # resp.cluster_metadata.on_device_service_configuration.nfs_on_device_service.storage_limit #=> Integer
1392
1415
  # resp.cluster_metadata.on_device_service_configuration.nfs_on_device_service.storage_unit #=> String, one of "TB"
1416
+ # resp.cluster_metadata.on_device_service_configuration.tgw_on_device_service.storage_limit #=> Integer
1417
+ # resp.cluster_metadata.on_device_service_configuration.tgw_on_device_service.storage_unit #=> String, one of "TB"
1393
1418
  #
1394
1419
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DescribeCluster AWS API Documentation
1395
1420
  #
@@ -1510,6 +1535,8 @@ module Aws::Snowball
1510
1535
  # resp.job_metadata.long_term_pricing_id #=> String
1511
1536
  # resp.job_metadata.on_device_service_configuration.nfs_on_device_service.storage_limit #=> Integer
1512
1537
  # resp.job_metadata.on_device_service_configuration.nfs_on_device_service.storage_unit #=> String, one of "TB"
1538
+ # resp.job_metadata.on_device_service_configuration.tgw_on_device_service.storage_limit #=> Integer
1539
+ # resp.job_metadata.on_device_service_configuration.tgw_on_device_service.storage_unit #=> String, one of "TB"
1513
1540
  # resp.sub_job_metadata #=> Array
1514
1541
  # resp.sub_job_metadata[0].job_id #=> String
1515
1542
  # resp.sub_job_metadata[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
@@ -1559,6 +1586,8 @@ module Aws::Snowball
1559
1586
  # resp.sub_job_metadata[0].long_term_pricing_id #=> String
1560
1587
  # resp.sub_job_metadata[0].on_device_service_configuration.nfs_on_device_service.storage_limit #=> Integer
1561
1588
  # resp.sub_job_metadata[0].on_device_service_configuration.nfs_on_device_service.storage_unit #=> String, one of "TB"
1589
+ # resp.sub_job_metadata[0].on_device_service_configuration.tgw_on_device_service.storage_limit #=> Integer
1590
+ # resp.sub_job_metadata[0].on_device_service_configuration.tgw_on_device_service.storage_unit #=> String, one of "TB"
1562
1591
  #
1563
1592
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DescribeJob AWS API Documentation
1564
1593
  #
@@ -1570,7 +1599,7 @@ module Aws::Snowball
1570
1599
  end
1571
1600
 
1572
1601
  # Information on the shipping label of a Snow device that is being
1573
- # returned to AWS.
1602
+ # returned to Amazon Web Services.
1574
1603
  #
1575
1604
  # @option params [required, String] :job_id
1576
1605
  # The automatically generated ID for a job, for example
@@ -1580,6 +1609,7 @@ module Aws::Snowball
1580
1609
  #
1581
1610
  # * {Types::DescribeReturnShippingLabelResult#status #status} => String
1582
1611
  # * {Types::DescribeReturnShippingLabelResult#expiration_date #expiration_date} => Time
1612
+ # * {Types::DescribeReturnShippingLabelResult#return_shipping_label_uri #return_shipping_label_uri} => String
1583
1613
  #
1584
1614
  # @example Request syntax with placeholder values
1585
1615
  #
@@ -1591,6 +1621,7 @@ module Aws::Snowball
1591
1621
  #
1592
1622
  # resp.status #=> String, one of "InProgress", "TimedOut", "Succeeded", "Failed"
1593
1623
  # resp.expiration_date #=> Time
1624
+ # resp.return_shipping_label_uri #=> String
1594
1625
  #
1595
1626
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DescribeReturnShippingLabel AWS API Documentation
1596
1627
  #
@@ -1739,7 +1770,7 @@ module Aws::Snowball
1739
1770
  #
1740
1771
  # The default service limit for the number of Snow devices that you can
1741
1772
  # have at one time is 1. If you want to increase your service limit,
1742
- # contact AWS Support.
1773
+ # contact Amazon Web Services Support.
1743
1774
  #
1744
1775
  # @return [Types::GetSnowballUsageResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1745
1776
  #
@@ -1982,11 +2013,11 @@ module Aws::Snowball
1982
2013
  end
1983
2014
 
1984
2015
  # This action returns a list of the different Amazon EC2 Amazon Machine
1985
- # Images (AMIs) that are owned by your AWS account that would be
1986
- # supported for use on a Snow device. Currently, supported AMIs are
1987
- # based on the CentOS 7 (x86\_64) - with Updates HVM, Ubuntu Server
2016
+ # Images (AMIs) that are owned by your Amazon Web Services accountthat
2017
+ # would be supported for use on a Snow device. Currently, supported AMIs
2018
+ # are based on the CentOS 7 (x86\_64) - with Updates HVM, Ubuntu Server
1988
2019
  # 14.04 LTS (HVM), and Ubuntu 16.04 LTS - Xenial (HVM) images, available
1989
- # on the AWS Marketplace.
2020
+ # on the Amazon Web Services Marketplace.
1990
2021
  #
1991
2022
  # @option params [Integer] :max_results
1992
2023
  # The maximum number of results for the list of compatible images.
@@ -2159,7 +2190,7 @@ module Aws::Snowball
2159
2190
  # @option params [String] :role_arn
2160
2191
  # The new role Amazon Resource Name (ARN) that you want to associate
2161
2192
  # with this cluster. To create a role ARN, use the [CreateRole][1] API
2162
- # action in AWS Identity and Access Management (IAM).
2193
+ # action in Identity and Access Management (IAM).
2163
2194
  #
2164
2195
  #
2165
2196
  #
@@ -2174,8 +2205,9 @@ module Aws::Snowball
2174
2205
  #
2175
2206
  # @option params [Types::OnDeviceServiceConfiguration] :on_device_service_configuration
2176
2207
  # Specifies the service or services on the Snow Family device that your
2177
- # transferred data will be exported from or imported into. AWS Snow
2178
- # Family supports Amazon S3 and NFS (Network File System).
2208
+ # transferred data will be exported from or imported into. Amazon Web
2209
+ # Services Snow Family device clusters support Amazon S3 and NFS
2210
+ # (Network File System).
2179
2211
  #
2180
2212
  # @option params [String] :address_id
2181
2213
  # The ID of the updated Address object.
@@ -2202,7 +2234,7 @@ module Aws::Snowball
2202
2234
  # resp = client.update_cluster({
2203
2235
  # address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b",
2204
2236
  # cluster_id: "CID123e4567-e89b-12d3-a456-426655440000",
2205
- # description: "Updated the address to send this to image processing - RJ",
2237
+ # description: "updated-cluster-name",
2206
2238
  # })
2207
2239
  #
2208
2240
  # @example Request syntax with placeholder values
@@ -2249,6 +2281,10 @@ module Aws::Snowball
2249
2281
  # storage_limit: 1,
2250
2282
  # storage_unit: "TB", # accepts TB
2251
2283
  # },
2284
+ # tgw_on_device_service: {
2285
+ # storage_limit: 1,
2286
+ # storage_unit: "TB", # accepts TB
2287
+ # },
2252
2288
  # },
2253
2289
  # address_id: "AddressId",
2254
2290
  # shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
@@ -2280,8 +2316,8 @@ module Aws::Snowball
2280
2316
  #
2281
2317
  # @option params [String] :role_arn
2282
2318
  # The new role Amazon Resource Name (ARN) that you want to associate
2283
- # with this job. To create a role ARN, use the [CreateRole][1]AWS
2284
- # Identity and Access Management (IAM) API action.
2319
+ # with this job. To create a role ARN, use the [CreateRole][1]Identity
2320
+ # and Access Management (IAM) API action.
2285
2321
  #
2286
2322
  #
2287
2323
  #
@@ -2295,8 +2331,9 @@ module Aws::Snowball
2295
2331
  #
2296
2332
  # @option params [Types::OnDeviceServiceConfiguration] :on_device_service_configuration
2297
2333
  # Specifies the service or services on the Snow Family device that your
2298
- # transferred data will be exported from or imported into. AWS Snow
2299
- # Family supports Amazon S3 and NFS (Network File System).
2334
+ # transferred data will be exported from or imported into. Amazon Web
2335
+ # Services Snow Family supports Amazon S3 and NFS (Network File System)
2336
+ # and the Amazon Web Services Storage Gateway service Tape Gateway type.
2300
2337
  #
2301
2338
  # @option params [String] :address_id
2302
2339
  # The ID of the updated Address object.
@@ -2332,7 +2369,7 @@ module Aws::Snowball
2332
2369
  #
2333
2370
  # resp = client.update_job({
2334
2371
  # address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b",
2335
- # description: "Upgraded to Edge, shipped to Finance Dept, and requested faster shipping speed - TS.",
2372
+ # description: "updated-job-name",
2336
2373
  # job_id: "JID123e4567-e89b-12d3-a456-426655440000",
2337
2374
  # shipping_option: "NEXT_DAY",
2338
2375
  # snowball_capacity_preference: "T100",
@@ -2386,6 +2423,10 @@ module Aws::Snowball
2386
2423
  # storage_limit: 1,
2387
2424
  # storage_unit: "TB", # accepts TB
2388
2425
  # },
2426
+ # tgw_on_device_service: {
2427
+ # storage_limit: 1,
2428
+ # storage_unit: "TB", # accepts TB
2429
+ # },
2389
2430
  # },
2390
2431
  # address_id: "AddressId",
2391
2432
  # shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
@@ -2414,7 +2455,8 @@ module Aws::Snowball
2414
2455
  #
2415
2456
  # Set to `RECEIVED` when the device arrives at your location.
2416
2457
  #
2417
- # Set to `RETURNED` when you have returned the device to AWS.
2458
+ # Set to `RETURNED` when you have returned the device to Amazon Web
2459
+ # Services.
2418
2460
  #
2419
2461
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2420
2462
  #
@@ -2480,7 +2522,7 @@ module Aws::Snowball
2480
2522
  params: params,
2481
2523
  config: config)
2482
2524
  context[:gem_name] = 'aws-sdk-snowball'
2483
- context[:gem_version] = '1.44.0'
2525
+ context[:gem_version] = '1.48.0'
2484
2526
  Seahorse::Client::Request.new(handlers, context)
2485
2527
  end
2486
2528
 
@@ -129,6 +129,7 @@ module Aws::Snowball
129
129
  StorageLimit = Shapes::IntegerShape.new(name: 'StorageLimit')
130
130
  StorageUnit = Shapes::StringShape.new(name: 'StorageUnit')
131
131
  String = Shapes::StringShape.new(name: 'String')
132
+ TGWOnDeviceServiceConfiguration = Shapes::StructureShape.new(name: 'TGWOnDeviceServiceConfiguration')
132
133
  TargetOnDeviceService = Shapes::StructureShape.new(name: 'TargetOnDeviceService')
133
134
  TargetOnDeviceServiceList = Shapes::ListShape.new(name: 'TargetOnDeviceServiceList')
134
135
  TaxDocuments = Shapes::StructureShape.new(name: 'TaxDocuments')
@@ -310,6 +311,7 @@ module Aws::Snowball
310
311
 
311
312
  DescribeReturnShippingLabelResult.add_member(:status, Shapes::ShapeRef.new(shape: ShippingLabelStatus, location_name: "Status"))
312
313
  DescribeReturnShippingLabelResult.add_member(:expiration_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExpirationDate"))
314
+ DescribeReturnShippingLabelResult.add_member(:return_shipping_label_uri, Shapes::ShapeRef.new(shape: String, location_name: "ReturnShippingLabelURI"))
313
315
  DescribeReturnShippingLabelResult.struct_class = Types::DescribeReturnShippingLabelResult
314
316
 
315
317
  DeviceConfiguration.add_member(:snowcone_device_configuration, Shapes::ShapeRef.new(shape: SnowconeDeviceConfiguration, location_name: "SnowconeDeviceConfiguration"))
@@ -501,6 +503,7 @@ module Aws::Snowball
501
503
  Notification.struct_class = Types::Notification
502
504
 
503
505
  OnDeviceServiceConfiguration.add_member(:nfs_on_device_service, Shapes::ShapeRef.new(shape: NFSOnDeviceServiceConfiguration, location_name: "NFSOnDeviceService"))
506
+ OnDeviceServiceConfiguration.add_member(:tgw_on_device_service, Shapes::ShapeRef.new(shape: TGWOnDeviceServiceConfiguration, location_name: "TGWOnDeviceService"))
504
507
  OnDeviceServiceConfiguration.struct_class = Types::OnDeviceServiceConfiguration
505
508
 
506
509
  ReturnShippingLabelAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
@@ -525,6 +528,10 @@ module Aws::Snowball
525
528
  SnowconeDeviceConfiguration.add_member(:wireless_connection, Shapes::ShapeRef.new(shape: WirelessConnection, location_name: "WirelessConnection"))
526
529
  SnowconeDeviceConfiguration.struct_class = Types::SnowconeDeviceConfiguration
527
530
 
531
+ TGWOnDeviceServiceConfiguration.add_member(:storage_limit, Shapes::ShapeRef.new(shape: StorageLimit, location_name: "StorageLimit"))
532
+ TGWOnDeviceServiceConfiguration.add_member(:storage_unit, Shapes::ShapeRef.new(shape: StorageUnit, location_name: "StorageUnit"))
533
+ TGWOnDeviceServiceConfiguration.struct_class = Types::TGWOnDeviceServiceConfiguration
534
+
528
535
  TargetOnDeviceService.add_member(:service_name, Shapes::ShapeRef.new(shape: DeviceServiceName, location_name: "ServiceName"))
529
536
  TargetOnDeviceService.add_member(:transfer_option, Shapes::ShapeRef.new(shape: TransferOption, location_name: "TransferOption"))
530
537
  TargetOnDeviceService.struct_class = Types::TargetOnDeviceService
@@ -231,7 +231,7 @@ module Aws::Snowball
231
231
  # @!attribute [rw] kms_key_arn
232
232
  # The `KmsKeyARN` Amazon Resource Name (ARN) associated with this
233
233
  # cluster. This ARN was created using the [CreateKey][1] API action in
234
- # AWS Key Management Service (AWS KMS).
234
+ # Key Management Service (KMS.
235
235
  #
236
236
  #
237
237
  #
@@ -240,7 +240,7 @@ module Aws::Snowball
240
240
  #
241
241
  # @!attribute [rw] role_arn
242
242
  # The role ARN associated with this cluster. This ARN was created
243
- # using the [CreateRole][1] API action in AWS Identity and Access
243
+ # using the [CreateRole][1] API action in Identity and Access
244
244
  # Management (IAM).
245
245
  #
246
246
  #
@@ -258,10 +258,10 @@ module Aws::Snowball
258
258
  # @return [String]
259
259
  #
260
260
  # @!attribute [rw] snowball_type
261
- # The type of AWS Snow device to use for this cluster.
261
+ # The type of Snowcone device to use for this cluster.
262
262
  #
263
- # <note markdown="1"> For cluster jobs, AWS Snow Family currently supports only the `EDGE`
264
- # device type.
263
+ # <note markdown="1"> For cluster jobs, Amazon Web Services Snow Family currently supports
264
+ # only the `EDGE` device type.
265
265
  #
266
266
  # </note>
267
267
  # @return [String]
@@ -311,12 +311,12 @@ module Aws::Snowball
311
311
  # @return [String]
312
312
  #
313
313
  # @!attribute [rw] tax_documents
314
- # The tax documents required in your AWS Region.
314
+ # The tax documents required in your Amazon Web Services Region.
315
315
  # @return [Types::TaxDocuments]
316
316
  #
317
317
  # @!attribute [rw] on_device_service_configuration
318
318
  # Represents metadata and configuration settings for services on an
319
- # AWS Snow Family device.
319
+ # Amazon Web Services Snow Family device.
320
320
  # @return [Types::OnDeviceServiceConfiguration]
321
321
  #
322
322
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/ClusterMetadata AWS API Documentation
@@ -367,6 +367,8 @@ module Aws::Snowball
367
367
  # than once when other requests are not completed.
368
368
  #
369
369
  # @!attribute [rw] conflict_resource
370
+ # You get this resource when you call `CreateReturnShippingLabel` more
371
+ # than once when other requests are not completed. .
370
372
  # @return [String]
371
373
  #
372
374
  # @!attribute [rw] message
@@ -472,6 +474,10 @@ module Aws::Snowball
472
474
  # storage_limit: 1,
473
475
  # storage_unit: "TB", # accepts TB
474
476
  # },
477
+ # tgw_on_device_service: {
478
+ # storage_limit: 1,
479
+ # storage_unit: "TB", # accepts TB
480
+ # },
475
481
  # },
476
482
  # description: "String",
477
483
  # address_id: "AddressId", # required
@@ -506,14 +512,15 @@ module Aws::Snowball
506
512
  #
507
513
  # @!attribute [rw] resources
508
514
  # The resources associated with the cluster job. These resources
509
- # include Amazon S3 buckets and optional AWS Lambda functions written
510
- # in the Python language.
515
+ # include Amazon S3 buckets and optional Lambda functions written in
516
+ # the Python language.
511
517
  # @return [Types::JobResource]
512
518
  #
513
519
  # @!attribute [rw] on_device_service_configuration
514
520
  # Specifies the service or services on the Snow Family device that
515
- # your transferred data will be exported from or imported into. AWS
516
- # Snow Family supports Amazon S3 and NFS (Network File System).
521
+ # your transferred data will be exported from or imported into. Amazon
522
+ # Web Services Snow Family device clusters support Amazon S3 and NFS
523
+ # (Network File System).
517
524
  # @return [Types::OnDeviceServiceConfiguration]
518
525
  #
519
526
  # @!attribute [rw] description
@@ -528,7 +535,7 @@ module Aws::Snowball
528
535
  # @!attribute [rw] kms_key_arn
529
536
  # The `KmsKeyARN` value that you want to associate with this cluster.
530
537
  # `KmsKeyARN` values are created by using the [CreateKey][1] API
531
- # action in AWS Key Management Service (AWS KMS).
538
+ # action in Key Management Service (KMS).
532
539
  #
533
540
  #
534
541
  #
@@ -538,7 +545,7 @@ module Aws::Snowball
538
545
  # @!attribute [rw] role_arn
539
546
  # The `RoleARN` that you want to associate with this cluster.
540
547
  # `RoleArn` values are created by using the [CreateRole][1] API action
541
- # in AWS Identity and Access Management (IAM).
548
+ # in Identity and Access Management (IAM).
542
549
  #
543
550
  #
544
551
  #
@@ -546,10 +553,10 @@ module Aws::Snowball
546
553
  # @return [String]
547
554
  #
548
555
  # @!attribute [rw] snowball_type
549
- # The type of AWS Snow Family device to use for this cluster.
556
+ # The type of Snow Family Devices to use for this cluster.
550
557
  #
551
- # <note markdown="1"> For cluster jobs, AWS Snow Family currently supports only the `EDGE`
552
- # device type.
558
+ # <note markdown="1"> For cluster jobs, Amazon Web Services Snow Family currently supports
559
+ # only the `EDGE` device type.
553
560
  #
554
561
  # </note>
555
562
  #
@@ -606,7 +613,7 @@ module Aws::Snowball
606
613
  # @return [String]
607
614
  #
608
615
  # @!attribute [rw] tax_documents
609
- # The tax documents required in your AWS Region.
616
+ # The tax documents required in your Amazon Web Services Region.
610
617
  # @return [Types::TaxDocuments]
611
618
  #
612
619
  # @!attribute [rw] remote_management
@@ -692,6 +699,10 @@ module Aws::Snowball
692
699
  # storage_limit: 1,
693
700
  # storage_unit: "TB", # accepts TB
694
701
  # },
702
+ # tgw_on_device_service: {
703
+ # storage_limit: 1,
704
+ # storage_unit: "TB", # accepts TB
705
+ # },
695
706
  # },
696
707
  # description: "String",
697
708
  # address_id: "AddressId",
@@ -743,8 +754,10 @@ module Aws::Snowball
743
754
  #
744
755
  # @!attribute [rw] on_device_service_configuration
745
756
  # Specifies the service or services on the Snow Family device that
746
- # your transferred data will be exported from or imported into. AWS
747
- # Snow Family supports Amazon S3 and NFS (Network File System).
757
+ # your transferred data will be exported from or imported into. Amazon
758
+ # Web Services Snow Family supports Amazon S3 and NFS (Network File
759
+ # System) and the Amazon Web Services Storage Gateway service Tape
760
+ # Gateway type.
748
761
  # @return [Types::OnDeviceServiceConfiguration]
749
762
  #
750
763
  # @!attribute [rw] description
@@ -758,7 +771,7 @@ module Aws::Snowball
758
771
  #
759
772
  # @!attribute [rw] kms_key_arn
760
773
  # The `KmsKeyARN` that you want to associate with this job.
761
- # `KmsKeyARN`s are created using the [CreateKey][1] AWS Key Management
774
+ # `KmsKeyARN`s are created using the [CreateKey][1] Key Management
762
775
  # Service (KMS) API action.
763
776
  #
764
777
  #
@@ -768,8 +781,8 @@ module Aws::Snowball
768
781
  #
769
782
  # @!attribute [rw] role_arn
770
783
  # The `RoleARN` that you want to associate with this job. `RoleArn`s
771
- # are created using the [CreateRole][1] AWS Identity and Access
772
- # Management (IAM) API action.
784
+ # are created using the [CreateRole][1] Identity and Access Management
785
+ # (IAM) API action.
773
786
  #
774
787
  #
775
788
  #
@@ -820,15 +833,16 @@ module Aws::Snowball
820
833
  # @return [String]
821
834
  #
822
835
  # @!attribute [rw] snowball_type
823
- # The type of AWS Snow Family device to use for this job.
836
+ # The type of Snow Family Devices to use for this job.
824
837
  #
825
- # <note markdown="1"> For cluster jobs, AWS Snow Family currently supports only the `EDGE`
826
- # device type.
838
+ # <note markdown="1"> For cluster jobs, Amazon Web Services Snow Family currently supports
839
+ # only the `EDGE` device type.
827
840
  #
828
841
  # </note>
829
842
  #
830
- # The type of AWS Snow device to use for this job. Currently, the only
831
- # supported device type for cluster jobs is `EDGE`.
843
+ # The type of Amazon Web Services Snow device to use for this job.
844
+ # Currently, the only supported device type for cluster jobs is
845
+ # `EDGE`.
832
846
  #
833
847
  # For more information, see [Snowball Edge Device Options][1] in the
834
848
  # Snowball Edge Developer Guide.
@@ -850,11 +864,11 @@ module Aws::Snowball
850
864
  # @return [String]
851
865
  #
852
866
  # @!attribute [rw] tax_documents
853
- # The tax documents required in your AWS Region.
867
+ # The tax documents required in your Amazon Web Services Region.
854
868
  # @return [Types::TaxDocuments]
855
869
  #
856
870
  # @!attribute [rw] device_configuration
857
- # Defines the device configuration for an AWS Snowcone job.
871
+ # Defines the device configuration for an Snowcone job.
858
872
  #
859
873
  # For more information, see
860
874
  # "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html"
@@ -932,7 +946,7 @@ module Aws::Snowball
932
946
  # @return [Boolean]
933
947
  #
934
948
  # @!attribute [rw] snowball_type
935
- # The type of AWS Snow Family device to use for the long-term pricing
949
+ # The type of Snow Family Devices to use for the long-term pricing
936
950
  # job.
937
951
  # @return [String]
938
952
  #
@@ -973,9 +987,9 @@ module Aws::Snowball
973
987
  #
974
988
  # @!attribute [rw] shipping_option
975
989
  # The shipping speed for a particular job. This speed doesn't dictate
976
- # how soon the device is returned to AWS. This speed represents how
977
- # quickly it moves to its destination while in transit. Regional
978
- # shipping speeds are as follows:
990
+ # how soon the device is returned to Amazon Web Services. This speed
991
+ # represents how quickly it moves to its destination while in transit.
992
+ # Regional shipping speeds are as follows:
979
993
  # @return [String]
980
994
  #
981
995
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/CreateReturnShippingLabelRequest AWS API Documentation
@@ -989,7 +1003,7 @@ module Aws::Snowball
989
1003
 
990
1004
  # @!attribute [rw] status
991
1005
  # The status information of the task on a Snow device that is being
992
- # returned to AWS.
1006
+ # returned to Amazon Web Services.
993
1007
  # @return [String]
994
1008
  #
995
1009
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/CreateReturnShippingLabelResult AWS API Documentation
@@ -1001,8 +1015,9 @@ module Aws::Snowball
1001
1015
  end
1002
1016
 
1003
1017
  # Defines the real-time status of a Snow device's data transfer while
1004
- # the device is at AWS. This data is only available while a job has a
1005
- # `JobState` value of `InProgress`, for both import and export jobs.
1018
+ # the device is at Amazon Web Services. This data is only available
1019
+ # while a job has a `JobState` value of `InProgress`, for both import
1020
+ # and export jobs.
1006
1021
  #
1007
1022
  # @!attribute [rw] bytes_transferred
1008
1023
  # The number of bytes transferred between a Snow device and Amazon S3.
@@ -1210,18 +1225,24 @@ module Aws::Snowball
1210
1225
 
1211
1226
  # @!attribute [rw] status
1212
1227
  # The status information of the task on a Snow device that is being
1213
- # returned to AWS.
1228
+ # returned to Amazon Web Services.
1214
1229
  # @return [String]
1215
1230
  #
1216
1231
  # @!attribute [rw] expiration_date
1217
1232
  # The expiration date of the current return shipping label.
1218
1233
  # @return [Time]
1219
1234
  #
1235
+ # @!attribute [rw] return_shipping_label_uri
1236
+ # The pre-signed Amazon S3 URI used to download the return shipping
1237
+ # label.
1238
+ # @return [String]
1239
+ #
1220
1240
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DescribeReturnShippingLabelResult AWS API Documentation
1221
1241
  #
1222
1242
  class DescribeReturnShippingLabelResult < Struct.new(
1223
1243
  :status,
1224
- :expiration_date)
1244
+ :expiration_date,
1245
+ :return_shipping_label_uri)
1225
1246
  SENSITIVE = []
1226
1247
  include Aws::Structure
1227
1248
  end
@@ -1240,8 +1261,8 @@ module Aws::Snowball
1240
1261
  # }
1241
1262
  #
1242
1263
  # @!attribute [rw] snowcone_device_configuration
1243
- # Returns information about the device configuration for an AWS
1244
- # Snowcone job.
1264
+ # Returns information about the device configuration for an Snowcone
1265
+ # job.
1245
1266
  # @return [Types::SnowconeDeviceConfiguration]
1246
1267
  #
1247
1268
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DeviceConfiguration AWS API Documentation
@@ -1255,7 +1276,7 @@ module Aws::Snowball
1255
1276
  # A JSON-formatted object that contains the IDs for an Amazon Machine
1256
1277
  # Image (AMI), including the Amazon EC2 AMI ID and the Snow device AMI
1257
1278
  # ID. Each AMI has these two IDs to simplify identifying the AMI in both
1258
- # the AWS Cloud and on the device.
1279
+ # the Amazon Web Services Cloud and on the device.
1259
1280
  #
1260
1281
  # @note When making an API call, you may pass Ec2AmiResource
1261
1282
  # data as a hash:
@@ -1307,7 +1328,7 @@ module Aws::Snowball
1307
1328
  #
1308
1329
  # @!attribute [rw] event_resource_arn
1309
1330
  # The Amazon Resource Name (ARN) for any local Amazon S3 resource that
1310
- # is an AWS Lambda function's event trigger associated with this job.
1331
+ # is an Lambda function's event trigger associated with this job.
1311
1332
  # @return [String]
1312
1333
  #
1313
1334
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/EventTriggerDefinition AWS API Documentation
@@ -1444,7 +1465,7 @@ module Aws::Snowball
1444
1465
  include Aws::Structure
1445
1466
  end
1446
1467
 
1447
- # The tax documents required in AWS Regions in India.
1468
+ # The tax documents required in Amazon Web Services Region in India.
1448
1469
  #
1449
1470
  # @note When making an API call, you may pass INDTaxDocuments
1450
1471
  # data as a hash:
@@ -1454,8 +1475,8 @@ module Aws::Snowball
1454
1475
  # }
1455
1476
  #
1456
1477
  # @!attribute [rw] gstin
1457
- # The Goods and Services Tax (GST) documents required in AWS Regions
1458
- # in India.
1478
+ # The Goods and Services Tax (GST) documents required in Amazon Web
1479
+ # Services Region in India.
1459
1480
  # @return [String]
1460
1481
  #
1461
1482
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/INDTaxDocuments AWS API Documentation
@@ -1683,9 +1704,9 @@ module Aws::Snowball
1683
1704
  # @return [String]
1684
1705
  #
1685
1706
  # @!attribute [rw] kms_key_arn
1686
- # The Amazon Resource Name (ARN) for the AWS Key Management Service
1687
- # (AWS KMS) key associated with this job. This ARN was created using
1688
- # the [CreateKey][1] API action in AWS KMS.
1707
+ # The Amazon Resource Name (ARN) for the Key Management Service (KMS)
1708
+ # key associated with this job. This ARN was created using the
1709
+ # [CreateKey][1] API action in KMS.
1689
1710
  #
1690
1711
  #
1691
1712
  #
@@ -1694,8 +1715,7 @@ module Aws::Snowball
1694
1715
  #
1695
1716
  # @!attribute [rw] role_arn
1696
1717
  # The role ARN associated with this job. This ARN was created using
1697
- # the [CreateRole][1] API action in AWS Identity and Access Management
1698
- # (IAM).
1718
+ # the [CreateRole][1] API action in Identity and Access Management.
1699
1719
  #
1700
1720
  #
1701
1721
  #
@@ -1732,9 +1752,9 @@ module Aws::Snowball
1732
1752
  #
1733
1753
  # @!attribute [rw] data_transfer_progress
1734
1754
  # A value that defines the real-time status of a Snow device's data
1735
- # transfer while the device is at AWS. This data is only available
1736
- # while a job has a `JobState` value of `InProgress`, for both import
1737
- # and export jobs.
1755
+ # transfer while the device is at Amazon Web Services. This data is
1756
+ # only available while a job has a `JobState` value of `InProgress`,
1757
+ # for both import and export jobs.
1738
1758
  # @return [Types::DataTransfer]
1739
1759
  #
1740
1760
  # @!attribute [rw] job_log_info
@@ -1757,8 +1777,8 @@ module Aws::Snowball
1757
1777
  # @return [String]
1758
1778
  #
1759
1779
  # @!attribute [rw] tax_documents
1760
- # The metadata associated with the tax documents required in your AWS
1761
- # Region.
1780
+ # The metadata associated with the tax documents required in your
1781
+ # Amazon Web Services Region.
1762
1782
  # @return [Types::TaxDocuments]
1763
1783
  #
1764
1784
  # @!attribute [rw] device_configuration
@@ -1779,7 +1799,7 @@ module Aws::Snowball
1779
1799
  #
1780
1800
  # @!attribute [rw] on_device_service_configuration
1781
1801
  # Represents metadata and configuration settings for services on an
1782
- # AWS Snow Family device.
1802
+ # Amazon Web Services Snow Family device.
1783
1803
  # @return [Types::OnDeviceServiceConfiguration]
1784
1804
  #
1785
1805
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/JobMetadata AWS API Documentation
@@ -1811,9 +1831,10 @@ module Aws::Snowball
1811
1831
  include Aws::Structure
1812
1832
  end
1813
1833
 
1814
- # Contains an array of AWS resource objects. Each object represents an
1815
- # Amazon S3 bucket, an AWS Lambda function, or an Amazon Machine Image
1816
- # (AMI) based on Amazon EC2 that is associated with a particular job.
1834
+ # Contains an array of Amazon Web Services resource objects. Each object
1835
+ # represents an Amazon S3 bucket, an Lambda function, or an Amazon
1836
+ # Machine Image (AMI) based on Amazon EC2 that is associated with a
1837
+ # particular job.
1817
1838
  #
1818
1839
  # @note When making an API call, you may pass JobResource
1819
1840
  # data as a hash:
@@ -1874,7 +1895,7 @@ module Aws::Snowball
1874
1895
  include Aws::Structure
1875
1896
  end
1876
1897
 
1877
- # The provided AWS Key Management Service key lacks the permissions to
1898
+ # The provided Key Management Service key lacks the permissions to
1878
1899
  # perform the specified CreateJob or UpdateJob action.
1879
1900
  #
1880
1901
  # @!attribute [rw] message
@@ -1935,9 +1956,9 @@ module Aws::Snowball
1935
1956
  # }
1936
1957
  #
1937
1958
  # @!attribute [rw] lambda_arn
1938
- # An Amazon Resource Name (ARN) that represents an AWS Lambda function
1939
- # to be triggered by PUT object actions on the associated local Amazon
1940
- # S3 resource.
1959
+ # An Amazon Resource Name (ARN) that represents an Lambda function to
1960
+ # be triggered by PUT object actions on the associated local Amazon S3
1961
+ # resource.
1941
1962
  # @return [String]
1942
1963
  #
1943
1964
  # @!attribute [rw] event_triggers
@@ -2235,7 +2256,7 @@ module Aws::Snowball
2235
2256
  # @return [String]
2236
2257
  #
2237
2258
  # @!attribute [rw] snowball_type
2238
- # The type of AWS Snow Family device associated with this long-term
2259
+ # The type of Snow Family Devices associated with this long-term
2239
2260
  # pricing job.
2240
2261
  # @return [String]
2241
2262
  #
@@ -2261,8 +2282,9 @@ module Aws::Snowball
2261
2282
  include Aws::Structure
2262
2283
  end
2263
2284
 
2264
- # An object that represents metadata and configuration settings for NFS
2265
- # service on an AWS Snow Family device.
2285
+ # An object that represents the metadata and configuration settings for
2286
+ # the NFS (Network File System) service on an Amazon Web Services Snow
2287
+ # Family device.
2266
2288
  #
2267
2289
  # @note When making an API call, you may pass NFSOnDeviceServiceConfiguration
2268
2290
  # data as a hash:
@@ -2273,7 +2295,7 @@ module Aws::Snowball
2273
2295
  # }
2274
2296
  #
2275
2297
  # @!attribute [rw] storage_limit
2276
- # The maximum NFS storage for one Snowball Family device.
2298
+ # The maximum NFS storage for one Snow Family device.
2277
2299
  # @return [Integer]
2278
2300
  #
2279
2301
  # @!attribute [rw] storage_unit
@@ -2317,8 +2339,9 @@ module Aws::Snowball
2317
2339
  # [CreateTopic][1] Amazon SNS API action.
2318
2340
  #
2319
2341
  # You can subscribe email addresses to an Amazon SNS topic through the
2320
- # AWS Management Console, or by using the [Subscribe][2] Amazon Simple
2321
- # Notification Service (Amazon SNS) API action.
2342
+ # Amazon Web Services Management Console, or by using the
2343
+ # [Subscribe][2] Amazon Simple Notification Service (Amazon SNS) API
2344
+ # action.
2322
2345
  #
2323
2346
  #
2324
2347
  #
@@ -2345,8 +2368,8 @@ module Aws::Snowball
2345
2368
  include Aws::Structure
2346
2369
  end
2347
2370
 
2348
- # An object that represents metadata and configuration settings for
2349
- # services on an AWS Snow Family device.
2371
+ # An object that represents the metadata and configuration settings for
2372
+ # services on an Amazon Web Services Snow Family device.
2350
2373
  #
2351
2374
  # @note When making an API call, you may pass OnDeviceServiceConfiguration
2352
2375
  # data as a hash:
@@ -2356,23 +2379,34 @@ module Aws::Snowball
2356
2379
  # storage_limit: 1,
2357
2380
  # storage_unit: "TB", # accepts TB
2358
2381
  # },
2382
+ # tgw_on_device_service: {
2383
+ # storage_limit: 1,
2384
+ # storage_unit: "TB", # accepts TB
2385
+ # },
2359
2386
  # }
2360
2387
  #
2361
2388
  # @!attribute [rw] nfs_on_device_service
2362
- # Represents the NFS service on a Snow Family device.
2389
+ # Represents the NFS (Network File System) service on a Snow Family
2390
+ # device.
2363
2391
  # @return [Types::NFSOnDeviceServiceConfiguration]
2364
2392
  #
2393
+ # @!attribute [rw] tgw_on_device_service
2394
+ # Represents the Storage Gateway service Tape Gateway type on a Snow
2395
+ # Family device.
2396
+ # @return [Types::TGWOnDeviceServiceConfiguration]
2397
+ #
2365
2398
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/OnDeviceServiceConfiguration AWS API Documentation
2366
2399
  #
2367
2400
  class OnDeviceServiceConfiguration < Struct.new(
2368
- :nfs_on_device_service)
2401
+ :nfs_on_device_service,
2402
+ :tgw_on_device_service)
2369
2403
  SENSITIVE = []
2370
2404
  include Aws::Structure
2371
2405
  end
2372
2406
 
2373
2407
  # You get this exception if you call `CreateReturnShippingLabel` and a
2374
2408
  # valid return shipping label already exists. In this case, use
2375
- # `DescribeReturnShippingLabel` to get the url.
2409
+ # `DescribeReturnShippingLabel` to get the URL.
2376
2410
  #
2377
2411
  # @!attribute [rw] message
2378
2412
  # @return [String]
@@ -2422,8 +2456,9 @@ module Aws::Snowball
2422
2456
  #
2423
2457
  # @!attribute [rw] target_on_device_services
2424
2458
  # Specifies the service or services on the Snow Family device that
2425
- # your transferred data will be exported from or imported into. AWS
2426
- # Snow Family supports Amazon S3 and NFS (Network File System).
2459
+ # your transferred data will be exported from or imported into. Amazon
2460
+ # Web Services Snow Family supports Amazon S3 and NFS (Network File
2461
+ # System).
2427
2462
  # @return [Array<Types::TargetOnDeviceService>]
2428
2463
  #
2429
2464
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/S3Resource AWS API Documentation
@@ -2486,7 +2521,7 @@ module Aws::Snowball
2486
2521
  #
2487
2522
  # @!attribute [rw] inbound_shipment
2488
2523
  # The `Status` and `TrackingNumber` values for a Snow device being
2489
- # returned to AWS for a particular job.
2524
+ # returned to Amazon Web Services for a particular job.
2490
2525
  # @return [Types::Shipment]
2491
2526
  #
2492
2527
  # @!attribute [rw] outbound_shipment
@@ -2504,7 +2539,7 @@ module Aws::Snowball
2504
2539
  include Aws::Structure
2505
2540
  end
2506
2541
 
2507
- # Specifies the device configuration for an AWS Snowcone job.
2542
+ # Specifies the device configuration for an Snowcone job.
2508
2543
  #
2509
2544
  # @note When making an API call, you may pass SnowconeDeviceConfiguration
2510
2545
  # data as a hash:
@@ -2516,7 +2551,7 @@ module Aws::Snowball
2516
2551
  # }
2517
2552
  #
2518
2553
  # @!attribute [rw] wireless_connection
2519
- # Configures the wireless connection for the AWS Snowcone device.
2554
+ # Configures the wireless connection for the Snowcone device.
2520
2555
  # @return [Types::WirelessConnection]
2521
2556
  #
2522
2557
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/SnowconeDeviceConfiguration AWS API Documentation
@@ -2527,10 +2562,41 @@ module Aws::Snowball
2527
2562
  include Aws::Structure
2528
2563
  end
2529
2564
 
2565
+ # An object that represents the metadata and configuration settings for
2566
+ # the Storage Gateway service Tape Gateway type on an Amazon Web
2567
+ # Services Snow Family device.
2568
+ #
2569
+ # @note When making an API call, you may pass TGWOnDeviceServiceConfiguration
2570
+ # data as a hash:
2571
+ #
2572
+ # {
2573
+ # storage_limit: 1,
2574
+ # storage_unit: "TB", # accepts TB
2575
+ # }
2576
+ #
2577
+ # @!attribute [rw] storage_limit
2578
+ # The maximum number of virtual tapes to store on one Snow Family
2579
+ # device. Due to physical resource limitations, this value must be set
2580
+ # to 80 for Snowball Edge.
2581
+ # @return [Integer]
2582
+ #
2583
+ # @!attribute [rw] storage_unit
2584
+ # The scale unit of the virtual tapes on the device.
2585
+ # @return [String]
2586
+ #
2587
+ # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/TGWOnDeviceServiceConfiguration AWS API Documentation
2588
+ #
2589
+ class TGWOnDeviceServiceConfiguration < Struct.new(
2590
+ :storage_limit,
2591
+ :storage_unit)
2592
+ SENSITIVE = []
2593
+ include Aws::Structure
2594
+ end
2595
+
2530
2596
  # An object that represents the service or services on the Snow Family
2531
2597
  # device that your transferred data will be exported from or imported
2532
- # into. AWS Snow Family supports Amazon S3 and NFS (Network File
2533
- # System).
2598
+ # into. Amazon Web Services Snow Family supports Amazon S3 and NFS
2599
+ # (Network File System).
2534
2600
  #
2535
2601
  # @note When making an API call, you may pass TargetOnDeviceService
2536
2602
  # data as a hash:
@@ -2559,7 +2625,7 @@ module Aws::Snowball
2559
2625
  include Aws::Structure
2560
2626
  end
2561
2627
 
2562
- # The tax documents required in your AWS Region.
2628
+ # The tax documents required in your Amazon Web Services Region.
2563
2629
  #
2564
2630
  # @note When making an API call, you may pass TaxDocuments
2565
2631
  # data as a hash:
@@ -2571,7 +2637,7 @@ module Aws::Snowball
2571
2637
  # }
2572
2638
  #
2573
2639
  # @!attribute [rw] ind
2574
- # The tax documents required in AWS Regions in India.
2640
+ # The tax documents required in Amazon Web Services Region in India.
2575
2641
  # @return [Types::INDTaxDocuments]
2576
2642
  #
2577
2643
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/TaxDocuments AWS API Documentation
@@ -2584,7 +2650,7 @@ module Aws::Snowball
2584
2650
 
2585
2651
  # The address is either outside the serviceable area for your region, or
2586
2652
  # an error occurred. Check the address with your region's carrier and
2587
- # try again. If the issue persists, contact AWS Support.
2653
+ # try again. If the issue persists, contact Amazon Web Services Support.
2588
2654
  #
2589
2655
  # @!attribute [rw] message
2590
2656
  # @return [String]
@@ -2642,6 +2708,10 @@ module Aws::Snowball
2642
2708
  # storage_limit: 1,
2643
2709
  # storage_unit: "TB", # accepts TB
2644
2710
  # },
2711
+ # tgw_on_device_service: {
2712
+ # storage_limit: 1,
2713
+ # storage_unit: "TB", # accepts TB
2714
+ # },
2645
2715
  # },
2646
2716
  # address_id: "AddressId",
2647
2717
  # shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
@@ -2661,7 +2731,7 @@ module Aws::Snowball
2661
2731
  # @!attribute [rw] role_arn
2662
2732
  # The new role Amazon Resource Name (ARN) that you want to associate
2663
2733
  # with this cluster. To create a role ARN, use the [CreateRole][1] API
2664
- # action in AWS Identity and Access Management (IAM).
2734
+ # action in Identity and Access Management (IAM).
2665
2735
  #
2666
2736
  #
2667
2737
  #
@@ -2679,8 +2749,9 @@ module Aws::Snowball
2679
2749
  #
2680
2750
  # @!attribute [rw] on_device_service_configuration
2681
2751
  # Specifies the service or services on the Snow Family device that
2682
- # your transferred data will be exported from or imported into. AWS
2683
- # Snow Family supports Amazon S3 and NFS (Network File System).
2752
+ # your transferred data will be exported from or imported into. Amazon
2753
+ # Web Services Snow Family device clusters support Amazon S3 and NFS
2754
+ # (Network File System).
2684
2755
  # @return [Types::OnDeviceServiceConfiguration]
2685
2756
  #
2686
2757
  # @!attribute [rw] address_id
@@ -2770,6 +2841,10 @@ module Aws::Snowball
2770
2841
  # storage_limit: 1,
2771
2842
  # storage_unit: "TB", # accepts TB
2772
2843
  # },
2844
+ # tgw_on_device_service: {
2845
+ # storage_limit: 1,
2846
+ # storage_unit: "TB", # accepts TB
2847
+ # },
2773
2848
  # },
2774
2849
  # address_id: "AddressId",
2775
2850
  # shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
@@ -2785,8 +2860,8 @@ module Aws::Snowball
2785
2860
  #
2786
2861
  # @!attribute [rw] role_arn
2787
2862
  # The new role Amazon Resource Name (ARN) that you want to associate
2788
- # with this job. To create a role ARN, use the [CreateRole][1]AWS
2789
- # Identity and Access Management (IAM) API action.
2863
+ # with this job. To create a role ARN, use the [CreateRole][1]Identity
2864
+ # and Access Management (IAM) API action.
2790
2865
  #
2791
2866
  #
2792
2867
  #
@@ -2803,8 +2878,10 @@ module Aws::Snowball
2803
2878
  #
2804
2879
  # @!attribute [rw] on_device_service_configuration
2805
2880
  # Specifies the service or services on the Snow Family device that
2806
- # your transferred data will be exported from or imported into. AWS
2807
- # Snow Family supports Amazon S3 and NFS (Network File System).
2881
+ # your transferred data will be exported from or imported into. Amazon
2882
+ # Web Services Snow Family supports Amazon S3 and NFS (Network File
2883
+ # System) and the Amazon Web Services Storage Gateway service Tape
2884
+ # Gateway type.
2808
2885
  # @return [Types::OnDeviceServiceConfiguration]
2809
2886
  #
2810
2887
  # @!attribute [rw] address_id
@@ -2875,7 +2952,8 @@ module Aws::Snowball
2875
2952
  #
2876
2953
  # Set to `RECEIVED` when the device arrives at your location.
2877
2954
  #
2878
- # Set to `RETURNED` when you have returned the device to AWS.
2955
+ # Set to `RETURNED` when you have returned the device to Amazon Web
2956
+ # Services.
2879
2957
  # @return [String]
2880
2958
  #
2881
2959
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/UpdateJobShipmentStateRequest AWS API Documentation
@@ -2929,7 +3007,7 @@ module Aws::Snowball
2929
3007
  #
2930
3008
  class UpdateLongTermPricingResult < Aws::EmptyStructure; end
2931
3009
 
2932
- # Configures the wireless connection on an AWS Snowcone device.
3010
+ # Configures the wireless connection on an Snowcone device.
2933
3011
  #
2934
3012
  # @note When making an API call, you may pass WirelessConnection
2935
3013
  # data as a hash:
@@ -2939,7 +3017,7 @@ module Aws::Snowball
2939
3017
  # }
2940
3018
  #
2941
3019
  # @!attribute [rw] is_wifi_enabled
2942
- # Enables the Wi-Fi adapter on an AWS Snowcone device.
3020
+ # Enables the Wi-Fi adapter on an Snowcone device.
2943
3021
  # @return [Boolean]
2944
3022
  #
2945
3023
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/WirelessConnection AWS API Documentation
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-snowball/customizations'
48
48
  # @!group service
49
49
  module Aws::Snowball
50
50
 
51
- GEM_VERSION = '1.44.0'
51
+ GEM_VERSION = '1.48.0'
52
52
 
53
53
  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.44.0
4
+ version: 1.48.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: 2021-11-04 00:00:00.000000000 Z
11
+ date: 2022-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.122.0
22
+ version: 3.126.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.122.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement