Class: Google::Apis::NetworkmanagementV1beta1::ProxyConnectionInfo
- Inherits:
-
Object
- Object
- Google::Apis::NetworkmanagementV1beta1::ProxyConnectionInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkmanagement_v1beta1/classes.rb,
lib/google/apis/networkmanagement_v1beta1/representations.rb,
lib/google/apis/networkmanagement_v1beta1/representations.rb
Overview
For display only. Metadata associated with ProxyConnection.
Instance Attribute Summary collapse
-
#network_uri ⇒ String
URI of the VPC network where connection is proxied.
-
#new_destination_ip ⇒ String
Destination IP address of a new connection.
-
#new_destination_port ⇒ Fixnum
Destination port of a new connection.
-
#new_source_ip ⇒ String
Source IP address of a new connection.
-
#new_source_port ⇒ Fixnum
Source port of a new connection.
-
#old_destination_ip ⇒ String
Destination IP address of an original connection Corresponds to the JSON property
oldDestinationIp. -
#old_destination_port ⇒ Fixnum
Destination port of an original connection.
-
#old_source_ip ⇒ String
Source IP address of an original connection.
-
#old_source_port ⇒ Fixnum
Source port of an original connection.
-
#protocol ⇒ String
IP protocol in string format, for example: "TCP", "UDP", "ICMP".
-
#subnet_uri ⇒ String
URI of the proxy subnet.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProxyConnectionInfo
constructor
A new instance of ProxyConnectionInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProxyConnectionInfo
Returns a new instance of ProxyConnectionInfo.
2784 2785 2786 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2784 def initialize(**args) update!(**args) end |
Instance Attribute Details
#network_uri ⇒ String
URI of the VPC network where connection is proxied. Format: projects/
project_id/global/networks/network_id`
Corresponds to the JSON propertynetworkUri`
2730 2731 2732 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2730 def network_uri @network_uri end |
#new_destination_ip ⇒ String
Destination IP address of a new connection.
Corresponds to the JSON property newDestinationIp
2735 2736 2737 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2735 def new_destination_ip @new_destination_ip end |
#new_destination_port ⇒ Fixnum
Destination port of a new connection. Only valid when protocol is TCP or UDP.
Corresponds to the JSON property newDestinationPort
2740 2741 2742 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2740 def new_destination_port @new_destination_port end |
#new_source_ip ⇒ String
Source IP address of a new connection.
Corresponds to the JSON property newSourceIp
2745 2746 2747 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2745 def new_source_ip @new_source_ip end |
#new_source_port ⇒ Fixnum
Source port of a new connection. Only valid when protocol is TCP or UDP.
Corresponds to the JSON property newSourcePort
2750 2751 2752 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2750 def new_source_port @new_source_port end |
#old_destination_ip ⇒ String
Destination IP address of an original connection
Corresponds to the JSON property oldDestinationIp
2755 2756 2757 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2755 def old_destination_ip @old_destination_ip end |
#old_destination_port ⇒ Fixnum
Destination port of an original connection. Only valid when protocol is TCP or
UDP.
Corresponds to the JSON property oldDestinationPort
2761 2762 2763 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2761 def old_destination_port @old_destination_port end |
#old_source_ip ⇒ String
Source IP address of an original connection.
Corresponds to the JSON property oldSourceIp
2766 2767 2768 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2766 def old_source_ip @old_source_ip end |
#old_source_port ⇒ Fixnum
Source port of an original connection. Only valid when protocol is TCP or UDP.
Corresponds to the JSON property oldSourcePort
2771 2772 2773 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2771 def old_source_port @old_source_port end |
#protocol ⇒ String
IP protocol in string format, for example: "TCP", "UDP", "ICMP".
Corresponds to the JSON property protocol
2776 2777 2778 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2776 def protocol @protocol end |
#subnet_uri ⇒ String
URI of the proxy subnet. Format: projects/project_id/regions/region/
subnetworks/subnetwork_id`
Corresponds to the JSON propertysubnetUri`
2782 2783 2784 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2782 def subnet_uri @subnet_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2789 def update!(**args) @network_uri = args[:network_uri] if args.key?(:network_uri) @new_destination_ip = args[:new_destination_ip] if args.key?(:new_destination_ip) @new_destination_port = args[:new_destination_port] if args.key?(:new_destination_port) @new_source_ip = args[:new_source_ip] if args.key?(:new_source_ip) @new_source_port = args[:new_source_port] if args.key?(:new_source_port) @old_destination_ip = args[:old_destination_ip] if args.key?(:old_destination_ip) @old_destination_port = args[:old_destination_port] if args.key?(:old_destination_port) @old_source_ip = args[:old_source_ip] if args.key?(:old_source_ip) @old_source_port = args[:old_source_port] if args.key?(:old_source_port) @protocol = args[:protocol] if args.key?(:protocol) @subnet_uri = args[:subnet_uri] if args.key?(:subnet_uri) end |