日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

DATASOURCE::ClickHouse::DBClusters

DATASOURCE::ClickHouse::DBClusters類型用于查詢ClickHouse集群的信息。

語法

{
  "Type": "DATASOURCE::ClickHouse::DBClusters",
  "Properties": {
    "DBClusterName": String,
    "DBClusterId": String,
    "RefreshOptions": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

DBClusterName

String

集群描述信息。

DBClusterId

String

集群ID。

RefreshOptions

String

當資源棧更新時,數據源資源的刷新策略。

有效值:

  • Never(默認值):更新堆棧時,從不刷新數據源資源。

  • Always:更新堆棧時,始終刷新數據源資源。

返回值

Fn::GetAtt

  • DBClusterIds:集群ID列表。

  • DBClusters:集群詳情列表。

屬性名稱

類型

描述

約束

DBClusterIds

List

集群ID列表。

DBClusters

List

集群詳情列表

Category

String

副本配置。

DBClusterName

String

集群描述信息。

LockMode

String

集群的鎖定模式。

ConnectionString

String

VPC連接地址。

DbNodeCount

String

節點數量。

DbClusterNetworkType

String

網絡類型。

IsExpired

String

集群是否過期。

LockReason

String

鎖定原因。

Status

String

集群狀態。

VpcId

String

VPC ID。

AliUid

String

阿里云賬號ID。

DBClusterId

String

集群ID。

Bid

String

站點ID。

RegionId

String

地域ID。

VSwitchId

String

交換機ID。

DbNodeClass

String

集群規格。

DbNodeStorage

String

單節點存儲空間。

CommodityCode

String

售賣商品Code。

ZoneId

String

可用區ID。

VpcCloudInstanceId

String

VPC資源ID。

StorageType

String

存儲類型。

Port

String

HTTP端口號。

ExpireTime

String

集群的到期時間。

PaymentType

String

付費類型。

ScaleOutStatus

String

數據搬遷狀態。

CreateTime

String

集群的創建時間。

示例

YAML格式

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  DBClusterId:
    Description: Instance ID.
    Type: String
  DBClusterName:
    Description: The cluster description information.
    Type: String
Resources:
  ExtensionDataSource:
    Properties:
      DBClusterId:
        Ref: DBClusterId
      DBClusterName:
        Ref: DBClusterName
    Type: DATASOURCE::ClickHouse::DBClusters
Outputs:
  DBClusterIds:
    Description: The list of db cluster IDs.
    Value:
      Fn::GetAtt:
      - ExtensionDataSource
      - DBClusterIds
  DBClusters:
    Description: The list of db clusters.
    Value:
      Fn::GetAtt:
      - ExtensionDataSource
      - DBClusters

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "DBClusterName": {
      "Type": "String",
      "Description": "The cluster description information."
    },
    "DBClusterId": {
      "Type": "String",
      "Description": "Instance ID."
    }
  },
  "Resources": {
    "ExtensionDataSource": {
      "Type": "DATASOURCE::ClickHouse::DBClusters",
      "Properties": {
        "DBClusterName": {
          "Ref": "DBClusterName"
        },
        "DBClusterId": {
          "Ref": "DBClusterId"
        }
      }
    }
  },
  "Outputs": {
    "DBClusterIds": {
      "Description": "The list of db cluster IDs.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "DBClusterIds"
        ]
      }
    },
    "DBClusters": {
      "Description": "The list of db clusters.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "DBClusters"
        ]
      }
    }
  }
}