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

DATASOURCE::ECS::DedicatedHostClusters

DATASOURCE::ECS::DedicatedHostClusters類型用于查詢專有宿主機集群的列表信息。

語法

{
  "Type": "DATASOURCE::ECS::DedicatedHostClusters",
  "Properties": {
    "DedicatedHostClusterName": String,
    "ResourceGroupId": String,
    "ZoneId": String,
    "RefreshOptions": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

DedicatedHostClusterName

String

專有宿主機集群名稱。

ResourceGroupId

String

專有宿主機集群的資源組ID。

ZoneId

String

專有宿主機集群所在的可用區ID。

RefreshOptions

String

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

取值:

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

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

返回值

Fn::GetAtt

  • DedicatedHostClusters:專有宿主機集群的詳情列表。

  • DedicatedHostClusterIds:專有宿主機集群的ID列表

屬性名稱

類型

描述

約束

DedicatedHostClusterIds

List

專有宿主機集群的ID列表。

DedicatedHostClusters

List

專有宿主機集群的詳情列表

Description

String

專有宿主機集群描述。

Tags

String

專有宿主機集群的標簽。

ZoneId

String

專有宿主機集群所在的可用區ID。

DedicatedHostClusterName

String

專有宿主機集群名稱。

ResourceGroupId

String

專有宿主機集群的資源組ID。

DedicatedHostClusterId

String

專有宿主機集群ID。

示例

YAML格式

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  ZoneId:
    Type: String
    AssociationProperty: ALIYUN::ECS::Instance::ZoneId
    Description: |-
      The zone ID of the dedicated host cluster. 
      You can call the DescribeZones operation to query the most recent zone list.
Resources:
  ExtensionDataSource:
    Type: DATASOURCE::ECS::DedicatedHostClusters
    Properties:
      ZoneId:
        Ref: ZoneId
Outputs:
  DedicatedHostClusters:
    Description: The list of dedicated host clusters.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - DedicatedHostClusters
  DedicatedHostClusterIds:
    Description: The list of dedicated host cluster IDs.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - DedicatedHostClusterIds

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "ZoneId": {
      "Type": "String",
      "AssociationProperty": "ALIYUN::ECS::Instance::ZoneId",
      "Description": "The zone ID of the dedicated host cluster. \nYou can call the DescribeZones operation to query the most recent zone list."
    }
  },
  "Resources": {
    "ExtensionDataSource": {
      "Type": "DATASOURCE::ECS::DedicatedHostClusters",
      "Properties": {
        "ZoneId": {
          "Ref": "ZoneId"
        }
      }
    }
  },
  "Outputs": {
    "DedicatedHostClusters": {
      "Description": "The list of dedicated host clusters.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "DedicatedHostClusters"
        ]
      }
    },
    "DedicatedHostClusterIds": {
      "Description": "The list of dedicated host cluster IDs.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "DedicatedHostClusterIds"
        ]
      }
    }
  }
}