Sha256: ff7d6caa824552eb21c825e9f2e4d5cd4beef1f14262e87188656d11151a6e48

Contents?: true

Size: 1.23 KB

Versions: 29

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

29 entries across 29 versions & 4 rubygems

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