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