Sha256: 2a5317f7555e0a3067182e08bc47b35e30f589e732fcdd5f779dbd0ea33bafd3

Contents?: true

Size: 1.23 KB

Versions: 35

Compression:

Stored size: 1.23 KB

Contents

module Fog
  module HP
    class Network

      class Real
        # List existing routers
        #
        # ==== Parameters
        # * options<~Hash>:
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * routers<~Array>:
        #       * 'id'<~String>: - UUId for the router
        #       * 'name'<~String>: - Name of the router
        #       * 'tenant_id'<~String>: - TenantId that owns the router
        #       * 'status'<~String>: - Status of the router i.e. ACTIVE
        #       * 'admin_state_up'<~Boolean>: - true or false
        #       * 'external_gateway_info'<~Hash>: - External gateway info.
        #         * 'network_id'<~String>: - UUId of the external network
        def list_routers(options = {})
          request(
            :expects => 200,
            :method  => 'GET',
            :path    => 'routers',
            :query   => options
          )
        end
      end

      class Mock
        def list_routers(options = {})
          response = Excon::Response.new

          routers = self.data[:routers].values
          response.status = 200
          response.body = { 'routers' => routers }
          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/network/list_routers.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/hp/requests/network/list_routers.rb
fog-1.20.0 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/hp/requests/network/list_routers.rb
fog-1.19.0 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/hp/requests/network/list_routers.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/hp/requests/network/list_routers.rb