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_limits.rb
2013-10-30 19:02:00 -04:00

39 lines
No EOL
813 B
Ruby

module Fog
module HP
class LB
class Real
def list_limits
response = request(
:expects => 200,
:method => 'GET',
:path => 'limits'
)
response
end
end
class Mock
def list_limits
response = Excon::Response.new
response.status = 200
response.body = {
"limits" => {
"absolute" => {
"values" => {
"maxLoadBalancerNameLength" => 128,
"maxLoadBalancers" => 20,
"maxNodesPerLoadBalancer" => 5,
"maxVIPsPerLoadBalancer" => 1
}
}
}
}
response
end
end
end
end
end