
com.tencentcloudapi.tat.v20201028.models.CreateCommandRequest 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 CreateCommandRequest extends AbstractModel{
/**
* 命令名称。名称仅支持中文、英文、数字、下划线、分隔符"-"、小数点,最大长度不能超60个字节。
*/
@SerializedName("CommandName")
@Expose
private String CommandName;
/**
* Base64编码后的命令内容,长度不可超过64KB。
*/
@SerializedName("Content")
@Expose
private String Content;
/**
* 命令描述。不超过120字符。
*/
@SerializedName("Description")
@Expose
private String Description;
/**
* 命令类型,目前支持取值:SHELL、POWERSHELL。默认:SHELL。
*/
@SerializedName("CommandType")
@Expose
private String CommandType;
/**
* 命令执行路径,对于 SHELL 命令默认为 /root,对于 POWERSHELL 命令默认为 C:\Program Files\qcloud\tat_agent\workdir。
*/
@SerializedName("WorkingDirectory")
@Expose
private String WorkingDirectory;
/**
* 命令超时时间,默认60秒。取值范围[1, 86400]。
*/
@SerializedName("Timeout")
@Expose
private Long Timeout;
/**
* 是否启用自定义参数功能。
一旦创建,此值不提供修改。
默认值:false。
*/
@SerializedName("EnableParameter")
@Expose
private Boolean EnableParameter;
/**
* 启用自定义参数功能时,自定义参数的默认取值。字段类型为json encoded string。如:{\"varA\": \"222\"}。
key为自定义参数名称,value为该参数的默认取值。kv均为字符串型。
如果InvokeCommand时未提供参数取值,将使用这里的默认值进行替换。
自定义参数最多20个。
自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。
*/
@SerializedName("DefaultParameters")
@Expose
private String DefaultParameters;
/**
* 为命令关联的标签,列表长度不超过10。
*/
@SerializedName("Tags")
@Expose
private Tag [] Tags;
/**
* 在 CVM 或 Lighthouse 实例中执行命令的用户名称。
使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在 Linux 实例中以 root 用户执行命令;在Windows 实例中以 System 用户执行命令。
*/
@SerializedName("Username")
@Expose
private String Username;
/**
* 指定日志上传的cos bucket 地址,必须以https开头,如 https://BucketName-123454321.cos.ap-beijing.myqcloud.com。
*/
@SerializedName("OutputCOSBucketUrl")
@Expose
private String OutputCOSBucketUrl;
/**
* 指定日志在cos bucket中的目录,目录命名有如下规则:
1. 可用数字、中英文和可见字符的组合,长度最多为60。
2. 用 / 分割路径,可快速创建子目录。
3. 不允许连续 / ;不允许以 / 开头;不允许以..作为文件夹名称
*/
@SerializedName("OutputCOSKeyPrefix")
@Expose
private String OutputCOSKeyPrefix;
/**
* Get 命令名称。名称仅支持中文、英文、数字、下划线、分隔符"-"、小数点,最大长度不能超60个字节。
* @return CommandName 命令名称。名称仅支持中文、英文、数字、下划线、分隔符"-"、小数点,最大长度不能超60个字节。
*/
public String getCommandName() {
return this.CommandName;
}
/**
* Set 命令名称。名称仅支持中文、英文、数字、下划线、分隔符"-"、小数点,最大长度不能超60个字节。
* @param CommandName 命令名称。名称仅支持中文、英文、数字、下划线、分隔符"-"、小数点,最大长度不能超60个字节。
*/
public void setCommandName(String CommandName) {
this.CommandName = CommandName;
}
/**
* Get Base64编码后的命令内容,长度不可超过64KB。
* @return Content Base64编码后的命令内容,长度不可超过64KB。
*/
public String getContent() {
return this.Content;
}
/**
* Set Base64编码后的命令内容,长度不可超过64KB。
* @param Content Base64编码后的命令内容,长度不可超过64KB。
*/
public void setContent(String Content) {
this.Content = Content;
}
/**
* Get 命令描述。不超过120字符。
* @return Description 命令描述。不超过120字符。
*/
public String getDescription() {
return this.Description;
}
/**
* Set 命令描述。不超过120字符。
* @param Description 命令描述。不超过120字符。
*/
public void setDescription(String Description) {
this.Description = Description;
}
/**
* Get 命令类型,目前支持取值:SHELL、POWERSHELL。默认:SHELL。
* @return CommandType 命令类型,目前支持取值:SHELL、POWERSHELL。默认:SHELL。
*/
public String getCommandType() {
return this.CommandType;
}
/**
* Set 命令类型,目前支持取值:SHELL、POWERSHELL。默认:SHELL。
* @param CommandType 命令类型,目前支持取值:SHELL、POWERSHELL。默认:SHELL。
*/
public void setCommandType(String CommandType) {
this.CommandType = CommandType;
}
/**
* Get 命令执行路径,对于 SHELL 命令默认为 /root,对于 POWERSHELL 命令默认为 C:\Program Files\qcloud\tat_agent\workdir。
* @return WorkingDirectory 命令执行路径,对于 SHELL 命令默认为 /root,对于 POWERSHELL 命令默认为 C:\Program Files\qcloud\tat_agent\workdir。
*/
public String getWorkingDirectory() {
return this.WorkingDirectory;
}
/**
* Set 命令执行路径,对于 SHELL 命令默认为 /root,对于 POWERSHELL 命令默认为 C:\Program Files\qcloud\tat_agent\workdir。
* @param WorkingDirectory 命令执行路径,对于 SHELL 命令默认为 /root,对于 POWERSHELL 命令默认为 C:\Program Files\qcloud\tat_agent\workdir。
*/
public void setWorkingDirectory(String WorkingDirectory) {
this.WorkingDirectory = WorkingDirectory;
}
/**
* Get 命令超时时间,默认60秒。取值范围[1, 86400]。
* @return Timeout 命令超时时间,默认60秒。取值范围[1, 86400]。
*/
public Long getTimeout() {
return this.Timeout;
}
/**
* Set 命令超时时间,默认60秒。取值范围[1, 86400]。
* @param Timeout 命令超时时间,默认60秒。取值范围[1, 86400]。
*/
public void setTimeout(Long Timeout) {
this.Timeout = Timeout;
}
/**
* Get 是否启用自定义参数功能。
一旦创建,此值不提供修改。
默认值:false。
* @return EnableParameter 是否启用自定义参数功能。
一旦创建,此值不提供修改。
默认值:false。
*/
public Boolean getEnableParameter() {
return this.EnableParameter;
}
/**
* Set 是否启用自定义参数功能。
一旦创建,此值不提供修改。
默认值:false。
* @param EnableParameter 是否启用自定义参数功能。
一旦创建,此值不提供修改。
默认值:false。
*/
public void setEnableParameter(Boolean EnableParameter) {
this.EnableParameter = EnableParameter;
}
/**
* Get 启用自定义参数功能时,自定义参数的默认取值。字段类型为json encoded string。如:{\"varA\": \"222\"}。
key为自定义参数名称,value为该参数的默认取值。kv均为字符串型。
如果InvokeCommand时未提供参数取值,将使用这里的默认值进行替换。
自定义参数最多20个。
自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。
* @return DefaultParameters 启用自定义参数功能时,自定义参数的默认取值。字段类型为json encoded string。如:{\"varA\": \"222\"}。
key为自定义参数名称,value为该参数的默认取值。kv均为字符串型。
如果InvokeCommand时未提供参数取值,将使用这里的默认值进行替换。
自定义参数最多20个。
自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。
*/
public String getDefaultParameters() {
return this.DefaultParameters;
}
/**
* Set 启用自定义参数功能时,自定义参数的默认取值。字段类型为json encoded string。如:{\"varA\": \"222\"}。
key为自定义参数名称,value为该参数的默认取值。kv均为字符串型。
如果InvokeCommand时未提供参数取值,将使用这里的默认值进行替换。
自定义参数最多20个。
自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。
* @param DefaultParameters 启用自定义参数功能时,自定义参数的默认取值。字段类型为json encoded string。如:{\"varA\": \"222\"}。
key为自定义参数名称,value为该参数的默认取值。kv均为字符串型。
如果InvokeCommand时未提供参数取值,将使用这里的默认值进行替换。
自定义参数最多20个。
自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。
*/
public void setDefaultParameters(String DefaultParameters) {
this.DefaultParameters = DefaultParameters;
}
/**
* Get 为命令关联的标签,列表长度不超过10。
* @return Tags 为命令关联的标签,列表长度不超过10。
*/
public Tag [] getTags() {
return this.Tags;
}
/**
* Set 为命令关联的标签,列表长度不超过10。
* @param Tags 为命令关联的标签,列表长度不超过10。
*/
public void setTags(Tag [] Tags) {
this.Tags = Tags;
}
/**
* Get 在 CVM 或 Lighthouse 实例中执行命令的用户名称。
使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在 Linux 实例中以 root 用户执行命令;在Windows 实例中以 System 用户执行命令。
* @return Username 在 CVM 或 Lighthouse 实例中执行命令的用户名称。
使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在 Linux 实例中以 root 用户执行命令;在Windows 实例中以 System 用户执行命令。
*/
public String getUsername() {
return this.Username;
}
/**
* Set 在 CVM 或 Lighthouse 实例中执行命令的用户名称。
使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在 Linux 实例中以 root 用户执行命令;在Windows 实例中以 System 用户执行命令。
* @param Username 在 CVM 或 Lighthouse 实例中执行命令的用户名称。
使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在 Linux 实例中以 root 用户执行命令;在Windows 实例中以 System 用户执行命令。
*/
public void setUsername(String Username) {
this.Username = Username;
}
/**
* Get 指定日志上传的cos bucket 地址,必须以https开头,如 https://BucketName-123454321.cos.ap-beijing.myqcloud.com。
* @return OutputCOSBucketUrl 指定日志上传的cos bucket 地址,必须以https开头,如 https://BucketName-123454321.cos.ap-beijing.myqcloud.com。
*/
public String getOutputCOSBucketUrl() {
return this.OutputCOSBucketUrl;
}
/**
* Set 指定日志上传的cos bucket 地址,必须以https开头,如 https://BucketName-123454321.cos.ap-beijing.myqcloud.com。
* @param OutputCOSBucketUrl 指定日志上传的cos bucket 地址,必须以https开头,如 https://BucketName-123454321.cos.ap-beijing.myqcloud.com。
*/
public void setOutputCOSBucketUrl(String OutputCOSBucketUrl) {
this.OutputCOSBucketUrl = OutputCOSBucketUrl;
}
/**
* Get 指定日志在cos bucket中的目录,目录命名有如下规则:
1. 可用数字、中英文和可见字符的组合,长度最多为60。
2. 用 / 分割路径,可快速创建子目录。
3. 不允许连续 / ;不允许以 / 开头;不允许以..作为文件夹名称
* @return OutputCOSKeyPrefix 指定日志在cos bucket中的目录,目录命名有如下规则:
1. 可用数字、中英文和可见字符的组合,长度最多为60。
2. 用 / 分割路径,可快速创建子目录。
3. 不允许连续 / ;不允许以 / 开头;不允许以..作为文件夹名称
*/
public String getOutputCOSKeyPrefix() {
return this.OutputCOSKeyPrefix;
}
/**
* Set 指定日志在cos bucket中的目录,目录命名有如下规则:
1. 可用数字、中英文和可见字符的组合,长度最多为60。
2. 用 / 分割路径,可快速创建子目录。
3. 不允许连续 / ;不允许以 / 开头;不允许以..作为文件夹名称
* @param OutputCOSKeyPrefix 指定日志在cos bucket中的目录,目录命名有如下规则:
1. 可用数字、中英文和可见字符的组合,长度最多为60。
2. 用 / 分割路径,可快速创建子目录。
3. 不允许连续 / ;不允许以 / 开头;不允许以..作为文件夹名称
*/
public void setOutputCOSKeyPrefix(String OutputCOSKeyPrefix) {
this.OutputCOSKeyPrefix = OutputCOSKeyPrefix;
}
public CreateCommandRequest() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public CreateCommandRequest(CreateCommandRequest source) {
if (source.CommandName != null) {
this.CommandName = new String(source.CommandName);
}
if (source.Content != null) {
this.Content = new String(source.Content);
}
if (source.Description != null) {
this.Description = new String(source.Description);
}
if (source.CommandType != null) {
this.CommandType = new String(source.CommandType);
}
if (source.WorkingDirectory != null) {
this.WorkingDirectory = new String(source.WorkingDirectory);
}
if (source.Timeout != null) {
this.Timeout = new Long(source.Timeout);
}
if (source.EnableParameter != null) {
this.EnableParameter = new Boolean(source.EnableParameter);
}
if (source.DefaultParameters != null) {
this.DefaultParameters = new String(source.DefaultParameters);
}
if (source.Tags != null) {
this.Tags = new Tag[source.Tags.length];
for (int i = 0; i < source.Tags.length; i++) {
this.Tags[i] = new Tag(source.Tags[i]);
}
}
if (source.Username != null) {
this.Username = new String(source.Username);
}
if (source.OutputCOSBucketUrl != null) {
this.OutputCOSBucketUrl = new String(source.OutputCOSBucketUrl);
}
if (source.OutputCOSKeyPrefix != null) {
this.OutputCOSKeyPrefix = new String(source.OutputCOSKeyPrefix);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "CommandName", this.CommandName);
this.setParamSimple(map, prefix + "Content", this.Content);
this.setParamSimple(map, prefix + "Description", this.Description);
this.setParamSimple(map, prefix + "CommandType", this.CommandType);
this.setParamSimple(map, prefix + "WorkingDirectory", this.WorkingDirectory);
this.setParamSimple(map, prefix + "Timeout", this.Timeout);
this.setParamSimple(map, prefix + "EnableParameter", this.EnableParameter);
this.setParamSimple(map, prefix + "DefaultParameters", this.DefaultParameters);
this.setParamArrayObj(map, prefix + "Tags.", this.Tags);
this.setParamSimple(map, prefix + "Username", this.Username);
this.setParamSimple(map, prefix + "OutputCOSBucketUrl", this.OutputCOSBucketUrl);
this.setParamSimple(map, prefix + "OutputCOSKeyPrefix", this.OutputCOSKeyPrefix);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy