Class: ZendeskAPI::Configuration
- Inherits:
-
Object
- Object
- ZendeskAPI::Configuration
- Defined in:
- lib/zendesk_api/configuration.rb
Overview
Holds the configuration options for the client and connection
Instance Attribute Summary collapse
-
#access_token ⇒ String
OAuth2 access_token.
-
#adapter ⇒ Symbol
Faraday adapter.
-
#allow_http ⇒ Boolean
Whether to allow non-HTTPS connections for development purposes.
-
#cache ⇒ ZendeskAPI::LRUCache
Use this cache instead of default ZendeskAPI::LRUCache.new - must respond to read/write/fetch e.g.
-
#client_options ⇒ Hash
Client configurations (eg ssh config) to pass to Faraday.
-
#logger ⇒ Logger
Logger to use when logging requests.
-
#password ⇒ String
The basic auth password.
-
#retry ⇒ Boolean
Whether to attempt to retry when rate-limited (http status: 429).
-
#token ⇒ String
The basic auth token.
-
#url ⇒ String
The API url.
-
#url_based_access_token ⇒ Object
Returns the value of attribute url_based_access_token.
-
#username ⇒ String
The basic auth username.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
-
#options ⇒ Hash
Sets accept and user_agent headers, and url.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
42 43 44 45 46 |
# File 'lib/zendesk_api/configuration.rb', line 42 def initialize @client_options = {} self.cache = ZendeskAPI::LRUCache.new(1000) end |
Instance Attribute Details
#access_token ⇒ String
Returns OAuth2 access_token.
32 33 34 |
# File 'lib/zendesk_api/configuration.rb', line 32 def access_token @access_token end |
#adapter ⇒ Symbol
Returns Faraday adapter.
26 27 28 |
# File 'lib/zendesk_api/configuration.rb', line 26 def adapter @adapter end |
#allow_http ⇒ Boolean
Returns Whether to allow non-HTTPS connections for development purposes.
29 30 31 |
# File 'lib/zendesk_api/configuration.rb', line 29 def allow_http @allow_http end |
#cache ⇒ ZendeskAPI::LRUCache
Use this cache instead of default ZendeskAPI::LRUCache.new
-
must respond to read/write/fetch e.g. ActiveSupport::Cache::MemoryStore.new)
-
pass false to disable caching
40 41 42 |
# File 'lib/zendesk_api/configuration.rb', line 40 def cache @cache end |
#client_options ⇒ Hash
Returns Client configurations (eg ssh config) to pass to Faraday.
23 24 25 |
# File 'lib/zendesk_api/configuration.rb', line 23 def @client_options end |
#logger ⇒ Logger
Returns Logger to use when logging requests.
20 21 22 |
# File 'lib/zendesk_api/configuration.rb', line 20 def logger @logger end |
#password ⇒ String
Returns The basic auth password.
8 9 10 |
# File 'lib/zendesk_api/configuration.rb', line 8 def password @password end |
#retry ⇒ Boolean
Returns Whether to attempt to retry when rate-limited (http status: 429).
17 18 19 |
# File 'lib/zendesk_api/configuration.rb', line 17 def retry @retry end |
#token ⇒ String
Returns The basic auth token.
11 12 13 |
# File 'lib/zendesk_api/configuration.rb', line 11 def token @token end |
#url ⇒ String
Returns The API url. Must be https unless #allow_http is set.
14 15 16 |
# File 'lib/zendesk_api/configuration.rb', line 14 def url @url end |
#url_based_access_token ⇒ Object
Returns the value of attribute url_based_access_token.
34 35 36 |
# File 'lib/zendesk_api/configuration.rb', line 34 def url_based_access_token @url_based_access_token end |
#username ⇒ String
Returns The basic auth username.
5 6 7 |
# File 'lib/zendesk_api/configuration.rb', line 5 def username @username end |
Instance Method Details
#options ⇒ Hash
Sets accept and user_agent headers, and url.
51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/zendesk_api/configuration.rb', line 51 def { :headers => { :accept => 'application/json', :accept_encoding => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', :user_agent => "ZendeskAPI Ruby #{ZendeskAPI::VERSION}" }, :request => { :open_timeout => 10 }, :url => @url }.merge() end |