aws-sdk-snowball 1.0.0.rc3 → 1.0.0.rc4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 159b8c44cc35a70ca43dafb75a3396edef063c38
4
- data.tar.gz: dd3420357504e5c9943fae401a0248f68f4a93b4
3
+ metadata.gz: 9a58375a1450b17464f531acfa34fbe98fba2322
4
+ data.tar.gz: a209601e86b8eb7786e8033de7fd25619146ac06
5
5
  SHA512:
6
- metadata.gz: b12a3cbb199e1430f758a85962a12eaa4a0cb9c1d99a55a6becb8ab4c5d859e7da53b01099b7f789a5b74826746f64b7b9eaaec0736c05be18621641c7a9a347
7
- data.tar.gz: d42d45a436bdda57c6eda6bd1839e041a01906d3b679de954ac8cbe977dd32e0301051c44384b762321f8e31596d454f3647c1f0c24f73ad033f845e966ef81f
6
+ metadata.gz: a0943bb9b8f2f21ded1dfc7a59b7fdf7cb9d29247d2eedf47553a1f6e783ff4c90db6c6a925ea72205c2551c739fa207f0cd777d4551ad5e94f8067a6c70378a
7
+ data.tar.gz: 95228e158625fa91028f259a27d94c9845b94cdf663a86942ae07c4744531c32d2237a57bfaddd3d604216021e2cb4a9dbec40c384eb49252eb26cd6464da489
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-snowball/customizations'
42
42
  # @service
43
43
  module Aws::Snowball
44
44
 
45
- GEM_VERSION = '1.0.0.rc3'
45
+ GEM_VERSION = '1.0.0.rc4'
46
46
 
47
47
  end
@@ -206,9 +206,8 @@ module Aws::Snowball
206
206
  req.send_request(options)
207
207
  end
208
208
 
209
- # Creates an address for a Snowball to be shipped to.
210
- #
211
- # Addresses are validated at the time of creation. The address you
209
+ # Creates an address for a Snowball to be shipped to. In most regions,
210
+ # addresses are validated at the time of creation. The address you
212
211
  # provide must be located within the serviceable area of your region. If
213
212
  # the address is invalid or unsupported, then an exception is thrown.
214
213
  #
@@ -236,6 +235,7 @@ module Aws::Snowball
236
235
  # country: "String",
237
236
  # postal_code: "String",
238
237
  # phone_number: "String",
238
+ # is_restricted: false,
239
239
  # },
240
240
  # })
241
241
  #
@@ -317,6 +317,10 @@ module Aws::Snowball
317
317
  # The Amazon Simple Notification Service (Amazon SNS) notification
318
318
  # settings for this cluster.
319
319
  #
320
+ # @option params [String] :forwarding_address_id
321
+ # The forwarding address ID for a cluster. This field is not supported
322
+ # in most regions.
323
+ #
320
324
  # @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
321
325
  #
322
326
  # * {Types::CreateClusterResult#cluster_id #cluster_id} => String
@@ -357,6 +361,7 @@ module Aws::Snowball
357
361
  # job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
358
362
  # notify_all: false,
359
363
  # },
364
+ # forwarding_address_id: "AddressId",
360
365
  # })
361
366
  #
362
367
  # @example Response structure
@@ -377,7 +382,7 @@ module Aws::Snowball
377
382
  # policies and permissions in place to create a job for Snowball. If
378
383
  # you're creating a job for a node in a cluster, you only need to
379
384
  # provide the `clusterId` value; the other job attributes are inherited
380
- # from the cluster. .
385
+ # from the cluster.
381
386
  #
382
387
  # @option params [String] :job_type
383
388
  # Defines the type of job that you're creating.
@@ -456,6 +461,10 @@ module Aws::Snowball
456
461
  # The type of AWS Snowball appliance to use for this job. Currently, the
457
462
  # only supported appliance type for cluster jobs is `EDGE`.
458
463
  #
464
+ # @option params [String] :forwarding_address_id
465
+ # The forwarding address ID for a job. This field is not supported in
466
+ # most regions.
467
+ #
459
468
  # @return [Types::CreateJobResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
460
469
  #
461
470
  # * {Types::CreateJobResult#job_id #job_id} => String
@@ -498,6 +507,7 @@ module Aws::Snowball
498
507
  # },
499
508
  # cluster_id: "ClusterId",
500
509
  # snowball_type: "STANDARD", # accepts STANDARD, EDGE
510
+ # forwarding_address_id: "AddressId",
501
511
  # })
502
512
  #
503
513
  # @example Response structure
@@ -544,6 +554,7 @@ module Aws::Snowball
544
554
  # resp.address.country #=> String
545
555
  # resp.address.postal_code #=> String
546
556
  # resp.address.phone_number #=> String
557
+ # resp.address.is_restricted #=> Boolean
547
558
  #
548
559
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DescribeAddress AWS API Documentation
549
560
  #
@@ -595,6 +606,7 @@ module Aws::Snowball
595
606
  # resp.addresses[0].country #=> String
596
607
  # resp.addresses[0].postal_code #=> String
597
608
  # resp.addresses[0].phone_number #=> String
609
+ # resp.addresses[0].is_restricted #=> Boolean
598
610
  # resp.next_token #=> String
599
611
  #
600
612
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DescribeAddresses AWS API Documentation
@@ -646,6 +658,7 @@ module Aws::Snowball
646
658
  # resp.cluster_metadata.notification.job_states_to_notify #=> Array
647
659
  # resp.cluster_metadata.notification.job_states_to_notify[0] #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
648
660
  # resp.cluster_metadata.notification.notify_all #=> Boolean
661
+ # resp.cluster_metadata.forwarding_address_id #=> String
649
662
  #
650
663
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DescribeCluster AWS API Documentation
651
664
  #
@@ -657,7 +670,7 @@ module Aws::Snowball
657
670
  end
658
671
 
659
672
  # Returns information about a specific job including shipping
660
- # information, job status, and other important metadata. .
673
+ # information, job status, and other important metadata.
661
674
  #
662
675
  # @option params [required, String] :job_id
663
676
  # The automatically generated ID for a job, for example
@@ -711,6 +724,7 @@ module Aws::Snowball
711
724
  # resp.job_metadata.job_log_info.job_success_log_uri #=> String
712
725
  # resp.job_metadata.job_log_info.job_failure_log_uri #=> String
713
726
  # resp.job_metadata.cluster_id #=> String
727
+ # resp.job_metadata.forwarding_address_id #=> String
714
728
  # resp.sub_job_metadata #=> Array
715
729
  # resp.sub_job_metadata[0].job_id #=> String
716
730
  # resp.sub_job_metadata[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
@@ -747,6 +761,7 @@ module Aws::Snowball
747
761
  # resp.sub_job_metadata[0].job_log_info.job_success_log_uri #=> String
748
762
  # resp.sub_job_metadata[0].job_log_info.job_failure_log_uri #=> String
749
763
  # resp.sub_job_metadata[0].cluster_id #=> String
764
+ # resp.sub_job_metadata[0].forwarding_address_id #=> String
750
765
  #
751
766
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/DescribeJob AWS API Documentation
752
767
  #
@@ -1047,6 +1062,10 @@ module Aws::Snowball
1047
1062
  # @option params [Types::Notification] :notification
1048
1063
  # The new or updated Notification object.
1049
1064
  #
1065
+ # @option params [String] :forwarding_address_id
1066
+ # The updated ID for the forwarding address for a cluster. This field is
1067
+ # not supported in most regions.
1068
+ #
1050
1069
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1051
1070
  #
1052
1071
  # @example Request syntax with placeholder values
@@ -1083,6 +1102,7 @@ module Aws::Snowball
1083
1102
  # job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
1084
1103
  # notify_all: false,
1085
1104
  # },
1105
+ # forwarding_address_id: "AddressId",
1086
1106
  # })
1087
1107
  #
1088
1108
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/UpdateCluster AWS API Documentation
@@ -1105,7 +1125,7 @@ module Aws::Snowball
1105
1125
  #
1106
1126
  # @option params [String] :role_arn
