
ksyun.client.kce.describeclusterinstance.v20190806.DescribeClusterInstanceRequest 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.kce.describeclusterinstance.v20190806;
import common.annotation.KsYunField;
import lombok.Data;
import lombok.ToString;
import java.util.List;
/**
* @Classname DescribeClusterInstanceRequest
* @Description 请求参数
*/
@Data
public class DescribeClusterInstanceRequest {
/**
* 集群id
*/
@KsYunField(name = "ClusterId")
private String ClusterId;
/**
* 单次调用所返回的最大实例数目,默认10,最大50。
*/
@KsYunField(name = "MaxResults")
private Integer MaxResults;
/**
* 分页标识,单次调用未返回全部实例时,标记下次调用的返回值的起点,默认值是0。
*/
@KsYunField(name = "Marker")
private Integer Marker;
/***/
@KsYunField(name = "Filter")
private List FilterList;
/**
* 模糊匹配,可以匹配如下字段:
主网卡私有IP(PrivateIpAddress)。
*/
@KsYunField(name = "Search")
private String Search;
@Data
@ToString
public static class FilterDto {
/**
* 支持的过滤器参数
*
* - instance-name 实例名称
* - instance-role 实例角色
* - instance-id 实例id
* - instance-ip 实例ip
* - instance-status 实例状态
* - node-pool-id 节点所属节点池id
*/
@KsYunField(name = "Name")
private String Name;
/***/
@KsYunField(name = "Value")
private List ValueList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy