Sha256: 53d2035d3313f7204aab9111b508c4cc9dfd4e1aa570417396242f6e7748ccd7
Contents?: true
Size: 1.23 KB
Versions: 23
Compression:
Stored size: 1.23 KB
Contents
module Fog module Baremetal class OpenStack class Real # Patch a node # # parameter example: # [{:op=> 'replace', :path => "/driver", :value => "pxe_ssh"}] # # === 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. /driver_info/ipmi_address # value = Value to set def patch_node(node_uuid, patch) request( :body => Fog::JSON.encode(patch), :expects => 200, :method => 'PATCH', :path => "nodes/#{node_uuid}" ) end end class Mock def patch_node(node_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 = self.data[:nodes].first response end end # mock end # openstack end # baremetal end # fog
Version data entries
23 entries across 23 versions & 3 rubygems