Class: Seahorse::Client::RequestContext
- Inherits:
- 
      Object
      
        - Object
- Seahorse::Client::RequestContext
 
- Defined in:
- lib/seahorse/client/request_context.rb
Instance Attribute Summary collapse
- #client ⇒ Seahorse::Client::Base
- 
  
    
      #config  ⇒ Configuration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The client configuration. 
- #http_request ⇒ Http::Request
- #http_response ⇒ Http::Response
- #metadata ⇒ Hash readonly
- #operation ⇒ Model::Operation
- 
  
    
      #operation_name  ⇒ Symbol 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Name of the API operation called. 
- 
  
    
      #params  ⇒ Hash 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The hash of request parameters. 
- #retries ⇒ Integer
Instance Method Summary collapse
- 
  
    
      #[](key)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Returns the metadata for the given ‘key`. 
- 
  
    
      #[]=(key, value)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Sets the request context metadata for the given ‘key`. 
- 
  
    
      #initialize(options = {})  ⇒ RequestContext 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RequestContext. 
Constructor Details
#initialize(options = {}) ⇒ RequestContext
Returns a new instance of RequestContext.
| 14 15 16 17 18 19 20 21 22 23 24 | # File 'lib/seahorse/client/request_context.rb', line 14 def initialize( = {}) @operation_name = [:operation_name] @operation = [:operation] @client = [:client] @params = [:params] || {} @config = [:config] @http_request = [:http_request] || Http::Request.new @http_response = [:http_response] || Http::Response.new @retries = 0 @metadata = {} end | 
Instance Attribute Details
#client ⇒ Seahorse::Client::Base
| 33 34 35 | # File 'lib/seahorse/client/request_context.rb', line 33 def client @client end | 
#config ⇒ Configuration
Returns The client configuration.
| 39 40 41 | # File 'lib/seahorse/client/request_context.rb', line 39 def config @config end | 
#http_request ⇒ Http::Request
| 42 43 44 | # File 'lib/seahorse/client/request_context.rb', line 42 def http_request @http_request end | 
#http_response ⇒ Http::Response
| 45 46 47 | # File 'lib/seahorse/client/request_context.rb', line 45 def http_response @http_response end | 
#metadata ⇒ Hash (readonly)
| 51 52 53 | # File 'lib/seahorse/client/request_context.rb', line 51 def @metadata end | 
#operation ⇒ Model::Operation
| 30 31 32 | # File 'lib/seahorse/client/request_context.rb', line 30 def operation @operation end | 
#operation_name ⇒ Symbol
Returns Name of the API operation called.
| 27 28 29 | # File 'lib/seahorse/client/request_context.rb', line 27 def operation_name @operation_name end | 
#params ⇒ Hash
Returns The hash of request parameters.
| 36 37 38 | # File 'lib/seahorse/client/request_context.rb', line 36 def params @params end | 
#retries ⇒ Integer
| 48 49 50 | # File 'lib/seahorse/client/request_context.rb', line 48 def retries @retries end | 
Instance Method Details
#[](key) ⇒ Object
Returns the metadata for the given ‘key`.
| 56 57 58 | # File 'lib/seahorse/client/request_context.rb', line 56 def [](key) @metadata[key] end | 
#[]=(key, value) ⇒ Object
Sets the request context metadata for the given ‘key`. Request metadata useful for handlers that need to keep state on the request, without sending that data with the request over HTTP.
| 65 66 67 | # File 'lib/seahorse/client/request_context.rb', line 65 def []=(key, value) @metadata[key] = value end |