1107
1127
  # The new role Amazon Resource Name (ARN) that you want to associate
1108
- # with this job. To create a role ARN, use the [CreateRole][1] AWS
1128
+ # with this job. To create a role ARN, use the [CreateRole][1]AWS
1109
1129
  # Identity and Access Management (IAM) API action.
1110
1130
  #
1111
1131
  #
@@ -1134,6 +1154,10 @@ module Aws::Snowball
1134
1154
  # The updated `SnowballCapacityPreference` of this job's JobMetadata
1135
1155
  # object. The 50 TB Snowballs are only available in the US regions.
1136
1156
  #
1157
+ # @option params [String] :forwarding_address_id
1158
+ # The updated ID for the forwarding address for a job. This field is not
1159
+ # supported in most regions.
1160
+ #
1137
1161
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1138
1162
  #
1139
1163
  # @example Request syntax with placeholder values
@@ -1171,6 +1195,7 @@ module Aws::Snowball
1171
1195
  # shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
1172
1196
  # description: "String",
1173
1197
  # snowball_capacity_preference: "T50", # accepts T50, T80, T100, NoPreference
1198
+ # forwarding_address_id: "AddressId",
1174
1199
  # })
1175
1200
  #
1176
1201
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/UpdateJob AWS API Documentation
@@ -1195,7 +1220,7 @@ module Aws::Snowball
1195
1220
  params: params,
1196
1221
  config: config)
1197
1222
  context[:gem_name] = 'aws-sdk-snowball'
1198
- context[:gem_version] = '1.0.0.rc3'
1223
+ context[:gem_version] = '1.0.0.rc4'
1199
1224
  Seahorse::Client::Request.new(handlers, context)
1200
1225
  end
1201
1226
 
@@ -52,6 +52,7 @@ module Aws::Snowball
52
52
  InvalidAddressException = Shapes::StructureShape.new(name: 'InvalidAddressException')
53
53
  InvalidInputCombinationException = Shapes::StructureShape.new(name: 'InvalidInputCombinationException')
54
54
  InvalidJobStateException = Shapes::StructureShape.new(name: 'InvalidJobStateException')
55
+ InvalidNextTokenException = Shapes::StructureShape.new(name: 'InvalidNextTokenException')
55
56
  InvalidResourceException = Shapes::StructureShape.new(name: 'InvalidResourceException')
56
57
  JobId = Shapes::StringShape.new(name: 'JobId')
57
58
  JobListEntry = Shapes::StructureShape.new(name: 'JobListEntry')
@@ -108,6 +109,7 @@ module Aws::Snowball
108
109
  Address.add_member(:country, Shapes::ShapeRef.new(shape: String, location_name: "Country"))
109
110
  Address.add_member(:postal_code, Shapes::ShapeRef.new(shape: String, location_name: "PostalCode"))
110
111
  Address.add_member(:phone_number, Shapes::ShapeRef.new(shape: String, location_name: "PhoneNumber"))
112
+ Address.add_member(:is_restricted, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsRestricted"))
111
113
  Address.struct_class = Types::Address
112
114
 
113
115
  AddressList.member = Shapes::ShapeRef.new(shape: Address)
@@ -142,6 +144,7 @@ module Aws::Snowball
142
144
  ClusterMetadata.add_member(:address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "AddressId"))
143
145
  ClusterMetadata.add_member(:shipping_option, Shapes::ShapeRef.new(shape: ShippingOption, location_name: "ShippingOption"))
144
146
  ClusterMetadata.add_member(:notification, Shapes::ShapeRef.new(shape: Notification, location_name: "Notification"))
147
+ ClusterMetadata.add_member(:forwarding_address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "ForwardingAddressId"))
145
148
  ClusterMetadata.struct_class = Types::ClusterMetadata
146
149
 
147
150
  CreateAddressRequest.add_member(:address, Shapes::ShapeRef.new(shape: Address, required: true, location_name: "Address"))
@@ -159,6 +162,7 @@ module Aws::Snowball
159
162
  CreateClusterRequest.add_member(:snowball_type, Shapes::ShapeRef.new(shape: SnowballType, location_name: "SnowballType"))
