Class: Crowbar::Client::Request::Node::Role

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

Overview

Implementation for the node role request

Instance Attribute Summary

Attributes inherited from Base

#attrs, #request

Instance Method Summary collapse

Methods inherited from Base

#headers, #initialize, #params, #process

Constructor Details

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

Instance Method Details

#contentHash

Override the request content

Returns:

  • (Hash)

    the content for the request



32
33
34
35
36
# File 'lib/crowbar/client/request/node/role.rb', line 32

def content
  super.easy_merge!(
    role: attrs.value
  )
end

#methodSymbol

HTTP method that gets used by the request

Returns:

  • (Symbol)

    the method for the request



43
44
45
# File 'lib/crowbar/client/request/node/role.rb', line 43

def method
  :post
end

#urlString

Path to the API endpoint for the request

Returns:

  • (String)

    path to the API endpoint



52
53
54
55
56
57
58
59
60
# File 'lib/crowbar/client/request/node/role.rb', line 52

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