Class: Google::Apis::ServiceusageV1beta1::SystemParameter

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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SystemParameter

Returns a new instance of SystemParameter



3852
3853
3854
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3852

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)


3839
3840
3841
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3839

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)


3844
3845
3846
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3844

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)


3850
3851
3852
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3850

def url_query_parameter
  @url_query_parameter
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3857
3858
3859
3860
3861
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3857

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