mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
17 lines
No EOL
473 B
Ruby
17 lines
No EOL
473 B
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module HP
|
|
class LB
|
|
class Limit < Fog::Model
|
|
|
|
identity :id
|
|
attribute :max_load_balancer_name_length, :aliases => 'maxLoadBalancerNameLength'
|
|
attribute :max_load_balancers, :aliases => 'maxLoadBalancers'
|
|
attribute :max_nodes_per_load_balancer, :aliases => 'maxNodesPerLoadBalancer'
|
|
attribute :max_vips_per_load_balancer, :aliases => 'maxVIPsPerLoadBalancer'
|
|
|
|
end
|
|
end
|
|
end
|
|
end |