ALIYUN::POLARDB::DBNodes類型用於增加PolarDB叢集節點。
文法
{
"Type": "ALIYUN::POLARDB::DBNodes",
"Properties": {
"DBClusterId": String,
"Amount": Integer,
"ImciSwitch": String,
"ResourceGroupId": String,
"DBNodeType": String,
"EndpointBindList": List,
"PlannedEndTime": String,
"PlannedStartTime": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
DBClusterId | String | 是 | 否 | 叢集ID。 | 無。 |
Amount | Integer | 是 | 是 | 添加到叢集的節點數。 | 無。 |
ImciSwitch | String | 否 | 否 | 是否開啟列存索引。 | 取值:
|
ResourceGroupId | String | 否 | 否 | 資源群組ID。 | 無 |
DBNodeType | String | 否 | 否 | 節點類型。 | 取值:
|
EndpointBindList | List | 否 | 否 | 指定新增節點需要加入的叢集串連地址的地址 ID。 | 說明 您可以通過調用DescribeDBClusterEndpoints介面查看叢集串連地址的詳情,包括串連地址 ID。 支援填入預設叢集串連地址和自訂叢集串連地址的地址 ID。 若該參數留空,預設將新增節點加入所有開啟了新節點自動加入功能(即 |
PlannedEndTime | String | 否 | 否 | 開始執行目標定時任務的最晚時間。 | 格式為 說明 最晚時間需晚於開始時間的 30 分鐘或以上。 若設定了 |
PlannedStartTime | String | 否 | 否 | 開始執行定時(即在目標時間段內執行)新增節點任務的最早時間。 | 格式為 說明 開始時間的取值範圍為未來 24 小時內的任意時間點。例如目前時間為 若該參數留空,預設立即執行新增節點任務。 |
傳回值
Fn::GetAtt
DBNodeIds:添加到叢集的節點ID。
OrderIds:訂單ID。
樣本
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
DBClusterId:
Type: String
Description: The ID of the ApsaraDB for POLARDB cluster to be added nodes to.
Resources:
DBNodes:
Type: ALIYUN::POLARDB::DBNodes
Properties:
DBClusterId:
Ref: DBClusterId
Amount: 1
Outputs:
DBNodeIds:
Description: The ID list of added cluster nodes.
Value:
Fn::GetAtt:
- DBNodes
- DBNodeIds
OrderIds:
Description: The order ID list of added cluster nodes.
Value:
Fn::GetAtt:
- DBNodes
- OrderIds
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"DBClusterId": {
"Type": "String",
"Description": "The ID of the ApsaraDB for POLARDB cluster to be added nodes to."
}
},
"Resources": {
"DBNodes": {
"Type": "ALIYUN::POLARDB::DBNodes",
"Properties": {
"DBClusterId": {
"Ref": "DBClusterId"
},
"Amount": 1
}
}
},
"Outputs": {
"DBNodeIds": {
"Description": "The ID list of added cluster nodes.",
"Value": {
"Fn::GetAtt": [
"DBNodes",
"DBNodeIds"
]
}
},
"OrderIds": {
"Description": "The order ID list of added cluster nodes.",
"Value": {
"Fn::GetAtt": [
"DBNodes",
"OrderIds"
]
}
}
}
}