Class: Fog::Compute::XenServer::Vlans
- Inherits:
-
Fog::Collection
- Object
- Array
- Fog::Collection
- Fog::Compute::XenServer::Vlans
- Defined in:
- lib/fog/xenserver/models/compute/vlans.rb
Instance Attribute Summary
Attributes inherited from Fog::Collection
Instance Method Summary collapse
-
#all(options = {}) ⇒ Array
Return the list of VLANs available.
-
#get(ref) ⇒ Fog::Compute::XenServer::VLAN
Retrieve a VLAN object by by reference.
Methods inherited from Fog::Collection
#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Fog::Core::DeprecatedConnectionAccessors
#connection, #connection=, #prepare_service_value
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Method Details
#all(options = {}) ⇒ Array
Return the list of VLANs available
16 17 18 19 |
# File 'lib/fog/xenserver/models/compute/vlans.rb', line 16 def all( = {}) data = service.get_records 'VLAN' load(data) end |
#get(ref) ⇒ Fog::Compute::XenServer::VLAN
Retrieve a VLAN object by by reference.
Returns nil if not found
27 28 29 30 31 32 33 |
# File 'lib/fog/xenserver/models/compute/vlans.rb', line 27 def get( ref ) if ref && obj = service.get_record( ref, 'VLAN' ) new(obj) end rescue Fog::XenServer::NotFound nil end |