class Ropenstack::Orchestration

Public Instance Methods

intialize(location, token, type) click to toggle source
Calls superclass method
# File lib/ropenstack/orchestration.rb, line 14
def intialize(location, token, type)
  super(location, token)
  case type
  when "orchestration" then extend Version1
  else
    raise Ropenstack::RopenstackError, "Invalid type passed to Orchestration"
  end
end