Class: Google::Apis::NetworkmanagementV1::DeliverInfo
- Inherits:
-
Object
- Object
- Google::Apis::NetworkmanagementV1::DeliverInfo
- 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 "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.
307 308 309 |
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 307 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
300 301 302 |
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 300 def resource_uri @resource_uri end |
#target ⇒ String
Target type where the packet is delivered to.
Corresponds to the JSON property target
305 306 307 |
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 305 def target @target end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
312 313 314 315 |
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 312 def update!(**args) @resource_uri = args[:resource_uri] if args.key?(:resource_uri) @target = args[:target] if args.key?(:target) end |