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/models/lb/limits.rb

32 lines
651 B
Ruby
Raw Normal View History

2013-03-01 15:26:52 -05:00
require 'fog/core/collection'
require 'lib/fog/hp/models/lb/load_balancer'
module Fog
module HP
class LB
class Limits < Fog::Collection
model Fog::HP::LB::Limit
#{
# "limits" : {
# "absolute" : {
# "values" : {
# "maxLoadBalancerNameLength" : 128,
# "maxLoadBalancers" : 20,
# "maxNodesPerLoadBalancer" : 5,
# "maxVIPsPerLoadBalancer" : 1
#}
#}
#}
#}
def all
data = connection.list_load_limits.body['limits']['absolute']['values']
load(data)
end
end
end
end
end