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

Inherits:
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.



6
7
8
# File 'lib/fog/vsphere/models/compute/networks.rb', line 6

def cluster
  @cluster
end

#datacenterObject

Returns the value of attribute datacenter.



6
7
8
# File 'lib/fog/vsphere/models/compute/networks.rb', line 6

def datacenter
  @datacenter
end

Instance Method Details

#all(filters = {}) ⇒ Object



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

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

#get(id) ⇒ Object



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

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