Class: Fog::Compute::Vsphere::Servertypes

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/vsphere/models/compute/servertypes.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#datacenterObject

Returns the value of attribute datacenter.



11
12
13
# File 'lib/fog/vsphere/models/compute/servertypes.rb', line 11

def datacenter
  @datacenter
end

#fullnameObject

Returns the value of attribute fullname.



11
12
13
# File 'lib/fog/vsphere/models/compute/servertypes.rb', line 11

def fullname
  @fullname
end

#idObject

Returns the value of attribute id.



11
12
13
# File 'lib/fog/vsphere/models/compute/servertypes.rb', line 11

def id
  @id
end

Instance Method Details

#all(filters = { }) ⇒ Object



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

def all(filters = { })
  load service.list_server_types(filters.merge({:datacenter => datacenter}))
end

#get(id) ⇒ Object



17
18
19
20
21
22
# File 'lib/fog/vsphere/models/compute/servertypes.rb', line 17

def get(id)
  requires :datacenter
  new service.get_server_type(id, datacenter)
rescue Fog::Compute::Vsphere::NotFound
  nil
end