Support new feature.
This commit is contained in:
@@ -142,3 +142,12 @@ void CreateAccountRequest::setDBName(const std::string &dBName) {
|
||||
setParameter(std::string("DBName"), dBName);
|
||||
}
|
||||
|
||||
std::string CreateAccountRequest::getPrivForAllDB() const {
|
||||
return privForAllDB_;
|
||||
}
|
||||
|
||||
void CreateAccountRequest::setPrivForAllDB(const std::string &privForAllDB) {
|
||||
privForAllDB_ = privForAllDB;
|
||||
setParameter(std::string("PrivForAllDB"), privForAllDB);
|
||||
}
|
||||
|
||||
|
||||
@@ -43,6 +43,15 @@ void DescribeDBClusterEndpointsRequest::setDBEndpointId(const std::string &dBEnd
|
||||
setParameter(std::string("DBEndpointId"), dBEndpointId);
|
||||
}
|
||||
|
||||
std::string DescribeDBClusterEndpointsRequest::getDescribeType() const {
|
||||
return describeType_;
|
||||
}
|
||||
|
||||
void DescribeDBClusterEndpointsRequest::setDescribeType(const std::string &describeType) {
|
||||
describeType_ = describeType;
|
||||
setParameter(std::string("DescribeType"), describeType);
|
||||
}
|
||||
|
||||
std::string DescribeDBClusterEndpointsRequest::getAccessKeyId() const {
|
||||
return accessKeyId_;
|
||||
}
|
||||
|
||||
@@ -34,6 +34,15 @@ void OpenAITaskRequest::setResourceOwnerId(long resourceOwnerId) {
|
||||
setParameter(std::string("ResourceOwnerId"), std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string OpenAITaskRequest::getNodeType() const {
|
||||
return nodeType_;
|
||||
}
|
||||
|
||||
void OpenAITaskRequest::setNodeType(const std::string &nodeType) {
|
||||
nodeType_ = nodeType;
|
||||
setParameter(std::string("NodeType"), nodeType);
|
||||
}
|
||||
|
||||
std::string OpenAITaskRequest::getAccessKeyId() const {
|
||||
return accessKeyId_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user