Class: Google::Apis::NetworksecurityV1::Destination

Inherits:
Object
  • Object
show all
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 traffic destination attributes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Destination

Returns a new instance of Destination.



358
359
360
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 358

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#hostsArray<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

Returns:

  • (Array<String>)


340
341
342
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 340

def hosts
  @hosts
end

#http_header_matchGoogle::Apis::NetworksecurityV1::HttpHeaderMatch

Specification of HTTP header match attributes. Corresponds to the JSON property httpHeaderMatch



345
346
347
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 345

def http_header_match
  @http_header_match
end

#methods_propArray<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

Returns:

  • (Array<String>)


351
352
353
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 351

def methods_prop
  @methods_prop
end

#portsArray<Fixnum>

Required. List of destination ports to match. At least one port should match. Corresponds to the JSON property ports

Returns:

  • (Array<Fixnum>)


356
357
358
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 356

def ports
  @ports
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



363
364
365
366
367
368
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 363

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