Class: Google::Apis::NetworkmanagementV1beta1::DeliverInfo
- Inherits:
-
Object
- Object
- Google::Apis::NetworkmanagementV1beta1::DeliverInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkmanagement_v1beta1/classes.rb,
lib/google/apis/networkmanagement_v1beta1/representations.rb,
lib/google/apis/networkmanagement_v1beta1/representations.rb
Overview
Details of the final state "deliver" 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 delivered to.
-
#target ⇒ String
Target type where the packet is delivered to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeliverInfo
constructor
A new instance of DeliverInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeliverInfo
Returns a new instance of DeliverInfo.
585 586 587 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 585 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
573 574 575 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 573 def ip_address @ip_address end |
#resource_uri ⇒ String
URI of the resource that the packet is delivered to.
Corresponds to the JSON property resourceUri
578 579 580 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 578 def resource_uri @resource_uri end |
#target ⇒ String
Target type where the packet is delivered to.
Corresponds to the JSON property target
583 584 585 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 583 def target @target end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
590 591 592 593 594 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 590 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 |