com.volcengine.model.imagex.v2.GetImageMigrateTasksQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.imagex.v2;
import com.alibaba.fastjson.JSON;
/**
* GetImageMigrateTasksQuery
*/
@lombok.Data
public final class GetImageMigrateTasksQuery {
/**
* 任务地区(即任务目标服务的地区),缺省时将返回国内列表。取值如下所示:
*
*
*
* - `cn`:国内
*
* - `sg`:新加坡
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Region")
private String region;
/**
* 任务 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "TaskId")
private String taskId;
/**
* 迁移的目标服务 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ServiceId")
private String serviceId;
/**
* 分页偏移量,用于控制分页查询返回结果的起始位置,以便对数据进行分页展示和浏览。默认值为 0。
*
* :::tip
*
* 例如,指定分页条数 Limit = 10,分页偏移量 Offset = 10,表示从查询结果的第 11 条记录开始返回数据,共展示 10 条数据。
*
* :::
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Offset")
private Long offset;
/**
* 分页查询时,显示的每页数据的最大条数。默认值为 10,最大值为 1000。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Limit")
private Integer limit;
/**
* 返回任务名称中包含该值的迁移任务信息。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "TaskNamePtn")
private String taskNamePtn;
/**
* 任务状态,填入多个时使用英文逗号分隔。取值如下所示:
*
* - `Initial`:创建中
*
* - `Running`:运行中
*
* - `Done`:全部迁移完成
*
* - `Partial`:部分迁移完成
*
* - `Failed`:迁移失败
*
* - `Terminated`:中止
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Status")
private String status;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy