Class: Fog::AWS::AutoScaling::Configurations
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::AWS::AutoScaling::Configurations
- Defined in:
- lib/fog/aws/models/auto_scaling/configurations.rb
Instance Attribute Summary
Attributes inherited from Collection
Instance Method Summary collapse
- #all ⇒ Object
- #get(identity) ⇒ Object
-
#initialize(attributes = {}) ⇒ Configurations
constructor
Creates a new launch configuration.
Methods inherited from Collection
#clear, #create, #destroy, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Fog::Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Fog::Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
#initialize(attributes = {}) ⇒ Configurations
Creates a new launch configuration
11 12 13 |
# File 'lib/fog/aws/models/auto_scaling/configurations.rb', line 11 def initialize(attributes={}) super end |
Instance Method Details
#all ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/fog/aws/models/auto_scaling/configurations.rb', line 15 def all data = [] next_token = nil loop do result = connection.describe_launch_configurations('NextToken' => next_token).body['DescribeLaunchConfigurationsResult'] data += result['LaunchConfigurations'] next_token = result['NextToken'] break if next_token.nil? end load(data) end |
#get(identity) ⇒ Object
27 28 29 30 |
# File 'lib/fog/aws/models/auto_scaling/configurations.rb', line 27 def get(identity) data = connection.describe_launch_configurations('LaunchConfigurationNames' => identity).body['DescribeLaunchConfigurationsResult']['LaunchConfigurations'].first new(data) unless data.nil? end |