Class: Google::Apis::ComputeV1::VpnGatewayStatusVpnConnection
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::VpnGatewayStatusVpnConnection
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Overview
A VPN connection contains all VPN tunnels connected from this VpnGateway to the same peer gateway. The peer gateway could either be a external VPN gateway or GCP VPN gateway.
Instance Attribute Summary collapse
-
#peer_external_gateway ⇒ String
URL reference to the peer external VPN gateways to which the VPN tunnels in this VPN connection are connected.
-
#peer_gcp_gateway ⇒ String
URL reference to the peer side VPN gateways to which the VPN tunnels in this VPN connection are connected.
-
#state ⇒ Google::Apis::ComputeV1::VpnGatewayStatusHighAvailabilityRequirementState
Describes the high availability requirement state for the VPN connection between this Cloud VPN gateway and a peer gateway.
-
#tunnels ⇒ Array<Google::Apis::ComputeV1::VpnGatewayStatusTunnel>
List of VPN tunnels that are in this VPN connection.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VpnGatewayStatusVpnConnection
constructor
A new instance of VpnGatewayStatusVpnConnection.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VpnGatewayStatusVpnConnection
Returns a new instance of VpnGatewayStatusVpnConnection.
34227 34228 34229 |
# File 'generated/google/apis/compute_v1/classes.rb', line 34227 def initialize(**args) update!(**args) end |
Instance Attribute Details
#peer_external_gateway ⇒ String
URL reference to the peer external VPN gateways to which the VPN tunnels in
this VPN connection are connected. This field is mutually exclusive with
peer_gcp_gateway.
Corresponds to the JSON property peerExternalGateway
34207 34208 34209 |
# File 'generated/google/apis/compute_v1/classes.rb', line 34207 def peer_external_gateway @peer_external_gateway end |
#peer_gcp_gateway ⇒ String
URL reference to the peer side VPN gateways to which the VPN tunnels in this
VPN connection are connected. This field is mutually exclusive with
peer_gcp_gateway.
Corresponds to the JSON property peerGcpGateway
34214 34215 34216 |
# File 'generated/google/apis/compute_v1/classes.rb', line 34214 def peer_gcp_gateway @peer_gcp_gateway end |
#state ⇒ Google::Apis::ComputeV1::VpnGatewayStatusHighAvailabilityRequirementState
Describes the high availability requirement state for the VPN connection
between this Cloud VPN gateway and a peer gateway.
Corresponds to the JSON property state
34220 34221 34222 |
# File 'generated/google/apis/compute_v1/classes.rb', line 34220 def state @state end |
#tunnels ⇒ Array<Google::Apis::ComputeV1::VpnGatewayStatusTunnel>
List of VPN tunnels that are in this VPN connection.
Corresponds to the JSON property tunnels
34225 34226 34227 |
# File 'generated/google/apis/compute_v1/classes.rb', line 34225 def tunnels @tunnels end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
34232 34233 34234 34235 34236 34237 |
# File 'generated/google/apis/compute_v1/classes.rb', line 34232 def update!(**args) @peer_external_gateway = args[:peer_external_gateway] if args.key?(:peer_external_gateway) @peer_gcp_gateway = args[:peer_gcp_gateway] if args.key?(:peer_gcp_gateway) @state = args[:state] if args.key?(:state) @tunnels = args[:tunnels] if args.key?(:tunnels) end |