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

#delete

Methods inherited from Shared::Collection

#each

Constructor Details

#initialize(location, client) ⇒ ApplicationCodeImages

:nodoc:



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

def initialize(location, client) #:nodoc:
  super(location, client, "application-code-images", ApplicationCodeImage)
end

Instance Method Details

#create(path, name, version) ⇒ Object

Creates an application code image named name with the version version by uploading the file at the given path



28
29
30
# File 'lib/vas/gemfire/application_code_images.rb', line 28

def create(path, name, version)
  ApplicationCodeImage.new(client.post_image(location, path, { :name => name, :version => version }), client)
end