Class: Fog::Compute::XenServer::Vlans

Inherits:
Fog::Collection show all
Defined in:
lib/fog/xenserver/models/compute/vlans.rb

Instance Attribute Summary

Attributes inherited from Fog::Collection

#service

Instance Method Summary collapse

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

Returns:

  • (Array)

    a list of Fog::Compute::XenServer::VLAN



16
17
18
19
# File 'lib/fog/xenserver/models/compute/vlans.rb', line 16

def all(options = {})
  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