DATASOURCE::VPC::HaVips类型用于查询指定地域内的高可用虚拟IP地址。
语法
{
"Type": "DATASOURCE::VPC::HaVips",
"Properties": {
"HaVipId": String,
"RefreshOptions": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
HaVipId | String | 否 | 是 | HaVip实例ID。 | 无 |
RefreshOptions | String | 否 | 是 | 当资源栈更新时,数据源资源的刷新策略。 | 有效值:
|
返回数据(Fn::GetAtt)
HaVipIds:HaVip实例的ID列表信息。
HaVips:HaVip实例的详细信息。
属性名称 | 类型 | 描述 | 约束 |
HaVipIds | List | HaVip实例的ID列表信息。 | 无 |
HaVips | List | HaVip实例的详细信息。 | 无 |
Status | String | HaVip实例的状态。 | 取值:
|
VpcId | String | HaVip实例所属的专有网络ID。 | 无 |
Description | String | HaVip实例的描述。 | 无 |
AssociatedEipAddresses | String | 与HaVip绑定的EIP地址。 | 无 |
RegionId | String | HaVip实例所属的地域ID。 | 无 |
MasterInstanceId | String | 与HaVip绑定的主实例ID。 | 无 |
HaVipName | String | HaVip实例的名称。 | 无 |
VSwitchId | String | HaVip实例所属的交换机ID。 | 无 |
HaVipId | String | HaVip实例ID。 | 无 |
AssociatedInstanceType | String | 与HaVip绑定的实例类型。 | 取值:
|
IpAddress | String | HaVip的私网IP地址。 | 无 |
CreateTime | String | HaVip的创建时间。 | 格式为YYYY-MM-DDThh:mm:ssZ。 |
AssociatedInstances | String | 与HaVip绑定的实例ID。 | 无 |
示例
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"HaVipId": {
"Type": "String",
"Description": "The ID of the resource"
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::VPC::HaVips",
"Properties": {
"HaVipId": {
"Ref": "HaVipId"
}
}
}
},
"Outputs": {
"HaVips": {
"Description": "The list of ha vips.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"HaVips"
]
}
},
"HaVipIds": {
"Description": "The list of ha vip IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"HaVipIds"
]
}
}
}
}
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
HaVipId:
Type: String
Description: The ID of the resource
Resources:
ExtensionDataSource:
Type: DATASOURCE::VPC::HaVips
Properties:
HaVipId:
Ref: HaVipId
Outputs:
HaVips:
Description: The list of ha vips.
Value:
Fn::GetAtt:
- ExtensionDataSource
- HaVips
HaVipIds:
Description: The list of ha vip IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- HaVipIds