Class: Faraday::Request::TokenAuthentication
- Defined in:
 - lib/puppet/feature/faraday/request/token_authentication.rb
 
Class Method Summary collapse
Instance Method Summary collapse
- 
  
    
      #initialize(app, token, options = nil)  ⇒ TokenAuthentication 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of TokenAuthentication.
 
Constructor Details
#initialize(app, token, options = nil) ⇒ TokenAuthentication
Returns a new instance of TokenAuthentication.
      10 11 12  | 
    
      # File 'lib/puppet/feature/faraday/request/token_authentication.rb', line 10 def initialize(app, token, = nil) super(app, token, ) end  | 
  
Class Method Details
.header(token, options = nil) ⇒ Object
Public
      4 5 6 7 8  | 
    
      # File 'lib/puppet/feature/faraday/request/token_authentication.rb', line 4 def self.header(token, = nil) ||= {} [:token] = token super(:Token, ) end  |