aws-sdk 1.42.0 → 1.43.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 940e64d05caf004bcba55c932b3883e2c59345ec
4
- data.tar.gz: 5754c408bd60709a58cdcc4101e8827068695825
3
+ metadata.gz: 171a745222bd1b0c0adb5a3d07bbf1cd8b2b894a
4
+ data.tar.gz: c20ba74a7dc5fd4a860bd09a0936333dc0534a15
5
5
  SHA512:
6
- metadata.gz: b80c0b94d3075dafafb31ceda05119a6f8b73e3c45ace8775d8c495cb013e1a6fc20073c50fccae64de5084ab60112a5a993fa8015c53a6fbfa39b5fc14d9687
7
- data.tar.gz: cad2a37370a9f6d81485a147e31f4ea8d30d208c6b73423af43d7fd61b257c5ba735ede7881a224f8daa20ba46fc7e5797afa20a98e4b68058809e95ec2c28c8
6
+ metadata.gz: 002f7402428e8a122e3a6236cb67c4d913834e797069cdb24f181ac75ed06a88d943744e34dbf951af8a8950c04501369e0e45a95eb21def87703c1dd1efd2cf
7
+ data.tar.gz: bffbffad2b29a1ea748c5a66f07861d3f4f22eb83aa682cd13ca7e50acb561672776184d05e659541deb108627ba44b9d721210acac795e7a7579b1646a4e812
@@ -66,6 +66,8 @@
66
66
  - :name: AuthorizeDBSecurityGroupIngress
67
67
  :method: :authorize_db_security_group_ingress
68
68
  :inputs:
69
+ DBSecurityGroupName:
70
+ - :string
69
71
  CIDRIP:
70
72
  - :string
71
73
  EC2SecurityGroupName:
@@ -1498,6 +1498,8 @@
1498
1498
  - :string
1499
1499
  HsmConfigurationIdentifier:
1500
1500
  - :string
1501
+ NewClusterIdentifier:
1502
+ - :string
1501
1503
  :outputs:
1502
1504
  :children:
1503
1505
  ModifyClusterResult:
@@ -1918,6 +1920,18 @@
1918
1920
  - :string
1919
1921
  ElasticIp:
1920
1922
  - :string
1923
+ ClusterParameterGroupName:
1924
+ - :string
1925
+ ClusterSecurityGroups:
1926
+ - :membered_list:
1927
+ - :string
1928
+ VpcSecurityGroupIds:
1929
+ - :membered_list:
1930
+ - :string
1931
+ PreferredMaintenanceWindow:
1932
+ - :string
1933
+ AutomatedSnapshotRetentionPeriod:
1934
+ - :integer
1921
1935
  :outputs:
1922
1936
  :children:
1923
1937
  RestoreFromClusterSnapshotResult:
@@ -1,4 +1,4 @@
1
- # Copyright 2011-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
1
+ # Copyright 2011-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License"). You
4
4
  # may not use this file except in compliance with the License. A copy of
@@ -325,6 +325,21 @@
325
325
  - :string
326
326
  MessageStructure:
327
327
  - :string
328
+ MessageAttributes:
329
+ - :map:
330
+ :key:
331
+ - :string
332
+ :value:
333
+ - :structure:
334
+ DataType:
335
+ - :string
336
+ - :required
337
+ StringValue:
338
+ - :string
339
+ BinaryValue:
340
+ - :blob
341
+ :key_param: Name
342
+ :value_param: Value
328
343
  :outputs:
329
344
  :children:
330
345
  PublishResult:
@@ -116,7 +116,8 @@ module AWS
116
116
  #
117
117
  # @attr_reader [Logger,nil] logger (nil) The logging interface.
118
118
  #
119
- # @attr_reader [Symbol] log_level (:info) The log level.
119
+ # @attr_reader [Symbol] log_level (:info) The log level to use when
120
+ # logging every API call. Does not set the `:logger`'s log_level.
120
121
  #
121
122
  # @attr_reader [LogFormatter] log_formatter The log message formatter.
122
123
  #
@@ -378,13 +378,13 @@ module AWS
378
378
 
379
379
  option.extend self
380
380
 
381
- key_option = option.key_option
381
+ key_option = option.key_option(members)
382
382
  if key_descriptors = members[:key]
383
383
  key_option = key_option.extend_with_config(*key_descriptors)
384
384
  MetaUtils.extend_method(option, :key_option) { key_option }
385
385
  end
386
386
 
387
- value_option = option.value_option
387
+ value_option = option.value_option(members)
388
388
  if value_descriptors = members[:value]
389
389
  value_option = value_option.extend_with_config(*value_descriptors)
390
390
  MetaUtils.extend_method(option, :value_option) { value_option }
@@ -416,13 +416,13 @@ module AWS
416
416
  values.inject([]) do |params, (key,value)|
417
417
 
418
418
  index = params.size / 2 + 1
419
- common_prefix = "#{prefixed_name(prefix)}#{separator}#{index}."
419
+ common_prefix = "#{prefixed_name(prefix)}#{separator}#{index}"
420
420
 
421
421
  key_name = common_prefix + key_option.param_name
422
422
  value_name = common_prefix + value_option.param_name
423
423
 
424
- params << Http::Request::Param.new(key_name, key)
425
- params << Http::Request::Param.new(value_name, value)
424
+ params += key_option.request_params(key, common_prefix)
425
+ params += value_option.request_params(value, common_prefix)
426
426
 
427
427
  end
428
428
  end
@@ -436,12 +436,12 @@ module AWS
436
436
  end
437
437
  end
438
438
 
439
- def key_option
440
- @_key_option ||= MapOption.new("key")
439
+ def key_option(options)
440
+ @_key_option ||= MapOption.new(options[:key_param] || "key")
441
441
  end
442
442
 
443
- def value_option
444
- @_value_option ||= MapOption.new("value")
443
+ def value_option(options)
444
+ @_value_option ||= MapOption.new(options[:value_param] || "value")
445
445
  end
446
446
 
447
447
  end
@@ -30,7 +30,7 @@ module AWS
30
30
  #
31
31
  # @param [Hash] options
32
32
  #
33
- # @option options [Boolean] :instance_tenancy (:default)
33
+ # @option options [Symbol] :instance_tenancy (:default)
34
34
  # The allowed tenancy of instances launched into the VPC. A value of
35
35
  # `:default` means instances can be launched with any tenancy; a value
36
36
  # of `:dedicated` means all instances launched into the VPC will be launched with
@@ -1,3 +1,4 @@
1
+ # -*- coding: utf-8 -*-
1
2
  # Copyright 2011-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
3
  #
3
4
  # Licensed under the Apache License, Version 2.0 (the "License"). You
@@ -291,6 +292,8 @@ module AWS
291
292
  'etag' => :etag,
292
293
  'x-amz-website-redirect-location' => :website_redirect_location,
293
294
  'accept-ranges' => :accept_ranges,
295
+ 'x-amz-server-side-encryption-customer-algorithm' => :sse_customer_algorithm,
296
+ 'x-amz-server-side-encryption-customer-key-MD5' => :sse_customer_key_md5
294
297
  }.each_pair do |header,method|
295
298
  if value = resp.http_response.header(header)
296
299
  resp.data[method] = value
@@ -1352,6 +1355,18 @@ module AWS
1352
1355
  # @option options [String] :grant_read_acp
1353
1356
  # @option options [String] :grant_write_acp
1354
1357
  # @option options [String] :grant_full_control
1358
+ # @option options [String] :sse_customer_algorithm Specifies the
1359
+ # algorithm to use to when encrypting the object (e.g., AES256).
1360
+ # @option options [String] :sse_customer_key Specifies the
1361
+ # customer-provided encryption key for Amazon S3 to use in encrypting
1362
+ # data. This value is used to store the object and then it is
1363
+ # discarded; Amazon does not store the encryption key. The key must be
1364
+ # appropriate for use with the algorithm specified in the
1365
+ # `:sse_customer_algorithm` header.
1366
+ # @option options [String] :sse_customer_key_md5 Specifies the 128-bit
1367
+ # MD5 digest of the encryption key according to RFC 1321. Amazon S3
1368
+ # uses this header for a message integrity check to ensure the
1369
+ # encryption key was transmitted without error.
1355
1370
  # @return [Core::Response]
1356
1371
  #
1357
1372
  object_method(:put_object, :put, :header_options => {
@@ -1368,6 +1383,9 @@ module AWS
1368
1383
  :content_encoding => 'Content-Encoding',
1369
1384
  :content_type => 'Content-Type',
1370
1385
  :expires => 'Expires',
1386
+ :sse_customer_algorithm => 'x-amz-server-side-encryption-customer-algorithm',
1387
+ :sse_customer_key => 'x-amz-server-side-encryption-customer-key',
1388
+ :sse_customer_key_md5 => 'x-amz-server-side-encryption-customer-key-MD5',
1371
1389
  }) do
1372
1390
 
1373
1391
  configure_request do |request, options|
@@ -1419,6 +1437,18 @@ module AWS
1419
1437
  # is true if and only if the object ETag matches the value for
1420
1438
  # this option. If `:matches` is true, the `:data` value
1421
1439
  # of the response will be `nil`.
1440
+ # @option options [String] :sse_customer_algorithm Specifies the
1441
+ # algorithm to use to when encrypting the object (e.g., AES256).
1442
+ # @option options [String] :sse_customer_key Specifies the
1443
+ # customer-provided encryption key for Amazon S3 to use in encrypting
1444
+ # data. This value is used to store the object and then it is
1445
+ # discarded; Amazon does not store the encryption key. The key must be
1446
+ # appropriate for use with the algorithm specified in the
1447
+ # `:sse_customer_algorithm` header.
1448
+ # @option options [String] :sse_customer_key_md5 Specifies the 128-bit
1449
+ # MD5 digest of the encryption key according to RFC 1321. Amazon S3
1450
+ # uses this header for a message integrity check to ensure the
1451
+ # encryption key was transmitted without error.
1422
1452
  # @option options [Range<Integer>] :range A byte range of data to request.
1423
1453
  # @return [Core::Response]
1424
1454
  #
@@ -1427,7 +1457,10 @@ module AWS
1427
1457
  :if_modified_since => "If-Modified-Since",
1428
1458
  :if_unmodified_since => "If-Unmodified-Since",
1429
1459
  :if_match => "If-Match",
1430
- :if_none_match => "If-None-Match"
1460
+ :if_none_match => "If-None-Match",
1461
+ :sse_customer_algorithm => 'x-amz-server-side-encryption-customer-algorithm',
1462
+ :sse_customer_key => 'x-amz-server-side-encryption-customer-key',
1463
+ :sse_customer_key_md5 => 'x-amz-server-side-encryption-customer-key-MD5',
1431
1464
  }) do
1432
1465
  configure_request do |req, options|
1433
1466
 
@@ -1504,6 +1537,18 @@ module AWS
1504
1537
  # is true if and only if the object ETag matches the value for
1505
1538
  # this option. If `:matches` is true, the `:data` value
1506
1539
  # of the response will be `nil`.
1540
+ # @option options [String] :sse_customer_algorithm Specifies the
1541
+ # algorithm to use to when encrypting the object (e.g., AES256).
1542
+ # @option options [String] :sse_customer_key Specifies the
1543
+ # customer-provided encryption key for Amazon S3 to use in encrypting
1544
+ # data. This value is used to store the object and then it is
1545
+ # discarded; Amazon does not store the encryption key. The key must be
1546
+ # appropriate for use with the algorithm specified in the
1547
+ # `:sse_customer_algorithm` header.
1548
+ # @option options [String] :sse_customer_key_md5 Specifies the 128-bit
1549
+ # MD5 digest of the encryption key according to RFC 1321. Amazon S3
1550
+ # uses this header for a message integrity check to ensure the
1551
+ # encryption key was transmitted without error.
1507
1552
  # @option options [Range<Integer>] :range A byte range of data to request.
1508
1553
  # @return [Core::Response]
