DATASOURCE::EDAS::Clusters類型用於擷取叢集列表。
文法
{
"Type": "DATASOURCE::EDAS::Clusters",
"Properties": {
"LogicalRegionId": String,
"ResourceGroupId": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
LogicalRegionId | String | 否 | 是 | 命名空間的ID。 | 擷取命名空間:
|
ResourceGroupId | String | 否 | 是 | 資源群組ID。 | 擷取資源群組ID:
|
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
返回資料(Fn::GetAtt)
ClusterIds:EDAS中的叢集ID列表。
Clusters:EDAS中的叢集詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
ClusterIds | List | EDAS中的叢集ID列表。 | 無 |
Clusters | List | EDAS中的叢集詳情列表。 | 無 |
ClusterId | String | EDAS中的叢集ID。 | 無 |
ClusterName | String | 叢集名稱。 | 無 |
OversoldFactor | Number | Docker叢集支援的CPU超賣比例。 | 無 |
NodeNum | Number | 執行個體數量。 | 無 |
ResourceGroupId | String | 資源群組ID。 | 無 |
ClusterType | Number | 叢集類型。 | 取值:
|
CsClusterId | String | Container ServiceKubernetes版中建立Kubernetes版叢集的ID。 | 無 |
VpcId | String | VPC ID。 | 無 |
RegionId | String | 地區ID。 | 無 |
IaasProvider | String | 叢集供應商。 | 無 |
Cpu | String | 總CPU核心數。 | 無 |
CpuUsed | Number | 已使用CPU核心數。 | 無 |
Mem | Number | 總記憶體。 | 單位:MB。 |
MemUsed | Number | 已使用記憶體。 | 單位:MB。 |
CreateTime | Number | 建立叢集的時間戳記。 | 單位:毫秒。 |
UpdateTime | Number | 最終變更集群的時間戳記。 | 單位:毫秒。 |
樣本
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
LogicalRegionId:
Type: String
Description: The ID of the namespace.
Resources:
Clusters:
Type: DATASOURCE::EDAS::Clusters
Properties:
LogicalRegionId:
Ref: LogicalRegionId
Outputs:
Clusters:
Description: The list of clusters.
Value:
Fn::GetAtt:
- Clusters
- Clusters
ClusterIds:
Description: The list of cluster IDs.
Value:
Fn::GetAtt:
- Clusters
- ClusterIds
JSON格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"LogicalRegionId": {
"Type": "String",
"Description": "The ID of the namespace."
}
},
"Resources": {
"Clusters": {
"Type": "DATASOURCE::EDAS::Clusters",
"Properties": {
"LogicalRegionId": {
"Ref": "LogicalRegionId"
}
}
}
},
"Outputs": {
"Clusters": {
"Description": "The list of clusters.",
"Value": {
"Fn::GetAtt": [
"Clusters",
"Clusters"
]
}
},
"ClusterIds": {
"Description": "The list of cluster IDs.",
"Value": {
"Fn::GetAtt": [
"Clusters",
"ClusterIds"
]
}
}
}
}