DATASOURCE::ECS::Commands類型用于查詢您手動創建的所有可用的命令。
語法
{
"Type": "DATASOURCE::ECS::Commands",
"Properties": {
"Type": String,
"Description": String,
"CommandId": String,
"CommandName": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Type | String | 否 | 是 | 命令類型。 | 取值:
|
Description | String | 否 | 是 | 命令描述。 | 無 |
CommandId | String | 否 | 是 | 命令ID。 | 無 |
CommandName | String | 否 | 是 | 命令名稱。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,數據源資源的刷新策略。 | 取值:
|
返回值
Fn::GetAtt
CommandIds:命令ID列表。
Commands:命令數據集列表。
屬性名稱 | 類型 | 描述 | 約束 |
CommandIds | List | 命令ID列表。 | 無 |
Commands | List | 命令數據集列表。 | 無 |
ParameterNames | List | 通過創建命令時的CommandContent解析出的自定義參數名列表。 | 例如:
|
Description | String | 命令描述。 | 無 |
Tags | List | 命令的標簽信息。 | 例如:
|
WorkingDir | String | 執行路徑。 | 無 |
CommandName | String | 命令名稱。 | 無 |
CreateTime | String | 命令創建時間。 | 無 |
CommandContent | String | 命令內容。 | 以Base64編碼后傳輸。 |
EnableParameter | Boolean | 該命令是否啟用自定義參數。 | 取值:
|
Timeout | String | 超時時間。 | 無 |
Type | String | 命令類型。 | 無 |
CommandId | String | 命令ID。 | 無 |
示例
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
ExtensionDataSource:
Type: DATASOURCE::ECS::Commands
Properties:
Type: RunShellScript
Outputs:
CommandIds:
Description: The list of command IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- CommandIds
Commands:
Description: The list of commands.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Commands
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::ECS::Commands",
"Properties": {
"Type": "RunShellScript"
}
}
},
"Outputs": {
"CommandIds": {
"Description": "The list of command IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"CommandIds"
]
}
},
"Commands": {
"Description": "The list of commands.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Commands"
]
}
}
}
}