Class: VFabric::Node

Inherits:
Shared::Node show all
Defined in:
lib/vas/vfabric/nodes.rb

Overview

A VFabric node

Instance Attribute Summary

Attributes inherited from Shared::Node

#agent_home, #architecture, #host_names, #ip_addresses, #metadata, #operating_system

Attributes inherited from Shared::Resource

#location, #security

Instance Method Summary collapse

Constructor Details

#initialize(location, client) ⇒ Node

Returns a new instance of Node.



42
43
44
# File 'lib/vas/vfabric/nodes.rb', line 42

def initialize(location, client)
  super(location, client)
end

Instance Method Details

#to_sString

Returns a string representation of the node.

Returns:

  • (String)

    a string representation of the node



47
48
49
# File 'lib/vas/vfabric/nodes.rb', line 47

def to_s
  "#<#{self.class} host_names='#{host_names}' ip_addresses='#{ip_addresses}' operating_system='#{operating_system}' architecture='#{architecture}' agent_home='#{agent_home}' metadata='#{}'>"
end