1509
1554
  object_method(:head_object, :head,
@@ -1511,7 +1556,10 @@ module AWS
1511
1556
  :if_modified_since => "If-Modified-Since",
1512
1557
  :if_unmodified_since => "If-Unmodified-Since",
1513
1558
  :if_match => "If-Match",
1514
- :if_none_match => "If-None-Match"
1559
+ :if_none_match => "If-None-Match",
1560
+ :sse_customer_algorithm => 'x-amz-server-side-encryption-customer-algorithm',
1561
+ :sse_customer_key => 'x-amz-server-side-encryption-customer-key',
1562
+ :sse_customer_key_md5 => 'x-amz-server-side-encryption-customer-key-MD5',
1515
1563
  }) do
1516
1564
 
1517
1565
  configure_request do |req, options|
@@ -1651,6 +1699,18 @@ module AWS
1651
1699
  # @option options [String] :grant_read_acp
1652
1700
  # @option options [String] :grant_write_acp
1653
1701
  # @option options [String] :grant_full_control
1702
+ # @option options [String] :sse_customer_algorithm Specifies the
1703
+ # algorithm to use to when encrypting the object (e.g., AES256).
1704
+ # @option options [String] :sse_customer_key Specifies the
1705
+ # customer-provided encryption key for Amazon S3 to use in encrypting
1706
+ # data. This value is used to store the object and then it is
1707
+ # discarded; Amazon does not store the encryption key. The key must be
1708
+ # appropriate for use with the algorithm specified in the
1709
+ # `:sse_customer_algorithm` header.
1710
+ # @option options [String] :sse_customer_key_md5 Specifies the 128-bit
1711
+ # MD5 digest of the encryption key according to RFC 1321. Amazon S3
1712
+ # uses this header for a message integrity check to ensure the
1713
+ # encryption key was transmitted without error.
1654
1714
  # @return [Core::Response]
1655
1715
  object_method(:initiate_multipart_upload, :post, 'uploads',
1656
1716
  XML::InitiateMultipartUpload,
@@ -1667,6 +1727,9 @@ module AWS
1667
1727
  :content_encoding => 'Content-Encoding',
1668
1728
  :content_type => 'Content-Type',
1669
1729
  :expires => 'Expires',
1730
+ :sse_customer_algorithm => 'x-amz-server-side-encryption-customer-algorithm',
1731
+ :sse_customer_key => 'x-amz-server-side-encryption-customer-key',
1732
+ :sse_customer_key_md5 => 'x-amz-server-side-encryption-customer-key-MD5',
1670
1733
  }) do
1671
1734
 
1672
1735
  configure_request do |req, options|
@@ -1755,7 +1818,10 @@ module AWS
1755
1818
  # @return [Core::Response]
1756
1819
  object_method(:upload_part, :put,
1757
1820
  :header_options => {
1758
- :content_md5 => 'Content-MD5'
1821
+ :content_md5 => 'Content-MD5',
1822
+ :sse_customer_algorithm => 'x-amz-server-side-encryption-customer-algorithm',
1823
+ :sse_customer_key => 'x-amz-server-side-encryption-customer-key',
1824
+ :sse_customer_key_md5 => 'x-amz-server-side-encryption-customer-key-MD5',
1759
1825
  }) do
1760
1826
  configure_request do |request, options|
1761
1827
 
@@ -1893,6 +1959,29 @@ module AWS
1893
1959
  # @option options [String] :grant_read_acp
1894
1960
  # @option options [String] :grant_write_acp
1895
1961
  # @option options [String] :grant_full_control
1962
+ # @option options [String] :sse_customer_algorithm Specifies the
1963
+ # algorithm to use to when encrypting the object (e.g., AES256).
1964
+ # @option options [String] :sse_customer_key Specifies the
1965
+ # customer-provided encryption key for Amazon S3 to use in encrypting
1966
+ # data. This value is used to store the object and then it is
1967
+ # discarded; Amazon does not store the encryption key. The key must be
1968
+ # appropriate for use with the algorithm specified in the
1969
+ # `:sse_customer_algorithm` header.
1970
+ # @option options [String] :sse_customer_key_md5 Specifies the 128-bit
1971
+ # MD5 digest of the encryption key according to RFC 1321. Amazon S3
1972
+ # uses this header for a message integrity check to ensure the
1973
+ # encryption key was transmitted without error.
1974
+ # @option options [String] :copy_source_sse_customer_algorithm Specifies
1975
+ # the algorithm to use when decrypting the source object (e.g.,
1976
+ # AES256).
1977
+ # @option options [String] :copy_source_sse_customer_key Specifies the
1978
+ # customer-provided encryption key for Amazon S3 to use to decrypt the
1979
+ # source object. The encryption key provided in this header must be
1980
+ # one that was used when the source object was created.
1981
+ # @option options [String] :copy_source_sse_customer_key_md5 Specifies
1982
+ # the 128-bit MD5 digest of the encryption key according to RFC 1321.
1983
+ # Amazon S3 uses this header for a message integrity check to ensure
1984
+ # the encryption key was transmitted without error.
1896
1985
  # @return [Core::Response]
1897
1986
  object_method(:copy_object, :put, :header_options => {
1898
1987
  :website_redirect_location => 'x-amz-website-redirect-location',
@@ -1909,6 +1998,12 @@ module AWS
1909
1998
  :content_encoding => 'Content-Encoding',
1910
1999
  :content_disposition => 'Content-Disposition',
1911
2000
  :expires => 'Expires',
2001
+ :sse_customer_algorithm => 'x-amz-server-side-encryption-customer-algorithm',
2002
+ :sse_customer_key => 'x-amz-server-side-encryption-customer-key',
2003
+ :sse_customer_key_md5 => 'x-amz-server-side-encryption-customer-key-MD5',
2004
+ :copy_source_sse_customer_algorithm => 'x-amz-copy-source-server-side-encryption-customer-algorithm',
2005
+ :copy_source_sse_customer_key => 'x-amz-copy-source-server-side-encryption-customer-key',
2006
+ :copy_source_sse_customer_key_md5 => 'x-amz-copy-source-server-side-encryption-customer-key-MD5',
1912
2007
  }) do
1913
2008
 
1914
2009
  configure_request do |req, options|
@@ -55,6 +55,19 @@ module AWS
55
55
  # This has only been tested with Rails 2.3 and Rails 3.0.
56
56
  #
57
57
  #
58
+ # Regions
59
+ #
60
+ # SES is not available in all regions. If you configure a default region
61
+ # where SES is not available, you will receive a network error. You
62
+ # can configure a default region and a default SES region:
63
+ #
64
+ # AWS.config(
65
+ # :region => 'ap-southeast-1',
66
+ # :ses => { :region => 'us-west-2' }
67
+ # )
68
+ #
69
+ # [Go here for a complete list of supported regions](http://docs.aws.amazon.com/general/latest/gr/rande.html#ses_region).
70
+ #
58
71
  # # Identities
59
72
  #
60
73
  # Before you can send emails, you need to verify one or more identities.
@@ -212,7 +212,7 @@ module AWS
212
212
  # * `:failed`
213
213
  # * `:canceled`
214
214
  # * `:terminated`
215
- # * `:continued`
215
+ # * `:continued_as_new`
216
216
  # * `:timed_out`
217
217
  #
218
218
  # If `:status` is anything besides `:open` or `:closed` then
@@ -422,7 +422,7 @@ module AWS
422
422
  # * `:failed`
423
423
  # * `:canceled`
424
424
  # * `:terminated`
425
- # * `:continued`
425
+ # * `:continued_as_new`
426
426
  # * `:timed_out`
427
427
  #
428
428
  # @option options [Time] :started_after Filters workflow executions
@@ -13,5 +13,5 @@
13
13
 
14
14
  module AWS
15
15
  # Current version of the AWS SDK for Ruby
16
- VERSION = '1.42.0'
16
+ VERSION = '1.43.0'
17
17
  end
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.42.0
4
+ version: 1.43.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-05-29 00:00:00.000000000 Z
11
+ date: 2014-06-13 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: AWS SDK for Ruby
@@ -45,61 +45,12 @@ executables:
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - ".yardopts"
49
- - LICENSE.txt
50
- - README.md
51
- - bin/aws-rb
52
48
  - ca-bundle.crt
49
+ - rails/init.rb
53
50
  - endpoints.json
54
- - lib/aws-sdk.rb
55
- - lib/aws.rb
56
- - lib/aws/api_config/AutoScaling-2011-01-01.yml
57
- - lib/aws/api_config/CloudFormation-2010-05-15.yml
58
- - lib/aws/api_config/CloudFront-2013-05-12.yml
59
- - lib/aws/api_config/CloudFront-2013-08-26.yml
60
- - lib/aws/api_config/CloudFront-2013-09-27.yml
61
- - lib/aws/api_config/CloudFront-2013-11-11.yml
62
- - lib/aws/api_config/CloudFront-2013-11-22.yml
63
- - lib/aws/api_config/CloudFront-2014-01-31.yml
64
- - lib/aws/api_config/CloudSearch-2011-02-01.yml
65
- - lib/aws/api_config/CloudSearch-2013-01-01.yml
66
- - lib/aws/api_config/CloudTrail-2013-11-01.yml
67
- - lib/aws/api_config/CloudWatch-2010-08-01.yml
68
- - lib/aws/api_config/DataPipeline-2012-10-29.yml
69
- - lib/aws/api_config/DirectConnect-2012-10-25.yml
70
- - lib/aws/api_config/DynamoDB-2011-12-05.yml
71
- - lib/aws/api_config/DynamoDB-2012-08-10.yml
72
- - lib/aws/api_config/EC2-2013-08-15.yml
73
- - lib/aws/api_config/EC2-2013-10-01.yml
74
- - lib/aws/api_config/EC2-2013-10-15.yml
75
- - lib/aws/api_config/EC2-2014-02-01.yml
76
- - lib/aws/api_config/EC2-2014-05-01.yml
77
- - lib/aws/api_config/ELB-2012-06-01.yml
78
- - lib/aws/api_config/EMR-2009-03-31.yml
79
- - lib/aws/api_config/ElastiCache-2013-06-15.yml
80
- - lib/aws/api_config/ElastiCache-2014-03-24.yml
81
- - lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml
82
- - lib/aws/api_config/ElasticTranscoder-2012-09-25.yml
83
- - lib/aws/api_config/Glacier-2012-06-01.yml
84
- - lib/aws/api_config/IAM-2010-05-08.yml
85
- - lib/aws/api_config/ImportExport-2010-06-01.yml
86
- - lib/aws/api_config/Kinesis-2013-12-02.yml
87
- - lib/aws/api_config/OpsWorks-2013-02-18.yml
88
- - lib/aws/api_config/RDS-2013-05-15.yml
89
- - lib/aws/api_config/RDS-2013-09-09.yml
90
- - lib/aws/api_config/Redshift-2012-12-01.yml
91
- - lib/aws/api_config/Route53-2012-12-12.yml
92
- - lib/aws/api_config/Route53-2013-04-01.yml
93
- - lib/aws/api_config/SNS-2010-03-31.yml
94
- - lib/aws/api_config/SQS-2012-11-05.yml
95
- - lib/aws/api_config/STS-2011-06-15.yml
96
- - lib/aws/api_config/SimpleDB-2009-04-15.yml
97
- - lib/aws/api_config/SimpleEmailService-2010-12-01.yml
98
- - lib/aws/api_config/SimpleWorkflow-2012-01-25.yml
99
- - lib/aws/api_config/StorageGateway-2012-06-30.yml
100
- - lib/aws/api_config/StorageGateway-2013-06-30.yml
101
- - lib/aws/api_config/Support-2013-04-15.yml
102
- - lib/aws/auto_scaling.rb
51
+ - .yardopts
52
+ - README.md
53
+ - LICENSE.txt
103
54
  - lib/aws/auto_scaling/activity.rb
104
55
  - lib/aws/auto_scaling/activity_collection.rb
105
56
  - lib/aws/auto_scaling/client.rb
@@ -121,7 +72,7 @@ files:
121
72
  - lib/aws/auto_scaling/scheduled_action_collection.rb
122
73
  - lib/aws/auto_scaling/tag.rb
123
74
  - lib/aws/auto_scaling/tag_collection.rb
124
- - lib/aws/cloud_formation.rb
75
+ - lib/aws/auto_scaling.rb
125
76
  - lib/aws/cloud_formation/client.rb
126
77
  - lib/aws/cloud_formation/config.rb
127
78
  - lib/aws/cloud_formation/errors.rb
@@ -135,19 +86,19 @@ files:
135
86
  - lib/aws/cloud_formation/stack_resource_collection.rb
136
87
  - lib/aws/cloud_formation/stack_resource_summary_collection.rb
137
88
  - lib/aws/cloud_formation/stack_summary_collection.rb
138
- - lib/aws/cloud_front.rb
89
+ - lib/aws/cloud_formation.rb
139
90
  - lib/aws/cloud_front/client.rb
140
91
  - lib/aws/cloud_front/config.rb
141
92
  - lib/aws/cloud_front/errors.rb
142
- - lib/aws/cloud_search.rb
93
+ - lib/aws/cloud_front.rb
143
94
  - lib/aws/cloud_search/client.rb
144
95
  - lib/aws/cloud_search/config.rb
145
96
  - lib/aws/cloud_search/errors.rb
146
- - lib/aws/cloud_trail.rb
97
+ - lib/aws/cloud_search.rb
147
98
  - lib/aws/cloud_trail/client.rb
148
99
  - lib/aws/cloud_trail/config.rb
149
100
  - lib/aws/cloud_trail/errors.rb
150
- - lib/aws/cloud_watch.rb
101
+ - lib/aws/cloud_trail.rb
151
102
  - lib/aws/cloud_watch/alarm.rb
152
103
  - lib/aws/cloud_watch/alarm_collection.rb
153
104
  - lib/aws/cloud_watch/alarm_history_item.rb
@@ -159,14 +110,14 @@ files:
159
110
  - lib/aws/cloud_watch/metric_alarm_collection.rb
160
111
  - lib/aws/cloud_watch/metric_collection.rb
161
112
  - lib/aws/cloud_watch/metric_statistics.rb
162
- - lib/aws/core.rb
113
+ - lib/aws/cloud_watch.rb
163
114
  - lib/aws/core/async_handle.rb
164
115
  - lib/aws/core/cacheable.rb
165
116
  - lib/aws/core/client.rb
166
- - lib/aws/core/collection.rb
167
117
  - lib/aws/core/collection/simple.rb
168
118
  - lib/aws/core/collection/with_limit_and_next_token.rb
169
119
  - lib/aws/core/collection/with_next_token.rb
120
+ - lib/aws/core/collection.rb
170
121
  - lib/aws/core/configuration.rb
171
122
  - lib/aws/core/credential_providers.rb
172
123
  - lib/aws/core/data.rb
@@ -220,8 +171,8 @@ files:
220
171
  - lib/aws/core/signers/version_2.rb
221
172
  - lib/aws/core/signers/version_3.rb
222
173
  - lib/aws/core/signers/version_3_https.rb
223
- - lib/aws/core/signers/version_4.rb
224
174
  - lib/aws/core/signers/version_4/chunk_signed_stream.rb
175
+ - lib/aws/core/signers/version_4.rb
225
176
  - lib/aws/core/uri_escape.rb
226
177
  - lib/aws/core/xml/frame.rb
227
178
  - lib/aws/core/xml/frame_stack.rb
@@ -233,22 +184,22 @@ files:
233
184
  - lib/aws/core/xml/sax_handlers/ox.rb
234
185
  - lib/aws/core/xml/sax_handlers/rexml.rb
235
186
  - lib/aws/core/xml/stub.rb
236
- - lib/aws/data_pipeline.rb
187
+ - lib/aws/core.rb
237
188
  - lib/aws/data_pipeline/client.rb
238
189
  - lib/aws/data_pipeline/config.rb
239
190
  - lib/aws/data_pipeline/errors.rb
240
- - lib/aws/direct_connect.rb
191
+ - lib/aws/data_pipeline.rb
241
192
  - lib/aws/direct_connect/client.rb
242
193
  - lib/aws/direct_connect/config.rb
243
194
  - lib/aws/direct_connect/errors.rb
244
- - lib/aws/dynamo_db.rb
195
+ - lib/aws/direct_connect.rb
245
196
  - lib/aws/dynamo_db/attribute_collection.rb
246
197
  - lib/aws/dynamo_db/batch_get.rb
247
198
  - lib/aws/dynamo_db/batch_write.rb
248
199
  - lib/aws/dynamo_db/binary.rb
249
- - lib/aws/dynamo_db/client.rb
250
200
  - lib/aws/dynamo_db/client/v20111205.rb
251
201
  - lib/aws/dynamo_db/client/v20120810.rb
202
+ - lib/aws/dynamo_db/client.rb
252
203
  - lib/aws/dynamo_db/client_v2.rb
253
204
  - lib/aws/dynamo_db/config.rb
254
205
  - lib/aws/dynamo_db/errors.rb
@@ -262,7 +213,7 @@ files:
262
213
  - lib/aws/dynamo_db/table.rb
263
214
  - lib/aws/dynamo_db/table_collection.rb
264
215
  - lib/aws/dynamo_db/types.rb
265
- - lib/aws/ec2.rb
216
+ - lib/aws/dynamo_db.rb
266
217
  - lib/aws/ec2/attachment.rb
267
218
  - lib/aws/ec2/attachment_collection.rb
268
219
  - lib/aws/ec2/availability_zone.rb
@@ -286,17 +237,17 @@ files:
286
237
  - lib/aws/ec2/image_collection.rb
287
238
  - lib/aws/ec2/instance.rb
288
239
  - lib/aws/ec2/instance_collection.rb
289
- - lib/aws/ec2/internet_gateway.rb
290
240
  - lib/aws/ec2/internet_gateway/attachment.rb
241
+ - lib/aws/ec2/internet_gateway.rb
291
242
  - lib/aws/ec2/internet_gateway_collection.rb
292
243
  - lib/aws/ec2/key_pair.rb
293
244
  - lib/aws/ec2/key_pair_collection.rb
294
- - lib/aws/ec2/network_acl.rb
295
245
  - lib/aws/ec2/network_acl/association.rb
296
246
  - lib/aws/ec2/network_acl/entry.rb
247
+ - lib/aws/ec2/network_acl.rb
297
248
  - lib/aws/ec2/network_acl_collection.rb
298
- - lib/aws/ec2/network_interface.rb
299
249
  - lib/aws/ec2/network_interface/attachment.rb
250
+ - lib/aws/ec2/network_interface.rb
300
251
  - lib/aws/ec2/network_interface_collection.rb
301
252
  - lib/aws/ec2/permission_collection.rb
302
253
  - lib/aws/ec2/region.rb
@@ -307,13 +258,13 @@ files:
307
258
  - lib/aws/ec2/reserved_instances_offering_collection.rb
308
259
  - lib/aws/ec2/resource.rb
309
260
  - lib/aws/ec2/resource_tag_collection.rb
310
- - lib/aws/ec2/route_table.rb
311
261
  - lib/aws/ec2/route_table/association.rb
312
262
  - lib/aws/ec2/route_table/route.rb
263
+ - lib/aws/ec2/route_table.rb
313
264
  - lib/aws/ec2/route_table_collection.rb
314
- - lib/aws/ec2/security_group.rb
315
265
  - lib/aws/ec2/security_group/ip_permission.rb
316
266
  - lib/aws/ec2/security_group/ip_permission_collection.rb
267
+ - lib/aws/ec2/security_group.rb
317
268
  - lib/aws/ec2/security_group_collection.rb
318
269
  - lib/aws/ec2/snapshot.rb
319
270
  - lib/aws/ec2/snapshot_collection.rb
@@ -327,25 +278,25 @@ files:
327
278
  - lib/aws/ec2/volume_collection.rb
328
279
  - lib/aws/ec2/vpc.rb
329
280
  - lib/aws/ec2/vpc_collection.rb
330
- - lib/aws/ec2/vpn_connection.rb
331
281
  - lib/aws/ec2/vpn_connection/telemetry.rb
282
+ - lib/aws/ec2/vpn_connection.rb
332
283
  - lib/aws/ec2/vpn_connection_collection.rb
333
- - lib/aws/ec2/vpn_gateway.rb
334
284
  - lib/aws/ec2/vpn_gateway/attachment.rb
285
+ - lib/aws/ec2/vpn_gateway.rb
335
286
  - lib/aws/ec2/vpn_gateway_collection.rb
336
- - lib/aws/elastic_beanstalk.rb
287
+ - lib/aws/ec2.rb
337
288
  - lib/aws/elastic_beanstalk/client.rb
338
289
  - lib/aws/elastic_beanstalk/config.rb
339
290
  - lib/aws/elastic_beanstalk/errors.rb
340
- - lib/aws/elastic_transcoder.rb
291
+ - lib/aws/elastic_beanstalk.rb
341
292
  - lib/aws/elastic_transcoder/client.rb
342
293
  - lib/aws/elastic_transcoder/config.rb
343
294
  - lib/aws/elastic_transcoder/errors.rb
344
- - lib/aws/elasticache.rb
295
+ - lib/aws/elastic_transcoder.rb
345
296
  - lib/aws/elasticache/client.rb
346
297
  - lib/aws/elasticache/config.rb
347
298
  - lib/aws/elasticache/errors.rb
348
- - lib/aws/elb.rb
299
+ - lib/aws/elasticache.rb
349
300
  - lib/aws/elb/availability_zone_collection.rb
350
301
  - lib/aws/elb/backend_server_policy_collection.rb
351
302
  - lib/aws/elb/client.rb
@@ -359,7 +310,7 @@ files:
359
310
  - lib/aws/elb/load_balancer_collection.rb
360
311
  - lib/aws/elb/load_balancer_policy.rb
361
312
  - lib/aws/elb/load_balancer_policy_collection.rb
362
- - lib/aws/emr.rb
313
+ - lib/aws/elb.rb
363
314
  - lib/aws/emr/client.rb
364
315
  - lib/aws/emr/config.rb
365
316
  - lib/aws/emr/errors.rb
@@ -367,8 +318,8 @@ files:
367
318
  - lib/aws/emr/instance_group_collection.rb
368
319
  - lib/aws/emr/job_flow.rb
369
320
  - lib/aws/emr/job_flow_collection.rb
321
+ - lib/aws/emr.rb
370
322
  - lib/aws/errors.rb
371
- - lib/aws/glacier.rb
372
323
  - lib/aws/glacier/archive.rb
373
324
  - lib/aws/glacier/archive_collection.rb
374
325
  - lib/aws/glacier/client.rb
@@ -378,7 +329,7 @@ files:
378
329
  - lib/aws/glacier/vault.rb
379
330
  - lib/aws/glacier/vault_collection.rb
380
331
  - lib/aws/glacier/vault_notification_configuration.rb
381
- - lib/aws/iam.rb
332
+ - lib/aws/glacier.rb
382
333
  - lib/aws/iam/access_key.rb
383
334
  - lib/aws/iam/access_key_collection.rb
384
335
  - lib/aws/iam/account_alias_collection.rb
@@ -407,20 +358,20 @@ files:
407
358
  - lib/aws/iam/user_policy_collection.rb
408
359
  - lib/aws/iam/virtual_mfa_device.rb
409
360
  - lib/aws/iam/virtual_mfa_device_collection.rb
410
- - lib/aws/import_export.rb
361
+ - lib/aws/iam.rb
411
362
  - lib/aws/import_export/client.rb
412
363
  - lib/aws/import_export/config.rb
413
364
  - lib/aws/import_export/errors.rb
414
- - lib/aws/kinesis.rb
365
+ - lib/aws/import_export.rb
415
366
  - lib/aws/kinesis/client.rb
416
367
  - lib/aws/kinesis/config.rb
417
368
  - lib/aws/kinesis/errors.rb
418
- - lib/aws/ops_works.rb
369
+ - lib/aws/kinesis.rb
419
370
  - lib/aws/ops_works/client.rb
420
371
  - lib/aws/ops_works/config.rb
421
372
  - lib/aws/ops_works/errors.rb
373
+ - lib/aws/ops_works.rb
422
374
  - lib/aws/rails.rb
423
- - lib/aws/rds.rb
424
375
  - lib/aws/rds/client.rb
425
376
  - lib/aws/rds/config.rb
426
377
  - lib/aws/rds/db_instance.rb
@@ -428,21 +379,21 @@ files:
428
379
  - lib/aws/rds/db_snapshot.rb
429
380
  - lib/aws/rds/db_snapshot_collection.rb
430
381
  - lib/aws/rds/errors.rb
431
- - lib/aws/record.rb
382
+ - lib/aws/rds.rb
432
383
  - lib/aws/record/abstract_base.rb
433
384
  - lib/aws/record/attributes.rb
434
385
  - lib/aws/record/conversion.rb
435
386
  - lib/aws/record/dirty_tracking.rb
436
387
  - lib/aws/record/errors.rb
437
388
  - lib/aws/record/exceptions.rb
438
- - lib/aws/record/hash_model.rb
439
389
  - lib/aws/record/hash_model/attributes.rb
440
390
  - lib/aws/record/hash_model/finder_methods.rb
441
391
  - lib/aws/record/hash_model/scope.rb
442
- - lib/aws/record/model.rb
392
+ - lib/aws/record/hash_model.rb
443
393
  - lib/aws/record/model/attributes.rb
444
394
  - lib/aws/record/model/finder_methods.rb
445
395
  - lib/aws/record/model/scope.rb
396
+ - lib/aws/record/model.rb
446
397
  - lib/aws/record/naming.rb
447
398
  - lib/aws/record/scope.rb
448
399
  - lib/aws/record/validations.rb
@@ -458,11 +409,11 @@ files:
458
409
  - lib/aws/record/validators/method.rb
459
410
  - lib/aws/record/validators/numericality.rb
460
411
  - lib/aws/record/validators/presence.rb
461
- - lib/aws/redshift.rb
412
+ - lib/aws/record.rb
462
413
  - lib/aws/redshift/client.rb
463
414
  - lib/aws/redshift/config.rb
464
415
  - lib/aws/redshift/errors.rb
465
- - lib/aws/route_53.rb
416
+ - lib/aws/redshift.rb
466
417
  - lib/aws/route_53/change_batch.rb
467
418
  - lib/aws/route_53/change_info.rb
468
419
  - lib/aws/route_53/client.rb
@@ -472,7 +423,7 @@ files:
472
423
  - lib/aws/route_53/hosted_zone_collection.rb
473
424
  - lib/aws/route_53/resource_record_set.rb
474
425
  - lib/aws/route_53/resource_record_set_collection.rb
475
- - lib/aws/s3.rb
426
+ - lib/aws/route_53.rb
476
427
  - lib/aws/s3/access_control_list.rb
477
428
  - lib/aws/s3/acl_object.rb
478
429
  - lib/aws/s3/acl_options.rb
@@ -482,8 +433,8 @@ files:
482
433
  - lib/aws/s3/bucket_tag_collection.rb
483
434
  - lib/aws/s3/bucket_version_collection.rb
484
435
  - lib/aws/s3/cipher_io.rb
485
- - lib/aws/s3/client.rb
486
436
  - lib/aws/s3/client/xml.rb
437
+ - lib/aws/s3/client.rb
487
438
  - lib/aws/s3/config.rb
488
439
  - lib/aws/s3/cors_rule.rb
489
440
  - lib/aws/s3/cors_rule_collection.rb
@@ -505,16 +456,16 @@ files:
505
456
  - lib/aws/s3/presigned_post.rb
506
457
  - lib/aws/s3/request.rb
507
458
  - lib/aws/s3/s3_object.rb
508
- - lib/aws/s3/tree.rb
509
459
  - lib/aws/s3/tree/branch_node.rb
510
460
  - lib/aws/s3/tree/child_collection.rb
511
461
  - lib/aws/s3/tree/leaf_node.rb
512
462
  - lib/aws/s3/tree/node.rb
513
463
  - lib/aws/s3/tree/parent.rb
464
+ - lib/aws/s3/tree.rb
514
465
  - lib/aws/s3/uploaded_part.rb
515
466
  - lib/aws/s3/uploaded_part_collection.rb
516
467
  - lib/aws/s3/website_configuration.rb
517
- - lib/aws/simple_db.rb
468
+ - lib/aws/s3.rb
518
469
  - lib/aws/simple_db/attribute.rb
519
470
  - lib/aws/simple_db/attribute_collection.rb
520
471
  - lib/aws/simple_db/client.rb
@@ -530,7 +481,7 @@ files:
530
481
  - lib/aws/simple_db/item_collection.rb
531
482
  - lib/aws/simple_db/item_data.rb
532
483
  - lib/aws/simple_db/put_attributes.rb
533
- - lib/aws/simple_email_service.rb
484
+ - lib/aws/simple_db.rb
534
485
  - lib/aws/simple_email_service/client.rb
535
486
  - lib/aws/simple_email_service/config.rb
536
487
  - lib/aws/simple_email_service/email_address_collection.rb
@@ -538,7 +489,7 @@ files:
538
489
  - lib/aws/simple_email_service/identity.rb
539
490
  - lib/aws/simple_email_service/identity_collection.rb
540
491
  - lib/aws/simple_email_service/quotas.rb
541
- - lib/aws/simple_workflow.rb
492
+ - lib/aws/simple_email_service.rb
542
493
  - lib/aws/simple_workflow/activity_task.rb
543
494
  - lib/aws/simple_workflow/activity_task_collection.rb
544
495
  - lib/aws/simple_workflow/activity_type.rb
@@ -561,7 +512,7 @@ files:
561
512
  - lib/aws/simple_workflow/workflow_execution_collection.rb
562
513
  - lib/aws/simple_workflow/workflow_type.rb
563
514
  - lib/aws/simple_workflow/workflow_type_collection.rb
564
- - lib/aws/sns.rb
515
+ - lib/aws/simple_workflow.rb
565
516
  - lib/aws/sns/client.rb
566
517
  - lib/aws/sns/config.rb
567
518
  - lib/aws/sns/errors.rb
@@ -574,7 +525,7 @@ files:
574
525
  - lib/aws/sns/topic.rb
