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

#datacenterObject

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