Class: Crowbar::Client::Request::Database::Connect

Inherits:
Base
  • Object
show all
Defined in:
lib/crowbar/client/request/database/connect.rb

Overview

Implementation for the database connect request

Instance Attribute Summary

Attributes inherited from Base

#attrs, #request

Instance Method Summary collapse

Methods inherited from Base

#initialize, #params, #process

Constructor Details

This class inherits a constructor from Crowbar::Client::Request::Base

Instance Method Details

#contentHash

Override the request content

Returns:

  • (Hash)

    the content for the request



43
44
45
46
47
48
49
50
51
# File 'lib/crowbar/client/request/database/connect.rb', line 43

def content
  super.easy_merge!(
    username: attrs.db_username,
    password: attrs.db_password,
    database: attrs.database,
    host: attrs.host,
    port: attrs.port
  )
end

#headersHash

Override the request headers

Returns:

  • (Hash)

    the headers for the request



32
33
34
35
36
# File 'lib/crowbar/client/request/database/connect.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

Returns:

  • (Symbol)

    the method for the request



58
59
60
# File 'lib/crowbar/client/request/database/connect.rb', line 58

def method
  :post
end

#urlString

Path to the API endpoint for the request

Returns:

  • (String)

    path to the API endpoint



67
68
69
70
71
72
73
# File 'lib/crowbar/client/request/database/connect.rb', line 67

def url
  [
    "api",
    "database",
    "connect"
  ].join("/")
end