com.google.api.services.compute.model.VpnGatewayVpnGatewayInterface Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/
package com.google.api.services.compute.model;
/**
* A VPN gateway interface.
*
* This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Compute Engine API. For a detailed explanation see:
* https://developers.google.com/api-client-library/java/google-http-java-client/json
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class VpnGatewayVpnGatewayInterface extends com.google.api.client.json.GenericJson {
/**
* [Output Only] Numeric identifier for this VPN interface associated with the VPN gateway.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Long id;
/**
* URL of the VLAN attachment (interconnectAttachment) resource for this VPN gateway interface.
* When the value of this field is present, the VPN gateway is used for IPsec-encrypted Cloud
* Interconnect; all egress or ingress traffic for this VPN gateway interface goes through the
* specified VLAN attachment resource. Not currently available publicly.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String interconnectAttachment;
/**
* [Output Only] IP address for this VPN interface associated with the VPN gateway. The IP address
* could be either a regional external IP address or a regional internal IP address. The two IP
* addresses for a VPN gateway must be all regional external or regional internal IP addresses.
* There cannot be a mix of regional external IP addresses and regional internal IP addresses. For
* IPsec-encrypted Cloud Interconnect, the IP addresses for both interfaces could either be
* regional internal IP addresses or regional external IP addresses. For regular (non IPsec-
* encrypted Cloud Interconnect) HA VPN tunnels, the IP address must be a regional external IP
* address.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String ipAddress;
/**
* [Output Only] Numeric identifier for this VPN interface associated with the VPN gateway.
* @return value or {@code null} for none
*/
public java.lang.Long getId() {
return id;
}
/**
* [Output Only] Numeric identifier for this VPN interface associated with the VPN gateway.
* @param id id or {@code null} for none
*/
public VpnGatewayVpnGatewayInterface setId(java.lang.Long id) {
this.id = id;
return this;
}
/**
* URL of the VLAN attachment (interconnectAttachment) resource for this VPN gateway interface.
* When the value of this field is present, the VPN gateway is used for IPsec-encrypted Cloud
* Interconnect; all egress or ingress traffic for this VPN gateway interface goes through the
* specified VLAN attachment resource. Not currently available publicly.
* @return value or {@code null} for none
*/
public java.lang.String getInterconnectAttachment() {
return interconnectAttachment;
}
/**
* URL of the VLAN attachment (interconnectAttachment) resource for this VPN gateway interface.
* When the value of this field is present, the VPN gateway is used for IPsec-encrypted Cloud
* Interconnect; all egress or ingress traffic for this VPN gateway interface goes through the
* specified VLAN attachment resource. Not currently available publicly.
* @param interconnectAttachment interconnectAttachment or {@code null} for none
*/
public VpnGatewayVpnGatewayInterface setInterconnectAttachment(java.lang.String interconnectAttachment) {
this.interconnectAttachment = interconnectAttachment;
return this;
}
/**
* [Output Only] IP address for this VPN interface associated with the VPN gateway. The IP address
* could be either a regional external IP address or a regional internal IP address. The two IP
* addresses for a VPN gateway must be all regional external or regional internal IP addresses.
* There cannot be a mix of regional external IP addresses and regional internal IP addresses. For
* IPsec-encrypted Cloud Interconnect, the IP addresses for both interfaces could either be
* regional internal IP addresses or regional external IP addresses. For regular (non IPsec-
* encrypted Cloud Interconnect) HA VPN tunnels, the IP address must be a regional external IP
* address.
* @return value or {@code null} for none
*/
public java.lang.String getIpAddress() {
return ipAddress;
}
/**
* [Output Only] IP address for this VPN interface associated with the VPN gateway. The IP address
* could be either a regional external IP address or a regional internal IP address. The two IP
* addresses for a VPN gateway must be all regional external or regional internal IP addresses.
* There cannot be a mix of regional external IP addresses and regional internal IP addresses. For
* IPsec-encrypted Cloud Interconnect, the IP addresses for both interfaces could either be
* regional internal IP addresses or regional external IP addresses. For regular (non IPsec-
* encrypted Cloud Interconnect) HA VPN tunnels, the IP address must be a regional external IP
* address.
* @param ipAddress ipAddress or {@code null} for none
*/
public VpnGatewayVpnGatewayInterface setIpAddress(java.lang.String ipAddress) {
this.ipAddress = ipAddress;
return this;
}
@Override
public VpnGatewayVpnGatewayInterface set(String fieldName, Object value) {
return (VpnGatewayVpnGatewayInterface) super.set(fieldName, value);
}
@Override
public VpnGatewayVpnGatewayInterface clone() {
return (VpnGatewayVpnGatewayInterface) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy