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"
]
}
}
}
}