Sha256: b905aa831c2d546b977d1d8f6d8f88dd869cb35d5ece2382709baa3653fb814c
Contents?: true
Size: 1.03 KB
Versions: 25
Compression:
Stored size: 1.03 KB
Contents
module Fog module DNS class Dynect class Real def post_session request( :expects => 200, :method => :post, :path => "Session", :body => MultiJson.encode({ :customer_name => @dynect_customer, :user_name => @dynect_username, :password => @dynect_password }) ) end end class Mock def post_session response = Excon::Response.new response.status = 200 response.body = { "status" => "success", "data" => { "token" => auth_token, "version" => Fog::Dynect::Mock.version }, "job_id" => Fog::Dynect::Mock.job_id, "msgs"=>[{ "INFO"=>"login: Login successful", "SOURCE"=>"BLL", "ERR_CD"=>nil, "LVL"=>"INFO" }] } response end end end end end
Version data entries
25 entries across 25 versions & 7 rubygems