DATASOURCE::SAE::Namespaces类型用于查询命名空间列表。

属性

返回数据(Fn::GetAtt)

  • Namespaces:命名空间详情列表。
  • NamespaceIds:命名空间ID列表。
属性名称 类型 描述 约束
NamespaceIds List 命名空间ID列表。
Namespaces List 命名空间详情列表。
NamespaceId String 命名空间ID。
NamespaceName String 命名空间名称。
NamespaceDescription String 命名空间描述。
TenantId String 租户ID。
AddressServerHost String 主机服务地址。
RegionId String 地域ID。

示例

  • JSON格式

    {
      "ROSTemplateFormatVersion": "2015-09-01",
      "Resources": {
        "Namespaces": {
          "Type": "DATASOURCE::SAE::Namespaces",
          "Properties": {}
        }
      },
      "Outputs": {
        "Namespaces": {
          "Description": "The list of namespaces.",
          "Value": {
            "Fn::GetAtt": [
              "Namespaces",
              "Namespaces"
            ]
          }
        },
        "NamespaceIds": {
          "Description": "The list of namespace names.",
          "Value": {
            "Fn::GetAtt": [
              "Namespaces",
              "NamespaceIds"
            ]
          }
        }
      }
    }
  • YAML格式

    ROSTemplateFormatVersion: '2015-09-01'
    Resources:
      Namespaces:
        Type: DATASOURCE::SAE::Namespaces
        Properties: {}
    Outputs:
      Namespaces:
        Description: The list of namespaces.
        Value:
          Fn::GetAtt:
            - Namespaces
            - Namespaces
      NamespaceIds:
        Description: The list of namespace names.
        Value:
          Fn::GetAtt:
            - Namespaces
            - NamespaceIds