Class: Fog::Compute::XenServer::Pbds
- Inherits:
-
Fog::Collection
- Object
- Array
- Fog::Collection
- Fog::Compute::XenServer::Pbds
- Defined in:
- lib/fog/xenserver/models/compute/pbds.rb
Instance Attribute Summary
Attributes inherited from Fog::Collection
Instance Method Summary collapse
- #all(options = {}) ⇒ Object
- #get(ref) ⇒ Object
-
#initialize(attributes) ⇒ Pbds
constructor
A new instance of Pbds.
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 Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
#initialize(attributes) ⇒ Pbds
Returns a new instance of Pbds.
12 13 14 |
# File 'lib/fog/xenserver/models/compute/pbds.rb', line 12 def initialize(attributes) super end |
Instance Method Details
#all(options = {}) ⇒ Object
16 17 18 19 |
# File 'lib/fog/xenserver/models/compute/pbds.rb', line 16 def all( = {}) data = connection.get_records 'PBD' load(data) end |
#get(ref) ⇒ Object
21 22 23 24 25 26 27 |
# File 'lib/fog/xenserver/models/compute/pbds.rb', line 21 def get( ref ) if ref && obj = connection.get_record( ref, 'PBD' ) new(obj) else nil end end |