aws-sdk-v1 1.55.0 → 1.56.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -201,6 +201,8 @@ module AWS
201
201
  # @attr_reader [String] ssl_ca_path (nil)
202
202
  # The path the a CA cert directory.
203
203
  #
204
+ # @attr_reader [String] ssl_cert_store (nil)
205
+ #
204
206
  # @attr_reader [Boolean] ssl_verify_peer (true) When `true`
205
207
  # the HTTP handler validate server certificates for HTTPS requests.
206
208
  #
@@ -462,6 +464,7 @@ module AWS
462
464
  :ssl_verify_peer?,
463
465
  :ssl_ca_file,
464
466
  :ssl_ca_path,
467
+ :ssl_cert_store,
465
468
  :use_ssl?,
466
469
  :user_agent_prefix,
467
470
  ]
@@ -529,6 +532,8 @@ module AWS
529
532
 
530
533
  add_option :ssl_ca_path
531
534
 
535
+ add_option :ssl_cert_store
536
+
532
537
  add_option :stub_requests, false, :boolean => true
533
538
 
534
539
  add_option :use_ssl, true, :boolean => true
@@ -536,7 +541,7 @@ module AWS
536
541
  add_option :user_agent_prefix
537
542
 
538
543
  add_option :verify_response_body_content_length, true, :boolean => true
539
-
544
+
540
545
  end
541
546
  end
542
547
  end
@@ -30,6 +30,7 @@ module AWS
30
30
  # @attr_reader [Boolean] ssl_verify_peer
31
31
  # @attr_reader [String,nil] ssl_ca_file
32
32
  # @attr_reader [String,nil] ssl_ca_path
33
+ # @attr_reader [String,nil] ssl_cert_store
33
34
  # @api private
34
35
  class ConnectionPool
35
36
 
@@ -48,6 +49,7 @@ module AWS
48
49
  :ssl_verify_peer,
49
50
  :ssl_ca_file,
50
51
  :ssl_ca_path,
52
+ :ssl_cert_store,
51
53
  ]
52
54
 
53
55
  OPTIONS.each do |attr_name|
@@ -224,6 +226,8 @@ module AWS
224
226
  # `:ssl_ca_file` or `:ssl_ca_path` the the system default will
225
227
  # be used if available.
226
228
  #
229
+ # @option options [String] :ssl_cert_store
230
+ #
227
231
  # @return [ConnectionPool]
228
232
  def new options = {}
229
233
  options = pool_options(options)
@@ -268,6 +272,7 @@ module AWS
268
272
  :ssl_verify_peer => verify_peer,
269
273
  :ssl_ca_file => options[:ssl_ca_file],
270
274
  :ssl_ca_path => options[:ssl_ca_path],
275
+ :ssl_cert_store => options[:ssl_cert_store],
271
276
  }
272
277
  end
273
278
 
@@ -311,6 +316,7 @@ module AWS
311
316
  http.verify_mode = OpenSSL::SSL::VERIFY_PEER
312
317
  http.ca_file = ssl_ca_file if ssl_ca_file
313
318
  http.ca_path = ssl_ca_path if ssl_ca_path
319
+ http.cert_store = ssl_cert_store if ssl_cert_store
314
320
  else
315
321
  http.verify_mode = OpenSSL::SSL::VERIFY_NONE
316
322
  end
@@ -17,7 +17,7 @@ module AWS
17
17
  # Client class for Amazon Relational Database Service (RDS).
18
18
  class Client < Core::QueryClient
19
19
 
20
- API_VERSION = '2013-09-09'
20
+ API_VERSION = '2014-09-01'
21
21
 
22
22
  signature_version :Version4, 'rds'
23
23
 
@@ -38,5 +38,11 @@ module AWS
38
38
 
39
39
  end
40
40
 
41
+ class Client::V20140901 < Client
42
+
43
+ define_client_methods('2014-09-01')
44
+
45
+ end
46
+
41
47
  end
42
48
  end
@@ -13,5 +13,5 @@
13
13
 
14
14
  module AWS
15
15
  # Current version of the AWS SDK for Ruby
16
- VERSION = '1.55.0'
16
+ VERSION = '1.56.0'
17
17
  end
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.55.0
4
+ version: 1.56.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: 2014-10-08 00:00:00.000000000 Z
11
+ date: 2014-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 1.4.4
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: 1.4.4
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: json
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.4'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.4'
41
41
  description: |-
@@ -48,12 +48,64 @@ executables:
48
48
  extensions: []
49
49
  extra_rdoc_files: []
50
50
  files:
51
+ - ".yardopts"
52
+ - LICENSE.txt
53
+ - README.md
54
+ - bin/aws-rb
51
55
  - ca-bundle.crt
52
- - rails/init.rb
53
56
  - endpoints.json
54
- - .yardopts
55
- - README.md
56
- - LICENSE.txt
57
+ - lib/aws-sdk-v1.rb
58
+ - lib/aws.rb
59
+ - lib/aws/api_config/AutoScaling-2011-01-01.yml
60
+ - lib/aws/api_config/CloudFormation-2010-05-15.yml
61
+ - lib/aws/api_config/CloudFront-2013-05-12.yml
62
+ - lib/aws/api_config/CloudFront-2013-08-26.yml
63
+ - lib/aws/api_config/CloudFront-2013-09-27.yml
64
+ - lib/aws/api_config/CloudFront-2013-11-11.yml
65
+ - lib/aws/api_config/CloudFront-2013-11-22.yml
66
+ - lib/aws/api_config/CloudFront-2014-01-31.yml
67
+ - lib/aws/api_config/CloudFront-2014-05-31.yml
68
+ - lib/aws/api_config/CloudSearch-2011-02-01.yml
69
+ - lib/aws/api_config/CloudSearch-2013-01-01.yml
70
+ - lib/aws/api_config/CloudTrail-2013-11-01.yml
71
+ - lib/aws/api_config/CloudWatch-2010-08-01.yml
72
+ - lib/aws/api_config/DataPipeline-2012-10-29.yml
73
+ - lib/aws/api_config/DirectConnect-2012-10-25.yml
74
+ - lib/aws/api_config/DynamoDB-2011-12-05.yml
75
+ - lib/aws/api_config/DynamoDB-2012-08-10.yml
76
+ - lib/aws/api_config/EC2-2013-08-15.yml
77
+ - lib/aws/api_config/EC2-2013-10-01.yml
78
+ - lib/aws/api_config/EC2-2013-10-15.yml
79
+ - lib/aws/api_config/EC2-2014-02-01.yml
80
+ - lib/aws/api_config/EC2-2014-05-01.yml
81
+ - lib/aws/api_config/ELB-2012-06-01.yml
82
+ - lib/aws/api_config/EMR-2009-03-31.yml
83
+ - lib/aws/api_config/ElastiCache-2013-06-15.yml
84
+ - lib/aws/api_config/ElastiCache-2014-03-24.yml
85
+ - lib/aws/api_config/ElastiCache-2014-07-15.yml
86
+ - lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml
87
+ - lib/aws/api_config/ElasticTranscoder-2012-09-25.yml
88
+ - lib/aws/api_config/Glacier-2012-06-01.yml
89
+ - lib/aws/api_config/IAM-2010-05-08.yml
90
+ - lib/aws/api_config/ImportExport-2010-06-01.yml
91
+ - lib/aws/api_config/Kinesis-2013-12-02.yml
92
+ - lib/aws/api_config/OpsWorks-2013-02-18.yml
93
+ - lib/aws/api_config/RDS-2013-05-15.yml
94
+ - lib/aws/api_config/RDS-2013-09-09.yml
95
+ - lib/aws/api_config/RDS-2014-09-01.yml
96
+ - lib/aws/api_config/Redshift-2012-12-01.yml
97
+ - lib/aws/api_config/Route53-2012-12-12.yml
98
+ - lib/aws/api_config/Route53-2013-04-01.yml
99
+ - lib/aws/api_config/SNS-2010-03-31.yml
100
+ - lib/aws/api_config/SQS-2012-11-05.yml
101
+ - lib/aws/api_config/STS-2011-06-15.yml
102
+ - lib/aws/api_config/SimpleDB-2009-04-15.yml
103
+ - lib/aws/api_config/SimpleEmailService-2010-12-01.yml
104
+ - lib/aws/api_config/SimpleWorkflow-2012-01-25.yml
105
+ - lib/aws/api_config/StorageGateway-2012-06-30.yml
106
+ - lib/aws/api_config/StorageGateway-2013-06-30.yml
107
+ - lib/aws/api_config/Support-2013-04-15.yml
108
+ - lib/aws/auto_scaling.rb
57
109
  - lib/aws/auto_scaling/activity.rb
