Class: Fog::Compute::Vsphere::Networks
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Vsphere::Networks
- Defined in:
- lib/fog/vsphere/models/compute/networks.rb
Instance Attribute Summary collapse
-
#datacenter ⇒ Object
Returns the value of attribute datacenter.
Instance Method Summary collapse
Instance Attribute Details
#datacenter ⇒ Object
Returns the value of attribute datacenter.
9 10 11 |
# File 'lib/fog/vsphere/models/compute/networks.rb', line 9 def datacenter @datacenter end |
Instance Method Details
#all(filters = {}) ⇒ Object
11 12 13 14 |
# File 'lib/fog/vsphere/models/compute/networks.rb', line 11 def all(filters = {}) f = { :datacenter => datacenter }.merge(filters) load service.list_networks(f) end |
#get(id) ⇒ Object
16 17 18 19 |
# File 'lib/fog/vsphere/models/compute/networks.rb', line 16 def get(id) requires :datacenter new service.get_network(id, datacenter) end |