Class: Intrinsic::RequestClient
- Inherits:
-
Object
- Object
- Intrinsic::RequestClient
- Defined in:
- lib/requests.rb
Instance Attribute Summary collapse
-
#base_url ⇒ Object
readonly
Returns the value of attribute base_url.
-
#conn ⇒ Object
readonly
Returns the value of attribute conn.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
Instance Method Summary collapse
Constructor Details
#initialize(api_key:, environment: Environment::DEFAULT, max_retries: nil, timeout_in_seconds: nil) ⇒ RequestClient
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/requests.rb', line 17 def initialize(api_key:, environment: Environment::DEFAULT, max_retries: nil, timeout_in_seconds: nil) @default_environment = environment @base_url = environment @headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "Intrinsic", "X-Fern-SDK-Version": "0.0.2", "X-API-Key": api_key.to_s } @conn = Faraday.new(@base_url, headers: @headers) do |faraday| faraday.request :json faraday.response :raise_error, include_request: true faraday.request :retry, { max: max_retries } unless max_retries.nil? faraday..timeout = timeout_in_seconds unless timeout_in_seconds.nil? end end |
Instance Attribute Details
#base_url ⇒ Object (readonly)
Returns the value of attribute base_url.
10 11 12 |
# File 'lib/requests.rb', line 10 def base_url @base_url end |
#conn ⇒ Object (readonly)
Returns the value of attribute conn.
10 11 12 |
# File 'lib/requests.rb', line 10 def conn @conn end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
10 11 12 |
# File 'lib/requests.rb', line 10 def headers @headers end |