Sha256: b6cfcc3325ef0f6d5c96e41b5e953bec392f7171c013696375de9cd4256e1578
Contents?: true
Size: 1.2 KB
Versions: 43
Compression:
Stored size: 1.2 KB
Contents
module Fog module Compute class IBM class Real # Returns the vlan offerings for user # # ==== Parameters # No parameters # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'addresses'<~Array>: list of addresses # * 'location'<~String>: location of address # * 'mode'<~Integer>: # * 'offeringId'<~String>: offering ID # * 'id'<~String>: id # * 'type'<~Integer>: TODO unsure # * 'ip'<~String>: IP address.. with space at the end # * 'hostname'<~String>: seems to be same as ip # * 'state'<~Integer>: state of address def list_vlans request( :method => 'GET', :expects => 200, :path => '/offerings/vlan' ) end end class Mock def list_vlans response = Excon::Response.new response.status = 200 response.body = {"vlan"=> [{"location"=>"101", "id"=>"75321", "name"=>"FOG-VLAN1"}]} response end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems