
com.tencentcloudapi.vpc.v20170312.models.DownloadCustomerGatewayConfigurationRequest Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
package com.tencentcloudapi.vpc.v20170312.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DownloadCustomerGatewayConfigurationRequest extends AbstractModel{
/**
* VPN网关实例ID。
*/
@SerializedName("VpnGatewayId")
@Expose
private String VpnGatewayId;
/**
* VPN通道实例ID。形如:vpnx-f49l6u0z。
*/
@SerializedName("VpnConnectionId")
@Expose
private String VpnConnectionId;
/**
* 对端网关厂商信息对象,可通过DescribeCustomerGatewayVendors获取。
*/
@SerializedName("CustomerGatewayVendor")
@Expose
private CustomerGatewayVendor CustomerGatewayVendor;
/**
* 通道接入设备物理接口名称。
*/
@SerializedName("InterfaceName")
@Expose
private String InterfaceName;
/**
* Get VPN网关实例ID。
* @return VpnGatewayId VPN网关实例ID。
*/
public String getVpnGatewayId() {
return this.VpnGatewayId;
}
/**
* Set VPN网关实例ID。
* @param VpnGatewayId VPN网关实例ID。
*/
public void setVpnGatewayId(String VpnGatewayId) {
this.VpnGatewayId = VpnGatewayId;
}
/**
* Get VPN通道实例ID。形如:vpnx-f49l6u0z。
* @return VpnConnectionId VPN通道实例ID。形如:vpnx-f49l6u0z。
*/
public String getVpnConnectionId() {
return this.VpnConnectionId;
}
/**
* Set VPN通道实例ID。形如:vpnx-f49l6u0z。
* @param VpnConnectionId VPN通道实例ID。形如:vpnx-f49l6u0z。
*/
public void setVpnConnectionId(String VpnConnectionId) {
this.VpnConnectionId = VpnConnectionId;
}
/**
* Get 对端网关厂商信息对象,可通过DescribeCustomerGatewayVendors获取。
* @return CustomerGatewayVendor 对端网关厂商信息对象,可通过DescribeCustomerGatewayVendors获取。
*/
public CustomerGatewayVendor getCustomerGatewayVendor() {
return this.CustomerGatewayVendor;
}
/**
* Set 对端网关厂商信息对象,可通过DescribeCustomerGatewayVendors获取。
* @param CustomerGatewayVendor 对端网关厂商信息对象,可通过DescribeCustomerGatewayVendors获取。
*/
public void setCustomerGatewayVendor(CustomerGatewayVendor CustomerGatewayVendor) {
this.CustomerGatewayVendor = CustomerGatewayVendor;
}
/**
* Get 通道接入设备物理接口名称。
* @return InterfaceName 通道接入设备物理接口名称。
*/
public String getInterfaceName() {
return this.InterfaceName;
}
/**
* Set 通道接入设备物理接口名称。
* @param InterfaceName 通道接入设备物理接口名称。
*/
public void setInterfaceName(String InterfaceName) {
this.InterfaceName = InterfaceName;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "VpnGatewayId", this.VpnGatewayId);
this.setParamSimple(map, prefix + "VpnConnectionId", this.VpnConnectionId);
this.setParamObj(map, prefix + "CustomerGatewayVendor.", this.CustomerGatewayVendor);
this.setParamSimple(map, prefix + "InterfaceName", this.InterfaceName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy