All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.volcengine.model.acep.RunCommandResResult Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
package com.volcengine.model.acep;


import com.alibaba.fastjson.JSON;

import java.util.List;

/**
 * RunCommandResResult
 */
@lombok.Data
public final class RunCommandResResult  {

    /**
     * 

执行命令任务 ID,可用于通过 `GetTaskInfo` 接口查看任务执行状态及结果。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "TaskId") private String taskId; /** *

任务类型,默认为对应接口 Action 名称,此处为 `RunCommand`。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "TaskAction") private String taskAction; /** *

子任务列表,参考 `Job` 数据格式。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Jobs") private List jobs; @Override public String toString() { return JSON.toJSONString(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy