Class: Fog::Compute::XenServer::Pbds
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::XenServer::Pbds
- Defined in:
- lib/fog/xenserver/models/compute/pbds.rb
Instance Method Summary collapse
- #all(options = {}) ⇒ Object
- #get(ref) ⇒ Object
-
#initialize(attributes) ⇒ Pbds
constructor
A new instance of Pbds.
Constructor Details
#initialize(attributes) ⇒ Pbds
Returns a new instance of Pbds.
10 11 12 |
# File 'lib/fog/xenserver/models/compute/pbds.rb', line 10 def initialize(attributes) super end |
Instance Method Details
#all(options = {}) ⇒ Object
14 15 16 17 |
# File 'lib/fog/xenserver/models/compute/pbds.rb', line 14 def all( = {}) data = service.get_records 'PBD' load(data) end |
#get(ref) ⇒ Object
19 20 21 22 23 24 25 |
# File 'lib/fog/xenserver/models/compute/pbds.rb', line 19 def get( ref ) if ref && obj = service.get_record( ref, 'PBD' ) new(obj) else nil end end |