Class: Google::Apis::NetworkservicesV1::TcpRouteRouteAction

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/networkservices_v1/classes.rb,
lib/google/apis/networkservices_v1/representations.rb,
lib/google/apis/networkservices_v1/representations.rb

Overview

The specifications for routing traffic and applying associated policies.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TcpRouteRouteAction

Returns a new instance of TcpRouteRouteAction.



2576
2577
2578
# File 'lib/google/apis/networkservices_v1/classes.rb', line 2576

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

Instance Attribute Details

#destinationsArray<Google::Apis::NetworkservicesV1::TcpRouteRouteDestination>

Optional. The destination services to which traffic should be forwarded. At least one destination service is required. Corresponds to the JSON property destinations



2567
2568
2569
# File 'lib/google/apis/networkservices_v1/classes.rb', line 2567

def destinations
  @destinations
end

#original_destinationBoolean Also known as: original_destination?

Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Corresponds to the JSON property originalDestination

Returns:

  • (Boolean)


2573
2574
2575
# File 'lib/google/apis/networkservices_v1/classes.rb', line 2573

def original_destination
  @original_destination
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2581
2582
2583
2584
# File 'lib/google/apis/networkservices_v1/classes.rb', line 2581

def update!(**args)
  @destinations = args[:destinations] if args.key?(:destinations)
  @original_destination = args[:original_destination] if args.key?(:original_destination)
end