DATASOURCE::CMS::Namespaces类型用于查询Namespace的基本信息。
语法
{
"Type": "DATASOURCE::CMS::Namespaces",
"Properties": {
"Namespace": String,
"RefreshOptions": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
Namespace | String | 否 | 是 | 指标仓库名称。 | 无 |
RefreshOptions | String | 否 | 是 | 当资源栈更新时,数据源资源的刷新策略。 | 取值:
|
返回值
Fn::GetAtt
Namespaces:指标仓库详情列表。
属性名称 | 类型 | 描述 | 约束 |
Namespaces | List | 指标仓库详情列表。 | 无 |
CreateTime | String | 创建命名空间时生成的时间。 | 单位:毫秒。 |
Namespace | String | 指标仓库名称。 | 无 |
Specification | String | 数据存储时长。 | 无 |
Description | String | 指标仓库描述。 | 无 |
ModifyTime | String | 上次修改命名空间时生成的时间。 | 单位:毫秒。 |
示例
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
Namespace:
Description: Indicator warehouse name.
Type: String
Resources:
ExtensionDataSource:
Properties:
Namespace:
Ref: Namespace
Type: DATASOURCE::CMS::Namespaces
Outputs:
Namespaces:
Description: The list of namespaces.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Namespaces
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"Namespace": {
"Type": "String",
"Description": "Indicator warehouse name."
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::CMS::Namespaces",
"Properties": {
"Namespace": {
"Ref": "Namespace"
}
}
}
},
"Outputs": {
"Namespaces": {
"Description": "The list of namespaces.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Namespaces"
]
}
}
}
}