58
110
  - lib/aws/auto_scaling/activity_collection.rb
59
111
  - lib/aws/auto_scaling/client.rb
@@ -75,7 +127,7 @@ files:
75
127
  - lib/aws/auto_scaling/scheduled_action_collection.rb
76
128
  - lib/aws/auto_scaling/tag.rb
77
129
  - lib/aws/auto_scaling/tag_collection.rb
78
- - lib/aws/auto_scaling.rb
130
+ - lib/aws/cloud_formation.rb
79
131
  - lib/aws/cloud_formation/client.rb
80
132
  - lib/aws/cloud_formation/config.rb
81
133
  - lib/aws/cloud_formation/errors.rb
@@ -89,19 +141,19 @@ files:
89
141
  - lib/aws/cloud_formation/stack_resource_collection.rb
90
142
  - lib/aws/cloud_formation/stack_resource_summary_collection.rb
91
143
  - lib/aws/cloud_formation/stack_summary_collection.rb
92
- - lib/aws/cloud_formation.rb
144
+ - lib/aws/cloud_front.rb
93
145
  - lib/aws/cloud_front/client.rb
94
146
  - lib/aws/cloud_front/config.rb
95
147
  - lib/aws/cloud_front/errors.rb
96
- - lib/aws/cloud_front.rb
148
+ - lib/aws/cloud_search.rb
97
149
  - lib/aws/cloud_search/client.rb
98
150
  - lib/aws/cloud_search/config.rb
99
151
  - lib/aws/cloud_search/errors.rb
100
- - lib/aws/cloud_search.rb
152
+ - lib/aws/cloud_trail.rb
101
153
  - lib/aws/cloud_trail/client.rb
102
154
  - lib/aws/cloud_trail/config.rb
103
155
  - lib/aws/cloud_trail/errors.rb
104
- - lib/aws/cloud_trail.rb
156
+ - lib/aws/cloud_watch.rb
105
157
  - lib/aws/cloud_watch/alarm.rb
106
158
  - lib/aws/cloud_watch/alarm_collection.rb
107
159
  - lib/aws/cloud_watch/alarm_history_item.rb
@@ -113,14 +165,14 @@ files:
113
165
  - lib/aws/cloud_watch/metric_alarm_collection.rb
114
166
  - lib/aws/cloud_watch/metric_collection.rb
115
167
  - lib/aws/cloud_watch/metric_statistics.rb
116
- - lib/aws/cloud_watch.rb
168
+ - lib/aws/core.rb
117
169
  - lib/aws/core/async_handle.rb
118
170
  - lib/aws/core/cacheable.rb
119
171
  - lib/aws/core/client.rb
172
+ - lib/aws/core/collection.rb
120
173
  - lib/aws/core/collection/simple.rb
121
174
  - lib/aws/core/collection/with_limit_and_next_token.rb
122
175
  - lib/aws/core/collection/with_next_token.rb
123
- - lib/aws/core/collection.rb
124
176
  - lib/aws/core/configuration.rb
125
177
  - lib/aws/core/credential_providers.rb
126
178
  - lib/aws/core/data.rb
@@ -174,8 +226,8 @@ files:
174
226
  - lib/aws/core/signers/version_2.rb
175
227
  - lib/aws/core/signers/version_3.rb
176
228
  - lib/aws/core/signers/version_3_https.rb
177
- - lib/aws/core/signers/version_4/chunk_signed_stream.rb
178
229
  - lib/aws/core/signers/version_4.rb
230
+ - lib/aws/core/signers/version_4/chunk_signed_stream.rb
179
231
  - lib/aws/core/uri_escape.rb
180
232
  - lib/aws/core/xml/frame.rb
181
233
  - lib/aws/core/xml/frame_stack.rb
@@ -187,22 +239,22 @@ files:
187
239
  - lib/aws/core/xml/sax_handlers/ox.rb
188
240
  - lib/aws/core/xml/sax_handlers/rexml.rb
189
241
  - lib/aws/core/xml/stub.rb