160
163
  CreateClusterRequest.add_member(:shipping_option, Shapes::ShapeRef.new(shape: ShippingOption, required: true, location_name: "ShippingOption"))
161
164
  CreateClusterRequest.add_member(:notification, Shapes::ShapeRef.new(shape: Notification, location_name: "Notification"))
165
+ CreateClusterRequest.add_member(:forwarding_address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "ForwardingAddressId"))
162
166
  CreateClusterRequest.struct_class = Types::CreateClusterRequest
163
167
 
164
168
  CreateClusterResult.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, location_name: "ClusterId"))
@@ -175,6 +179,7 @@ module Aws::Snowball
175
179
  CreateJobRequest.add_member(:notification, Shapes::ShapeRef.new(shape: Notification, location_name: "Notification"))
176
180
  CreateJobRequest.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, location_name: "ClusterId"))
177
181
  CreateJobRequest.add_member(:snowball_type, Shapes::ShapeRef.new(shape: SnowballType, location_name: "SnowballType"))
182
+ CreateJobRequest.add_member(:forwarding_address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "ForwardingAddressId"))
178
183
  CreateJobRequest.struct_class = Types::CreateJobRequest
179
184
 
180
185
  CreateJobResult.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, location_name: "JobId"))
@@ -268,6 +273,7 @@ module Aws::Snowball
268
273
  JobMetadata.add_member(:data_transfer_progress, Shapes::ShapeRef.new(shape: DataTransfer, location_name: "DataTransferProgress"))
269
274
  JobMetadata.add_member(:job_log_info, Shapes::ShapeRef.new(shape: JobLogs, location_name: "JobLogInfo"))
270
275
  JobMetadata.add_member(:cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "ClusterId"))
276
+ JobMetadata.add_member(:forwarding_address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "ForwardingAddressId"))
271
277
  JobMetadata.struct_class = Types::JobMetadata
272
278
 
273
279
  JobMetadataList.member = Shapes::ShapeRef.new(shape: JobMetadata)
@@ -340,6 +346,7 @@ module Aws::Snowball
340
346
  UpdateClusterRequest.add_member(:address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "AddressId"))
341
347
  UpdateClusterRequest.add_member(:shipping_option, Shapes::ShapeRef.new(shape: ShippingOption, location_name: "ShippingOption"))
342
348
  UpdateClusterRequest.add_member(:notification, Shapes::ShapeRef.new(shape: Notification, location_name: "Notification"))
349
+ UpdateClusterRequest.add_member(:forwarding_address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "ForwardingAddressId"))
343
350
  UpdateClusterRequest.struct_class = Types::UpdateClusterRequest
344
351
 
345
352
  UpdateClusterResult.struct_class = Types::UpdateClusterResult
@@ -352,6 +359,7 @@ module Aws::Snowball
352
359
  UpdateJobRequest.add_member(:shipping_option, Shapes::ShapeRef.new(shape: ShippingOption, location_name: "ShippingOption"))
353
360
  UpdateJobRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
354
361
  UpdateJobRequest.add_member(:snowball_capacity_preference, Shapes::ShapeRef.new(shape: SnowballCapacity, location_name: "SnowballCapacityPreference"))
362
+ UpdateJobRequest.add_member(:forwarding_address_id, Shapes::ShapeRef.new(shape: AddressId, location_name: "ForwardingAddressId"))
355
363
  UpdateJobRequest.struct_class = Types::UpdateJobRequest
356
364
 
357
365
  UpdateJobResult.struct_class = Types::UpdateJobResult
@@ -442,6 +450,7 @@ module Aws::Snowball
442
450
  o.input = Shapes::ShapeRef.new(shape: DescribeAddressesRequest)
443
451
  o.output = Shapes::ShapeRef.new(shape: DescribeAddressesResult)
444
452
  o.errors << Shapes::ShapeRef.new(shape: InvalidResourceException)
