mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
39 lines
No EOL
813 B
Ruby
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 |