Class: Fog::Vsphere::Compute::Folders
- Inherits:
-
Collection
- Object
- Collection
- Fog::Vsphere::Compute::Folders
- Defined in:
- lib/fog/vsphere/models/compute/folders.rb
Instance Attribute Summary collapse
-
#datacenter ⇒ Object
Returns the value of attribute datacenter.
-
#path ⇒ Object
Returns the value of attribute path.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
Instance Attribute Details
#datacenter ⇒ Object
Returns the value of attribute datacenter.
6 7 8 |
# File 'lib/fog/vsphere/models/compute/folders.rb', line 6 def datacenter @datacenter end |
#path ⇒ Object
Returns the value of attribute path.
6 7 8 |
# File 'lib/fog/vsphere/models/compute/folders.rb', line 6 def path @path end |
#type ⇒ Object
Returns the value of attribute type.
6 7 8 |
# File 'lib/fog/vsphere/models/compute/folders.rb', line 6 def type @type end |
Instance Method Details
#all(filters = {}) ⇒ Object
8 9 10 11 12 |
# File 'lib/fog/vsphere/models/compute/folders.rb', line 8 def all(filters = {}) requires :datacenter requires :type load service.list_folders(filters.merge(datacenter: datacenter, type: type, path: path)) end |
#get(id) ⇒ Object
14 15 16 17 |
# File 'lib/fog/vsphere/models/compute/folders.rb', line 14 def get(id) requires :datacenter new service.get_folder(id, datacenter, type) end |