Update by SDK platform.
This commit is contained in:
@@ -52,6 +52,8 @@ public:
|
||||
void setNetworkType(const std::string &networkType);
|
||||
std::vector<ReplicaSet> getReplicaSet() const;
|
||||
void setReplicaSet(const std::vector<ReplicaSet> &replicaSet);
|
||||
std::string getStorageType() const;
|
||||
void setStorageType(const std::string &storageType);
|
||||
std::string getResourceGroupId() const;
|
||||
void setResourceGroupId(const std::string &resourceGroupId);
|
||||
std::string getSecurityToken() const;
|
||||
@@ -109,6 +111,7 @@ private:
|
||||
std::string engineVersion_;
|
||||
std::string networkType_;
|
||||
std::vector<ReplicaSet> replicaSet_;
|
||||
std::string storageType_;
|
||||
std::string resourceGroupId_;
|
||||
std::string securityToken_;
|
||||
std::string dBInstanceDescription_;
|
||||
|
||||
@@ -76,6 +76,15 @@ void CreateShardingDBInstanceRequest::setReplicaSet(const std::vector<CreateShar
|
||||
}
|
||||
}
|
||||
|
||||
std::string CreateShardingDBInstanceRequest::getStorageType() const {
|
||||
return storageType_;
|
||||
}
|
||||
|
||||
void CreateShardingDBInstanceRequest::setStorageType(const std::string &storageType) {
|
||||
storageType_ = storageType;
|
||||
setParameter(std::string("StorageType"), storageType);
|
||||
}
|
||||
|
||||
std::string CreateShardingDBInstanceRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user