Class: Gemfire::Node

Inherits:
Shared::GroupableNode show all
Defined in:
lib/vas/gemfire/nodes.rb

Overview

A GemFire node

Instance Attribute Summary collapse

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

Methods inherited from Shared::GroupableNode

#groups

Constructor Details

#initialize(location, client) ⇒ Node

:nodoc:



35
36
37
38
# File 'lib/vas/gemfire/nodes.rb', line 35

def initialize(location, client) #:nodoc:
  super(location, client, Group)
  @java_home = details["java-home"]
end

Instance Attribute Details

#java_homeObject (readonly)

The Node’s Java home



33
34
35
# File 'lib/vas/gemfire/nodes.rb', line 33

def java_home
  @java_home
end

Instance Method Details

#agent_instancesObject

The node’s agent instances



41
42
43
# File 'lib/vas/gemfire/nodes.rb', line 41

def agent_instances
  @instances = AgentNodeInstances.new(Util::LinkUtils.get_link_href(details, "agent-node-instances"), client)
end

#cache_server_instancesObject

The node’s cache server instances



46
47
48
# File 'lib/vas/gemfire/nodes.rb', line 46

def cache_server_instances
  @instances = CacheServerNodeInstances.new(Util::LinkUtils.get_link_href(details, "cache-server-node-instances"), client)
end

#locator_instancesObject

The node’s locator instances



51
52
53
# File 'lib/vas/gemfire/nodes.rb', line 51

def locator_instances
  @instances = LocatorNodeInstances.new(Util::LinkUtils.get_link_href(details, "locator-node-instances"), client)
end

#to_sObject

:nodoc:



55
56
57
# File 'lib/vas/gemfire/nodes.rb', line 55

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