190
- - lib/aws/core.rb
242
+ - lib/aws/data_pipeline.rb
191
243
  - lib/aws/data_pipeline/client.rb
192
244
  - lib/aws/data_pipeline/config.rb
193
245
  - lib/aws/data_pipeline/errors.rb
194
- - lib/aws/data_pipeline.rb
246
+ - lib/aws/direct_connect.rb
195
247
  - lib/aws/direct_connect/client.rb
196
248
  - lib/aws/direct_connect/config.rb
197
249
  - lib/aws/direct_connect/errors.rb
198
- - lib/aws/direct_connect.rb
250
+ - lib/aws/dynamo_db.rb
199
251
  - lib/aws/dynamo_db/attribute_collection.rb
200
252
  - lib/aws/dynamo_db/batch_get.rb
201
253
  - lib/aws/dynamo_db/batch_write.rb
202
254
  - lib/aws/dynamo_db/binary.rb
255
+ - lib/aws/dynamo_db/client.rb
203
256
  - lib/aws/dynamo_db/client/v20111205.rb
204
257
  - lib/aws/dynamo_db/client/v20120810.rb
205
- - lib/aws/dynamo_db/client.rb
206
258
  - lib/aws/dynamo_db/client_v2.rb
207
259
  - lib/aws/dynamo_db/config.rb
208
260
  - lib/aws/dynamo_db/errors.rb
@@ -216,7 +268,7 @@ files:
216
268
  - lib/aws/dynamo_db/table.rb
217
269
  - lib/aws/dynamo_db/table_collection.rb
218
270
  - lib/aws/dynamo_db/types.rb
219
- - lib/aws/dynamo_db.rb
271
+ - lib/aws/ec2.rb
220
272
  - lib/aws/ec2/attachment.rb
221
273
  - lib/aws/ec2/attachment_collection.rb
222
274
  - lib/aws/ec2/availability_zone.rb
@@ -240,17 +292,17 @@ files:
240
292
  - lib/aws/ec2/image_collection.rb
241
293
  - lib/aws/ec2/instance.rb
242
294
  - lib/aws/ec2/instance_collection.rb
243
- - lib/aws/ec2/internet_gateway/attachment.rb
244
295
  - lib/aws/ec2/internet_gateway.rb
296
+ - lib/aws/ec2/internet_gateway/attachment.rb
245
297
  - lib/aws/ec2/internet_gateway_collection.rb
246
298
  - lib/aws/ec2/key_pair.rb
247
299
  - lib/aws/ec2/key_pair_collection.rb
300
+ - lib/aws/ec2/network_acl.rb
248
301
  - lib/aws/ec2/network_acl/association.rb
249
302
  - lib/aws/ec2/network_acl/entry.rb
250
- - lib/aws/ec2/network_acl.rb
251
303
  - lib/aws/ec2/network_acl_collection.rb
252
- - lib/aws/ec2/network_interface/attachment.rb
253
304
  - lib/aws/ec2/network_interface.rb
305
+ - lib/aws/ec2/network_interface/attachment.rb
254
306
  - lib/aws/ec2/network_interface_collection.rb
255
307
  - lib/aws/ec2/permission_collection.rb
256
308
  - lib/aws/ec2/region.rb
@@ -261,13 +313,13 @@ files:
261
313
  - lib/aws/ec2/reserved_instances_offering_collection.rb
262
314
  - lib/aws/ec2/resource.rb
263
315
  - lib/aws/ec2/resource_tag_collection.rb
316
+ - lib/aws/ec2/route_table.rb
264
317
  - lib/aws/ec2/route_table/association.rb
265
318
  - lib/aws/ec2/route_table/route.rb
266
- - lib/aws/ec2/route_table.rb
267
319
  - lib/aws/ec2/route_table_collection.rb
320
+ - lib/aws/ec2/security_group.rb
268
321
  - lib/aws/ec2/security_group/ip_permission.rb
269
322
  - lib/aws/ec2/security_group/ip_permission_collection.rb
270
- - lib/aws/ec2/security_group.rb
271
323
  - lib/aws/ec2/security_group_collection.rb
272
324
  - lib/aws/ec2/snapshot.rb
273
325
  - lib/aws/ec2/snapshot_collection.rb
@@ -281,25 +333,25 @@ files:
281
333
  - lib/aws/ec2/volume_collection.rb
282
334
  - lib/aws/ec2/vpc.rb
283
335
  - lib/aws/ec2/vpc_collection.rb
284
- - lib/aws/ec2/vpn_connection/telemetry.rb
285
336
  - lib/aws/ec2/vpn_connection.rb
337
+ - lib/aws/ec2/vpn_connection/telemetry.rb
286
338
  - lib/aws/ec2/vpn_connection_collection.rb
287
- - lib/aws/ec2/vpn_gateway/attachment.rb
288
339
  - lib/aws/ec2/vpn_gateway.rb
340
+ - lib/aws/ec2/vpn_gateway/attachment.rb
289
341
  - lib/aws/ec2/vpn_gateway_collection.rb
290
- - lib/aws/ec2.rb
342
+ - lib/aws/elastic_beanstalk.rb
291
343
  - lib/aws/elastic_beanstalk/client.rb
292
344
  - lib/aws/elastic_beanstalk/config.rb
293
345
  - lib/aws/elastic_beanstalk/errors.rb
294
- - lib/aws/elastic_beanstalk.rb
346
+ - lib/aws/elastic_transcoder.rb
295
347
  - lib/aws/elastic_transcoder/client.rb
296
348
  - lib/aws/elastic_transcoder/config.rb
297
349
  - lib/aws/elastic_transcoder/errors.rb
298
- - lib/aws/elastic_transcoder.rb
350
+ - lib/aws/elasticache.rb
299
351
  - lib/aws/elasticache/client.rb
300
352
  - lib/aws/elasticache/config.rb
301
353
  - lib/aws/elasticache/errors.rb
302
- - lib/aws/elasticache.rb
354
+ - lib/aws/elb.rb
303
355
  - lib/aws/elb/availability_zone_collection.rb
304
356
  - lib/aws/elb/backend_server_policy_collection.rb
305
357
  - lib/aws/elb/client.rb
@@ -313,7 +365,7 @@ files:
313
365
  - lib/aws/elb/load_balancer_collection.rb
314
366
  - lib/aws/elb/load_balancer_policy.rb
315
367
  - lib/aws/elb/load_balancer_policy_collection.rb
316
- - lib/aws/elb.rb
368
+ - lib/aws/emr.rb
317
369
  - lib/aws/emr/client.rb
318
370
  - lib/aws/emr/config.rb
319
371
  - lib/aws/emr/errors.rb
@@ -321,8 +373,8 @@ files:
321
373
  - lib/aws/emr/instance_group_collection.rb
322
374
  - lib/aws/emr/job_flow.rb
323
375
  - lib/aws/emr/job_flow_collection.rb
324
- - lib/aws/emr.rb
325
376
  - lib/aws/errors.rb
377
+ - lib/aws/glacier.rb
326
378
  - lib/aws/glacier/archive.rb
327
379
  - lib/aws/glacier/archive_collection.rb
328
380
  - lib/aws/glacier/client.rb
@@ -332,7 +384,7 @@ files:
332
384
  - lib/aws/glacier/vault.rb
333
385
  - lib/aws/glacier/vault_collection.rb
334
386
  - lib/aws/glacier/vault_notification_configuration.rb
335
- - lib/aws/glacier.rb
387
+ - lib/aws/iam.rb
336
388
  - lib/aws/iam/access_key.rb
337
389
  - lib/aws/iam/access_key_collection.rb
338
390
  - lib/aws/iam/account_alias_collection.rb
@@ -361,20 +413,20 @@ files:
361
413
  - lib/aws/iam/user_policy_collection.rb
362
414
  - lib/aws/iam/virtual_mfa_device.rb
363
415
  - lib/aws/iam/virtual_mfa_device_collection.rb
364
- - lib/aws/iam.rb
416
+ - lib/aws/import_export.rb
365
417
  - lib/aws/import_export/client.rb
366
418
  - lib/aws/import_export/config.rb
367
419
  - lib/aws/import_export/errors.rb
368
- - lib/aws/import_export.rb
420
+ - lib/aws/kinesis.rb
369
421
  - lib/aws/kinesis/client.rb
370
422
  - lib/aws/kinesis/config.rb
371
423
  - lib/aws/kinesis/errors.rb
372
- - lib/aws/kinesis.rb
424
+ - lib/aws/ops_works.rb
373
425
  - lib/aws/ops_works/client.rb
374
426
  - lib/aws/ops_works/config.rb
375
427
  - lib/aws/ops_works/errors.rb
376
- - lib/aws/ops_works.rb
377
428
  - lib/aws/rails.rb
429
+ - lib/aws/rds.rb
378
430
  - lib/aws/rds/client.rb
379
431
  - lib/aws/rds/config.rb
380
432
  - lib/aws/rds/db_instance.rb
@@ -382,21 +434,21 @@ files:
382
434
  - lib/aws/rds/db_snapshot.rb
383
435
  - lib/aws/rds/db_snapshot_collection.rb
384
436
  - lib/aws/rds/errors.rb
385
- - lib/aws/rds.rb
437
+ - lib/aws/record.rb
386
438
  - lib/aws/record/abstract_base.rb
387
439
  - lib/aws/record/attributes.rb
388
440
  - lib/aws/record/conversion.rb
389
441
  - lib/aws/record/dirty_tracking.rb
390
442
  - lib/aws/record/errors.rb
391
443
  - lib/aws/record/exceptions.rb
444
+ - lib/aws/record/hash_model.rb
392
445
  - lib/aws/record/hash_model/attributes.rb
393
446
  - lib/aws/record/hash_model/finder_methods.rb
394
447
  - lib/aws/record/hash_model/scope.rb
395
- - lib/aws/record/hash_model.rb
448
+ - lib/aws/record/model.rb
396
449
  - lib/aws/record/model/attributes.rb
397
450
  - lib/aws/record/model/finder_methods.rb
398
451
  - lib/aws/record/model/scope.rb
399
- - lib/aws/record/model.rb
400
452
  - lib/aws/record/naming.rb
401
453
  - lib/aws/record/scope.rb
402
454
  - lib/aws/record/validations.rb
@@ -412,11 +464,11 @@ files:
412
464
  - lib/aws/record/validators/method.rb
413
465
  - lib/aws/record/validators/numericality.rb
414
466
  - lib/aws/record/validators/presence.rb
415
- - lib/aws/record.rb
467
+ - lib/aws/redshift.rb
416
468
  - lib/aws/redshift/client.rb
417
469
  - lib/aws/redshift/config.rb
418
470
  - lib/aws/redshift/errors.rb
419
- - lib/aws/redshift.rb
471
+ - lib/aws/route_53.rb
420
472
  - lib/aws/route_53/change_batch.rb
421
473
  - lib/aws/route_53/change_info.rb
422
474
  - lib/aws/route_53/client.rb
@@ -426,7 +478,7 @@ files:
426
478
  - lib/aws/route_53/hosted_zone_collection.rb
427
479
  - lib/aws/route_53/resource_record_set.rb
428
480
  - lib/aws/route_53/resource_record_set_collection.rb
429
- - lib/aws/route_53.rb
481
+ - lib/aws/s3.rb
430
482
  - lib/aws/s3/access_control_list.rb
431
483
  - lib/aws/s3/acl_object.rb
432
484
  - lib/aws/s3/acl_options.rb
@@ -436,8 +488,8 @@ files:
436
488
  - lib/aws/s3/bucket_tag_collection.rb
437
489
  - lib/aws/s3/bucket_version_collection.rb
438
490
  - lib/aws/s3/cipher_io.rb
439
- - lib/aws/s3/client/xml.rb
440
491
  - lib/aws/s3/client.rb
492
+ - lib/aws/s3/client/xml.rb
441
493
  - lib/aws/s3/config.rb
442
494
  - lib/aws/s3/cors_rule.rb
443
495
  - lib/aws/s3/cors_rule_collection.rb
@@ -459,16 +511,16 @@ files:
459
511
  - lib/aws/s3/presigned_post.rb
460
512
  - lib/aws/s3/request.rb
461
513
  - lib/aws/s3/s3_object.rb
514
+ - lib/aws/s3/tree.rb
462
515
  - lib/aws/s3/tree/branch_node.rb
463
516
  - lib/aws/s3/tree/child_collection.rb
464
517
  - lib/aws/s3/tree/leaf_node.rb
465
518
  - lib/aws/s3/tree/node.rb
