ALIYUN::ECS::Command
ALIYUN::ECS::Command類型用于新建云助手命令。
語(yǔ)法
{
"Type": "ALIYUN::ECS::Command",
"Properties": {
"Name": String,
"WorkingDir": String,
"CommandContent": String,
"Timeout": Integer,
"Type": String,
"Description": String,
"EnableParameter": Boolean,
"Tags": List,
"ResourceGroupId": String,
"ContentEncoding": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Name | String | 否 | 是 | 命令名稱。 | 長(zhǎng)度為1~128個(gè)字符。支持全字符集。 |
WorkingDir | String | 否 | 是 | 您創(chuàng)建的命令在ECS實(shí)例中運(yùn)行的目錄。 | 默認(rèn)值:
說(shuō)明 設(shè)置為其他目錄時(shí),請(qǐng)確保實(shí)例中存在該目錄。 |
CommandContent | String | 否 | 否 | 命令Base64編碼后的內(nèi)容。 | 命令Base64編碼后的內(nèi)容。
|
Timeout | Integer | 否 | 是 | 您創(chuàng)建的命令在ECS實(shí)例中執(zhí)行時(shí)的超時(shí)時(shí)間。 | 當(dāng)因?yàn)槟撤N原因無(wú)法運(yùn)行您創(chuàng)建的命令時(shí),會(huì)出現(xiàn)超時(shí)現(xiàn)象;超時(shí)后,會(huì)強(qiáng)制終止命令進(jìn)程,即取消命令的PID。 默認(rèn)值:60。 單位:秒。 |
Type | String | 是 | 否 | 命令的類型。 | 取值:
|
Description | String | 否 | 是 | 命令描述。 | 長(zhǎng)度為1~512個(gè)字符。支持全字符集。 |
EnableParameter | Boolean | 否 | 否 | 創(chuàng)建的命令是否使用自定義參數(shù)。 | 取值
|
Tags | List | 否 | 否 | 實(shí)例的標(biāo)簽。最多支持添加20個(gè)標(biāo)簽。 | 更多信息,請(qǐng)參見(jiàn)Tags屬性。 |
ContentEncoding | String | 否 | 否 | 命令內(nèi)容(CommandContent)的編碼方式。 | 取值范圍:
說(shuō)明 錯(cuò)填該取值會(huì)當(dāng)作Base64處理。 |
ResourceGroupId | String | 否 | 是 | 命令所屬的資源組ID。 | 無(wú) |
Tags語(yǔ)法
"Tags": [
{
"Key": String,
"Value": String
}
]
Tags屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Key | String | 是 | 否 | 標(biāo)簽鍵。 | 長(zhǎng)度為1~128個(gè)字符,不能以 |
Value | String | 否 | 否 | 標(biāo)簽值。 | 長(zhǎng)度為0~128個(gè)字符,不能以 |
返回值
Fn::GetAtt
CommandId:命令I(lǐng)D。
如果您只需要執(zhí)行一次性命令,請(qǐng)參見(jiàn)ALIYUN::ECS::RunCommand。
示例
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
Command:
Type: ALIYUN::ECS::Command
Properties:
CommandContent:
Fn::Base64Encode: |
#!/bin/bash
echo "hello" >> /root/test.sh
Type: RunShellScript
Name:
Ref: ALIYUN::StackName
Outputs:
CommandId:
Description: The id of command created.
Value:
Fn::GetAtt:
- Command
- CommandId
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
},
"Resources": {
"Command": {
"Type": "ALIYUN::ECS::Command",
"Properties": {
"CommandContent": {
"Fn::Base64Encode": "#!/bin/bash\necho \"hello\" >> /root/test.sh\n"
},
"Type": "RunShellScript",
"Name": {
"Ref": "ALIYUN::StackName"
}
}
}
},
"Outputs": {
"CommandId": {
"Description": "The id of command created.",
"Value": {
"Fn::GetAtt": [
"Command",
"CommandId"
]
}
}
}
}