DATASOURCE::CR::Namespaces类型用于查询命名空间列表。
语法
{
"Type": "DATASOURCE::CR::Namespaces",
"Properties": {
"Status": String
}
}
属性
属性名称 |
类型 |
必须 |
允许更新 |
描述 |
约束 |
Status |
String |
否 |
是 |
命名空间状态。 |
取值:
|
返回数据(Fn::GetAtt)
- Namespaces:命名空间详情列表。
- NamespaceNames:命名空间名称列表。
属性名称 |
类型 |
描述 |
约束 |
Namespaces |
List |
命名空间详情列表。 |
无 |
NamespaceNames |
List |
命名空间名称列表。 |
无 |
Namespace |
String |
命名空间名称。 |
无 |
NamespaceStatus |
String |
命名空间状态。 |
取值:
|
AuthorizeType |
String |
请求用户对该命名空间的操作权限。 |
无 |
示例
-
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"Status": {
"Type": "String",
"Description": "The status of namespace."
}
},
"Resources": {
"Namespaces": {
"Type": "DATASOURCE::CR::Namespaces",
"Properties": {
"Status": {
"Ref": "Status"
}
}
}
},
"Outputs": {
"Namespaces": {
"Description": "The list of namespaces.",
"Value": {
"Fn::GetAtt": [
"Namespaces",
"Namespaces"
]
}
},
"NamespaceNames": {
"Description": "The list of namespace names.",
"Value": {
"Fn::GetAtt": [
"Namespaces",
"NamespaceNames"
]
}
}
}
}
-
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
Status:
Type: String
Description: The status of namespace.
Resources:
Namespaces:
Type: DATASOURCE::CR::Namespaces
Properties:
Status:
Ref: Status
Outputs:
Namespaces:
Description: The list of namespaces.
Value:
Fn::GetAtt:
- Namespaces
- Namespaces
NamespaceNames:
Description: The list of namespace names.
Value:
Fn::GetAtt:
- Namespaces
- NamespaceNames