575
526
  - lib/aws/sns/topic_collection.rb
576
527
  - lib/aws/sns/topic_subscription_collection.rb
577
- - lib/aws/sqs.rb
528
+ - lib/aws/sns.rb
578
529
  - lib/aws/sqs/client.rb
579
530
  - lib/aws/sqs/config.rb
580
531
  - lib/aws/sqs/errors.rb
@@ -583,23 +534,72 @@ files:
583
534
  - lib/aws/sqs/queue_collection.rb
584
535
  - lib/aws/sqs/received_message.rb
585
536
  - lib/aws/sqs/received_sns_message.rb
586
- - lib/aws/storage_gateway.rb
537
+ - lib/aws/sqs.rb
587
538
  - lib/aws/storage_gateway/client.rb
588
539
  - lib/aws/storage_gateway/config.rb
589
540
  - lib/aws/storage_gateway/errors.rb
590
- - lib/aws/sts.rb
541
+ - lib/aws/storage_gateway.rb
591
542
  - lib/aws/sts/client.rb
592
543
  - lib/aws/sts/config.rb
593
544
  - lib/aws/sts/errors.rb
594
545
  - lib/aws/sts/federated_session.rb
595
546
  - lib/aws/sts/policy.rb
596
547
  - lib/aws/sts/session.rb
597
- - lib/aws/support.rb
548
+ - lib/aws/sts.rb
598
549
  - lib/aws/support/client.rb
599
550
  - lib/aws/support/config.rb
600
551
  - lib/aws/support/errors.rb
552
+ - lib/aws/support.rb
601
553
  - lib/aws/version.rb
602
- - rails/init.rb
554
+ - lib/aws-sdk.rb
555
+ - lib/aws.rb
556
+ - lib/aws/api_config/AutoScaling-2011-01-01.yml
557
+ - lib/aws/api_config/CloudFormation-2010-05-15.yml
558
+ - lib/aws/api_config/CloudFront-2013-05-12.yml
559
+ - lib/aws/api_config/CloudFront-2013-08-26.yml
560
+ - lib/aws/api_config/CloudFront-2013-09-27.yml
561
+ - lib/aws/api_config/CloudFront-2013-11-11.yml
562
+ - lib/aws/api_config/CloudFront-2013-11-22.yml
563
+ - lib/aws/api_config/CloudFront-2014-01-31.yml
564
+ - lib/aws/api_config/CloudSearch-2011-02-01.yml
565
+ - lib/aws/api_config/CloudSearch-2013-01-01.yml
566
+ - lib/aws/api_config/CloudTrail-2013-11-01.yml
567
+ - lib/aws/api_config/CloudWatch-2010-08-01.yml
568
+ - lib/aws/api_config/DataPipeline-2012-10-29.yml
569
+ - lib/aws/api_config/DirectConnect-2012-10-25.yml
570
+ - lib/aws/api_config/DynamoDB-2011-12-05.yml
571
+ - lib/aws/api_config/DynamoDB-2012-08-10.yml
572
+ - lib/aws/api_config/EC2-2013-08-15.yml
573
+ - lib/aws/api_config/EC2-2013-10-01.yml
574
+ - lib/aws/api_config/EC2-2013-10-15.yml
575
+ - lib/aws/api_config/EC2-2014-02-01.yml
576
+ - lib/aws/api_config/EC2-2014-05-01.yml
577
+ - lib/aws/api_config/ElastiCache-2013-06-15.yml
578
+ - lib/aws/api_config/ElastiCache-2014-03-24.yml
579
+ - lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml
580
+ - lib/aws/api_config/ElasticTranscoder-2012-09-25.yml
581
+ - lib/aws/api_config/ELB-2012-06-01.yml
582
+ - lib/aws/api_config/EMR-2009-03-31.yml
583
+ - lib/aws/api_config/Glacier-2012-06-01.yml
584
+ - lib/aws/api_config/IAM-2010-05-08.yml
585
+ - lib/aws/api_config/ImportExport-2010-06-01.yml
586
+ - lib/aws/api_config/Kinesis-2013-12-02.yml
587
+ - lib/aws/api_config/OpsWorks-2013-02-18.yml
588
+ - lib/aws/api_config/RDS-2013-05-15.yml
589
+ - lib/aws/api_config/RDS-2013-09-09.yml
590
+ - lib/aws/api_config/Redshift-2012-12-01.yml
591
+ - lib/aws/api_config/Route53-2012-12-12.yml
592
+ - lib/aws/api_config/Route53-2013-04-01.yml
593
+ - lib/aws/api_config/SimpleDB-2009-04-15.yml
594
+ - lib/aws/api_config/SimpleEmailService-2010-12-01.yml
595
+ - lib/aws/api_config/SimpleWorkflow-2012-01-25.yml
596
+ - lib/aws/api_config/SNS-2010-03-31.yml
597
+ - lib/aws/api_config/SQS-2012-11-05.yml
598
+ - lib/aws/api_config/StorageGateway-2012-06-30.yml
599
+ - lib/aws/api_config/StorageGateway-2013-06-30.yml
600
+ - lib/aws/api_config/STS-2011-06-15.yml
601
+ - lib/aws/api_config/Support-2013-04-15.yml
602
+ - bin/aws-rb
603
603
  homepage: http://aws.amazon.com/sdkforruby
604
604
  licenses:
605
605
  - Apache 2.0
@@ -610,17 +610,17 @@ require_paths:
610
610
  - lib
611
611
  required_ruby_version: !ruby/object:Gem::Requirement
612
612
  requirements:
613
- - - ">="
613
+ - - '>='
614
614
  - !ruby/object:Gem::Version
615
615
  version: '0'
616
616
  required_rubygems_version: !ruby/object:Gem::Requirement
617
617
  requirements:
618
- - - ">="
618
+ - - '>='
619
619
  - !ruby/object:Gem::Version
620
620
  version: '0'
621
621
  requirements: []
622
622
  rubyforge_project:
623
- rubygems_version: 2.2.2
623
+ rubygems_version: 2.1.11
624
624
  signing_key:
625
625
  specification_version: 4
626
626
  summary: AWS SDK for Ruby