466
519
  - lib/aws/s3/tree/parent.rb
467
- - lib/aws/s3/tree.rb
468
520
  - lib/aws/s3/uploaded_part.rb
469
521
  - lib/aws/s3/uploaded_part_collection.rb
470
522
  - lib/aws/s3/website_configuration.rb
471
- - lib/aws/s3.rb
523
+ - lib/aws/simple_db.rb
472
524
  - lib/aws/simple_db/attribute.rb
473
525
  - lib/aws/simple_db/attribute_collection.rb
474
526
  - lib/aws/simple_db/client.rb
@@ -484,7 +536,7 @@ files:
484
536
  - lib/aws/simple_db/item_collection.rb
485
537
  - lib/aws/simple_db/item_data.rb
486
538
  - lib/aws/simple_db/put_attributes.rb
487
- - lib/aws/simple_db.rb
539
+ - lib/aws/simple_email_service.rb
488
540
  - lib/aws/simple_email_service/client.rb
489
541
  - lib/aws/simple_email_service/config.rb
490
542
  - lib/aws/simple_email_service/email_address_collection.rb
@@ -492,7 +544,7 @@ files:
492
544
  - lib/aws/simple_email_service/identity.rb
493
545
  - lib/aws/simple_email_service/identity_collection.rb
494
546
  - lib/aws/simple_email_service/quotas.rb
495
- - lib/aws/simple_email_service.rb
547
+ - lib/aws/simple_workflow.rb
496
548
  - lib/aws/simple_workflow/activity_task.rb
497
549
  - lib/aws/simple_workflow/activity_task_collection.rb
498
550
  - lib/aws/simple_workflow/activity_type.rb
@@ -515,7 +567,7 @@ files:
515
567
  - lib/aws/simple_workflow/workflow_execution_collection.rb
516
568
  - lib/aws/simple_workflow/workflow_type.rb
517
569
  - lib/aws/simple_workflow/workflow_type_collection.rb
518
- - lib/aws/simple_workflow.rb
570
+ - lib/aws/sns.rb
519
571
  - lib/aws/sns/client.rb
520
572
  - lib/aws/sns/config.rb
521
573
  - lib/aws/sns/errors.rb
@@ -528,7 +580,7 @@ files:
528
580
  - lib/aws/sns/topic.rb
529
581
  - lib/aws/sns/topic_collection.rb
530
582
  - lib/aws/sns/topic_subscription_collection.rb
531
- - lib/aws/sns.rb
583
+ - lib/aws/sqs.rb
532
584
  - lib/aws/sqs/client.rb
533
585
  - lib/aws/sqs/config.rb
534
586
  - lib/aws/sqs/errors.rb
@@ -537,74 +589,23 @@ files:
537
589
  - lib/aws/sqs/queue_collection.rb
538
590
  - lib/aws/sqs/received_message.rb
539
591
  - lib/aws/sqs/received_sns_message.rb
540
- - lib/aws/sqs.rb
592
+ - lib/aws/storage_gateway.rb
541
593
  - lib/aws/storage_gateway/client.rb
542
594
  - lib/aws/storage_gateway/config.rb
543
595
  - lib/aws/storage_gateway/errors.rb
544
- - lib/aws/storage_gateway.rb
596
+ - lib/aws/sts.rb
545
597
  - lib/aws/sts/client.rb
546
598
  - lib/aws/sts/config.rb
547
599
  - lib/aws/sts/errors.rb
548
600
  - lib/aws/sts/federated_session.rb
549
601
  - lib/aws/sts/policy.rb
550
602
  - lib/aws/sts/session.rb
551
- - lib/aws/sts.rb
603
+ - lib/aws/support.rb
552
604
  - lib/aws/support/client.rb
553
605
  - lib/aws/support/config.rb
554
606
  - lib/aws/support/errors.rb
555
- - lib/aws/support.rb
556
607
  - lib/aws/version.rb
