Class: Google::Apis::ServicecontrolV2::Request
- Inherits:
-
Object
- Object
- Google::Apis::ServicecontrolV2::Request
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/servicecontrol_v2/classes.rb,
lib/google/apis/servicecontrol_v2/representations.rb,
lib/google/apis/servicecontrol_v2/representations.rb
Overview
This message defines attributes for an HTTP request. If the actual request is not an HTTP request, the runtime system should try to map the actual request to an equivalent HTTP request.
Instance Attribute Summary collapse
-
#auth ⇒ Google::Apis::ServicecontrolV2::Auth
This message defines request authentication attributes.
-
#headers ⇒ Hash<String,String>
The HTTP request headers.
-
#host ⇒ String
The HTTP request
Host
header value. -
#id ⇒ String
The unique ID for a request, which can be propagated to downstream systems.
-
#method_prop ⇒ String
The HTTP request method, such as
GET
,POST
. -
#path ⇒ String
The HTTP URL path, excluding the query parameters.
-
#protocol ⇒ String
The network protocol used with the request, such as "http/1.1", "spdy/3", "h2", "h2c", "webrtc", "tcp", "udp", "quic".
-
#query ⇒ String
The HTTP URL query in the format of
name1=value1&name2=value2
, as it appears in the first line of the HTTP request. -
#reason ⇒ String
A special parameter for request reason.
-
#scheme ⇒ String
The HTTP URL scheme, such as
http
andhttps
. -
#size ⇒ Fixnum
The HTTP request size in bytes.
-
#time ⇒ String
The timestamp when the
destination
service receives the last byte of the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Request
constructor
A new instance of Request.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Request
Returns a new instance of Request.
831 832 833 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 831 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auth ⇒ Google::Apis::ServicecontrolV2::Auth
This message defines request authentication attributes. Terminology is based
on the JSON Web Token (JWT) standard, but the terms also correlate to concepts
in other standards.
Corresponds to the JSON property auth
764 765 766 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 764 def auth @auth end |
#headers ⇒ Hash<String,String>
The HTTP request headers. If multiple headers share the same key, they must be
merged according to the HTTP spec. All header keys must be lowercased, because
HTTP header keys are case-insensitive.
Corresponds to the JSON property headers
771 772 773 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 771 def headers @headers end |
#host ⇒ String
The HTTP request Host
header value.
Corresponds to the JSON property host
776 777 778 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 776 def host @host end |
#id ⇒ String
The unique ID for a request, which can be propagated to downstream systems.
The ID should have low probability of collision within a single day for a
specific service.
Corresponds to the JSON property id
783 784 785 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 783 def id @id end |
#method_prop ⇒ String
The HTTP request method, such as GET
, POST
.
Corresponds to the JSON property method
788 789 790 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 788 def method_prop @method_prop end |
#path ⇒ String
The HTTP URL path, excluding the query parameters.
Corresponds to the JSON property path
793 794 795 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 793 def path @path end |
#protocol ⇒ String
The network protocol used with the request, such as "http/1.1", "spdy/3", "h2",
"h2c", "webrtc", "tcp", "udp", "quic". See https://www.iana.org/assignments/
tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids for
details.
Corresponds to the JSON property protocol
801 802 803 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 801 def protocol @protocol end |
#query ⇒ String
The HTTP URL query in the format of name1=value1&name2=value2
, as it appears
in the first line of the HTTP request. No decoding is performed.
Corresponds to the JSON property query
807 808 809 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 807 def query @query end |
#reason ⇒ String
A special parameter for request reason. It is used by security systems to
associate auditing information with a request.
Corresponds to the JSON property reason
813 814 815 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 813 def reason @reason end |
#scheme ⇒ String
The HTTP URL scheme, such as http
and https
.
Corresponds to the JSON property scheme
818 819 820 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 818 def scheme @scheme end |
#size ⇒ Fixnum
The HTTP request size in bytes. If unknown, it must be -1.
Corresponds to the JSON property size
823 824 825 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 823 def size @size end |
#time ⇒ String
The timestamp when the destination
service receives the last byte of the
request.
Corresponds to the JSON property time
829 830 831 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 829 def time @time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
836 837 838 839 840 841 842 843 844 845 846 847 848 849 |
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 836 def update!(**args) @auth = args[:auth] if args.key?(:auth) @headers = args[:headers] if args.key?(:headers) @host = args[:host] if args.key?(:host) @id = args[:id] if args.key?(:id) @method_prop = args[:method_prop] if args.key?(:method_prop) @path = args[:path] if args.key?(:path) @protocol = args[:protocol] if args.key?(:protocol) @query = args[:query] if args.key?(:query) @reason = args[:reason] if args.key?(:reason) @scheme = args[:scheme] if args.key?(:scheme) @size = args[:size] if args.key?(:size) @time = args[:time] if args.key?(:time) end |