Sha256: c04516762d76b0a8d3ef9ed03ca4f45613221e05c990353000a5314a165782e6

Contents?: true

Size: 1.08 KB

Versions: 29

Compression:

Stored size: 1.08 KB

Contents

module Fog
  module HP
    class LB
      # List limits
      #
      # ==== Returns
      # * response<~Excon::Response>:
      #   * body<~Hash>:
      #     * 'limits'<~Hash>:
      #       * 'absolute'<~Hash>:
      #         * 'values'<~Hash>:
      #           * 'maxLoadBalancerNameLength'<~Integer> - Limit of the name of the load balancer
      #           * 'maxLoadBalancers'<~Integer> - Limit of the number of the load balancer
      #           * 'maxVIPsPerLoadBalancer'<~Integer> - Limit of the virtual IPs per load balancer
      #           * 'maxNodesPerLoadBalancer'<~Integer> - Limit of the nodes per load balancer
      class Real
        def list_limits
          request(
            :expects => 200,
            :method  => 'GET',
            :path    => 'limits'
          )
        end
      end
      class Mock
        def list_limits
          response        = Excon::Response.new
          limits          = self.data[:limits].values
          response.status = 200
          response.body   = { 'limits' => limits }
          response
        end
      end
    end
  end
end

Version data entries

29 entries across 29 versions & 4 rubygems

Version Path
fog-1.37.0 lib/fog/hp/requests/lb/list_limits.rb
fog-1.36.0 lib/fog/hp/requests/lb/list_limits.rb
fog-1.35.0 lib/fog/hp/requests/lb/list_limits.rb
fog-2.0.0.pre.0 lib/fog/hp/requests/lb/list_limits.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/hp/requests/lb/list_limits.rb
fog-1.34.0 lib/fog/hp/requests/lb/list_limits.rb
fog-1.33.0 lib/fog/hp/requests/lb/list_limits.rb
fog-1.32.0 lib/fog/hp/requests/lb/list_limits.rb
fog-1.31.0 lib/fog/hp/requests/lb/list_limits.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/hp/requests/lb/list_limits.rb
fog-1.30.0 lib/fog/hp/requests/lb/list_limits.rb
fog-1.29.0 lib/fog/hp/requests/lb/list_limits.rb
fog-1.28.0 lib/fog/hp/requests/lb/list_limits.rb
fog-1.27.0 lib/fog/hp/requests/lb/list_limits.rb
fog-1.26.0 lib/fog/hp/requests/lb/list_limits.rb
fog-1.25.0 lib/fog/hp/requests/lb/list_limits.rb
nsidc-fog-1.24.1 lib/fog/hp/requests/lb/list_limits.rb
fog-1.24.0 lib/fog/hp/requests/lb/list_limits.rb
ns-fog-1.22.11 lib/fog/hp/requests/lb/list_limits.rb
ns-fog-1.22.10 lib/fog/hp/requests/lb/list_limits.rb