Class: Google::Apis::ComputeAlpha::ExternalVpnGatewayInterface
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::ExternalVpnGatewayInterface
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Overview
The interface for the external VPN gateway.
Instance Attribute Summary collapse
-
#id ⇒ Fixnum
The numeric ID of this interface.
-
#ip_address ⇒ String
IP address of the interface in the external VPN gateway.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExternalVpnGatewayInterface
constructor
A new instance of ExternalVpnGatewayInterface.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ExternalVpnGatewayInterface
Returns a new instance of ExternalVpnGatewayInterface
6388 6389 6390 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 6388 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ Fixnum
The numeric ID of this interface. The allowed input values for this id for
different redundancy types of external VPN gateway:
SINGLE_IP_INTERNALLY_REDUNDANT - 0 TWO_IPS_REDUNDANCY - 0, 1
FOUR_IPS_REDUNDANCY - 0, 1, 2, 3
Corresponds to the JSON property id
6378 6379 6380 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 6378 def id @id end |
#ip_address ⇒ String
IP address of the interface in the external VPN gateway. Only IPv4 is
supported. This IP address can be either from your on-premise gateway or
another Cloud provider?s VPN gateway, it cannot be an IP address from Google
Compute Engine.
Corresponds to the JSON property ipAddress
6386 6387 6388 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 6386 def ip_address @ip_address end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6393 6394 6395 6396 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 6393 def update!(**args) @id = args[:id] if args.key?(:id) @ip_address = args[:ip_address] if args.key?(:ip_address) end |