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

#clusterObject

Returns the value of attribute cluster.



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

def cluster
  @cluster
end

#datacenterObject

Returns the value of attribute datacenter.



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

def datacenter
  @datacenter
end

Instance Method Details

#all(filters = {}) ⇒ Object



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

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

#get(id) ⇒ Object



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

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