Class: Google::Apis::NetworksecurityV1::HttpHeaderMatch
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1::HttpHeaderMatch
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networksecurity_v1/classes.rb,
lib/google/apis/networksecurity_v1/representations.rb,
lib/google/apis/networksecurity_v1/representations.rb
Overview
Specification of HTTP header match attributes.
Instance Attribute Summary collapse
-
#header_name ⇒ String
Required.
-
#regex_match ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HttpHeaderMatch
constructor
A new instance of HttpHeaderMatch.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HttpHeaderMatch
Returns a new instance of HttpHeaderMatch.
1211 1212 1213 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 1211 def initialize(**args) update!(**args) end |
Instance Attribute Details
#header_name ⇒ String
Required. The name of the HTTP header to match. For matching against the HTTP
request's authority, use a headerMatch with the header name ":authority". For
matching a request's method, use the headerName ":method".
Corresponds to the JSON property headerName
1200 1201 1202 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 1200 def header_name @header_name end |
#regex_match ⇒ String
Required. The value of the header must match the regular expression specified
in regexMatch. For regular expression grammar, please see: en.cppreference.com/
w/cpp/regex/ecmascript For matching against a port specified in the HTTP
request, use a headerMatch with headerName set to Host and a regular
expression that satisfies the RFC2616 Host header's port specifier.
Corresponds to the JSON property regexMatch
1209 1210 1211 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 1209 def regex_match @regex_match end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1216 1217 1218 1219 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 1216 def update!(**args) @header_name = args[:header_name] if args.key?(:header_name) @regex_match = args[:regex_match] if args.key?(:regex_match) end |