Todos os produtos
Search
Central de documentação

Resource Orchestration Service:DATASOURCE::EBS::DedicatedBlockStorageCluster

Última atualização: Jun 27, 2026

Consulta os detalhes de um cluster de armazenamento em bloco dedicado.

Sintaxe

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

Propriedades

Propriedade

Tipo

Obrigatório

Editável

Descrição

Restrição

DedicatedBlockStorageClusterId

String

Sim

Sim

ID do cluster de armazenamento em bloco dedicado.

Nenhuma.

RefreshOptions

String

Não

Sim

Política de atualização dos recursos da source de dados durante a atualização da pilha.

Valores válidos:

  • Never (padrão): não atualiza os recursos da source de dados durante a atualização da pilha.

  • Always: atualiza os recursos da source de dados durante a atualização da pilha.

Valores de retorno

Fn::GetAtt

  • Category: categoria de discos em nuvem que podem ser criados no cluster de armazenamento em bloco dedicado.

  • Description: descrição do cluster de armazenamento em bloco dedicado.

  • ZoneId: ID da zona do cluster de armazenamento em bloco dedicado.

  • ResourceGroupId: ID do grupo de recursos ao qual o cluster de armazenamento em bloco dedicado pertence.

  • DedicatedBlockStorageClusterId: ID do cluster de armazenamento em bloco dedicado.

  • AvailableCapacity: capacidade disponível do cluster de armazenamento em bloco dedicado.

  • PerformanceLevel: nível de desempenho (PL) do disco em nuvem.

  • CreateTime: hora de criação do cluster de armazenamento em bloco dedicado.

  • UsedCapacity: capacidade utilizada (criada) do cluster de armazenamento em bloco dedicado. Unidade: GiB.

  • SupportedCategory: categoria de disco em nuvem compatível.

  • Type: tipo do cluster de armazenamento em bloco dedicado.

  • ExpiredTime: data de expiração do cluster de armazenamento em bloco dedicado. Este valor é um timestamp UNIX que representa o número de milissegundos decorridos desde a época (epoch time) de 1º de janeiro de 1970, 00:00:00 UTC. Unidade: segundos.

  • DedicatedBlockStorageClusterName: nome do cluster de armazenamento em bloco dedicado.

  • DeliveryCapacity: capacidade a ser entregue para o cluster de armazenamento em bloco dedicado. Unidade: GiB.

  • TotalCapacity: capacidade total de armazenamento do cluster de armazenamento em bloco dedicado. Unidade: GiB.

  • Tags: tags adicionadas ao cluster de armazenamento em bloco dedicado.

Exemplos

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"
        ]
      }
    }
  }
}