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

DATASOURCE::RDS::Zones

DATASOURCE::RDS::Zones類型用于列出RDS可用區(qū)資源。

語法

{
  "Type": "DATASOURCE::RDS::Zones",
  "Properties": {
    "DispenseMode": String,
    "Category": String,
    "EngineVersion": String,
    "ZoneId": String,
    "CommodityCode": String,
    "Engine": String,
    "RefreshOptions": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

DispenseMode

String

是否返回支持單可用區(qū)部署功能的可用區(qū)列表。

取值:

  • 1:返回。

  • 0:不返回。

說明

單可用區(qū)部署功能支持將三節(jié)點(diǎn)企業(yè)版實(shí)例安裝到單個可用區(qū)中。

Category

String

實(shí)例系列。

取值:

  • Basic:基礎(chǔ)版。

  • HighAvailability:高可用版。

  • AlwaysOn:集群版。

  • Finance:三節(jié)點(diǎn)企業(yè)版。

EngineVersion

String

數(shù)據(jù)庫版本。

取值:

  • MySQL:5.5、5.6、5.7、8.0

  • SQL Server:2008r2、08r2_ent_ha、2012、2012_ent_ha、2012_std_ha、2012_web、2014_std_ha、2016_ent_ha、2016_std_ha、2016_web、2017_std_ha、2017_ent、2019_std_ha、2019_ent

  • PostgreSQL:9.4、10.0、11.0、12.0、13.0、14.0

  • MariaDB:10.3

ZoneId

String

可用區(qū)ID。

多可用區(qū)的格式與單可用區(qū)不同,包含MAZ字樣。例如:cn-hangzhou-MAZ6(b,f)cn-hangzhou-MAZ5(b,e,f)。您可以通過調(diào)用查詢地域信息接口來查看可用區(qū)ID。

CommodityCode

String

當(dāng)前實(shí)例的商品碼。

取值:

  • bards:主實(shí)例按量付費(fèi)。

  • rds:主實(shí)例包年包月。

  • rords:只讀實(shí)例按量付費(fèi)。

  • rds_rordspre_public_cn:只讀實(shí)例包年包月。

Engine

String

數(shù)據(jù)庫類型。

取值:

  • MySQL

  • SQLServer

  • PostgreSQL

  • MariaDB

RefreshOptions

String

當(dāng)資源棧更新時,數(shù)據(jù)源資源的刷新策略。

有效值:

  • Never(默認(rèn)值):更新堆棧時,從不刷新數(shù)據(jù)源資源。

  • Always:更新堆棧時,始終刷新數(shù)據(jù)源資源。

返回數(shù)據(jù)(Fn::GetAtt)

  • ZoneIds:RDS可用區(qū)ID列表。

  • Zones:RDS可用區(qū)資源列表。

屬性名稱

類型

描述

約束

ZoneIds

List

RDS可用區(qū)ID列表。

Zones

List

RDS可用區(qū)資源列表。

ZoneId

String

可用區(qū)ID。

RegionId

String

地域ID。

SupportedEngines

List

支持售賣的數(shù)據(jù)庫版本列表。

例如:

[ {  "SupportedEngineVersions" : [ {    "Version" : "8.0",    "SupportedCategorys" : [ {      "Category" : "HighAvailability",      "SupportedStorageTypes" : [ {        "StorageType" : "local_ssd"      }, {        "StorageType" : "cloud_ssd"      } ]    }, {      "Category" : "Basic",      "SupportedStorageTypes" : [ {        "StorageType" : "cloud_ssd"      } ]    } ]  } ],  "Engine" : "MySQL"} ]

示例

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "Engine": {
      "Type": "String",
      "Description": "The database engine that is run by the instance.",
      "AllowedValues": [
        "MySQL",
        "SQLServer",
        "PostgreSQL",
        "MariaDB"
      ]
    }
  },
  "Resources": {
    "ExtensionDataSource": {
      "Type": "DATASOURCE::RDS::Zones",
      "Properties": {
        "Engine": {
          "Ref": "Engine"
        }
      }
    }
  },
  "Outputs": {
    "ZoneIds": {
      "Description": "The list of zone IDs.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "ZoneIds"
        ]
      }
    },
    "Zones": {
      "Description": "The list of The Zones.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "Zones"
        ]
      }
    }
  }
}
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  Engine:
    Type: String
    Description: The database engine that is run by the instance.
    AllowedValues:
      - MySQL
      - SQLServer
      - PostgreSQL
      - MariaDB
Resources:
  ExtensionDataSource:
    Type: DATASOURCE::RDS::Zones
    Properties:
      Engine:
        Ref: Engine
Outputs:
  ZoneIds:
    Description: The list of zone IDs.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - ZoneIds
  Zones:
    Description: The list of The Zones.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - Zones