Class: Fog::AWS::AutoScaling::Groups
- Inherits:
-
Collection
- Object
- Collection
- Fog::AWS::AutoScaling::Groups
- Defined in:
- lib/fog/aws/models/auto_scaling/groups.rb
Instance Method Summary collapse
- #all(filters_arg = filters) ⇒ Object
- #get(identity) ⇒ Object
-
#initialize(attributes = {}) ⇒ Groups
constructor
Creates a new auto scaling group.
Constructor Details
#initialize(attributes = {}) ⇒ Groups
Creates a new auto scaling group.
12 13 14 15 |
# File 'lib/fog/aws/models/auto_scaling/groups.rb', line 12 def initialize(attributes={}) self.filters = attributes super end |
Instance Method Details
#all(filters_arg = filters) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/fog/aws/models/auto_scaling/groups.rb', line 17 def all(filters_arg = filters) data = [] next_token = nil filters = filters_arg loop do result = service.describe_auto_scaling_groups(filters.merge('NextToken' => next_token)).body['DescribeAutoScalingGroupsResult'] data += result['AutoScalingGroups'] next_token = result['NextToken'] break if next_token.nil? end load(data) end |
#get(identity) ⇒ Object
30 31 32 33 |
# File 'lib/fog/aws/models/auto_scaling/groups.rb', line 30 def get(identity) data = service.describe_auto_scaling_groups('AutoScalingGroupNames' => identity).body['DescribeAutoScalingGroupsResult']['AutoScalingGroups'].first new(data) unless data.nil? end |