Class: Google::Apis::NetworkmanagementV1beta1::DropInfo
- Inherits:
-
Object
- Object
- Google::Apis::NetworkmanagementV1beta1::DropInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/networkmanagement_v1beta1/classes.rb,
generated/google/apis/networkmanagement_v1beta1/representations.rb,
generated/google/apis/networkmanagement_v1beta1/representations.rb
Overview
Details of the final state "drop" and associated resource.
Instance Attribute Summary collapse
-
#cause ⇒ String
Cause that the packet is dropped.
-
#resource_uri ⇒ String
URI of the resource that caused the drop.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DropInfo
constructor
A new instance of DropInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DropInfo
Returns a new instance of DropInfo.
388 389 390 |
# File 'generated/google/apis/networkmanagement_v1beta1/classes.rb', line 388 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cause ⇒ String
Cause that the packet is dropped.
Corresponds to the JSON property cause
381 382 383 |
# File 'generated/google/apis/networkmanagement_v1beta1/classes.rb', line 381 def cause @cause end |
#resource_uri ⇒ String
URI of the resource that caused the drop.
Corresponds to the JSON property resourceUri
386 387 388 |
# File 'generated/google/apis/networkmanagement_v1beta1/classes.rb', line 386 def resource_uri @resource_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
393 394 395 396 |
# File 'generated/google/apis/networkmanagement_v1beta1/classes.rb', line 393 def update!(**args) @cause = args[:cause] if args.key?(:cause) @resource_uri = args[:resource_uri] if args.key?(:resource_uri) end |