Class: Merge::Accounting::AsyncGenerateKeyClient

Inherits:
Object
  • Object
show all
Defined in:
lib/merge_ruby_client/accounting/generate_key/client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(request_client:) ⇒ Merge::Accounting::AsyncGenerateKeyClient

Parameters:



57
58
59
# File 'lib/merge_ruby_client/accounting/generate_key/client.rb', line 57

def initialize(request_client:)
  @request_client = request_client
end

Instance Attribute Details

#request_clientMerge::AsyncRequestClient (readonly)



53
54
55
# File 'lib/merge_ruby_client/accounting/generate_key/client.rb', line 53

def request_client
  @request_client
end

Instance Method Details

#create(name:, request_options: nil) ⇒ Merge::Accounting::RemoteKey

Create a remote key.

Examples:

api = Merge::Client.new(
  base_url: "https://api.example.com",
  environment: Merge::Environment::PRODUCTION,
  api_key: "YOUR_AUTH_TOKEN"
)
api.accounting.generate_key.create(name: "Remote Deployment Key 1")

Parameters:

  • name (String)

    The name of the remote key

  • request_options (Merge::RequestOptions) (defaults to: nil)

Returns:



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/merge_ruby_client/accounting/generate_key/client.rb', line 73

def create(name:, request_options: nil)
  Async do
    response = @request_client.conn.post do |req|
      req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
      req.headers["Authorization"] = request_options.api_key unless request_options&.api_key.nil?
      req.headers["X-Account-Token"] = request_options. unless request_options&..nil?
      req.headers = {
    **(req.headers || {}),
    **@request_client.get_headers,
    **(request_options&.additional_headers || {})
      }.compact
      unless request_options.nil? || request_options&.additional_query_parameters.nil?
        req.params = { **(request_options&.additional_query_parameters || {}) }.compact
      end
      req.body = { **(request_options&.additional_body_parameters || {}), name: name }.compact
      req.url "#{@request_client.get_url(request_options: request_options)}/accounting/v1/generate-key"
    end
    Merge::Accounting::RemoteKey.from_json(json_object: response.body)
  end
end