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.
424 425 426 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 424 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
417 418 419 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 417 def resource_uri @resource_uri end |
#target ⇒ String
Target type where the packet is delivered to.
Corresponds to the JSON property target
422 423 424 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 422 def target @target end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
429 430 431 432 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 429 def update!(**args) @resource_uri = args[:resource_uri] if args.key?(:resource_uri) @target = args[:target] if args.key?(:target) end |