557
- - lib/aws-sdk-v1.rb
558
- - lib/aws.rb
559
- - lib/aws/api_config/AutoScaling-2011-01-01.yml
560
- - lib/aws/api_config/CloudFormation-2010-05-15.yml
561
- - lib/aws/api_config/CloudFront-2013-05-12.yml
562
- - lib/aws/api_config/CloudFront-2013-08-26.yml
563
- - lib/aws/api_config/CloudFront-2013-09-27.yml
564
- - lib/aws/api_config/CloudFront-2013-11-11.yml
565
- - lib/aws/api_config/CloudFront-2013-11-22.yml
566
- - lib/aws/api_config/CloudFront-2014-01-31.yml
567
- - lib/aws/api_config/CloudFront-2014-05-31.yml
568
- - lib/aws/api_config/CloudSearch-2011-02-01.yml
569
- - lib/aws/api_config/CloudSearch-2013-01-01.yml
570
- - lib/aws/api_config/CloudTrail-2013-11-01.yml
571
- - lib/aws/api_config/CloudWatch-2010-08-01.yml
572
- - lib/aws/api_config/DataPipeline-2012-10-29.yml
573
- - lib/aws/api_config/DirectConnect-2012-10-25.yml
574
- - lib/aws/api_config/DynamoDB-2011-12-05.yml
575
- - lib/aws/api_config/DynamoDB-2012-08-10.yml
576
- - lib/aws/api_config/EC2-2013-08-15.yml
577
- - lib/aws/api_config/EC2-2013-10-01.yml
578
- - lib/aws/api_config/EC2-2013-10-15.yml
579
- - lib/aws/api_config/EC2-2014-02-01.yml
580
- - lib/aws/api_config/EC2-2014-05-01.yml
581
- - lib/aws/api_config/ElastiCache-2013-06-15.yml
582
- - lib/aws/api_config/ElastiCache-2014-03-24.yml
583
- - lib/aws/api_config/ElastiCache-2014-07-15.yml
584
- - lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml
585
- - lib/aws/api_config/ElasticTranscoder-2012-09-25.yml
586
- - lib/aws/api_config/ELB-2012-06-01.yml
587
- - lib/aws/api_config/EMR-2009-03-31.yml
588
- - lib/aws/api_config/Glacier-2012-06-01.yml
589
- - lib/aws/api_config/IAM-2010-05-08.yml
590
- - lib/aws/api_config/ImportExport-2010-06-01.yml
591
- - lib/aws/api_config/Kinesis-2013-12-02.yml
592
- - lib/aws/api_config/OpsWorks-2013-02-18.yml
593
- - lib/aws/api_config/RDS-2013-05-15.yml
594
- - lib/aws/api_config/RDS-2013-09-09.yml
595
- - lib/aws/api_config/Redshift-2012-12-01.yml
596
- - lib/aws/api_config/Route53-2012-12-12.yml
597
- - lib/aws/api_config/Route53-2013-04-01.yml
598
- - lib/aws/api_config/SimpleDB-2009-04-15.yml
599
- - lib/aws/api_config/SimpleEmailService-2010-12-01.yml
600
- - lib/aws/api_config/SimpleWorkflow-2012-01-25.yml
601
- - lib/aws/api_config/SNS-2010-03-31.yml
602
- - lib/aws/api_config/SQS-2012-11-05.yml
603
- - lib/aws/api_config/StorageGateway-2012-06-30.yml
604
- - lib/aws/api_config/StorageGateway-2013-06-30.yml
605
- - lib/aws/api_config/STS-2011-06-15.yml
606
- - lib/aws/api_config/Support-2013-04-15.yml
607
- - bin/aws-rb
608
+ - rails/init.rb
608
609
  homepage: http://aws.amazon.com/sdkforruby
609
610
  licenses:
610
611
  - Apache 2.0
@@ -615,17 +616,17 @@ require_paths:
615
616
  - lib
616
617
  required_ruby_version: !ruby/object:Gem::Requirement
617
618
  requirements:
618
- - - '>='
619
+ - - ">="
619
620
  - !ruby/object:Gem::Version
620
621
  version: '0'
621
622
  required_rubygems_version: !ruby/object:Gem::Requirement
622
623
  requirements:
623
- - - '>='
624
+ - - ">="
624
625
  - !ruby/object:Gem::Version
625
626
  version: '0'
626
627
  requirements: []
627
628
  rubyforge_project:
628
- rubygems_version: 2.1.11
629
+ rubygems_version: 2.2.2
629
630
  signing_key:
630
631
  specification_version: 4
631
632
  summary: AWS SDK for Ruby V1