class Fog::Compute::Oracle::VlanInterfaces
Public Instance Methods
all()
click to toggle source
# File lib/fog/oracle/models/compute/vlan_interfaces.rb, line 10 def all() data = service.list_vlan_interfaces() load_response(data) end
get(id)
click to toggle source
# File lib/fog/oracle/models/compute/vlan_interfaces.rb, line 15 def get(id) data = service.get_vlan_interface(id_value(id)) new_from_response(data) end