
ksyun.client.milvus.createsecurityrules.v20231010.CreateSecurityRulesRequest 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.createsecurityrules.v20231010;
import common.annotation.KsYunField;
import lombok.Data;
import lombok.ToString;
import java.util.List;
/**
* @Classname CreateSecurityRulesRequest
* @Description 请求参数
*/
@Data
public class CreateSecurityRulesRequest {
/**
* 安全组ID
*/
@KsYunField(name = "SecurityGroupId")
private String SecurityGroupId;
/**
* 安全组规则列表(支持多个)
*/
@KsYunField(name = "Rules")
private List RulesList;
@Data
@ToString
public static class RulesDto {
/**
* cidr规则(支持0-32)
*/
@KsYunField(name = "Cidr")
private String Cidr;
/**
* cidr规则描述
*/
@KsYunField(name = "Detail")
private String Detail;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy