
com.tencentcloudapi.tat.v20201028.models.CommandDocument 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 CommandDocument extends AbstractModel{
/**
* Base64 编码后的执行命令。
*/
@SerializedName("Content")
@Expose
private String Content;
/**
* 命令类型。
*/
@SerializedName("CommandType")
@Expose
private String CommandType;
/**
* 超时时间。
*/
@SerializedName("Timeout")
@Expose
private Long Timeout;
/**
* 执行路径。
*/
@SerializedName("WorkingDirectory")
@Expose
private String WorkingDirectory;
/**
* Get Base64 编码后的执行命令。
* @return Content Base64 编码后的执行命令。
*/
public String getContent() {
return this.Content;
}
/**
* Set Base64 编码后的执行命令。
* @param Content Base64 编码后的执行命令。
*/
public void setContent(String Content) {
this.Content = Content;
}
/**
* Get 命令类型。
* @return CommandType 命令类型。
*/
public String getCommandType() {
return this.CommandType;
}
/**
* Set 命令类型。
* @param CommandType 命令类型。
*/
public void setCommandType(String CommandType) {
this.CommandType = CommandType;
}
/**
* Get 超时时间。
* @return Timeout 超时时间。
*/
public Long getTimeout() {
return this.Timeout;
}
/**
* Set 超时时间。
* @param Timeout 超时时间。
*/
public void setTimeout(Long Timeout) {
this.Timeout = Timeout;
}
/**
* Get 执行路径。
* @return WorkingDirectory 执行路径。
*/
public String getWorkingDirectory() {
return this.WorkingDirectory;
}
/**
* Set 执行路径。
* @param WorkingDirectory 执行路径。
*/
public void setWorkingDirectory(String WorkingDirectory) {
this.WorkingDirectory = WorkingDirectory;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Content", this.Content);
this.setParamSimple(map, prefix + "CommandType", this.CommandType);
this.setParamSimple(map, prefix + "Timeout", this.Timeout);
this.setParamSimple(map, prefix + "WorkingDirectory", this.WorkingDirectory);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy