Parent

Class/Module Index [+]

Quicksearch

Fog::Compute::AWS::Address

Public Class Methods

new(attributes = {}) click to toggle source
# 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

Public Instance Methods

destroy() click to toggle source
# File lib/fog/aws/models/compute/address.rb, line 22
def destroy
  requires :public_ip

  service.release_address(allocation_id || public_ip)
  true
end
save() click to toggle source
# 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
server() click to toggle source
# File lib/fog/aws/models/compute/address.rb, line 37
def server
  service.servers.get(server_id)
end
server=(new_server) click to toggle source
# File lib/fog/aws/models/compute/address.rb, line 29
def server=(new_server)
  if new_server
    associate(new_server)
  else
    disassociate
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.