com.aliyun.r_kvstore20150101.models.CreateGlobalSecurityIPGroupResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of r_kvstore20150101 Show documentation
Show all versions of r_kvstore20150101 Show documentation
Alibaba Cloud R-kvstore (20150101) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.r_kvstore20150101.models;
import com.aliyun.tea.*;
public class CreateGlobalSecurityIPGroupResponseBody extends TeaModel {
/**
* The information about the global IP whitelist template.
*/
@NameInMap("GlobalSecurityIPGroup")
public java.util.List globalSecurityIPGroup;
/**
* The request ID.
*
* example:
* 5D622714-AEDD-4609-9167-F5DDD3D1****
*/
@NameInMap("RequestId")
public String requestId;
public static CreateGlobalSecurityIPGroupResponseBody build(java.util.Map map) throws Exception {
CreateGlobalSecurityIPGroupResponseBody self = new CreateGlobalSecurityIPGroupResponseBody();
return TeaModel.build(map, self);
}
public CreateGlobalSecurityIPGroupResponseBody setGlobalSecurityIPGroup(java.util.List globalSecurityIPGroup) {
this.globalSecurityIPGroup = globalSecurityIPGroup;
return this;
}
public java.util.List getGlobalSecurityIPGroup() {
return this.globalSecurityIPGroup;
}
public CreateGlobalSecurityIPGroupResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class CreateGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup extends TeaModel {
/**
* The IP addresses in the IP whitelist template.
*
* example:
* 192.168.0.1
*/
@NameInMap("GIpList")
public String GIpList;
/**
* The name of the IP whitelist template.
*
* example:
* white_list_test_sg
*/
@NameInMap("GlobalIgName")
public String globalIgName;
/**
* The ID of the IP whitelist template.
*
* example:
* g-sdgwqyp4f5j1x3qk7yvm
*/
@NameInMap("GlobalSecurityGroupId")
public String globalSecurityGroupId;
/**
* The region ID.
*
* example:
* cn-hangzhou
*/
@NameInMap("RegionId")
public String regionId;
public static CreateGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup build(java.util.Map map) throws Exception {
CreateGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup self = new CreateGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup();
return TeaModel.build(map, self);
}
public CreateGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup setGIpList(String GIpList) {
this.GIpList = GIpList;
return this;
}
public String getGIpList() {
return this.GIpList;
}
public CreateGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup setGlobalIgName(String globalIgName) {
this.globalIgName = globalIgName;
return this;
}
public String getGlobalIgName() {
return this.globalIgName;
}
public CreateGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup setGlobalSecurityGroupId(String globalSecurityGroupId) {
this.globalSecurityGroupId = globalSecurityGroupId;
return this;
}
public String getGlobalSecurityGroupId() {
return this.globalSecurityGroupId;
}
public CreateGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy