Class: Crowbar::Client::Request::Node::Delete

Inherits:
Base
  • Object
show all
Defined in:
lib/crowbar/client/request/node/delete.rb

Overview

Implementation for the node delete request

Instance Attribute Summary

Attributes inherited from Base

#attrs, #request

Instance Method Summary collapse

Methods inherited from Base

#content, #headers, #initialize, #params, #process

Constructor Details

This class inherits a constructor from Crowbar::Client::Request::Base

Instance Method Details

#methodSymbol

HTTP method that gets used by the request

Returns:

  • (Symbol)

    the method for the request



30
31
32
# File 'lib/crowbar/client/request/node/delete.rb', line 30

def method
  :delete
end

#urlString

Path to the API endpoint for the request

Returns:

  • (String)

    path to the API endpoint



39
40
41
42
43
44
45
46
# File 'lib/crowbar/client/request/node/delete.rb', line 39

def url
  [
    "crowbar",
    "machines",
    "1.0",
    attrs.name
  ].join("/")
end