Class: Crowbar::Client::Request::Backup::Download

Inherits:
Crowbar::Client::Request::Base show all
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

#attrs, #request

Instance Method Summary collapse

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

#headersObject



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(2.0).headers
  )
end

#methodSymbol

HTTP method that gets used by the request

Returns:

  • (Symbol)

    the method for the request



38
39
40
# File 'lib/crowbar/client/request/backup/download.rb', line 38

def method
  :get
end

#urlString

Path to the API endpoint for the request

Returns:

  • (String)

    path to the API endpoint



47
48
49
50
51
52
53
54
55
# File 'lib/crowbar/client/request/backup/download.rb', line 47

def url
  [
    "api",
    "crowbar",
    "backups",
    attrs.name,
    "download"
  ].join("/")
end