Class: Fog::Compute::Oracle::AccessHosts

Inherits:
Oracle::Collection show all
Defined in:
lib/fog/oracle/models/compute/access_hosts.rb

Instance Attribute Summary

Attributes inherited from Oracle::Collection

#response

Instance Method Summary collapse

Methods inherited from Oracle::Collection

#id_value, #load_response, #new_from_response

Instance Method Details

#allObject



10
11
12
13
# File 'lib/fog/oracle/models/compute/access_hosts.rb', line 10

def all()
  data = service.list_access_hosts()
  load_response(data)
end

#get(id) ⇒ Object



15
16
17
18
# File 'lib/fog/oracle/models/compute/access_hosts.rb', line 15

def get(id)
  data = service.get_access_host(id_value(id))
  new_from_response(data)
end