Class: Google::Apis::ServiceconsumermanagementV1::SystemParameter

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/serviceconsumermanagement_v1/classes.rb,
lib/google/apis/serviceconsumermanagement_v1/representations.rb,
lib/google/apis/serviceconsumermanagement_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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SystemParameter

Returns a new instance of SystemParameter.



2973
2974
2975
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 2973

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#http_headerString

Define the HTTP header name to use for the parameter. It is case insensitive. Corresponds to the JSON property httpHeader

Returns:

  • (String)


2960
2961
2962
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 2960

def http_header
  @http_header
end

#nameString

Define the name of the parameter, such as "api_key" . It is case sensitive. Corresponds to the JSON property name

Returns:

  • (String)


2965
2966
2967
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 2965

def name
  @name
end

#url_query_parameterString

Define the URL query parameter name to use for the parameter. It is case sensitive. Corresponds to the JSON property urlQueryParameter

Returns:

  • (String)


2971
2972
2973
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 2971

def url_query_parameter
  @url_query_parameter
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2978
2979
2980
2981
2982
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 2978

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