释放生成式AI的无限潜能

100 万免费令牌

降价88%

开始激活

DATASOURCE::EBS::DedicatedBlockStorageCluster

更新时间:2025-02-28 02:44

DATASOURCE::EBS::DedicatedBlockStorageCluster类型用于查询单个专属块存储集群详情。

语法

{
  "Type": "DATASOURCE::EBS::DedicatedBlockStorageCluster",
  "Properties": {
    "DedicatedBlockStorageClusterId": String,
    "RefreshOptions": String
  }
}

属性

属性名称

类型

必须

允许更新

描述

约束

属性名称

类型

必须

允许更新

描述

约束

DedicatedBlockStorageClusterId

String

专属块存储集群ID。

RefreshOptions

String

当资源栈更新时,数据源资源的刷新策略。

取值:

  • Never(默认值):更新堆栈时,从不刷新数据源资源。

  • Always:更新堆栈时,始终刷新数据源资源。

返回值

Fn::GetAtt

  • Category:专属块存储集群可创建的云盘类型。

  • Description:专属块存储集群的描述信息。

  • ZoneId:专属块存储集群所属的可用区 ID。

  • ResourceGroupId:专属集群所在的企业资源组 ID。

  • DedicatedBlockStorageClusterId:专属块存储集群 ID。

  • AvailableCapacity:专属块存储集群的可用容量

  • PerformanceLevel:云盘性能等级

  • CreateTime:专属块存储集群创建时间

  • UsedCapacity:当前集群的已使用(已创盘)容量,单位为 GiB。

  • SupportedCategory:已支持的云盘类型。

  • Type:专属块存储集群性能类型。

  • ExpiredTime:专属块存储集群到期时间,格式为 Unix 时间戳,单位为秒。

  • DedicatedBlockStorageClusterName:专属块存储集群名称。

  • DeliveryCapacity:待交付容量,单位为 GiB。

  • TotalCapacity:专属块存储集群的总容量,单位为 GiB。

  • Tags:专属集群的标签。

示例

YAML
JSON
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  DedicatedBlockStorageClusterId:
    Type: String
    Description:
      en: The ID of the dedicated block storage cluster.
    Required: true
Resources:
  ExtensionDataSource:
    Type: DATASOURCE::EBS::DedicatedBlockStorageCluster
    Properties:
      DedicatedBlockStorageClusterId:
        Ref: DedicatedBlockStorageClusterId
Outputs:
  Category:
    Description: The category of disks that can be created in the dedicated block storage cluster.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - Category
  Description:
    Description: The description of the dedicated block storage cluster.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - Description
  ZoneId:
    Description: The zone ID of the dedicated block storage cluster.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - ZoneId
  ResourceGroupId:
    Description: The ID of the resource group.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - ResourceGroupId
  DedicatedBlockStorageClusterId:
    Description: The ID of the dedicated block storage cluster.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - DedicatedBlockStorageClusterId
  AvailableCapacity:
    Description: 'The available capacity of the dedicated block storage cluster. Unit: GiB.'
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - AvailableCapacity
  PerformanceLevel:
    Description: 'The performance level of disks. '
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - PerformanceLevel
  CreateTime:
    Description: 'The time when the dedicated block storage cluster was created. The value is a UNIX timestamp. Unit: seconds.'
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - CreateTime
  UsedCapacity:
    Description: The used (created disk) capacity of the current cluster, in GB.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - UsedCapacity
  SupportedCategory:
    Description: This parameter is not supported.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - SupportedCategory
  Type:
    Description: The dedicated block storage cluster performance type.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - Type
  ExpiredTime:
    Description: The expiration time of the dedicated block storage cluster, in the Unix timestamp format, in seconds.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - ExpiredTime
  DedicatedBlockStorageClusterName:
    Description: The name of the dedicated block storage cluster.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - DedicatedBlockStorageClusterName
  DeliveryCapacity:
    Description: 'The capacity to be delivered for the dedicated block storage cluster. Unit: GiB.'
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - DeliveryCapacity
  TotalCapacity:
    Description: 'The total capacity of the dedicated block storage cluster. Unit: GiB.'
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - TotalCapacity
  Tags:
    Description: The tags of the dedicated block storage cluster.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - Tags
{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "DedicatedBlockStorageClusterId": {
      "Type": "String",
      "Description": {
        "en": "The ID of the dedicated block storage cluster."
      },
      "Required": true
    }
  },
  "Resources": {
    "ExtensionDataSource": {
      "Type": "DATASOURCE::EBS::DedicatedBlockStorageCluster",
      "Properties": {
        "DedicatedBlockStorageClusterId": {
          "Ref": "DedicatedBlockStorageClusterId"
        }
      }
    }
  },
  "Outputs": {
    "Category": {
      "Description": "The category of disks that can be created in the dedicated block storage cluster.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "Category"
        ]
      }
    },
    "Description": {
      "Description": "The description of the dedicated block storage cluster.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "Description"
        ]
      }
    },
    "ZoneId": {
      "Description": "The zone ID of the dedicated block storage cluster.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "ZoneId"
        ]
      }
    },
    "ResourceGroupId": {
      "Description": "The ID of the resource group.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "ResourceGroupId"
        ]
      }
    },
    "DedicatedBlockStorageClusterId": {
      "Description": "The ID of the dedicated block storage cluster.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "DedicatedBlockStorageClusterId"
        ]
      }
    },
    "AvailableCapacity": {
      "Description": "The available capacity of the dedicated block storage cluster. Unit: GiB.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "AvailableCapacity"
        ]
      }
    },
    "PerformanceLevel": {
      "Description": "The performance level of disks. ",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "PerformanceLevel"
        ]
      }
    },
    "CreateTime": {
      "Description": "The time when the dedicated block storage cluster was created. The value is a UNIX timestamp. Unit: seconds.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "CreateTime"
        ]
      }
    },
    "UsedCapacity": {
      "Description": "The used (created disk) capacity of the current cluster, in GB.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "UsedCapacity"
        ]
      }
    },
    "SupportedCategory": {
      "Description": "This parameter is not supported.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "SupportedCategory"
        ]
      }
    },
    "Type": {
      "Description": "The dedicated block storage cluster performance type.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "Type"
        ]
      }
    },
    "ExpiredTime": {
      "Description": "The expiration time of the dedicated block storage cluster, in the Unix timestamp format, in seconds.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "ExpiredTime"
        ]
      }
    },
    "DedicatedBlockStorageClusterName": {
      "Description": "The name of the dedicated block storage cluster.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "DedicatedBlockStorageClusterName"
        ]
      }
    },
    "DeliveryCapacity": {
      "Description": "The capacity to be delivered for the dedicated block storage cluster. Unit: GiB.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "DeliveryCapacity"
        ]
      }
    },
    "TotalCapacity": {
      "Description": "The total capacity of the dedicated block storage cluster. Unit: GiB.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "TotalCapacity"
        ]
      }
    },
    "Tags": {
      "Description": "The tags of the dedicated block storage cluster.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "Tags"
        ]
      }
    }
  }
}
                        
  • 本页导读 (1)
  • 语法
  • 属性
  • 返回值
  • 示例
文档反馈
phone 联系我们

立即和Alibaba Cloud在线服务人员进行交谈,获取您想了解的产品信息以及最新折扣。

alicare alicarealicarealicare