All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.gpdb20160503.models.DescribeRdsVpcsResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.gpdb20160503.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link DescribeRdsVpcsResponseBody} extends {@link TeaModel}
 *
 * 

DescribeRdsVpcsResponseBody

*/ public class DescribeRdsVpcsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Vpcs") private Vpcs vpcs; private DescribeRdsVpcsResponseBody(Builder builder) { this.requestId = builder.requestId; this.vpcs = builder.vpcs; } public static Builder builder() { return new Builder(); } public static DescribeRdsVpcsResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return vpcs */ public Vpcs getVpcs() { return this.vpcs; } public static final class Builder { private String requestId; private Vpcs vpcs; /** * The ID of the request. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * The queried VPCs. */ public Builder vpcs(Vpcs vpcs) { this.vpcs = vpcs; return this; } public DescribeRdsVpcsResponseBody build() { return new DescribeRdsVpcsResponseBody(this); } } public static class VSwitchs extends TeaModel { @com.aliyun.core.annotation.NameInMap("CidrBlock") private String cidrBlock; @com.aliyun.core.annotation.NameInMap("GmtCreate") private String gmtCreate; @com.aliyun.core.annotation.NameInMap("GmtModified") private String gmtModified; @com.aliyun.core.annotation.NameInMap("IsDefault") private Boolean isDefault; @com.aliyun.core.annotation.NameInMap("IzNo") private String izNo; @com.aliyun.core.annotation.NameInMap("Status") private String status; @com.aliyun.core.annotation.NameInMap("VSwitchId") private String vSwitchId; @com.aliyun.core.annotation.NameInMap("VSwitchName") private String vSwitchName; private VSwitchs(Builder builder) { this.cidrBlock = builder.cidrBlock; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.isDefault = builder.isDefault; this.izNo = builder.izNo; this.status = builder.status; this.vSwitchId = builder.vSwitchId; this.vSwitchName = builder.vSwitchName; } public static Builder builder() { return new Builder(); } public static VSwitchs create() { return builder().build(); } /** * @return cidrBlock */ public String getCidrBlock() { return this.cidrBlock; } /** * @return gmtCreate */ public String getGmtCreate() { return this.gmtCreate; } /** * @return gmtModified */ public String getGmtModified() { return this.gmtModified; } /** * @return isDefault */ public Boolean getIsDefault() { return this.isDefault; } /** * @return izNo */ public String getIzNo() { return this.izNo; } /** * @return status */ public String getStatus() { return this.status; } /** * @return vSwitchId */ public String getVSwitchId() { return this.vSwitchId; } /** * @return vSwitchName */ public String getVSwitchName() { return this.vSwitchName; } public static final class Builder { private String cidrBlock; private String gmtCreate; private String gmtModified; private Boolean isDefault; private String izNo; private String status; private String vSwitchId; private String vSwitchName; /** * The CIDR block of the vSwitch. */ public Builder cidrBlock(String cidrBlock) { this.cidrBlock = cidrBlock; return this; } /** * An invalid parameter. It is no longer returned when you call this operation. */ public Builder gmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * An invalid parameter. It is no longer returned when you call this operation. */ public Builder gmtModified(String gmtModified) { this.gmtModified = gmtModified; return this; } /** * Indicates whether the vSwitch is the default vSwitch. Valid values: *

