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