Class: Crowbar::Client::Request::Backup::Create

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

Overview

Implementation for the backup create request

Instance Attribute Summary

Attributes inherited from Crowbar::Client::Request::Base

#attrs, #request

Instance Method Summary collapse

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

#contentHash

Override the request content



43
44
45
46
47
48
49
# File 'lib/crowbar/client/request/backup/create.rb', line 43

def content
  super.easy_merge!(
    backup: {
      name: attrs.name
    }
  )
end

#headersHash

Override the request headers



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

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

#methodSymbol

HTTP method that gets used by the request



56
57
58
# File 'lib/crowbar/client/request/backup/create.rb', line 56

def method
  :post
end

#urlString

Path to the API endpoint for the request



65
66
67
68
69
70
71
# File 'lib/crowbar/client/request/backup/create.rb', line 65

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