com.volcengine.model.acep.RunSyncCommandResResult 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.acep;
import com.alibaba.fastjson.JSON;
import java.util.List;
/**
* RunSyncCommandResResult
*/
@lombok.Data
public final class RunSyncCommandResResult {
/**
* 实例所归属的业务 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ProductId")
private String productId;
/**
* 对指定的实例执行的命令。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Command")
private String command;
/**
* 命令执行状态,参考 [RunSyncCommandStatus](#runsynccommandstatus) 数据格式说明。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Status")
private List status;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy