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
-
#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.
570 571 572 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 570 def initialize(**args) update!(**args) end |
Instance Attribute Details
#resource_uri ⇒ String
URI of the resource that the packet is delivered to.
Corresponds to the JSON property resourceUri
563 564 565 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 563 def resource_uri @resource_uri end |
#target ⇒ String
Target type where the packet is delivered to.
Corresponds to the JSON property target
568 569 570 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 568 def target @target end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
575 576 577 578 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 575 def update!(**args) @resource_uri = args[:resource_uri] if args.key?(:resource_uri) @target = args[:target] if args.key?(:target) end |