Class: Google::Apis::ServiceuserV1::SystemParameter
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServiceuserV1::SystemParameter
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/serviceuser_v1/classes.rb,
generated/google/apis/serviceuser_v1/representations.rb,
generated/google/apis/serviceuser_v1/representations.rb 
Overview
Define a parameter's name and location. The parameter may be passed as either an HTTP header or a URL query parameter, and if both are passed the behavior is implementation-dependent.
Instance Attribute Summary collapse
- 
  
    
      #http_header  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Define the HTTP header name to use for the parameter.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Define the name of the parameter, such as "api_key" .
 - 
  
    
      #url_query_parameter  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Define the URL query parameter name to use for the parameter.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SystemParameter 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SystemParameter.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SystemParameter
Returns a new instance of SystemParameter
      3385 3386 3387  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 3385 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#http_header ⇒ String
Define the HTTP header name to use for the parameter. It is case
insensitive.
Corresponds to the JSON property httpHeader
      3372 3373 3374  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 3372 def http_header @http_header end  | 
  
#name ⇒ String
Define the name of the parameter, such as "api_key" . It is case sensitive.
Corresponds to the JSON property name
      3377 3378 3379  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 3377 def name @name end  | 
  
#url_query_parameter ⇒ String
Define the URL query parameter name to use for the parameter. It is case
sensitive.
Corresponds to the JSON property urlQueryParameter
      3383 3384 3385  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 3383 def url_query_parameter @url_query_parameter end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3390 3391 3392 3393 3394  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 3390 def update!(**args) @http_header = args[:http_header] if args.key?(:http_header) @name = args[:name] if args.key?(:name) @url_query_parameter = args[:url_query_parameter] if args.key?(:url_query_parameter) end  |