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