Class: Google::Apis::NetworkmanagementV1::ForwardInfo

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

Overview

Details of the final state "forward" and associated resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ForwardInfo

Returns a new instance of ForwardInfo.



605
606
607
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 605

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

Instance Attribute Details

#resource_uriString

URI of the resource that the packet is forwarded to. Corresponds to the JSON property resourceUri

Returns:

  • (String)


598
599
600
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 598

def resource_uri
  @resource_uri
end

#targetString

Target type where this packet is forwarded to. Corresponds to the JSON property target

Returns:

  • (String)


603
604
605
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 603

def target
  @target
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



610
611
612
613
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 610

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