class Google::Apis::NetworkmanagementV1beta1::DeliverInfo

Details of the final state “deliver” and associated resource.

Attributes

resource_uri[RW]

URI of the resource that the packet is delivered to. Corresponds to the JSON property `resourceUri` @return [String]

target[RW]

Target type where the packet is delivered to. Corresponds to the JSON property `target` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/networkmanagement_v1beta1/classes.rb, line 357
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/networkmanagement_v1beta1/classes.rb, line 362
def update!(**args)
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
  @target = args[:target] if args.key?(:target)
end