com.aliyun.sdk.service.ecs20140526.models.CreateVpcResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ecs20140526 Show documentation
Show all versions of alibabacloud-ecs20140526 Show documentation
Alibaba Cloud Ecs (20140526) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link CreateVpcResponseBody} extends {@link TeaModel}
*
* CreateVpcResponseBody
*/
public class CreateVpcResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("RouteTableId")
private String routeTableId;
@com.aliyun.core.annotation.NameInMap("VRouterId")
private String vRouterId;
@com.aliyun.core.annotation.NameInMap("VpcId")
private String vpcId;
private CreateVpcResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.routeTableId = builder.routeTableId;
this.vRouterId = builder.vRouterId;
this.vpcId = builder.vpcId;
}
public static Builder builder() {
return new Builder();
}
public static CreateVpcResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return routeTableId
*/
public String getRouteTableId() {
return this.routeTableId;
}
/**
* @return vRouterId
*/
public String getVRouterId() {
return this.vRouterId;
}
/**
* @return vpcId
*/
public String getVpcId() {
return this.vpcId;
}
public static final class Builder {
private String requestId;
private String routeTableId;
private String vRouterId;
private String vpcId;
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* RouteTableId.
*/
public Builder routeTableId(String routeTableId) {
this.routeTableId = routeTableId;
return this;
}
/**
* VRouterId.
*/
public Builder vRouterId(String vRouterId) {
this.vRouterId = vRouterId;
return this;
}
/**
* VpcId.
*/
public Builder vpcId(String vpcId) {
this.vpcId = vpcId;
return this;
}
public CreateVpcResponseBody build() {
return new CreateVpcResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy