aws-sdk-v1 1.60.2 → 1.61.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/lib/aws/api_config/EC2-2014-10-01.yml +4969 -0
- data/lib/aws/api_config/ElasticTranscoder-2012-09-25.yml +1098 -1
- data/lib/aws/api_config/Redshift-2012-12-01.yml +417 -1
- data/lib/aws/ec2/client.rb +6 -2
- data/lib/aws/elb/load_balancer_collection.rb +4 -2
- data/lib/aws/version.rb +1 -1
- metadata +3 -2
data/lib/aws/ec2/client.rb
CHANGED
@@ -17,7 +17,7 @@ module AWS
|
|
17
17
|
# Client class for Amazon Elastic Compute Cloud (EC2).
|
18
18
|
class Client < Core::QueryClient
|
19
19
|
|
20
|
-
API_VERSION = '2014-
|
20
|
+
API_VERSION = '2014-10-01'
|
21
21
|
|
22
22
|
signature_version :Version4, 'ec2'
|
23
23
|
|
@@ -104,8 +104,12 @@ module AWS
|
|
104
104
|
end
|
105
105
|
|
106
106
|
class Client::V20140901 < Client
|
107
|
-
|
108
107
|
define_client_methods('2014-09-01')
|
108
|
+
end
|
109
|
+
|
110
|
+
class Client::V20141001 < Client
|
111
|
+
|
112
|
+
define_client_methods('2014-10-01')
|
109
113
|
|
110
114
|
alias basic_copy_snapshot copy_snapshot
|
111
115
|
|
@@ -17,7 +17,7 @@ module AWS
|
|
17
17
|
class LoadBalancerCollection
|
18
18
|
|
19
19
|
include ListenerOpts
|
20
|
-
include Core::Collection::
|
20
|
+
include Core::Collection::WithNextToken
|
21
21
|
|
22
22
|
# Creates and returns a load balancer. A load balancer requires:
|
23
23
|
#
|
@@ -126,7 +126,8 @@ module AWS
|
|
126
126
|
end
|
127
127
|
|
128
128
|
protected
|
129
|
-
def _each_item options = {}, &block
|
129
|
+
def _each_item marker, options = {}, &block
|
130
|
+
options = options.merge(:marker => marker) if marker
|
130
131
|
response = client.describe_load_balancers(options)
|
131
132
|
response.data[:load_balancer_descriptions].each do |description|
|
132
133
|
|
@@ -139,6 +140,7 @@ module AWS
|
|
139
140
|
yield(load_balancer)
|
140
141
|
|
141
142
|
end
|
143
|
+
response[:next_marker]
|
142
144
|
end
|
143
145
|
|
144
146
|
end
|
data/lib/aws/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.61.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|
@@ -582,6 +582,7 @@ files:
|
|
582
582
|
- lib/aws/api_config/EC2-2014-02-01.yml
|
583
583
|
- lib/aws/api_config/EC2-2014-05-01.yml
|
584
584
|
- lib/aws/api_config/EC2-2014-09-01.yml
|
585
|
+
- lib/aws/api_config/EC2-2014-10-01.yml
|
585
586
|
- lib/aws/api_config/ElastiCache-2013-06-15.yml
|
586
587
|
- lib/aws/api_config/ElastiCache-2014-03-24.yml
|
587
588
|
- lib/aws/api_config/ElastiCache-2014-07-15.yml
|