Class: Fog::Compute::Vsphere::Datastores

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/vsphere/models/compute/datastores.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#datacenterObject

Returns the value of attribute datacenter.



9
10
11
# File 'lib/fog/vsphere/models/compute/datastores.rb', line 9

def datacenter
  @datacenter
end

Instance Method Details

#all(filters = {}) ⇒ Object



11
12
13
# File 'lib/fog/vsphere/models/compute/datastores.rb', line 11

def all(filters = {})
  load service.list_datastores(filters.merge(:datacenter => datacenter))
end

#get(id) ⇒ Object



15
16
17
18
# File 'lib/fog/vsphere/models/compute/datastores.rb', line 15

def get(id)
  requires :datacenter
  new service.get_datastore(id, datacenter)
end