全部產品
Search
文件中心

:DATASOURCE::POLARDB::ParameterGroups

更新時間:Nov 06, 2024

DATASOURCE::POLARDB::ParameterGroups類型用於查看目標地區的參數模板列表。

文法

{
  "Type": "DATASOURCE::POLARDB::ParameterGroups",
  "Properties": {
    "DbVersion": String,
    "DbType": String,
    "RefreshOptions": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

DbVersion

String

資料庫引擎類型。

當前僅支援MySQL類型。

DbType

String

資料庫引擎版本號碼。

取值:

  • 5.6

  • 5.7

  • 8.0

RefreshOptions

String

當資源棧更新時,資料來源資源的重新整理策略。

有效值:

  • Never(預設值):更新堆棧時,從不重新整理資料來源資源。

  • Always:更新堆棧時,始終重新整理資料來源資源。

傳回值

Fn::GetAtt

  • ParameterGroups:參數模板列表。

  • ParameterGroupIds:參數模板ID列表。

屬性名稱

類型

描述

約束

ParameterGroupIds

List

參數模板ID列表。

ParameterGroups

List

參數模板列表。

DbType

String

資料庫引擎類型。

ParameterGroupId

String

參數模板ID。

ParameterCounts

Number

參數模板內的參數數量。

DbVersion

String

資料庫引擎版本號碼。

ParameterGroupDesc

String

參數模板描述。

ParameterGroupType

String

參數模板類型。

取值:

  • 0:系統預設範本。

  • 1:使用者自訂模板。

  • 2:系統自動備份模板(應用模板後系統會自動備份之前的參數設定為模板)。

ForceRestart

String

應用該參數模板是否需要重啟叢集。

取值:

  • 0:不需要重啟。

  • 1:需要重啟。

ParameterGroupName

String

參數模板名稱。

CreateTime

String

參數模板建立時間。

格式為YYYY-MM-ddTHH:mm:ssZ(UTC時間)。

樣本

ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
  ExtensionDataSource:
    Type: DATASOURCE::POLARDB::ParameterGroups
    Properties:
      DbVersion: '5.7'
      DbType: MySQL
Outputs:
  ParameterGroups:
    Description: The list of parameter groups.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - ParameterGroups
  ParameterGroupIds:
    Description: The list of parameter group IDs.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - ParameterGroupIds
{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
  },
  "Resources": {
    "ExtensionDataSource": {
      "Type": "DATASOURCE::POLARDB::ParameterGroups",
      "Properties": {
        "DbVersion": "5.7",
        "DbType": "MySQL"
      }
    }
  },
  "Outputs": {
    "ParameterGroups": {
      "Description": "The list of parameter groups.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "ParameterGroups"
        ]
      }
    },
    "ParameterGroupIds": {
      "Description": "The list of parameter group IDs.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "ParameterGroupIds"
        ]
      }
    }
  }
}