Class: Crowbar::Client::Request::VirtualIP::Allocate

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

Overview

Implementation for the virtual IP allocate 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
37
38
39
# File 'lib/crowbar/client/request/virtual_ip/allocate.rb', line 32

def content
  super.easy_merge!(
    name: attrs.service,
    network: attrs.network,
    range: attrs.range,
    suggestion: attrs.suggestion
  )
end

#methodSymbol

HTTP method that gets used by the request

Returns:

  • (Symbol)

    the method for the request



46
47
48
# File 'lib/crowbar/client/request/virtual_ip/allocate.rb', line 46

def method
  :post
end

#urlString

Path to the API endpoint for the request

Returns:

  • (String)

    path to the API endpoint



55
56
57
58
59
60
61
62
63
# File 'lib/crowbar/client/request/virtual_ip/allocate.rb', line 55

def url
  [
    "crowbar",
    "network",
    "1.0",
    "allocate_virtual_ip",
    attrs.proposal
  ].join("/")
end