Class: Fog::Compute::Oracle::VlanInterfaces
Instance Attribute Summary
#response
Instance Method Summary
collapse
#id_value, #load_response, #new_from_response
Instance Method Details
#all ⇒ Object
10
11
12
13
|
# File 'lib/fog/oracle/models/compute/vlan_interfaces.rb', line 10
def all()
data = service.list_vlan_interfaces()
load_response(data)
end
|
#get(id) ⇒ Object
15
16
17
18
|
# 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
|