Class: Crowbar::Client::Request::Backup::Download
- Inherits:
-
Crowbar::Client::Request::Base
- Object
- Crowbar::Client::Request::Base
- Crowbar::Client::Request::Backup::Download
- Defined in:
- lib/crowbar/client/request/backup/download.rb
Overview
Implementation for the backup download request
Instance Attribute Summary
Attributes inherited from Crowbar::Client::Request::Base
Instance Method Summary collapse
- #headers ⇒ Object
-
#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
#content, #initialize, #params, #process
Constructor Details
This class inherits a constructor from Crowbar::Client::Request::Base
Instance Method Details
#headers ⇒ Object
27 28 29 30 31 |
# File 'lib/crowbar/client/request/backup/download.rb', line 27 def headers super.easy_merge!( Crowbar::Client::Util::ApiVersion.new(Config.apiversion).headers ) end |
#method ⇒ Symbol
HTTP method that gets used by the request
38 39 40 |
# File 'lib/crowbar/client/request/backup/download.rb', line 38 def method :get end |
#url ⇒ String
Path to the API endpoint for the request
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/crowbar/client/request/backup/download.rb', line 47 def url case Config.apiversion when 1.0 [ "utils", "backups", attrs.name, "download" ] when 2.0 [ "api", "crowbar", "backups", attrs.name, "download" ] end.join("/") end |