
com.tencentcloudapi.tat.v20201028.models.TaskResult Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.tat.v20201028.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class TaskResult extends AbstractModel{
/**
* 命令执行ExitCode。
*/
@SerializedName("ExitCode")
@Expose
private Long ExitCode;
/**
* Base64编码后的命令输出。最大长度24KB。
*/
@SerializedName("Output")
@Expose
private String Output;
/**
* 命令执行开始时间。
*/
@SerializedName("ExecStartTime")
@Expose
private String ExecStartTime;
/**
* 命令执行结束时间。
*/
@SerializedName("ExecEndTime")
@Expose
private String ExecEndTime;
/**
* Get 命令执行ExitCode。
* @return ExitCode 命令执行ExitCode。
*/
public Long getExitCode() {
return this.ExitCode;
}
/**
* Set 命令执行ExitCode。
* @param ExitCode 命令执行ExitCode。
*/
public void setExitCode(Long ExitCode) {
this.ExitCode = ExitCode;
}
/**
* Get Base64编码后的命令输出。最大长度24KB。
* @return Output Base64编码后的命令输出。最大长度24KB。
*/
public String getOutput() {
return this.Output;
}
/**
* Set Base64编码后的命令输出。最大长度24KB。
* @param Output Base64编码后的命令输出。最大长度24KB。
*/
public void setOutput(String Output) {
this.Output = Output;
}
/**
* Get 命令执行开始时间。
* @return ExecStartTime 命令执行开始时间。
*/
public String getExecStartTime() {
return this.ExecStartTime;
}
/**
* Set 命令执行开始时间。
* @param ExecStartTime 命令执行开始时间。
*/
public void setExecStartTime(String ExecStartTime) {
this.ExecStartTime = ExecStartTime;
}
/**
* Get 命令执行结束时间。
* @return ExecEndTime 命令执行结束时间。
*/
public String getExecEndTime() {
return this.ExecEndTime;
}
/**
* Set 命令执行结束时间。
* @param ExecEndTime 命令执行结束时间。
*/
public void setExecEndTime(String ExecEndTime) {
this.ExecEndTime = ExecEndTime;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "ExitCode", this.ExitCode);
this.setParamSimple(map, prefix + "Output", this.Output);
this.setParamSimple(map, prefix + "ExecStartTime", this.ExecStartTime);
this.setParamSimple(map, prefix + "ExecEndTime", this.ExecEndTime);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy