Class: Google::Apis::ServicemanagementV1::JwtLocation
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServicemanagementV1::JwtLocation
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/servicemanagement_v1/classes.rb,
lib/google/apis/servicemanagement_v1/representations.rb,
lib/google/apis/servicemanagement_v1/representations.rb 
Overview
Specifies a location to extract JWT from an API request.
Instance Attribute Summary collapse
- 
  
    
      #cookie  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies cookie name to extract JWT token.
 - 
  
    
      #header  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies HTTP header name to extract JWT token.
 - 
  
    
      #query  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies URL query parameter name to extract JWT token.
 - 
  
    
      #value_prefix  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value prefix.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ JwtLocation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of JwtLocation.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ JwtLocation
Returns a new instance of JwtLocation.
      2195 2196 2197  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2195 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#cookie ⇒ String
Specifies cookie name to extract JWT token.
Corresponds to the JSON property cookie
      2173 2174 2175  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2173 def @cookie end  | 
  
#header ⇒ String
Specifies HTTP header name to extract JWT token.
Corresponds to the JSON property header
      2178 2179 2180  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2178 def header @header end  | 
  
#query ⇒ String
Specifies URL query parameter name to extract JWT token.
Corresponds to the JSON property query
      2183 2184 2185  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2183 def query @query end  | 
  
#value_prefix ⇒ String
The value prefix. The value format is "value_prefixtoken" Only applies to "
in" header type. Must be empty for "in" query type. If not empty, the header
value has to match (case sensitive) this prefix. If not matched, JWT will not
be extracted. If matched, JWT will be extracted after the prefix is removed.
For example, for "Authorization: Bearer JWT", value_prefix="Bearer " with a
space at the end.
Corresponds to the JSON property valuePrefix
      2193 2194 2195  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2193 def value_prefix @value_prefix end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2200 2201 2202 2203 2204 2205  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2200 def update!(**args) @cookie = args[:cookie] if args.key?(:cookie) @header = args[:header] if args.key?(:header) @query = args[:query] if args.key?(:query) @value_prefix = args[:value_prefix] if args.key?(:value_prefix) end  |