Class: Crowbar::Client::Request::Batch::Export
- Inherits:
-
Crowbar::Client::Request::Base
- Object
- Crowbar::Client::Request::Base
- Crowbar::Client::Request::Batch::Export
- Defined in:
- lib/crowbar/client/request/batch/export.rb
Overview
Implementation for the batch export request
Instance Attribute Summary
Attributes inherited from Crowbar::Client::Request::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 Crowbar::Client::Request::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 38 39 |
# File 'lib/crowbar/client/request/batch/export.rb', line 32 def content super.easy_merge!( batch: { includes: attrs.includes, excludes: attrs.excludes } ) end |
#method ⇒ Symbol
HTTP method that gets used by the request
46 47 48 |
# File 'lib/crowbar/client/request/batch/export.rb', line 46 def method :post end |
#url ⇒ String
Path to the API endpoint for the request
55 56 57 58 59 60 61 |
# File 'lib/crowbar/client/request/batch/export.rb', line 55 def url [ "utils", "batch", "export" ].join("/") end |