Sha256: 4f3010a1ace975bd50c7e15cb1b89a939bc26e0ea1ed6cf99a720b724b4215fb
Contents?: true
Size: 1.38 KB
Versions: 1
Compression:
Stored size: 1.38 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 = {"addresses"=> [{"location"=>"101", "mode"=>0, "offeringId"=>"20001223", "id"=>"75321", "type"=>1, "ip"=>"170.224.192.210 ", "hostname"=>"170.224.192.210 ", "state"=>2}]}, response end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-1.3.0 | lib/fog/ibm/requests/compute/list_vlans.rb |