* * * **true** * * **false** */ public Builder isDefault(Boolean isDefault) { this.isDefault = isDefault; return this; } /** * The ID of the zone to which the vSwitch belongs. */ public Builder izNo(String izNo) { this.izNo = izNo; return this; } /** * The state of the vSwitch. If **Available** is returned, the vSwitch is available. */ public Builder status(String status) { this.status = status; return this; } /** * The vSwitch ID. */ public Builder vSwitchId(String vSwitchId) { this.vSwitchId = vSwitchId; return this; } /** * The name of the vSwitch. */ public Builder vSwitchName(String vSwitchName) { this.vSwitchName = vSwitchName; return this; } public VSwitchs build() { return new VSwitchs(this); } } } public static class Vpc extends TeaModel { @com.aliyun.core.annotation.NameInMap("AliUid") private String aliUid; @com.aliyun.core.annotation.NameInMap("Bid") private String bid; @com.aliyun.core.annotation.NameInMap("CidrBlock") private String cidrBlock; @com.aliyun.core.annotation.NameInMap("GmtCreate") private String gmtCreate; @com.aliyun.core.annotation.NameInMap("GmtModified") private String gmtModified; @com.aliyun.core.annotation.NameInMap("IsDefault") private Boolean isDefault; @com.aliyun.core.annotation.NameInMap("RegionNo") private String regionNo; @com.aliyun.core.annotation.NameInMap("Status") private String status; @com.aliyun.core.annotation.NameInMap("VSwitchs") private java.util.List < VSwitchs> vSwitchs; @com.aliyun.core.annotation.NameInMap("VpcId") private String vpcId; @com.aliyun.core.annotation.NameInMap("VpcName") private String vpcName; private Vpc(Builder builder) { this.aliUid = builder.aliUid; this.bid = builder.bid; this.cidrBlock = builder.cidrBlock; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.isDefault = builder.isDefault; this.regionNo = builder.regionNo; this.status = builder.status; this.vSwitchs = builder.vSwitchs; this.vpcId = builder.vpcId; this.vpcName = builder.vpcName; } public static Builder builder() { return new Builder(); } public static Vpc create() { return builder().build(); } /** * @return aliUid */ public String getAliUid() { return this.aliUid; } /** * @return bid */ public String getBid() { return this.bid; } /** * @return cidrBlock */ public String getCidrBlock() { return this.cidrBlock; } /** * @return gmtCreate */ public String getGmtCreate() { return this.gmtCreate; } /** * @return gmtModified */ public String getGmtModified() { return this.gmtModified; } /** * @return isDefault */ public Boolean getIsDefault() { return this.isDefault; } /** * @return regionNo */ public String getRegionNo() { return this.regionNo; } /** * @return status */ public String getStatus() { return this.status; } /** * @return vSwitchs */ public java.util.List < VSwitchs> getVSwitchs() { return this.vSwitchs; } /** * @return vpcId */ public String getVpcId() { return this.vpcId; } /** * @return vpcName */ public String getVpcName() { return this.vpcName; } public static final class Builder { private String aliUid; private String bid; private String cidrBlock; private String gmtCreate; private String gmtModified; private Boolean isDefault; private String regionNo; private String status; private java.util.List < VSwitchs> vSwitchs; private String vpcId; private String vpcName; /** * An invalid parameter. It is no longer returned when you call this operation. */ public Builder aliUid(String aliUid) { this.aliUid = aliUid; return this; } /** * An invalid parameter. It is no longer returned when you call this operation. */ public Builder bid(String bid) { this.bid = bid; return this; } /** * The CIDR block of the VPC. */ public Builder cidrBlock(String cidrBlock) { this.cidrBlock = cidrBlock; return this; } /** * An invalid parameter. It is no longer returned when you call this operation. */ public Builder gmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * An invalid parameter. It is no longer returned when you call this operation. */ public Builder gmtModified(String gmtModified) { this.gmtModified = gmtModified; return this; } /** * Indicates whether the VPC is the default VPC. Valid values: *

* * * **true** * * **false** */ public Builder isDefault(Boolean isDefault) { this.isDefault = isDefault; return this; } /** * The region ID of the instance. */ public Builder regionNo(String regionNo) { this.regionNo = regionNo; return this; } /** * The state of the VPC. If **Available** is returned, the VPC is available. */ public Builder status(String status) { this.status = status; return this; } /** * The queried vSwitches. */ public Builder vSwitchs(java.util.List < VSwitchs> vSwitchs) { this.vSwitchs = vSwitchs; return this; } /** * The VPC ID. */ public Builder vpcId(String vpcId) { this.vpcId = vpcId; return this; } /** * The name of the VPC. */ public Builder vpcName(String vpcName) { this.vpcName = vpcName; return this; } public Vpc build() { return new Vpc(this); } } } public static class Vpcs extends TeaModel { @com.aliyun.core.annotation.NameInMap("Vpc") private java.util.List < Vpc> vpc; private Vpcs(Builder builder) { this.vpc = builder.vpc; } public static Builder builder() { return new Builder(); } public static Vpcs create() { return builder().build(); } /** * @return vpc */ public java.util.List < Vpc> getVpc() { return this.vpc; } public static final class Builder { private java.util.List < Vpc> vpc; /** * The queried VPC. */ public Builder vpc(java.util.List < Vpc> vpc) { this.vpc = vpc; return this; } public Vpcs build() { return new Vpcs(this); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy