Class: Hcloud::FloatingIP

Inherits:
Object
  • Object
show all
Includes:
EntryLoader
Defined in:
lib/hcloud/floating_ip.rb

Instance Attribute Summary

Attributes included from EntryLoader

#response

Instance Method Summary collapse

Methods included from EntryLoader

#_attributes, #_load, #_run_callbacks, #_update_attribute, #client, #initialize, #inspect, #method_missing, #prepare_request, #resource_path, #resource_url, #respond_to_missing?, #rollback, #save, #update

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Hcloud::EntryLoader

Instance Method Details

#assign(server:) ⇒ Object



20
21
22
23
24
# File 'lib/hcloud/floating_ip.rb', line 20

def assign(server:)
  raise Hcloud::Error::InvalidInput, 'no server given' if server.nil?

  prepare_request('actions/assign', j: COLLECT_ARGS.call(__method__, binding))
end

#change_dns_ptr(ip:, dns_ptr:) ⇒ Object



30
31
32
33
34
# File 'lib/hcloud/floating_ip.rb', line 30

def change_dns_ptr(ip:, dns_ptr:)
  raise Hcloud::Error::InvalidInput, 'no IP given' if ip.blank?

  prepare_request('actions/change_dns_ptr', j: COLLECT_ARGS.call(__method__, binding))
end

#unassignObject



26
27
28
# File 'lib/hcloud/floating_ip.rb', line 26

def unassign
  prepare_request('actions/unassign', method: :post)
end