DATASOURCE::GraphDatabase::DbInstances类型用于查询数据库实例信息。
语法
{
"Type": "DATASOURCE::GraphDatabase::DbInstances",
"Properties": {
"ResourceGroupId": String,
"DbInstanceDescription": String,
"DbInstanceId": String,
"RefreshOptions": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
ResourceGroupId | String | 否 | 是 | 资源组ID。 | 无 |
DbInstanceDescription | String | 否 | 是 | 数据库描述信息。 | 无 |
DbInstanceId | String | 否 | 是 | 数据库ID。 | 无 |
RefreshOptions | String | 否 | 是 | 当资源栈更新时,数据源资源的刷新策略。 | 有效值:
|
返回值
Fn::GetAtt
DbInstances:数据库详情列表。
DbInstanceIds:数据库ID列表。
属性名称 | 类型 | 描述 | 约束 |
DbInstanceIds | List | 数据库ID列表。 | 无 |
DbInstances | List | 数据库详情列表。 | 无 |
DbInstanceDescription | String | 描述信息。 | 无 |
LockMode | String | 实例锁定状态。 | 无 |
DbInstanceCategory | String | 数据库实例系列。 | 无 |
DbVersion | String | 数据库版本。 | 无 |
DbInstanceId | String | 实例ID。 | 无 |
LockReason | String | 资源被锁定的原因。 | 无 |
Status | String | 实例状态。 | 无 |
VpcId | String | 专有网络ID。 | 无 |
Tags | List | 自定义标签。 | 无 |
RegionId | String | 地域信息。 | 无 |
ResourceGroupId | String | 资源组ID。 | 无 |
VSwitchId | String | 交换机ID。 | 无 |
DbNodeClass | String | 数据库节点类型。 | 无 |
Expired | String | 实例过期时间。 | 无 |
DbNodeCount | String | 节点数量。 | 无 |
ZoneId | String | 实例所属的可用区ID。 | 无 |
DbInstanceType | String | 数据库实例类型。 | 无 |
DbNodeStorage | String | 实例的存储空间。 | 无 |
ExpireTime | String | 数据库过期时间。 | 无 |
PaymentType | String | 付费模式。 | 无 |
ReadOnlyDbInstanceIds | List | 只读实例ID列表。 | 无 |
CreateTime | String | 实例的创建时间。 | 无 |
示例
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
DbInstanceId:
Type: String
Description: The first ID of the resource.
Resources:
ExtensionDataSource:
Type: DATASOURCE::GraphDatabase::DbInstances
Properties:
DbInstanceId:
Ref: DbInstanceId
Outputs:
DbInstances:
Description: The list of db instances.
Value:
Fn::GetAtt:
- ExtensionDataSource
- DbInstances
DbInstanceIds:
Description: The list of db instance IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- DbInstanceIds
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"DbInstanceId": {
"Type": "String",
"Description": "The first ID of the resource."
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::GraphDatabase::DbInstances",
"Properties": {
"DbInstanceId": {
"Ref": "DbInstanceId"
}
}
}
},
"Outputs": {
"DbInstances": {
"Description": "The list of db instances.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"DbInstances"
]
}
},
"DbInstanceIds": {
"Description": "The list of db instance IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"DbInstanceIds"
]
}
}
}
}