DATASOURCE::POLARDB::ParameterGroups类型用于查看目标地域的参数模板列表。
语法
{
"Type": "DATASOURCE::POLARDB::ParameterGroups",
"Properties": {
"DbVersion": String,
"DbType": String,
"RefreshOptions": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
DbVersion | String | 否 | 是 | 数据库引擎类型。 | 当前仅支持MySQL类型。 |
DbType | String | 否 | 是 | 数据库引擎版本号。 | 取值:
|
RefreshOptions | String | 否 | 是 | 当资源栈更新时,数据源资源的刷新策略。 | 有效值:
|
返回值
Fn::GetAtt
ParameterGroups:参数模板列表。
ParameterGroupIds:参数模板ID列表。
属性名称 | 类型 | 描述 | 约束 |
ParameterGroupIds | List | 参数模板ID列表。 | 无 |
ParameterGroups | List | 参数模板列表。 | 无 |
DbType | String | 数据库引擎类型。 | 无 |
ParameterGroupId | String | 参数模板ID。 | 无 |
ParameterCounts | Number | 参数模板内的参数数量。 | 无 |
DbVersion | String | 数据库引擎版本号。 | 无 |
ParameterGroupDesc | String | 参数模板描述。 | 无 |
ParameterGroupType | String | 参数模板类型。 | 取值:
|
ForceRestart | String | 应用该参数模板是否需要重启集群。 | 取值:
|
ParameterGroupName | String | 参数模板名称。 | 无 |
CreateTime | String | 参数模板创建时间。 | 格式为 |
示例
ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
ExtensionDataSource:
Type: DATASOURCE::POLARDB::ParameterGroups
Properties:
DbVersion: '5.7'
DbType: MySQL
Outputs:
ParameterGroups:
Description: The list of parameter groups.
Value:
Fn::GetAtt:
- ExtensionDataSource
- ParameterGroups
ParameterGroupIds:
Description: The list of parameter group IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- ParameterGroupIds
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::POLARDB::ParameterGroups",
"Properties": {
"DbVersion": "5.7",
"DbType": "MySQL"
}
}
},
"Outputs": {
"ParameterGroups": {
"Description": "The list of parameter groups.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"ParameterGroups"
]
}
},
"ParameterGroupIds": {
"Description": "The list of parameter group IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"ParameterGroupIds"
]
}
}
}
}