Class: Crowbar::Client::Request::Services::ClearServiceRestart
- Defined in:
- lib/crowbar/client/request/services/clear_restart.rb
Overview
Implementation for the Clear Restarts request
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#content ⇒ Hash
Override the request content.
-
#headers ⇒ Hash
Override the request headers.
-
#method ⇒ Symbol
HTTP method that gets used by the request.
-
#url ⇒ String
Path to the API endpoint for the request.
Methods inherited from Base
#initialize, #params, #process
Constructor Details
This class inherits a constructor from Crowbar::Client::Request::Base
Instance Method Details
#content ⇒ Hash
Override the request content
43 44 45 46 47 48 49 |
# File 'lib/crowbar/client/request/services/clear_restart.rb', line 43 def content super.easy_merge!( node: attrs.node, cookbook: attrs.cookbook, service: attrs.service ) end |
#headers ⇒ Hash
Override the request headers
32 33 34 35 36 |
# File 'lib/crowbar/client/request/services/clear_restart.rb', line 32 def headers super.easy_merge!( ::Crowbar::Client::Util::ApiVersion.new(2.0).headers ) end |
#method ⇒ Symbol
HTTP method that gets used by the request
56 57 58 |
# File 'lib/crowbar/client/request/services/clear_restart.rb', line 56 def method :post end |
#url ⇒ String
Path to the API endpoint for the request
65 66 67 |
# File 'lib/crowbar/client/request/services/clear_restart.rb', line 65 def url ["api", "restart_management", "restarts"].join("/") end |