
ksyun.client.kmr.listrayjobruns.v20240814.ListRayJobRunsRequest 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.kmr.listrayjobruns.v20240814;
import common.annotation.KsYunField;
import lombok.Data;
import java.util.List;
/**
* @Classname ListRayJobRunsRequest
* @Description 请求参数
*/
@Data
public class ListRayJobRunsRequest {
/**
* 工作空间ID
*/
@KsYunField(name = "WorkspaceId")
private String WorkspaceId;
/**
* 作业名称/ID
*/
@KsYunField(name = "NameOrId")
private String NameOrId;
/**
* 筛选条件,作业状态
* INIT:初始化
* RUNNING:运行中
* WAITING:等待中
* DELETED:已停止
* SUBMITTED:已提交
* CREATED_FAILED:创建失败
*/
@KsYunField(name = "Status", type = 2)
private List StatusList;
/**
* 分页页码
*/
@KsYunField(name = "PageNumber")
private Integer PageNumber;
/**
* 分页大小
*/
@KsYunField(name = "PageSize")
private Integer PageSize;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy