Class: Fog::Compute::Brightbox::LoadBalancer
- Defined in:
- lib/fog/compute/models/brightbox/load_balancer.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
Methods inherited from Model
#initialize, #inspect, #reload, #to_json, #wait_for
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Model
Instance Method Details
#destroy ⇒ Object
40 41 42 43 44 |
# File 'lib/fog/compute/models/brightbox/load_balancer.rb', line 40 def destroy requires :identity connection.destroy_load_balancer(identity) true end |
#ready? ⇒ Boolean
22 23 24 |
# File 'lib/fog/compute/models/brightbox/load_balancer.rb', line 22 def ready? status == 'active' end |
#save ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/fog/compute/models/brightbox/load_balancer.rb', line 26 def save requires :nodes, :listeners, :healthcheck = { :nodes => nodes, :listeners => listeners, :healthcheck => healthcheck, :policy => policy, :name => name }.delete_if {|k,v| v.nil? || v == "" } data = connection.create_load_balancer() merge_attributes(data) true end |