Class: Crowbar::Client::Request::Backup::Upload
- Inherits:
-
Crowbar::Client::Request::Base
- Object
- Crowbar::Client::Request::Base
- Crowbar::Client::Request::Backup::Upload
- Defined in:
- lib/crowbar/client/request/backup/upload.rb
Overview
Implementation for the backup upload request
Instance Attribute Summary
Attributes inherited from Crowbar::Client::Request::Base
Instance Method Summary collapse
- #content ⇒ Object
-
#headers ⇒ Hash
Override the request headers.
-
#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
#initialize, #params, #process
Constructor Details
This class inherits a constructor from Crowbar::Client::Request::Base
Instance Method Details
#content ⇒ Object
38 39 40 41 42 43 44 |
# File 'lib/crowbar/client/request/backup/upload.rb', line 38 def content super.easy_merge!( backup: { file: attrs.file } ) end |
#headers ⇒ Hash
Override the request headers
32 33 34 35 36 |
# File 'lib/crowbar/client/request/backup/upload.rb', line 32 def headers super.easy_merge!( Crowbar::Client::Util::ApiVersion.new(Config.apiversion).headers ) end |
#method ⇒ Symbol
HTTP method that gets used by the request
51 52 53 |
# File 'lib/crowbar/client/request/backup/upload.rb', line 51 def method :post end |
#url ⇒ String
Path to the API endpoint for the request
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/crowbar/client/request/backup/upload.rb', line 60 def url case Config.apiversion when 1.0 [ "utils", "backups", "upload" ] when 2.0 [ "api", "crowbar", "backups", "upload" ] end.join("/") end |