Class: Google::Apis::NetworksecurityV1beta1::Destination
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1beta1::Destination
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networksecurity_v1beta1/classes.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb
Overview
Specification of traffic destination attributes.
Instance Attribute Summary collapse
-
#hosts ⇒ Array<String>
Required.
-
#http_header_match ⇒ Google::Apis::NetworksecurityV1beta1::HttpHeaderMatch
Specification of HTTP header match attributes.
-
#methods_prop ⇒ Array<String>
Optional.
-
#ports ⇒ Array<Fixnum>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Destination
constructor
A new instance of Destination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Destination
Returns a new instance of Destination.
364 365 366 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 364 def initialize(**args) update!(**args) end |
Instance Attribute Details
#hosts ⇒ Array<String>
Required. List of host names to match. Matched against the ":authority" header
in http requests. At least one host should match. Each host can be an exact
match, or a prefix match (example "mydomain.") or a suffix match (example ".
myorg.com") or a presence (any) match "*".
Corresponds to the JSON property hosts
346 347 348 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 346 def hosts @hosts end |
#http_header_match ⇒ Google::Apis::NetworksecurityV1beta1::HttpHeaderMatch
Specification of HTTP header match attributes.
Corresponds to the JSON property httpHeaderMatch
351 352 353 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 351 def http_header_match @http_header_match end |
#methods_prop ⇒ Array<String>
Optional. A list of HTTP methods to match. At least one method should match.
Should not be set for gRPC services.
Corresponds to the JSON property methods
357 358 359 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 357 def methods_prop @methods_prop end |
#ports ⇒ Array<Fixnum>
Required. List of destination ports to match. At least one port should match.
Corresponds to the JSON property ports
362 363 364 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 362 def ports @ports end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
369 370 371 372 373 374 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 369 def update!(**args) @hosts = args[:hosts] if args.key?(:hosts) @http_header_match = args[:http_header_match] if args.key?(:http_header_match) @methods_prop = args[:methods_prop] if args.key?(:methods_prop) @ports = args[:ports] if args.key?(:ports) end |