DATASOURCE::MONGODB::InstanceClasses类型用于查询指定可用区内支持创建的MongoDB实例规格。

语法

{
  "Type": "DATASOURCE::MONGODB::InstanceClasses",
  "Properties": {
    "ResourceGroupId": String,
    "ZoneId": String,
    "InstanceChargeType": String,
    "DbType": String
  }
}

属性

属性名称 类型 必须 允许更新 描述 约束
ResourceGroupId String 资源组ID。
ZoneId String 可用区ID。 您可以调用DescribeRegions查询实例支持的可用区。
InstanceChargeType String 付费类型。 取值:
  • PrePaid:包年包月。
  • PostPaid(默认值):按量付费。
DbType String 实例的数据库类型。 取值:
  • normal:副本集实例。
  • sharding:分片集群实例。

返回数据(Fn::GetAtt)

  • InstanceClassIds:实例的规格ID列表。
  • InstanceClasses:实例的规格详情列表。
属性名称 类型 描述 约束
InstanceClassIds List 实例的规格ID列表。
InstanceClasses List 实例的规格详情列表。
NodeType String 实例的节点数。
NetworkType String 实例的网络类型。 取值:
  • Classic:经典网络。
  • VPC:VPC网络。
Engine String 实例的存储引擎。
Version String 实例的版本。
ZoneId String 可用区ID。
DbType String 实例的数据库类型。 取值:
  • normal:副本集实例。
  • sharding:分片集群实例。

示例

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