Sha256: 07ca8ecae6086aca9a3b49ddd4311609b8d84fbe096cfabab5651dd965a16c2d

Contents?: true

Size: 1.08 KB

Versions: 35

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

35 entries across 35 versions & 2 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/hp/requests/lb/list_limits.rb
fog-1.20.0 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/hp/requests/lb/list_limits.rb
fog-1.19.0 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/hp/requests/lb/list_limits.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/hp/requests/lb/list_limits.rb