DATASOURCE::SAE::Namespaces類型用於查詢命名空間列表。
文法
{
"Type": "DATASOURCE::SAE::Namespaces",
"Properties": {
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
返回資料(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。 | 無 |
樣本
{
"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"
]
}
}
}
}
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