Class: Gemfire::ApplicationCodeImages

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

Overview

Used to enumerate, create, and delete GemFire application code images.

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) ⇒ ApplicationCodeImages

Returns a new instance of ApplicationCodeImages.



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

def initialize(location, client)
  super(location, client, 'application-code-images', ApplicationCodeImage)
end

Instance Method Details

#create(path, name, version) ⇒ ApplicationCodeImage

Creates a new application code image by uploading a file and assigning it a name and version

Parameters:

  • path (String)

    the path of the file to upload

  • name (String)

    the name of the application code

  • version (String)

    the version of the application code

Returns:



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

def create(path, name, version)
  create_image(path, { :name => name, :version => version })
end