Class: Google::Apis::NetworkmanagementV1::ForwardInfo
- Inherits:
-
Object
- Object
- Google::Apis::NetworkmanagementV1::ForwardInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkmanagement_v1/classes.rb,
lib/google/apis/networkmanagement_v1/representations.rb,
lib/google/apis/networkmanagement_v1/representations.rb
Overview
Details of the final state "forward" and associated resource.
Instance Attribute Summary collapse
-
#ip_address ⇒ String
IP address of the target (if applicable).
-
#resource_uri ⇒ String
URI of the resource that the packet is forwarded to.
-
#target ⇒ String
Target type where this packet is forwarded to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ForwardInfo
constructor
A new instance of ForwardInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ForwardInfo
Returns a new instance of ForwardInfo.
1040 1041 1042 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1040 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ip_address ⇒ String
IP address of the target (if applicable).
Corresponds to the JSON property ipAddress
1028 1029 1030 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1028 def ip_address @ip_address end |
#resource_uri ⇒ String
URI of the resource that the packet is forwarded to.
Corresponds to the JSON property resourceUri
1033 1034 1035 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1033 def resource_uri @resource_uri end |
#target ⇒ String
Target type where this packet is forwarded to.
Corresponds to the JSON property target
1038 1039 1040 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1038 def target @target end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1045 1046 1047 1048 1049 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1045 def update!(**args) @ip_address = args[:ip_address] if args.key?(:ip_address) @resource_uri = args[:resource_uri] if args.key?(:resource_uri) @target = args[:target] if args.key?(:target) end |