
com.tencentcloudapi.bmvpc.v20180625.models.RouteTable 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.bmvpc.v20180625.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class RouteTable extends AbstractModel{
/**
* VPC实例ID。
*/
@SerializedName("VpcId")
@Expose
private String VpcId;
/**
* VPC的名称
*/
@SerializedName("VpcName")
@Expose
private String VpcName;
/**
* VPC的CIDR
*/
@SerializedName("VpcCidrBlock")
@Expose
private String VpcCidrBlock;
/**
* 可用区
*/
@SerializedName("Zone")
@Expose
private String Zone;
/**
* 路由表实例ID,例如:rtb-azd4dt1c。
*/
@SerializedName("RouteTableId")
@Expose
private String RouteTableId;
/**
* 路由表名称。
*/
@SerializedName("RouteTableName")
@Expose
private String RouteTableName;
/**
* 创建时间。
*/
@SerializedName("CreateTime")
@Expose
private String CreateTime;
/**
* Get VPC实例ID。
* @return VpcId VPC实例ID。
*/
public String getVpcId() {
return this.VpcId;
}
/**
* Set VPC实例ID。
* @param VpcId VPC实例ID。
*/
public void setVpcId(String VpcId) {
this.VpcId = VpcId;
}
/**
* Get VPC的名称
* @return VpcName VPC的名称
*/
public String getVpcName() {
return this.VpcName;
}
/**
* Set VPC的名称
* @param VpcName VPC的名称
*/
public void setVpcName(String VpcName) {
this.VpcName = VpcName;
}
/**
* Get VPC的CIDR
* @return VpcCidrBlock VPC的CIDR
*/
public String getVpcCidrBlock() {
return this.VpcCidrBlock;
}
/**
* Set VPC的CIDR
* @param VpcCidrBlock VPC的CIDR
*/
public void setVpcCidrBlock(String VpcCidrBlock) {
this.VpcCidrBlock = VpcCidrBlock;
}
/**
* Get 可用区
* @return Zone 可用区
*/
public String getZone() {
return this.Zone;
}
/**
* Set 可用区
* @param Zone 可用区
*/
public void setZone(String Zone) {
this.Zone = Zone;
}
/**
* Get 路由表实例ID,例如:rtb-azd4dt1c。
* @return RouteTableId 路由表实例ID,例如:rtb-azd4dt1c。
*/
public String getRouteTableId() {
return this.RouteTableId;
}
/**
* Set 路由表实例ID,例如:rtb-azd4dt1c。
* @param RouteTableId 路由表实例ID,例如:rtb-azd4dt1c。
*/
public void setRouteTableId(String RouteTableId) {
this.RouteTableId = RouteTableId;
}
/**
* Get 路由表名称。
* @return RouteTableName 路由表名称。
*/
public String getRouteTableName() {
return this.RouteTableName;
}
/**
* Set 路由表名称。
* @param RouteTableName 路由表名称。
*/
public void setRouteTableName(String RouteTableName) {
this.RouteTableName = RouteTableName;
}
/**
* Get 创建时间。
* @return CreateTime 创建时间。
*/
public String getCreateTime() {
return this.CreateTime;
}
/**
* Set 创建时间。
* @param CreateTime 创建时间。
*/
public void setCreateTime(String CreateTime) {
this.CreateTime = CreateTime;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "VpcId", this.VpcId);
this.setParamSimple(map, prefix + "VpcName", this.VpcName);
this.setParamSimple(map, prefix + "VpcCidrBlock", this.VpcCidrBlock);
this.setParamSimple(map, prefix + "Zone", this.Zone);
this.setParamSimple(map, prefix + "RouteTableId", this.RouteTableId);
this.setParamSimple(map, prefix + "RouteTableName", this.RouteTableName);
this.setParamSimple(map, prefix + "CreateTime", this.CreateTime);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy