Sha256: 494dd4074de65f3004822aced4b55cb5a8617e4421b0d05b35b1d69f0f7e0e63
Contents?: true
Size: 1.26 KB
Versions: 20
Compression:
Stored size: 1.26 KB
Contents
module Fog module OpenStack class Baremetal class Real # Patch a chassis # # parameter example: # [{:op=> 'replace', :path => "/extra/placement", :value => "somewhere"}] # # === Patch parameter, list of jsonpatch === # op = Operations: 'add', 'replace' or 'remove' # path = Attributes to add/replace or remove (only PATH is necessary on remove), # e.g. /extra/placement # value = Value to set def patch_chassis(chassis_uuid, patch) request( :body => Fog::JSON.encode(patch), :expects => 200, :method => 'PATCH', :path => "chassis/#{chassis_uuid}" ) end end class Mock def patch_chassis(_chassis_uuid, _patch) response = Excon::Response.new response.status = 200 response.headers = { "X-Compute-Request-Id" => "req-fdc6f99e-55a2-4ab1-8904-0892753828cf", "Content-Type" => "application/json", "Content-Length" => "356", "Date" => Date.new } response.body = data[:chassis_collection].first response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems