Class: Fog::Compute::XenServer::Vbds

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

Instance Attribute Summary

Attributes inherited from Fog::Collection

#service

Instance Method Summary collapse

Methods inherited from Fog::Collection

#clear, #create, #destroy, #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

#initialize(attributes) ⇒ Vbds

Returns a new instance of Vbds.



12
13
14
# File 'lib/fog/xenserver/models/compute/vbds.rb', line 12

def initialize(attributes)
  super
end

Instance Method Details

#all(options = {}) ⇒ Object



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

def all(options = {})
  data = service.get_records 'VBD'
  load(data)
end

#get(vbd_ref) ⇒ Object



21
22
23
24
25
26
27
# File 'lib/fog/xenserver/models/compute/vbds.rb', line 21

def get( vbd_ref )
  if vbd_ref && vbd = service.get_record( vbd_ref, 'VBD' )
    new(vbd)
  end
rescue Fog::XenServer::NotFound
  nil
end