Class: Fog::Compute::Vsphere::Networks

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/vsphere/models/compute/networks.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/networks.rb', line 8

def cluster
  @cluster
end

#datacenterObject

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