全部產品
Search
文件中心

:DATASOURCE::CDDC::DedicatedHostGroups

更新時間:Sep 19, 2024

DATASOURCE::CDDC::DedicatedHostGroups類型用於查詢專屬叢集的資源資訊。

文法

{
  "Type": "DATASOURCE::CDDC::DedicatedHostGroups",
  "Properties": {
    "DedicatedHostGroupId": String,
    "Engine": String,
    "RefreshOptions": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

DedicatedHostGroupId

String

專屬叢集ID。

Engine

String

根據資料庫引擎類型過濾主機列表。

RefreshOptions

String

當資源棧更新時,資料來源資源的重新整理策略。

有效值:

  • Never(預設值):更新堆棧時,從不重新整理資料來源資源。

  • Always:更新堆棧時,始終重新整理資料來源資源。

傳回值

Fn::GetAtt

  • DedicatedHostGroups:專用主機群組詳情列表。

  • DedicatedHostGroupIds:專用主機群組ID列表。

屬性名稱

類型

描述

約束

DedicatedHostGroupIds

List

專用主機群組ID列表。

DedicatedHostGroups

List

專用主機群組詳情列表。

DiskUtility

String

磁碟利用率。

Category

String

專屬叢集類型。

Text

String

主機的描述。

VpcId

String

主機所屬專屬叢集的專用網路ID。

MemAllocationRatio

String

主機的記憶體超配比。

DeployType

String

執行個體部署方式。

DiskAllocatedAmount

String

磁碟分配容量。

HostNumber

String

主機的數量。

DiskUsedAmount

String

磁碟使用量。

DedicatedHostGroupDesc

String

主機所屬的專屬叢集名稱。

MemUsedAmount

String

記憶體使用量量。

Engine

String

主機的資料庫引擎類型。

BastionInstanceId

String

主機的主執行個體D。

InstanceNumber

String

主機的執行個體數量。

MemAllocateRation

String

分配的記憶體比例。

CreateTime

String

當前專屬叢集建立時間的時間戳記。

DiskAllocationRatio

String

主機空間超配比。

CpuAllocationRatio

String

主機CPU超配比。

AllocationPolicy

String

主機資源分派策略。

DedicatedHostCountGroupByHostType

String

當前專屬叢集裡的主機儲存類型。

MemAllocatedAmount

String

記憶體配置量。

DiskAllocateRation

String

磁碟分配率。

OpenPermission

String

主機的作業系統許可權。

MemUtility

String

記憶體利用率。

CpuAllocatedAmount

String

CPU申請量。

CpuAllocateRation

String

CPU申請比例。

DedicatedHostGroupId

String

專屬叢集ID。

ZoneIdList

String

當前專屬叢集主機所在的可用性區域列表。

HostReplacePolicy

String

主機故障處理策略。

樣本

YAML格式

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  DedicatedHostGroupId:
    Description: Dedicated Host Group ID.
    Type: String
Resources:
  ExtensionDataSource:
    Properties:
      DedicatedHostGroupId:
        Ref: DedicatedHostGroupId
    Type: DATASOURCE::CDDC::DedicatedHostGroups
Outputs:
  DedicatedHostGroupIds:
    Description: The list of dedicated host group IDs.
    Value:
      Fn::GetAtt:
      - ExtensionDataSource
      - DedicatedHostGroupIds
  DedicatedHostGroups:
    Description: The list of dedicated host groups.
    Value:
      Fn::GetAtt:
      - ExtensionDataSource
      - DedicatedHostGroups

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "DedicatedHostGroupId": {
      "Type": "String",
      "Description": "Dedicated Host Group ID."
    }
  },
  "Resources": {
    "ExtensionDataSource": {
      "Type": "DATASOURCE::CDDC::DedicatedHostGroups",
      "Properties": {
        "DedicatedHostGroupId": {
          "Ref": "DedicatedHostGroupId"
        }
      }
    }
  },
  "Outputs": {
    "DedicatedHostGroups": {
      "Description": "The list of dedicated host groups.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "DedicatedHostGroups"
        ]
      }
    },
    "DedicatedHostGroupIds": {
      "Description": "The list of dedicated host group IDs.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "DedicatedHostGroupIds"
        ]
      }
    }
  }
}