453
+ o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
445
454
  o[:pager] = Aws::Pager.new(
446
455
  limit_key: "max_results",
447
456
  tokens: {
@@ -503,6 +512,7 @@ module Aws::Snowball
503
512
  o.input = Shapes::ShapeRef.new(shape: ListClusterJobsRequest)
504
513
  o.output = Shapes::ShapeRef.new(shape: ListClusterJobsResult)
505
514
  o.errors << Shapes::ShapeRef.new(shape: InvalidResourceException)
515
+ o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
506
516
  end)
507
517
 
508
518
  api.add_operation(:list_clusters, Seahorse::Model::Operation.new.tap do |o|
@@ -511,6 +521,7 @@ module Aws::Snowball
511
521
  o.http_request_uri = "/"
512
522
  o.input = Shapes::ShapeRef.new(shape: ListClustersRequest)
513
523
  o.output = Shapes::ShapeRef.new(shape: ListClustersResult)
524
+ o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
514
525
  end)
515
526
 
516
527
  api.add_operation(:list_jobs, Seahorse::Model::Operation.new.tap do |o|
@@ -519,6 +530,7 @@ module Aws::Snowball
519
530
  o.http_request_uri = "/"
520
531
  o.input = Shapes::ShapeRef.new(shape: ListJobsRequest)
521
532
  o.output = Shapes::ShapeRef.new(shape: ListJobsResult)
533
+ o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
522
534
  o[:pager] = Aws::Pager.new(
523
535
  limit_key: "max_results",
524
536
  tokens: {
@@ -32,6 +32,7 @@ module Aws::Snowball
32
32
  # country: "String",
33
33
  # postal_code: "String",
34
34
  # phone_number: "String",
35
+ # is_restricted: false,
35
36
  # }
36
37
  #
37
38
  # @!attribute [rw] address_id
@@ -71,12 +72,11 @@ module Aws::Snowball
71
72
  # @return [String]
72
73
  #
73
74
  # @!attribute [rw] prefecture_or_district
74
- # The prefecture or district that the appliance will be shipped to.
75
+ # This field is no longer used and the value is ignored.
75
76
  # @return [String]
76
77
  #
77
78
  # @!attribute [rw] landmark
78
- # The landmark identifying the address that the appliance will be
79
- # shipped to.
79
+ # This field is no longer used and the value is ignored.
80
80
  # @return [String]
81
81
  #
82
82
  # @!attribute [rw] country
@@ -92,6 +92,11 @@ module Aws::Snowball
92
92
  # delivered to.
93
93
  # @return [String]
94
94
  #
95
+ # @!attribute [rw] is_restricted
96
+ # If the address you are creating is a primary address, then set this
97
+ # option to true. This field is not supported in most regions.
98
+ # @return [Boolean]
99
+ #
95
100
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/Address AWS API Documentation
96
101
  #
97
102
  class Address < Struct.new(
@@ -107,7 +112,8 @@ module Aws::Snowball
107
112
  :landmark,
108
113
  :country,
109
114
  :postal_code,
110
- :phone_number)
115
+ :phone_number,
116
+ :is_restricted)
111
117
  include Aws::Structure
112
118
  end
113
119
 
@@ -273,6 +279,12 @@ module Aws::Snowball
273
279
  # settings for this cluster.
274
280
  # @return [Types::Notification]
275
281
  #
282
+ # @!attribute [rw] forwarding_address_id
283
+ # The ID of the address that you want a cluster shipped to, after it
284
+ # will be shipped to its primary address. This field is not supported
285
+ # in most regions.
286
+ # @return [String]
287
+ #
276
288
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/ClusterMetadata AWS API Documentation
277
289
  #
278
290
  class ClusterMetadata < Struct.new(
@@ -287,7 +299,8 @@ module Aws::Snowball
287
299
  :resources,
288
300
  :address_id,
289
301
  :shipping_option,
290
- :notification)
302
+ :notification,
303
+ :forwarding_address_id)
291
304
  include Aws::Structure
292
305
  end
293
306
 
@@ -309,6 +322,7 @@ module Aws::Snowball
309
322
  # country: "String",
310
323
  # postal_code: "String",
311
324
  # phone_number: "String",
325
+ # is_restricted: false,
312
326
  # },
313
327
  # }
314
328
  #
@@ -373,6 +387,7 @@ module Aws::Snowball
373
387
  # job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
374
388
  # notify_all: false,
375
389
  # },
390
+ # forwarding_address_id: "AddressId",
376
391
  # }
377
392
  #
378
393
  # @!attribute [rw] job_type
@@ -447,6 +462,11 @@ module Aws::Snowball
447
462
  # settings for this cluster.
448
463
  # @return [Types::Notification]
449
464
  #
465
+ # @!attribute [rw] forwarding_address_id
466
+ # The forwarding address ID for a cluster. This field is not supported
467
+ # in most regions.
468
+ # @return [String]
469
+ #
450
470
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/CreateClusterRequest AWS API Documentation
451
471
  #
452
472
  class CreateClusterRequest < Struct.new(
@@ -458,7 +478,8 @@ module Aws::Snowball
458
478
  :role_arn,
459
479
  :snowball_type,
460
480
  :shipping_option,
461
- :notification)
481
+ :notification,
482
+ :forwarding_address_id)
462
483
  include Aws::Structure
463
484
  end
464
485
 
@@ -512,6 +533,7 @@ module Aws::Snowball
512
533
  # },
513
534
  # cluster_id: "ClusterId",
514
535
  # snowball_type: "STANDARD", # accepts STANDARD, EDGE
536
+ # forwarding_address_id: "AddressId",
515
537
  # }
516
538
  #
517
539
  # @!attribute [rw] job_type
@@ -603,6 +625,11 @@ module Aws::Snowball
603
625
  # the only supported appliance type for cluster jobs is `EDGE`.
604
626
  # @return [String]
605
627
  #
628
+ # @!attribute [rw] forwarding_address_id
629
+ # The forwarding address ID for a job. This field is not supported in
630
+ # most regions.
631
+ # @return [String]
632
+ #
606
633
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/CreateJobRequest AWS API Documentation
607
634
  #
608
635
  class CreateJobRequest < Struct.new(
@@ -616,7 +643,8 @@ module Aws::Snowball
616
643
  :shipping_option,
617
644
  :notification,
618
645
  :cluster_id,
619
- :snowball_type)
646
+ :snowball_type,
647
+ :forwarding_address_id)
620
648
  include Aws::Structure
621
649
  end
622
650
 
@@ -1054,13 +1082,21 @@ module Aws::Snowball
1054
1082
  # @!attribute [rw] kms_key_arn
1055
1083
  # The Amazon Resource Name (ARN) for the AWS Key Management Service
1056
1084
  # (AWS KMS) key associated with this job. This ARN was created using
1057
- # the `CreateKey` API action in AWS KMS.
1085
+ # the [CreateKey][1] API action in AWS KMS.
1086
+ #
1087
+ #
1088
+ #
1089
+ # [1]: http://docs.aws.amazon.com/kms/latest/APIReference/API_CreateKey.html
1058
1090
  # @return [String]
1059
1091
  #
1060
1092
  # @!attribute [rw] role_arn
1061
1093
  # The role ARN associated with this job. This ARN was created using
1062
- # the `CreateRole` API action in AWS Identity and Access Management
1094
+ # the [CreateRole][1] API action in AWS Identity and Access Management
1063
1095
  # (IAM).
1096
+ #
1097
+ #
1098
+ #
1099
+ # [1]: http://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateRole.html
1064
1100
  # @return [String]
1065
1101
  #
1066
1102
  # @!attribute [rw] address_id
@@ -1105,6 +1141,12 @@ module Aws::Snowball
1105
1141
  # `CID123e4567-e89b-12d3-a456-426655440000`.
1106
1142
  # @return [String]
1107
1143
  #
1144
+ # @!attribute [rw] forwarding_address_id
1145
+ # The ID of the address that you want a job shipped to, after it will
1146
+ # be shipped to its primary address. This field is not supported in
1147
+ # most regions.
1148
+ # @return [String]
1149
+ #
1108
1150
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/JobMetadata AWS API Documentation
1109
1151
  #
