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

29 lines
631 B
Ruby

require 'fog/core/collection'
require 'fog/hp/models/lb/limit'
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 = service.list_limits.body['limits']['absolute']['values']
load([data])
end
end
end
end
end