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

com.aliyun.sdk.service.polardb20170801.models.DeleteGlobalSecurityIPGroupResponseBody Maven / Gradle / Ivy

There is a newer version: 4.0.29
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.polardb20170801.models;

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

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

DeleteGlobalSecurityIPGroupResponseBody

*/ public class DeleteGlobalSecurityIPGroupResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("GlobalSecurityIPGroup") private java.util.List < GlobalSecurityIPGroup> globalSecurityIPGroup; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DeleteGlobalSecurityIPGroupResponseBody(Builder builder) { this.globalSecurityIPGroup = builder.globalSecurityIPGroup; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DeleteGlobalSecurityIPGroupResponseBody create() { return builder().build(); } /** * @return globalSecurityIPGroup */ public java.util.List < GlobalSecurityIPGroup> getGlobalSecurityIPGroup() { return this.globalSecurityIPGroup; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < GlobalSecurityIPGroup> globalSecurityIPGroup; private String requestId; /** * The details of the global IP whitelist template. */ public Builder globalSecurityIPGroup(java.util.List < GlobalSecurityIPGroup> globalSecurityIPGroup) { this.globalSecurityIPGroup = globalSecurityIPGroup; return this; } /** * The ID of the request. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DeleteGlobalSecurityIPGroupResponseBody build() { return new DeleteGlobalSecurityIPGroupResponseBody(this); } } public static class GlobalSecurityIPGroup extends TeaModel { @com.aliyun.core.annotation.NameInMap("DBInstances") private java.util.List < String > DBInstances; @com.aliyun.core.annotation.NameInMap("GIpList") private String gIpList; @com.aliyun.core.annotation.NameInMap("GlobalIgName") private String globalIgName; @com.aliyun.core.annotation.NameInMap("GlobalSecurityGroupId") private String globalSecurityGroupId; @com.aliyun.core.annotation.NameInMap("RegionId") private String regionId; private GlobalSecurityIPGroup(Builder builder) { this.DBInstances = builder.DBInstances; this.gIpList = builder.gIpList; this.globalIgName = builder.globalIgName; this.globalSecurityGroupId = builder.globalSecurityGroupId; this.regionId = builder.regionId; } public static Builder builder() { return new Builder(); } public static GlobalSecurityIPGroup create() { return builder().build(); } /** * @return DBInstances */ public java.util.List < String > getDBInstances() { return this.DBInstances; } /** * @return gIpList */ public String getGIpList() { return this.gIpList; } /** * @return globalIgName */ public String getGlobalIgName() { return this.globalIgName; } /** * @return globalSecurityGroupId */ public String getGlobalSecurityGroupId() { return this.globalSecurityGroupId; } /** * @return regionId */ public String getRegionId() { return this.regionId; } public static final class Builder { private java.util.List < String > DBInstances; private String gIpList; private String globalIgName; private String globalSecurityGroupId; private String regionId; /** * The clusters that are associated with the IP address whitelist template. */ public Builder DBInstances(java.util.List < String > DBInstances) { this.DBInstances = DBInstances; return this; } /** * The IP address in the whitelist template. *

* * > Multiple IP addresses are separated by commas (,). You can create up to 1,000 IP addresses or CIDR blocks for all IP whitelists. */ public Builder gIpList(String gIpList) { this.gIpList = gIpList; return this; } /** * The name of the global IP whitelist template. The name must meet the following requirements: *

* * * The name can contain lowercase letters, digits, and underscores (\_). * * The name must start with a letter and end with a letter or a digit. * * The name must be 2 to 120 characters in length. */ public Builder globalIgName(String globalIgName) { this.globalIgName = globalIgName; return this; } /** * The ID of the global IP whitelist template. */ public Builder globalSecurityGroupId(String globalSecurityGroupId) { this.globalSecurityGroupId = globalSecurityGroupId; return this; } /** * The ID of the region. */ public Builder regionId(String regionId) { this.regionId = regionId; return this; } public GlobalSecurityIPGroup build() { return new GlobalSecurityIPGroup(this); } } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy