1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/hp/requests/lb/list_protocols.rb
2013-10-30 19:02:00 -04:00

30 lines
No EOL
619 B
Ruby

module Fog
module HP
class LB
class Real
def list_protocols
response = request(
:expects => 200,
:method => 'GET',
:path => 'protocols'
)
response
end
end
class Mock
def list_protocols
response = Excon::Response.new
response.status = 200
response.body = {
"protocols" => [
{ "name" => "HTTP", "port" => 80 },
{ "name" => "TCP", "port" => 443 }
]
}
response
end
end
end
end
end