1110
1152
  class JobMetadata < Struct.new(
@@ -1123,7 +1165,8 @@ module Aws::Snowball
1123
1165
  :notification,
1124
1166
  :data_transfer_progress,
1125
1167
  :job_log_info,
1126
- :cluster_id)
1168
+ :cluster_id,
1169
+ :forwarding_address_id)
1127
1170
  include Aws::Structure
1128
1171
  end
1129
1172
 
@@ -1474,8 +1517,7 @@ module Aws::Snowball
1474
1517
  # outbound shipment.
1475
1518
  #
1476
1519
  # @!attribute [rw] status
1477
- # Status information for a shipment. Valid statuses include `NEW`,
1478
- # `IN_TRANSIT`, and `DELIVERED`.
1520
+ # Status information for a shipment.
1479
1521
  # @return [String]
1480
1522
  #
1481
1523
  # @!attribute [rw] tracking_number
@@ -1572,6 +1614,7 @@ module Aws::Snowball
1572
1614
  # job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
1573
1615
  # notify_all: false,
1574
1616
  # },
1617
+ # forwarding_address_id: "AddressId",
1575
1618
  # }
1576
1619
  #
1577
1620
  # @!attribute [rw] cluster_id
@@ -1611,6 +1654,11 @@ module Aws::Snowball
1611
1654
  # The new or updated Notification object.
1612
1655
  # @return [Types::Notification]
1613
1656
  #
1657
+ # @!attribute [rw] forwarding_address_id
1658
+ # The updated ID for the forwarding address for a cluster. This field
1659
+ # is not supported in most regions.
1660
+ # @return [String]
1661
+ #
1614
1662
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/UpdateClusterRequest AWS API Documentation
1615
1663
  #
1616
1664
  class UpdateClusterRequest < Struct.new(
@@ -1620,7 +1668,8 @@ module Aws::Snowball
1620
1668
  :resources,
1621
1669
  :address_id,
1622
1670
  :shipping_option,
1623
- :notification)
1671
+ :notification,
1672
+ :forwarding_address_id)
1624
1673
  include Aws::Structure
1625
1674
  end
1626
1675
 
@@ -1664,6 +1713,7 @@ module Aws::Snowball
1664
1713
  # shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
1665
1714
  # description: "String",
1666
1715
  # snowball_capacity_preference: "T50", # accepts T50, T80, T100, NoPreference
1716
+ # forwarding_address_id: "AddressId",
1667
1717
  # }
1668
1718
  #
1669
1719
  # @!attribute [rw] job_id
@@ -1673,7 +1723,7 @@ module Aws::Snowball
1673
1723
  #
1674
1724
  # @!attribute [rw] role_arn
1675
1725
  # The new role Amazon Resource Name (ARN) that you want to associate
1676
- # with this job. To create a role ARN, use the [CreateRole][1] AWS
1726
+ # with this job. To create a role ARN, use the [CreateRole][1]AWS
1677
1727
  # Identity and Access Management (IAM) API action.
1678
1728
  #
1679
1729
  #
@@ -1709,6 +1759,11 @@ module Aws::Snowball
1709
1759
  # object. The 50 TB Snowballs are only available in the US regions.
1710
1760
  # @return [String]
1711
1761
  #
1762
+ # @!attribute [rw] forwarding_address_id
1763
+ # The updated ID for the forwarding address for a job. This field is
1764
+ # not supported in most regions.
1765
+ # @return [String]
1766
+ #
1712
1767
  # @see http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/UpdateJobRequest AWS API Documentation
1713
1768
  #
1714
1769
  class UpdateJobRequest < Struct.new(
@@ -1719,7 +1774,8 @@ module Aws::Snowball
1719
1774
  :address_id,
1720
1775
  :shipping_option,
1721
1776
  :description,
1722
- :snowball_capacity_preference)
1777
+ :snowball_capacity_preference,
1778
+ :forwarding_address_id)
1723
1779
  include Aws::Structure
1724
1780
  end
1725
1781
 
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.0.0.rc3
4
+ version: 1.0.0.rc4
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: 2017-04-26 00:00:00.000000000 Z
11
+ date: 2017-05-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core