Class: Google::Api::SystemParameter
- Inherits:
-
Object
- Object
- Google::Api::SystemParameter
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/api/system_parameter.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 Attribute Details
#http_header ⇒ ::String
Returns Define the HTTP header name to use for the parameter. It is case insensitive.
99 100 101 102 |
# File 'proto_docs/google/api/system_parameter.rb', line 99 class SystemParameter include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#name ⇒ ::String
Returns Define the name of the parameter, such as "api_key" . It is case sensitive.
99 100 101 102 |
# File 'proto_docs/google/api/system_parameter.rb', line 99 class SystemParameter include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#url_query_parameter ⇒ ::String
Returns Define the URL query parameter name to use for the parameter. It is case sensitive.
99 100 101 102 |
# File 'proto_docs/google/api/system_parameter.rb', line 99 class SystemParameter include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |