
ksyun.client.milvus.createsecuritygroup.v20231010.CreateSecurityGroupRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ksyun-java-sdk Show documentation
Show all versions of ksyun-java-sdk Show documentation
The KSYUN Web Services SDK for Java provides Java APIs
for building software on KSYUN' cost-effective, scalable, and reliable
infrastructure products. The KSYUN Java SDK allows developers to code
against APIs for all of KSYUN's infrastructure web services (KSC
S3, KSC KEC, KSC RDS etc).
The newest version!
package ksyun.client.milvus.createsecuritygroup.v20231010;
import common.annotation.KsYunField;
import lombok.Data;
import lombok.ToString;
import java.util.List;
/**
* @Classname CreateSecurityGroupRequest
* @Description 请求参数
*/
@Data
public class CreateSecurityGroupRequest {
/**
* 安全组名称
*/
@KsYunField(name = "Name")
private String Name;
/**
* 安全组类型,现仅支持:ipv4
*/
@KsYunField(name = "IpVersion")
private String IpVersion;
/**
* 描述
*/
@KsYunField(name = "Detail")
private String Detail;
/**
* 安全组规则列表
*/
@KsYunField(name = "Rules")
private List RulesList;
@Data
@ToString
public static class RulesDto {
/**
* 若要绑定规则,此字段为必填
*/
@KsYunField(name = "Cidr")
private String Cidr;
/**
* 描述
*/
@KsYunField(name = "Detail")
private String Detail;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy