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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f388b0f220a45fcabf17c8b632e08281f79a62ac
4
- data.tar.gz: 507769cacf19bf8f8e64c8735337efc83787add9
3
+ metadata.gz: f0e481e645ec07d5d472f963bb16a9094ab53cb8
4
+ data.tar.gz: 3be69a16dfd4ff93df4ec39da624ad75e14ab154
5
5
  SHA512:
6
- metadata.gz: ae8e769aea85d0f65fe7746731c698e6d24a9b23bb1d9d2e77266026de8e946e828686e4ea5d404eec2331a970862d9a1b21a90c0177af08f512b4c32af961e3
7
- data.tar.gz: dca4c979ce5377db3de3646103a94c6100a01dd2d849f6097431383260913186dc846a44fbec8bd84f12cf401deb9aef7aba287f88d18b37913e6253e0cc6c91
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
- @status_filter = options[:status_filter]
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(:status_filter => status_filter, :config => config)
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
- resp = client.describe_stacks(options)
194
- resp[:stacks].each do |summary|
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
- :describe_stacks,
200
+ :list_stacks,
198
201
  summary,
199
202
  summary[:stack_name],
200
203
  :config => config)
@@ -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 toipc name.
38
+ # @return [String] Returns the topic name.
39
39
  def name
40
40
  arn.split(/:/)[-1]
41
41
  end
@@ -13,5 +13,5 @@
13
13
 
14
14
  module AWS
15
15
  # Current version of the AWS SDK for Ruby
16
- VERSION = '1.28.1'
16
+ VERSION = '1.29.0'
17
17
  end
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.28.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-23 00:00:00.000000000 Z
11
+ date: 2013-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: uuidtools