ALIYUN::DRDS::DrdsInstance類型用于創建指定規格的PolarDB-X 1.0實例。
語法
{
"Type": "ALIYUN::DRDS::DrdsInstance",
"Properties": {
"VpcId": String,
"Description": String,
"InstanceSeries": String,
"Specification": String,
"PayType": String,
"ZoneId": String,
"PricingCycle": String,
"Duration": Integer,
"VswitchId": String,
"IsAutoRenew": Boolean,
"Type": String,
"Tags": List,
"MySQLVersion": String,
"ResourceGroupId": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
VpcId | String | 否 | 否 | 專有網絡ID。 | 創建VPC網絡類型的數據庫時必須指定專有網絡ID。 |
Description | String | 是 | 否 | 實例描述。 | 長度為2~128個字符。 |
InstanceSeries | String | 是 | 否 | 實例系列。更多信息,請參見《實例系列參數》。 | 取值:
|
Specification | String | 是 | 否 | 實例規格。例如:drds.sn1.4c8g.8C16G由實例系列(drds.sn1.4c8g)加上具體的實例規格(8C16G)組成。 | 關于實例規格取值的更多信息,請參見: |
ResourceGroupId | String | 否 | 是 | 資源組ID。 | 無 |
PayType | String | 是 | 否 | 付費類型。 | 取值:
更多信息,請參見《付費類型參數表》。 |
ZoneId | String | 是 | 否 | 可用區ID。 | 一個可用區屬于某個地域,例如:杭州可用區A(cn-hangzhou-a)屬于杭州地域(cn-hangzhou)。 |
PricingCycle | String | 否 | 否 | 訂購的周期單位。 | 取值:
付費類型是drdsPre時該參數生效。 |
Duration | Integer | 否 | 否 | 訂購的周期數量。 | 取值:
付費類型是drdsPre時該參數生效。 |
VswitchId | String | 否 | 否 | 交換機ID。 | 創建VPC網絡類型的數據庫時必須指定該參數。 |
IsAutoRenew | Boolean | 否 | 否 | 是否自動續費。 | 取值:
如果按月購買則自動續費一個月,如果按年購買則自動續費一年。付費類型是drdsPre時該參數生效。 |
Type | String | 是 | 否 | 實例類型。 | 取值:
|
MySQLVersion | String | 否 | 否 | MySQL協議版本。 | 取值:
說明 僅當創建主實例時有效,只讀實例默認與主實例相同。 |
Tags | List | 否 | 是 | 標簽。 | 最多支持添加20個標簽。 更多信息,請參見Tags屬性。 |
Tags語法
"Tags": [
{
"Key": String,
"Value": String
}
]
Tags屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Key | String | 是 | 否 | 標簽鍵。 | 長度為1~128個字符,不能以 |
Value | String | 否 | 否 | 標簽值。 | 長度為0~128個字符,不能以 |
返回值
Fn::GetAtt
OrderId:訂單ID。
DrdsInstanceId:實例ID。
IntranetEndpoint:私網連接地址。
InternetEndpoint:公網連接地址。
示例
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
VpcId:
Type: String
AssociationProperty: ALIYUN::ECS::VPC::VPCId
ZoneId:
Type: String
AssociationProperty: ALIYUN::ECS::ZoneId
VSwitchId:
Type: String
AssociationProperty: ALIYUN::ECS::VSwitch::VSwitchId
AssociationPropertyMetadata:
RegionId: ${RegionId}
VpcId: ${VpcId}
Resources:
DrdsInstance:
Type: ALIYUN::DRDS::DrdsInstance
Properties:
Type: PRIVATE
VpcId:
Ref: VpcId
ZoneId:
Ref: ZoneId
InstanceSeries: drds.sn1.4c8g
Specification: drds.sn1.4c8g.8C16G
PayType: drdsPost
VswitchId:
Ref: VSwitchId
Outputs: {}
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"VpcId": {
"Type": "String",
"AssociationProperty": "ALIYUN::ECS::VPC::VPCId"
},
"ZoneId": {
"Type": "String",
"AssociationProperty": "ALIYUN::ECS::ZoneId"
},
"VSwitchId": {
"Type": "String",
"AssociationProperty": "ALIYUN::ECS::VSwitch::VSwitchId",
"AssociationPropertyMetadata": {
"RegionId": "${RegionId}",
"VpcId": "${VpcId}"
}
}
},
"Resources": {
"DrdsInstance": {
"Type": "ALIYUN::DRDS::DrdsInstance",
"Properties": {
"Type": "PRIVATE",
"VpcId": {
"Ref": "VpcId"
},
"ZoneId": {
"Ref": "ZoneId"
},
"InstanceSeries": "drds.sn1.4c8g",
"Specification": "drds.sn1.4c8g.8C16G",
"PayType": "drdsPost",
"VswitchId": {
"Ref": "VSwitchId"
}
}
}
},
"Outputs": {
}
}