Class: Fog::Compute::AWS::Address
- Inherits:
-
Model
- Object
- Model
- Fog::Compute::AWS::Address
- Defined in:
- lib/fog/aws/models/compute/address.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary (collapse)
- - (Object) destroy
-
- (Address) initialize(attributes = {})
constructor
A new instance of Address.
- - (Object) save
- - (Object) server
- - (Object) server=(new_server)
Methods inherited from Model
#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 Fog::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
- (Address) initialize(attributes = {})
A new instance of Address
16 17 18 19 20 |
# File 'lib/fog/aws/models/compute/address.rb', line 16 def initialize(attributes = {}) # assign server first to prevent race condition with persisted? self.server = attributes.delete(:server) super end |
Instance Method Details
- (Object) destroy
22 23 24 25 26 27 |
# File 'lib/fog/aws/models/compute/address.rb', line 22 def destroy requires :public_ip service.release_address(allocation_id || public_ip) true end |
- (Object) save
41 42 43 44 45 46 47 48 49 50 |
# File 'lib/fog/aws/models/compute/address.rb', line 41 def save raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted? data = service.allocate_address(domain).body new_attributes = data.reject {|key,value| key == 'requestId'} merge_attributes(new_attributes) if @server self.server = @server end true end |
- (Object) server
37 38 39 |
# File 'lib/fog/aws/models/compute/address.rb', line 37 def server service.servers.get(server_id) end |
- (Object) server=(new_server)
29 30 31 32 33 34 35 |
# File 'lib/fog/aws/models/compute/address.rb', line 29 def server=(new_server) if new_server associate(new_server) else disassociate end end |