diff --git a/VERSION b/VERSION index 7455044e2..3be477733 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.1704 \ No newline at end of file +1.36.1705 \ No newline at end of file diff --git a/polardb/include/alibabacloud/polardb/model/CreateDBClusterRequest.h b/polardb/include/alibabacloud/polardb/model/CreateDBClusterRequest.h index fa05b7a7f..a11a77106 100644 --- a/polardb/include/alibabacloud/polardb/model/CreateDBClusterRequest.h +++ b/polardb/include/alibabacloud/polardb/model/CreateDBClusterRequest.h @@ -76,6 +76,8 @@ public: void setAutoRenew(bool autoRenew); std::string getHotStandbyCluster() const; void setHotStandbyCluster(const std::string &hotStandbyCluster); + std::string getStoragePayType() const; + void setStoragePayType(const std::string &storagePayType); std::string getZoneId() const; void setZoneId(const std::string &zoneId); bool getTDEStatus() const; @@ -161,6 +163,7 @@ private: std::string dBMinorVersion_; bool autoRenew_; std::string hotStandbyCluster_; + std::string storagePayType_; std::string zoneId_; bool tDEStatus_; std::string allowShutDown_; diff --git a/polardb/src/model/CreateDBClusterRequest.cc b/polardb/src/model/CreateDBClusterRequest.cc index 942ec2fd4..2203f7460 100644 --- a/polardb/src/model/CreateDBClusterRequest.cc +++ b/polardb/src/model/CreateDBClusterRequest.cc @@ -219,6 +219,15 @@ void CreateDBClusterRequest::setHotStandbyCluster(const std::string &hotStandbyC setParameter(std::string("HotStandbyCluster"), hotStandbyCluster); } +std::string CreateDBClusterRequest::getStoragePayType() const { + return storagePayType_; +} + +void CreateDBClusterRequest::setStoragePayType(const std::string &storagePayType) { + storagePayType_ = storagePayType; + setParameter(std::string("StoragePayType"), storagePayType); +} + std::string CreateDBClusterRequest::getZoneId() const { return zoneId_; }