Class: Gemfire::CacheServerInstances

Inherits:
Shared::MutableCollection show all
Defined in:
lib/vas/gemfire/cache_server_instances.rb

Overview

Used to enumerate, create, and delete cache server instances.

Instance Attribute Summary

Attributes inherited from Shared::Resource

#location, #security

Instance Method Summary collapse

Methods inherited from Shared::MutableCollection

#create_image

Methods inherited from Shared::Collection

#each, #reload

Constructor Details

#initialize(location, client) ⇒ CacheServerInstances

Returns a new instance of CacheServerInstances.



23
24
25
# File 'lib/vas/gemfire/cache_server_instances.rb', line 23

def initialize(location, client)
  super(location, client, 'cache-server-group-instances', CacheServerInstance)
end

Instance Method Details

#create(installation, name) ⇒ CacheServerInstance

Creates a new cache server instance

Parameters:

  • installation (Installation)

    the installation to be used by the instance

  • name (String)

    the name of the instance

Returns:



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

def create(installation, name)
  payload = { :installation => installation.location, :name => name }
  super(payload, 'cache-server-group-instance')
end