Class: Google::Apis::NetworkmanagementV1::EndpointInfo
- Inherits:
-
Object
- Object
- Google::Apis::NetworkmanagementV1::EndpointInfo
- 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
For display only. The specification of the endpoints for the test. EndpointInfo is derived from source and destination Endpoint and validated by the backend data plane model.
Instance Attribute Summary collapse
-
#destination_ip ⇒ String
Destination IP address.
-
#destination_network_uri ⇒ String
URI of the network where this packet is sent to.
-
#destination_port ⇒ Fixnum
Destination port.
-
#protocol ⇒ String
IP protocol in string format, for example: "TCP", "UDP", "ICMP".
-
#source_ip ⇒ String
Source IP address.
-
#source_network_uri ⇒ String
URI of the network where this packet originates from.
-
#source_port ⇒ Fixnum
Source port.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EndpointInfo
constructor
A new instance of EndpointInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EndpointInfo
Returns a new instance of EndpointInfo.
719 720 721 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 719 def initialize(**args) update!(**args) end |
Instance Attribute Details
#destination_ip ⇒ String
Destination IP address.
Corresponds to the JSON property destinationIp
687 688 689 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 687 def destination_ip @destination_ip end |
#destination_network_uri ⇒ String
URI of the network where this packet is sent to.
Corresponds to the JSON property destinationNetworkUri
692 693 694 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 692 def destination_network_uri @destination_network_uri end |
#destination_port ⇒ Fixnum
Destination port. Only valid when protocol is TCP or UDP.
Corresponds to the JSON property destinationPort
697 698 699 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 697 def destination_port @destination_port end |
#protocol ⇒ String
IP protocol in string format, for example: "TCP", "UDP", "ICMP".
Corresponds to the JSON property protocol
702 703 704 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 702 def protocol @protocol end |
#source_ip ⇒ String
Source IP address.
Corresponds to the JSON property sourceIp
707 708 709 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 707 def source_ip @source_ip end |
#source_network_uri ⇒ String
URI of the network where this packet originates from.
Corresponds to the JSON property sourceNetworkUri
712 713 714 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 712 def source_network_uri @source_network_uri end |
#source_port ⇒ Fixnum
Source port. Only valid when protocol is TCP or UDP.
Corresponds to the JSON property sourcePort
717 718 719 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 717 def source_port @source_port end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
724 725 726 727 728 729 730 731 732 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 724 def update!(**args) @destination_ip = args[:destination_ip] if args.key?(:destination_ip) @destination_network_uri = args[:destination_network_uri] if args.key?(:destination_network_uri) @destination_port = args[:destination_port] if args.key?(:destination_port) @protocol = args[:protocol] if args.key?(:protocol) @source_ip = args[:source_ip] if args.key?(:source_ip) @source_network_uri = args[:source_network_uri] if args.key?(:source_network_uri) @source_port = args[:source_port] if args.key?(:source_port) end |