Class: Crowbar::Client::Request::Backup::List

Inherits:
Crowbar::Client::Request::Base show all
Defined in:
lib/crowbar/client/request/backup/list.rb

Overview

Implementation for the backup list 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

#headersHash

Override the request headers

Returns:

  • (Hash)

    the headers for the request



32
33
34
35
36
# File 'lib/crowbar/client/request/backup/list.rb', line 32

def headers
  super.easy_merge!(
    Crowbar::Client::Util::ApiVersion.new(Config.apiversion).headers
  )
end

#methodSymbol

HTTP method that gets used by the request

Returns:

  • (Symbol)

    the method for the request



43
44
45
# File 'lib/crowbar/client/request/backup/list.rb', line 43

def method
  :get
end

#urlString

Path to the API endpoint for the request

Returns:

  • (String)

    path to the API endpoint



52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/crowbar/client/request/backup/list.rb', line 52

def url
  case Config.apiversion
  when 1.0
    [
      "utils",
      "backups"
    ]
  when 2.0
    [
      "api",
      "crowbar",
      "backups"
    ]
  end.join("/")
end