com.aliyuncs.vpc.model.v20160428.DescribeVpnGatewayResponse 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.
*/
package com.aliyuncs.vpc.model.v20160428;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.vpc.transform.v20160428.DescribeVpnGatewayResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeVpnGatewayResponse extends AcsResponse {
private String requestId;
private String vpnGatewayId;
private String vpcId;
private String vSwitchId;
private String internetIp;
private Long createTime;
private Long endTime;
private String spec;
private String name;
private String description;
private String status;
private String businessStatus;
private String chargeType;
private String ipsecVpn;
private String sslVpn;
private Long sslMaxConnections;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getVpnGatewayId() {
return this.vpnGatewayId;
}
public void setVpnGatewayId(String vpnGatewayId) {
this.vpnGatewayId = vpnGatewayId;
}
public String getVpcId() {
return this.vpcId;
}
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
}
public String getVSwitchId() {
return this.vSwitchId;
}
public void setVSwitchId(String vSwitchId) {
this.vSwitchId = vSwitchId;
}
public String getInternetIp() {
return this.internetIp;
}
public void setInternetIp(String internetIp) {
this.internetIp = internetIp;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public String getSpec() {
return this.spec;
}
public void setSpec(String spec) {
this.spec = spec;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getBusinessStatus() {
return this.businessStatus;
}
public void setBusinessStatus(String businessStatus) {
this.businessStatus = businessStatus;
}
public String getChargeType() {
return this.chargeType;
}
public void setChargeType(String chargeType) {
this.chargeType = chargeType;
}
public String getIpsecVpn() {
return this.ipsecVpn;
}
public void setIpsecVpn(String ipsecVpn) {
this.ipsecVpn = ipsecVpn;
}
public String getSslVpn() {
return this.sslVpn;
}
public void setSslVpn(String sslVpn) {
this.sslVpn = sslVpn;
}
public Long getSslMaxConnections() {
return this.sslMaxConnections;
}
public void setSslMaxConnections(Long sslMaxConnections) {
this.sslMaxConnections = sslMaxConnections;
}
@Override
public DescribeVpnGatewayResponse getInstance(UnmarshallerContext context) {
return DescribeVpnGatewayResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy