class Ropenstack::Telemetry

Public Instance Methods

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