DATASOURCE::MONGODB::InstanceClasses类型用于查询指定可用区内支持创建的MongoDB实例规格。
语法
{
"Type": "DATASOURCE::MONGODB::InstanceClasses",
"Properties": {
"ResourceGroupId": String,
"ZoneId": String,
"InstanceChargeType": String,
"DbType": String,
"RefreshOptions": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
ResourceGroupId | String | 否 | 是 | 资源组ID。 | 无 |
ZoneId | String | 否 | 是 | 可用区ID。 | 您可以调用DescribeRegions查询实例支持的可用区。 |
InstanceChargeType | String | 否 | 是 | 付费类型。 | 取值:
|
DbType | String | 否 | 是 | 实例的数据库类型。 | 取值:
|
RefreshOptions | String | 否 | 是 | 当资源栈更新时,数据源资源的刷新策略。 | 有效值:
|
返回数据(Fn::GetAtt)
InstanceClassIds:实例的规格ID列表。
InstanceClasses:实例的规格详情列表。
属性名称 | 类型 | 描述 | 约束 |
InstanceClassIds | List | 实例的规格ID列表。 | 无 |
InstanceClasses | List | 实例的规格详情列表。 | 无 |
NodeType | String | 实例的节点数。 | 无 |
NetworkType | String | 实例的网络类型。 | 取值:
|
Engine | String | 实例的存储引擎。 | 无 |
Version | String | 实例的版本。 | 无 |
ZoneId | String | 可用区ID。 | 无 |
DbType | String | 实例的数据库类型。 | 取值:
|
示例
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"ZoneId": {
"Type": "String",
"Description": "The zone ID of the instance. You can call the DescribeRegions operation to query the most recent zone list. ",
"AssociationProperty": "ALIYUN::ECS::Instance:ZoneId"
},
"DbType": {
"Type": "String",
"Description": "The database engine type of the instance.\nnormal: replica set instance\nsharding: sharded cluster instance",
"Default": "normal"
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::MONGODB::InstanceClasses",
"Properties": {
"ZoneId": {
"Ref": "ZoneId"
},
"DbType": {
"Ref": "DbType"
}
}
}
},
"Outputs": {
"InstanceClasses": {
"Description": "The list of The instance classes.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"InstanceClasses"
]
}
},
"InstanceClassIds": {
"Description": "The list of The instance class Ids.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"InstanceClassIds"
]
}
}
}
}