Class: Google::Apis::ComputeAlpha::VpnGatewayStatusTunnel
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::VpnGatewayStatusTunnel
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
Contains some information about a VPN tunnel.
Instance Attribute Summary collapse
-
#local_gateway_interface ⇒ Fixnum
The VPN gateway interface this VPN tunnel is associated with.
-
#peer_gateway_interface ⇒ Fixnum
The peer gateway interface this VPN tunnel is connected to, the peer gateway could either be an external VPN gateway or a Google Cloud VPN gateway.
-
#tunnel_url ⇒ String
URL reference to the VPN tunnel.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VpnGatewayStatusTunnel
constructor
A new instance of VpnGatewayStatusTunnel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VpnGatewayStatusTunnel
Returns a new instance of VpnGatewayStatusTunnel.
53599 53600 53601 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 53599 def initialize(**args) update!(**args) end |
Instance Attribute Details
#local_gateway_interface ⇒ Fixnum
The VPN gateway interface this VPN tunnel is associated with.
Corresponds to the JSON property localGatewayInterface
53586 53587 53588 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 53586 def local_gateway_interface @local_gateway_interface end |
#peer_gateway_interface ⇒ Fixnum
The peer gateway interface this VPN tunnel is connected to, the peer gateway
could either be an external VPN gateway or a Google Cloud VPN gateway.
Corresponds to the JSON property peerGatewayInterface
53592 53593 53594 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 53592 def peer_gateway_interface @peer_gateway_interface end |
#tunnel_url ⇒ String
URL reference to the VPN tunnel.
Corresponds to the JSON property tunnelUrl
53597 53598 53599 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 53597 def tunnel_url @tunnel_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
53604 53605 53606 53607 53608 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 53604 def update!(**args) @local_gateway_interface = args[:local_gateway_interface] if args.key?(:local_gateway_interface) @peer_gateway_interface = args[:peer_gateway_interface] if args.key?(:peer_gateway_interface) @tunnel_url = args[:tunnel_url] if args.key?(:tunnel_url) end |