Class: Google::Apis::NetworkmanagementV1::DropInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/networkmanagement_v1/classes.rb,
lib/google/apis/networkmanagement_v1/representations.rb,
lib/google/apis/networkmanagement_v1/representations.rb

Overview

Details of the final state "drop" and associated resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DropInfo

Returns a new instance of DropInfo.



652
653
654
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 652

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#causeString

Cause that the packet is dropped. Corresponds to the JSON property cause

Returns:

  • (String)


630
631
632
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 630

def cause
  @cause
end

#destination_ipString

Destination IP address of the dropped packet (if relevant). Corresponds to the JSON property destinationIp

Returns:

  • (String)


635
636
637
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 635

def destination_ip
  @destination_ip
end

#regionString

Region of the dropped packet (if relevant). Corresponds to the JSON property region

Returns:

  • (String)


640
641
642
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 640

def region
  @region
end

#resource_uriString

URI of the resource that caused the drop. Corresponds to the JSON property resourceUri

Returns:

  • (String)


645
646
647
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 645

def resource_uri
  @resource_uri
end

#source_ipString

Source IP address of the dropped packet (if relevant). Corresponds to the JSON property sourceIp

Returns:

  • (String)


650
651
652
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 650

def source_ip
  @source_ip
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



657
658
659
660
661
662
663
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 657

def update!(**args)
  @cause = args[:cause] if args.key?(:cause)
  @destination_ip = args[:destination_ip] if args.key?(:destination_ip)
  @region = args[:region] if args.key?(:region)
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
  @source_ip = args[:source_ip] if args.key?(:source_ip)
end