aws-sdk-snowball 1.22.0 → 1.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-snowball.rb +1 -1
- data/lib/aws-sdk-snowball/client.rb +34 -1
- data/lib/aws-sdk-snowball/client_api.rb +13 -0
- data/lib/aws-sdk-snowball/types.rb +99 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 507f49c808531262dae9a0c7f0d11f5f9d648eec
|
4
|
+
data.tar.gz: 35fb03510f8e7fd3f35e1e6c8da8a98e7459a927
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04bc826a592ace8f67d467237286fe3ba1bb49bd5d8011b4f19b6ba677652d877048274a9c3624f524441ba19c77f7e2532a80294e6fd1579f70b7de9d2b3068
|
7
|
+
data.tar.gz: d68bdfdee3b934f9ecd81cf2dde73e1a817f2b9c8f77ea4209d5004c19ec35fe62ba39b7b81d2a92d3d6c6997f633c76dd7ecd3a964ded17b0d6fbe3c12d8b7d
|
data/lib/aws-sdk-snowball.rb
CHANGED
@@ -447,6 +447,13 @@ module Aws::Snowball
|
|
447
447
|
# The type of AWS Snowball device to use for this cluster. Currently,
|
448
448
|
# the only supported device type for cluster jobs is `EDGE`.
|
449
449
|
#
|
450
|
+
# For more information, see [Snowball Edge Device Options][1] in the
|
451
|
+
# Snowball Edge Developer Guide.
|
452
|
+
#
|
453
|
+
#
|
454
|
+
#
|
455
|
+
# [1]: https://docs.aws.amazon.com/snowball/latest/developer-guide/device-differences.html
|
456
|
+
#
|
450
457
|
# @option params [required, String] :shipping_option
|
451
458
|
# The shipping speed for each node in this cluster. This speed doesn't
|
452
459
|
# dictate how soon you'll get each Snowball Edge device, rather it
|
@@ -473,6 +480,9 @@ module Aws::Snowball
|
|
473
480
|
# The forwarding address ID for a cluster. This field is not supported
|
474
481
|
# in most regions.
|
475
482
|
#
|
483
|
+
# @option params [Types::TaxDocuments] :tax_documents
|
484
|
+
# The tax documents required in your AWS Region.
|
485
|
+
#
|
476
486
|
# @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
477
487
|
#
|
478
488
|
# * {Types::CreateClusterResult#cluster_id #cluster_id} => String
|
@@ -555,6 +565,11 @@ module Aws::Snowball
|
|
555
565
|
# notify_all: false,
|
556
566
|
# },
|
557
567
|
# forwarding_address_id: "AddressId",
|
568
|
+
# tax_documents: {
|
569
|
+
# ind: {
|
570
|
+
# gstin: "GSTIN",
|
571
|
+
# },
|
572
|
+
# },
|
558
573
|
# })
|
559
574
|
#
|
560
575
|
# @example Response structure
|
@@ -654,10 +669,20 @@ module Aws::Snowball
|
|
654
669
|
# The type of AWS Snowball device to use for this job. Currently, the
|
655
670
|
# only supported device type for cluster jobs is `EDGE`.
|
656
671
|
#
|
672
|
+
# For more information, see [Snowball Edge Device Options][1] in the
|
673
|
+
# Snowball Edge Developer Guide.
|
674
|
+
#
|
675
|
+
#
|
676
|
+
#
|
677
|
+
# [1]: https://docs.aws.amazon.com/snowball/latest/developer-guide/device-differences.html
|
678
|
+
#
|
657
679
|
# @option params [String] :forwarding_address_id
|
658
680
|
# The forwarding address ID for a job. This field is not supported in
|
659
681
|
# most regions.
|
660
682
|
#
|
683
|
+
# @option params [Types::TaxDocuments] :tax_documents
|
684
|
+
# The tax documents required in your AWS Region.
|
685
|
+
#
|
661
686
|
# @return [Types::CreateJobResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
662
687
|
#
|
663
688
|
# * {Types::CreateJobResult#job_id #job_id} => String
|
@@ -744,6 +769,11 @@ module Aws::Snowball
|
|
744
769
|
# cluster_id: "ClusterId",
|
745
770
|
# snowball_type: "STANDARD", # accepts STANDARD, EDGE, EDGE_C, EDGE_CG
|
746
771
|
# forwarding_address_id: "AddressId",
|
772
|
+
# tax_documents: {
|
773
|
+
# ind: {
|
774
|
+
# gstin: "GSTIN",
|
775
|
+
# },
|
776
|
+
# },
|
747
777
|
# })
|
748
778
|
#
|
749
779
|
# @example Response structure
|
@@ -987,6 +1017,7 @@ module Aws::Snowball
|
|
987
1017
|
# resp.cluster_metadata.notification.job_states_to_notify[0] #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
|
988
1018
|
# resp.cluster_metadata.notification.notify_all #=> Boolean
|
989
1019
|
# resp.cluster_metadata.forwarding_address_id #=> String
|
1020
|
+
# resp.cluster_metadata.tax_documents.ind.gstin #=> String
|
990
1021
|
#
|
991
1022
|
# @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DescribeCluster AWS API Documentation
|
992
1023
|
#
|
@@ -1098,6 +1129,7 @@ module Aws::Snowball
|
|
1098
1129
|
# resp.job_metadata.job_log_info.job_failure_log_uri #=> String
|
1099
1130
|
# resp.job_metadata.cluster_id #=> String
|
1100
1131
|
# resp.job_metadata.forwarding_address_id #=> String
|
1132
|
+
# resp.job_metadata.tax_documents.ind.gstin #=> String
|
1101
1133
|
# resp.sub_job_metadata #=> Array
|
1102
1134
|
# resp.sub_job_metadata[0].job_id #=> String
|
1103
1135
|
# resp.sub_job_metadata[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
|
@@ -1138,6 +1170,7 @@ module Aws::Snowball
|
|
1138
1170
|
# resp.sub_job_metadata[0].job_log_info.job_failure_log_uri #=> String
|
1139
1171
|
# resp.sub_job_metadata[0].cluster_id #=> String
|
1140
1172
|
# resp.sub_job_metadata[0].forwarding_address_id #=> String
|
1173
|
+
# resp.sub_job_metadata[0].tax_documents.ind.gstin #=> String
|
1141
1174
|
#
|
1142
1175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DescribeJob AWS API Documentation
|
1143
1176
|
#
|
@@ -1874,7 +1907,7 @@ module Aws::Snowball
|
|
1874
1907
|
params: params,
|
1875
1908
|
config: config)
|
1876
1909
|
context[:gem_name] = 'aws-sdk-snowball'
|
1877
|
-
context[:gem_version] = '1.
|
1910
|
+
context[:gem_version] = '1.23.0'
|
1878
1911
|
Seahorse::Client::Request.new(handlers, context)
|
1879
1912
|
end
|
1880
1913
|
|
@@ -48,6 +48,7 @@ module Aws::Snowball
|
|
48
48
|
Ec2RequestFailedException = Shapes::StructureShape.new(name: 'Ec2RequestFailedException')
|
49
49
|
EventTriggerDefinition = Shapes::StructureShape.new(name: 'EventTriggerDefinition')
|
50
50
|
EventTriggerDefinitionList = Shapes::ListShape.new(name: 'EventTriggerDefinitionList')
|
51
|
+
GSTIN = Shapes::StringShape.new(name: 'GSTIN')
|
51
52
|
GetJobManifestRequest = Shapes::StructureShape.new(name: 'GetJobManifestRequest')
|
52
53
|
GetJobManifestResult = Shapes::StructureShape.new(name: 'GetJobManifestResult')
|
53
54
|
GetJobUnlockCodeRequest = Shapes::StructureShape.new(name: 'GetJobUnlockCodeRequest')
|
@@ -56,6 +57,7 @@ module Aws::Snowball
|
|
56
57
|
GetSnowballUsageResult = Shapes::StructureShape.new(name: 'GetSnowballUsageResult')
|
57
58
|
GetSoftwareUpdatesRequest = Shapes::StructureShape.new(name: 'GetSoftwareUpdatesRequest')
|
58
59
|
GetSoftwareUpdatesResult = Shapes::StructureShape.new(name: 'GetSoftwareUpdatesResult')
|
60
|
+
INDTaxDocuments = Shapes::StructureShape.new(name: 'INDTaxDocuments')
|
59
61
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
60
62
|
InvalidAddressException = Shapes::StructureShape.new(name: 'InvalidAddressException')
|
61
63
|
InvalidInputCombinationException = Shapes::StructureShape.new(name: 'InvalidInputCombinationException')
|
@@ -99,6 +101,7 @@ module Aws::Snowball
|
|
99
101
|
SnowballType = Shapes::StringShape.new(name: 'SnowballType')
|
100
102
|
SnsTopicARN = Shapes::StringShape.new(name: 'SnsTopicARN')
|
101
103
|
String = Shapes::StringShape.new(name: 'String')
|
104
|
+
TaxDocuments = Shapes::StructureShape.new(name: 'TaxDocuments')
|
102
105
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
103
106
|
UnsupportedAddressException = Shapes::StructureShape.new(name: 'UnsupportedAddressException')
|
104
107
|
UpdateClusterRequest = Shapes::StructureShape.new(name: 'UpdateClusterRequest')
|
@@ -158,6 +161,7 @@ module Aws::Snowball
|
|
158
161
|
ClusterMetadata.add_member(:shipping_option, Shapes::ShapeRef.new(shape: ShippingOption, location_name: "ShippingOption"))
|
159
162
|
ClusterMetadata.add_member(:notification, Shapes::ShapeRef.new(shape: Notification, location_name: "Notification"))
|
160
163
|
ClusterMetadata.add_member(:forwarding_address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "ForwardingAddressId"))
|
164
|
+
ClusterMetadata.add_member(:tax_documents, Shapes::ShapeRef.new(shape: TaxDocuments, location_name: "TaxDocuments"))
|
161
165
|
ClusterMetadata.struct_class = Types::ClusterMetadata
|
162
166
|
|
163
167
|
CompatibleImage.add_member(:ami_id, Shapes::ShapeRef.new(shape: String, location_name: "AmiId"))
|
@@ -182,6 +186,7 @@ module Aws::Snowball
|
|
182
186
|
CreateClusterRequest.add_member(:shipping_option, Shapes::ShapeRef.new(shape: ShippingOption, required: true, location_name: "ShippingOption"))
|
183
187
|
CreateClusterRequest.add_member(:notification, Shapes::ShapeRef.new(shape: Notification, location_name: "Notification"))
|
184
188
|
CreateClusterRequest.add_member(:forwarding_address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "ForwardingAddressId"))
|
189
|
+
CreateClusterRequest.add_member(:tax_documents, Shapes::ShapeRef.new(shape: TaxDocuments, location_name: "TaxDocuments"))
|
185
190
|
CreateClusterRequest.struct_class = Types::CreateClusterRequest
|
186
191
|
|
187
192
|
CreateClusterResult.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, location_name: "ClusterId"))
|
@@ -199,6 +204,7 @@ module Aws::Snowball
|
|
199
204
|
CreateJobRequest.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, location_name: "ClusterId"))
|
200
205
|
CreateJobRequest.add_member(:snowball_type, Shapes::ShapeRef.new(shape: SnowballType, location_name: "SnowballType"))
|
201
206
|
CreateJobRequest.add_member(:forwarding_address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "ForwardingAddressId"))
|
207
|
+
CreateJobRequest.add_member(:tax_documents, Shapes::ShapeRef.new(shape: TaxDocuments, location_name: "TaxDocuments"))
|
202
208
|
CreateJobRequest.struct_class = Types::CreateJobRequest
|
203
209
|
|
204
210
|
CreateJobResult.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, location_name: "JobId"))
|
@@ -275,6 +281,9 @@ module Aws::Snowball
|
|
275
281
|
GetSoftwareUpdatesResult.add_member(:updates_uri, Shapes::ShapeRef.new(shape: String, location_name: "UpdatesURI"))
|
276
282
|
GetSoftwareUpdatesResult.struct_class = Types::GetSoftwareUpdatesResult
|
277
283
|
|
284
|
+
INDTaxDocuments.add_member(:gstin, Shapes::ShapeRef.new(shape: GSTIN, location_name: "GSTIN"))
|
285
|
+
INDTaxDocuments.struct_class = Types::INDTaxDocuments
|
286
|
+
|
278
287
|
InvalidAddressException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
279
288
|
InvalidAddressException.struct_class = Types::InvalidAddressException
|
280
289
|
|
@@ -324,6 +333,7 @@ module Aws::Snowball
|
|
324
333
|
JobMetadata.add_member(:job_log_info, Shapes::ShapeRef.new(shape: JobLogs, location_name: "JobLogInfo"))
|
325
334
|
JobMetadata.add_member(:cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "ClusterId"))
|
326
335
|
JobMetadata.add_member(:forwarding_address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "ForwardingAddressId"))
|
336
|
+
JobMetadata.add_member(:tax_documents, Shapes::ShapeRef.new(shape: TaxDocuments, location_name: "TaxDocuments"))
|
327
337
|
JobMetadata.struct_class = Types::JobMetadata
|
328
338
|
|
329
339
|
JobMetadataList.member = Shapes::ShapeRef.new(shape: JobMetadata)
|
@@ -401,6 +411,9 @@ module Aws::Snowball
|
|
401
411
|
ShippingDetails.add_member(:outbound_shipment, Shapes::ShapeRef.new(shape: Shipment, location_name: "OutboundShipment"))
|
402
412
|
ShippingDetails.struct_class = Types::ShippingDetails
|
403
413
|
|
414
|
+
TaxDocuments.add_member(:ind, Shapes::ShapeRef.new(shape: INDTaxDocuments, location_name: "IND"))
|
415
|
+
TaxDocuments.struct_class = Types::TaxDocuments
|
416
|
+
|
404
417
|
UnsupportedAddressException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
405
418
|
UnsupportedAddressException.struct_class = Types::UnsupportedAddressException
|
406
419
|
|
@@ -252,6 +252,13 @@ module Aws::Snowball
|
|
252
252
|
# @!attribute [rw] snowball_type
|
253
253
|
# The type of AWS Snowball device to use for this cluster. Currently,
|
254
254
|
# the only supported device type for cluster jobs is `EDGE`.
|
255
|
+
#
|
256
|
+
# For more information, see [Snowball Edge Device Options][1] in the
|
257
|
+
# Snowball Edge Developer Guide.
|
258
|
+
#
|
259
|
+
#
|
260
|
+
#
|
261
|
+
# [1]: https://docs.aws.amazon.com/snowball/latest/developer-guide/device-differences.html
|
255
262
|
# @return [String]
|
256
263
|
#
|
257
264
|
# @!attribute [rw] creation_date
|
@@ -299,6 +306,10 @@ module Aws::Snowball
|
|
299
306
|
# in most regions.
|
300
307
|
# @return [String]
|
301
308
|
#
|
309
|
+
# @!attribute [rw] tax_documents
|
310
|
+
# The tax documents required in your AWS Region.
|
311
|
+
# @return [Types::TaxDocuments]
|
312
|
+
#
|
302
313
|
# @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/ClusterMetadata AWS API Documentation
|
303
314
|
#
|
304
315
|
class ClusterMetadata < Struct.new(
|
@@ -314,7 +325,8 @@ module Aws::Snowball
|
|
314
325
|
:address_id,
|
315
326
|
:shipping_option,
|
316
327
|
:notification,
|
317
|
-
:forwarding_address_id
|
328
|
+
:forwarding_address_id,
|
329
|
+
:tax_documents)
|
318
330
|
include Aws::Structure
|
319
331
|
end
|
320
332
|
|
@@ -429,6 +441,11 @@ module Aws::Snowball
|
|
429
441
|
# notify_all: false,
|
430
442
|
# },
|
431
443
|
# forwarding_address_id: "AddressId",
|
444
|
+
# tax_documents: {
|
445
|
+
# ind: {
|
446
|
+
# gstin: "GSTIN",
|
447
|
+
# },
|
448
|
+
# },
|
432
449
|
# }
|
433
450
|
#
|
434
451
|
# @!attribute [rw] job_type
|
@@ -474,6 +491,13 @@ module Aws::Snowball
|
|
474
491
|
# @!attribute [rw] snowball_type
|
475
492
|
# The type of AWS Snowball device to use for this cluster. Currently,
|
476
493
|
# the only supported device type for cluster jobs is `EDGE`.
|
494
|
+
#
|
495
|
+
# For more information, see [Snowball Edge Device Options][1] in the
|
496
|
+
# Snowball Edge Developer Guide.
|
497
|
+
#
|
498
|
+
#
|
499
|
+
#
|
500
|
+
# [1]: https://docs.aws.amazon.com/snowball/latest/developer-guide/device-differences.html
|
477
501
|
# @return [String]
|
478
502
|
#
|
479
503
|
# @!attribute [rw] shipping_option
|
@@ -507,6 +531,10 @@ module Aws::Snowball
|
|
507
531
|
# in most regions.
|
508
532
|
# @return [String]
|
509
533
|
#
|
534
|
+
# @!attribute [rw] tax_documents
|
535
|
+
# The tax documents required in your AWS Region.
|
536
|
+
# @return [Types::TaxDocuments]
|
537
|
+
#
|
510
538
|
# @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/CreateClusterRequest AWS API Documentation
|
511
539
|
#
|
512
540
|
class CreateClusterRequest < Struct.new(
|
@@ -519,7 +547,8 @@ module Aws::Snowball
|
|
519
547
|
:snowball_type,
|
520
548
|
:shipping_option,
|
521
549
|
:notification,
|
522
|
-
:forwarding_address_id
|
550
|
+
:forwarding_address_id,
|
551
|
+
:tax_documents)
|
523
552
|
include Aws::Structure
|
524
553
|
end
|
525
554
|
|
@@ -580,6 +609,11 @@ module Aws::Snowball
|
|
580
609
|
# cluster_id: "ClusterId",
|
581
610
|
# snowball_type: "STANDARD", # accepts STANDARD, EDGE, EDGE_C, EDGE_CG
|
582
611
|
# forwarding_address_id: "AddressId",
|
612
|
+
# tax_documents: {
|
613
|
+
# ind: {
|
614
|
+
# gstin: "GSTIN",
|
615
|
+
# },
|
616
|
+
# },
|
583
617
|
# }
|
584
618
|
#
|
585
619
|
# @!attribute [rw] job_type
|
@@ -669,6 +703,13 @@ module Aws::Snowball
|
|
669
703
|
# @!attribute [rw] snowball_type
|
670
704
|
# The type of AWS Snowball device to use for this job. Currently, the
|
671
705
|
# only supported device type for cluster jobs is `EDGE`.
|
706
|
+
#
|
707
|
+
# For more information, see [Snowball Edge Device Options][1] in the
|
708
|
+
# Snowball Edge Developer Guide.
|
709
|
+
#
|
710
|
+
#
|
711
|
+
#
|
712
|
+
# [1]: https://docs.aws.amazon.com/snowball/latest/developer-guide/device-differences.html
|
672
713
|
# @return [String]
|
673
714
|
#
|
674
715
|
# @!attribute [rw] forwarding_address_id
|
@@ -676,6 +717,10 @@ module Aws::Snowball
|
|
676
717
|
# most regions.
|
677
718
|
# @return [String]
|
678
719
|
#
|
720
|
+
# @!attribute [rw] tax_documents
|
721
|
+
# The tax documents required in your AWS Region.
|
722
|
+
# @return [Types::TaxDocuments]
|
723
|
+
#
|
679
724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/CreateJobRequest AWS API Documentation
|
680
725
|
#
|
681
726
|
class CreateJobRequest < Struct.new(
|
@@ -690,7 +735,8 @@ module Aws::Snowball
|
|
690
735
|
:notification,
|
691
736
|
:cluster_id,
|
692
737
|
:snowball_type,
|
693
|
-
:forwarding_address_id
|
738
|
+
:forwarding_address_id,
|
739
|
+
:tax_documents)
|
694
740
|
include Aws::Structure
|
695
741
|
end
|
696
742
|
|
@@ -1065,6 +1111,27 @@ module Aws::Snowball
|
|
1065
1111
|
include Aws::Structure
|
1066
1112
|
end
|
1067
1113
|
|
1114
|
+
# The tax documents required in AWS Regions in India.
|
1115
|
+
#
|
1116
|
+
# @note When making an API call, you may pass INDTaxDocuments
|
1117
|
+
# data as a hash:
|
1118
|
+
#
|
1119
|
+
# {
|
1120
|
+
# gstin: "GSTIN",
|
1121
|
+
# }
|
1122
|
+
#
|
1123
|
+
# @!attribute [rw] gstin
|
1124
|
+
# The Goods and Services Tax (GST) documents required in AWS Regions
|
1125
|
+
# in India.
|
1126
|
+
# @return [String]
|
1127
|
+
#
|
1128
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/INDTaxDocuments AWS API Documentation
|
1129
|
+
#
|
1130
|
+
class INDTaxDocuments < Struct.new(
|
1131
|
+
:gstin)
|
1132
|
+
include Aws::Structure
|
1133
|
+
end
|
1134
|
+
|
1068
1135
|
# The address provided was invalid. Check the address with your
|
1069
1136
|
# region's carrier, and try again.
|
1070
1137
|
#
|
@@ -1341,6 +1408,11 @@ module Aws::Snowball
|
|
1341
1408
|
# most regions.
|
1342
1409
|
# @return [String]
|
1343
1410
|
#
|
1411
|
+
# @!attribute [rw] tax_documents
|
1412
|
+
# The metadata associated with the tax documents required in your AWS
|
1413
|
+
# Region.
|
1414
|
+
# @return [Types::TaxDocuments]
|
1415
|
+
#
|
1344
1416
|
# @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/JobMetadata AWS API Documentation
|
1345
1417
|
#
|
1346
1418
|
class JobMetadata < Struct.new(
|
@@ -1360,7 +1432,8 @@ module Aws::Snowball
|
|
1360
1432
|
:data_transfer_progress,
|
1361
1433
|
:job_log_info,
|
1362
1434
|
:cluster_id,
|
1363
|
-
:forwarding_address_id
|
1435
|
+
:forwarding_address_id,
|
1436
|
+
:tax_documents)
|
1364
1437
|
include Aws::Structure
|
1365
1438
|
end
|
1366
1439
|
|
@@ -1842,6 +1915,28 @@ module Aws::Snowball
|
|
1842
1915
|
include Aws::Structure
|
1843
1916
|
end
|
1844
1917
|
|
1918
|
+
# The tax documents required in your AWS Region.
|
1919
|
+
#
|
1920
|
+
# @note When making an API call, you may pass TaxDocuments
|
1921
|
+
# data as a hash:
|
1922
|
+
#
|
1923
|
+
# {
|
1924
|
+
# ind: {
|
1925
|
+
# gstin: "GSTIN",
|
1926
|
+
# },
|
1927
|
+
# }
|
1928
|
+
#
|
1929
|
+
# @!attribute [rw] ind
|
1930
|
+
# The tax documents required in AWS Regions in India.
|
1931
|
+
# @return [Types::INDTaxDocuments]
|
1932
|
+
#
|
1933
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/TaxDocuments AWS API Documentation
|
1934
|
+
#
|
1935
|
+
class TaxDocuments < Struct.new(
|
1936
|
+
:ind)
|
1937
|
+
include Aws::Structure
|
1938
|
+
end
|
1939
|
+
|
1845
1940
|
# The address is either outside the serviceable area for your region, or
|
1846
1941
|
# an error occurred. Check the address with your region's carrier and
|
1847
1942
|
# try again. If the issue persists, contact AWS Support.
|
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.
|
4
|
+
version: 1.23.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:
|
11
|
+
date: 2020-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|