Class: Fog::Rackspace::LoadBalancers::AccessRule

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/rackspace/models/load_balancers/access_rule.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Model

#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject



13
14
15
16
17
# File 'lib/fog/rackspace/models/load_balancers/access_rule.rb', line 13

def destroy
  requires :identity, :load_balancer
  service.delete_access_rule(load_balancer.identity, identity)
  true
end

#saveObject

Raises:



19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/fog/rackspace/models/load_balancers/access_rule.rb', line 19

def save
  raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
  requires :load_balancer, :address, :type
  service.create_access_rule(load_balancer.id, address, type)

  #Unfortunately, access rules creation doesn't return an ID, we require a subsequent list call and comparison
  data = service.list_access_rules(load_balancer.id).body['accessList'].select do |ar|
    ar['address'] == address && ar['type'] == type
  end.first
  merge_attributes(data)
  true
end