Class: RabbitMq::PluginImages

Inherits:
Shared::MutableCollection show all
Defined in:
lib/vas/rabbitmq/plugin_images.rb

Overview

Used to enumerate, create, and delete Rabbit plugin 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) ⇒ PluginImages

:nodoc:



23
24
25
# File 'lib/vas/rabbitmq/plugin_images.rb', line 23

def initialize(location, client) #:nodoc:
  super(location, client, "plugin-images", PluginImage)
end

Instance Method Details

#create(path) ⇒ Object

Creates a plugin image by uploading the file at the given path



28
29
30
# File 'lib/vas/rabbitmq/plugin_images.rb', line 28

def create(path)
  PluginImage.new(client.post_image(location, path), client)
end