Class: Crowbar::Client::Request::VirtualIP::Deallocate
- Defined in:
- lib/crowbar/client/request/virtual_ip/deallocate.rb
Overview
Implementation for the virtual IP deallocate request
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#content ⇒ Hash
Override the request content.
-
#method ⇒ Symbol
HTTP method that gets used by the request.
-
#url ⇒ String
Path to the API endpoint for the request.
Methods inherited from Base
#headers, #initialize, #params, #process
Constructor Details
This class inherits a constructor from Crowbar::Client::Request::Base
Instance Method Details
#content ⇒ Hash
Override the request content
32 33 34 35 36 37 |
# File 'lib/crowbar/client/request/virtual_ip/deallocate.rb', line 32 def content super.easy_merge!( name: attrs.service, network: attrs.network ) end |
#method ⇒ Symbol
HTTP method that gets used by the request
44 45 46 |
# File 'lib/crowbar/client/request/virtual_ip/deallocate.rb', line 44 def method :post end |
#url ⇒ String
Path to the API endpoint for the request
53 54 55 56 57 58 59 60 61 |
# File 'lib/crowbar/client/request/virtual_ip/deallocate.rb', line 53 def url [ "crowbar", "network", "1.0", "deallocate_virtual_ip", attrs.proposal ].join("/") end |