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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#clusterObject

Returns the value of attribute cluster.



6
7
8
# File 'lib/fog/vsphere/models/compute/datastores.rb', line 6

def cluster
  @cluster
end

#datacenterObject

Returns the value of attribute datacenter.



6
7
8
# File 'lib/fog/vsphere/models/compute/datastores.rb', line 6

def datacenter
  @datacenter
end

Instance Method Details

#all(filters = {}) ⇒ Object



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

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

#get(id) ⇒ Object



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

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