Class: Google::Apis::ServicenetworkingV1::SystemParameter

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



3999
4000
4001
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3999

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)


3986
3987
3988
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3986

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)


3991
3992
3993
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3991

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)


3997
3998
3999
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3997

def url_query_parameter
  @url_query_parameter
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4004
4005
4006
4007
4008
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 4004

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