Class: RabbitMq::Instances

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

Overview

Used to enumerate, create, and delete Rabbit instances.

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

:nodoc:



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

def initialize(location, client) #:nodoc:
  super(location, client, "group-instances", Instance)
end

Instance Method Details

#create(installation, name) ⇒ Object

Creates a new instance named name, using the installation installation.



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

def create(installation, name)
  payload = { :installation => installation.location, :name => name }
  Instance.new(client.post(location, payload, "group-instance"), client)
end