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