日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

ALIYUN::DRDS::DrdsInstance

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

實例系列。更多信息,請參見《實例系列參數》。

取值:

  • drds.sn1.4c8g

  • drds.sn1.8c16g

  • drds.sn1.16c32g

  • drds.sn1.32c64g

Specification

String

實例規格。例如:drds.sn1.4c8g.8C16G由實例系列(drds.sn1.4c8g)加上具體的實例規格(8C16G)組成。

關于實例規格取值的更多信息,請參見:

分布式關系型數據庫服務規格和定價。

ResourceGroupId

String

資源組ID。

PayType

String

付費類型。

取值:

  • drdsPost

  • drdsPre

更多信息,請參見《付費類型參數表》。

ZoneId

String

可用區ID。

一個可用區屬于某個地域,例如:杭州可用區A(cn-hangzhou-a)屬于杭州地域(cn-hangzhou)。

PricingCycle

String

訂購的周期單位。

取值:

  • year:年。

  • month:月。

付費類型是drdsPre時該參數生效。

Duration

Integer

訂購的周期數量。

取值:

  • PricingCycle=year時:1~3。

  • PricingCycle=month時:1~9。

付費類型是drdsPre時該參數生效。

VswitchId

String

交換機ID。

創建VPC網絡類型的數據庫時必須指定該參數。

IsAutoRenew

Boolean

是否自動續費。

取值:

  • true

  • false

如果按月購買則自動續費一個月,如果按年購買則自動續費一年。付費類型是drdsPre時該參數生效。

Type

String

實例類型。

取值:

  • 0:共享實例。

  • 1:專享實例。

  • PRIVATE:專享實例。

  • PUBLIC:共享實例。

MySQLVersion

String

MySQL協議版本。

取值:

  • 5(默認值)

  • 8

說明

僅當創建主實例時有效,只讀實例默認與主實例相同。

Tags

List

標簽。

最多支持添加20個標簽。

更多信息,請參見Tags屬性。

Tags語法

"Tags": [
  {
    "Key": String,
    "Value": String
  }
]  

Tags屬性

屬性名稱

類型

必須

允許更新

描述

約束

Key

String

標簽鍵。

長度為1~128個字符,不能以aliyunacs:開頭,不能包含http://或者https://。

Value

String

標簽值。

長度為0~128個字符,不能以aliyunacs:開頭,不能包含http://或者https://。

返回值

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": {
  }
}