aws-sdk 1.28.1 → 1.29.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws/api_config/EC2-2013-10-01.yml +16 -0
- data/lib/aws/cloud_formation/stack_collection.rb +8 -5
- data/lib/aws/sns/topic.rb +1 -1
- data/lib/aws/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0e481e645ec07d5d472f963bb16a9094ab53cb8
|
4
|
+
data.tar.gz: 3be69a16dfd4ff93df4ec39da624ad75e14ab154
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 638f95004e403016909e4116e613511a2c8ec1ba0ab5e1650feaeca1f46d135b43676ee29af7cd4d4ffd88e3501a9d620d6da07351b229bde20f5d5a6aa2c055
|
7
|
+
data.tar.gz: a27ced20f9a439576f97694d35a999b01bab9193e9d59440381b5027f088d2bc6fbf177c8bacf3dbe2d3af5563f420ab4c9a497ae7d6b70661ed86d6b943768a
|
@@ -1865,6 +1865,10 @@
|
|
1865
1865
|
- :string
|
1866
1866
|
- :rename: Values
|
1867
1867
|
- :rename: filters
|
1868
|
+
NextToken:
|
1869
|
+
- :string
|
1870
|
+
MaxResults:
|
1871
|
+
- :integer
|
1868
1872
|
:outputs:
|
1869
1873
|
:children:
|
1870
1874
|
reservationSet:
|
@@ -2970,6 +2974,10 @@
|
|
2970
2974
|
- :string
|
2971
2975
|
- :rename: Values
|
2972
2976
|
- :rename: filters
|
2977
|
+
MaxResults:
|
2978
|
+
- :integer
|
2979
|
+
NextToken:
|
2980
|
+
- :string
|
2973
2981
|
:outputs:
|
2974
2982
|
:children:
|
2975
2983
|
tagSet:
|
@@ -3696,6 +3704,10 @@
|
|
3696
3704
|
- :structure:
|
3697
3705
|
Value:
|
3698
3706
|
- :boolean
|
3707
|
+
SriovNetSupport:
|
3708
|
+
- :structure:
|
3709
|
+
Value:
|
3710
|
+
- :string
|
3699
3711
|
:outputs: {}
|
3700
3712
|
- :name: ModifyNetworkInterfaceAttribute
|
3701
3713
|
:method: :modify_network_interface_attribute
|
@@ -3906,6 +3918,10 @@
|
|
3906
3918
|
NoDevice:
|
3907
3919
|
- :string
|
3908
3920
|
- :rename: blockDeviceMappings
|
3921
|
+
VirtualizationType:
|
3922
|
+
- :string
|
3923
|
+
SriovNetSupport:
|
3924
|
+
- :string
|
3909
3925
|
:outputs: {}
|
3910
3926
|
- :name: ReleaseAddress
|
3911
3927
|
:method: :release_address
|
@@ -20,7 +20,7 @@ module AWS
|
|
20
20
|
|
21
21
|
# @api private
|
22
22
|
def initialize options = {}
|
23
|
-
@
|
23
|
+
@status_filters = options[:status_filters] || []
|
24
24
|
super
|
25
25
|
end
|
26
26
|
|
@@ -183,18 +183,21 @@ module AWS
|
|
183
183
|
# filters the stacks returned by the given status.
|
184
184
|
#
|
185
185
|
def with_status status_filter
|
186
|
-
StackCollection.new(
|
186
|
+
StackCollection.new(
|
187
|
+
:status_filters => @status_filters + [status_filter.to_s.upcase],
|
188
|
+
:config => config)
|
187
189
|
end
|
188
190
|
|
189
191
|
protected
|
190
192
|
|
191
193
|
def _each_item next_token, options = {}
|
192
194
|
options[:next_token] = next_token if next_token
|
193
|
-
|
194
|
-
resp
|
195
|
+
options[:stack_status_filter] = @status_filters unless @status_filters.empty?
|
196
|
+
resp = client.list_stacks(options)
|
197
|
+
resp[:stack_summaries].each do |summary|
|
195
198
|
|
196
199
|
stack = Stack.new_from(
|
197
|
-
:
|
200
|
+
:list_stacks,
|
198
201
|
summary,
|
199
202
|
summary[:stack_name],
|
200
203
|
:config => config)
|
data/lib/aws/sns/topic.rb
CHANGED
@@ -35,7 +35,7 @@ module AWS
|
|
35
35
|
# If you have not set a display name (see {#display_name=}) then
|
36
36
|
# this is used as the "From" field for notifications to email and
|
37
37
|
# email-json endpoints.
|
38
|
-
# @return [String] Returns the
|
38
|
+
# @return [String] Returns the topic name.
|
39
39
|
def name
|
40
40
|
arn.split(/:/)[-1]
|
41
41
|
end
|
data/lib/aws/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.29.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: 2013-11-
|
11
|
+
date: 2013-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: uuidtools
|