Support new feature.

This commit is contained in:
sdk-team
2023-08-02 00:57:50 +00:00
parent f566854e2d
commit 2d217f2e0a
3 changed files with 13 additions and 1 deletions

View File

@@ -1 +1 @@
1.36.1704
1.36.1705

View File

@@ -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_;

View File

@@ -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_;
}