class Fog::Proxmox::Compute::Nodes
class Nodes
Collection of nodes of cluster
Public Instance Methods
all()
click to toggle source
# File lib/fog/proxmox/compute/models/nodes.rb, line 29 def all load service.list_nodes end
get(id)
click to toggle source
# File lib/fog/proxmox/compute/models/nodes.rb, line 33 def get(id) all.find { |node| node.identity == id } end