|
|
@@ -34,15 +34,6 @@ void CreateDBNodesRequest::setResourceOwnerId(long resourceOwnerId) {
|
|
|
setParameter(std::string("ResourceOwnerId"), std::to_string(resourceOwnerId));
|
|
|
}
|
|
|
|
|
|
-std::string CreateDBNodesRequest::getResourceOwnerAccount() const {
|
|
|
- return resourceOwnerAccount_;
|
|
|
-}
|
|
|
-
|
|
|
-void CreateDBNodesRequest::setResourceOwnerAccount(const std::string &resourceOwnerAccount) {
|
|
|
- resourceOwnerAccount_ = resourceOwnerAccount;
|
|
|
- setParameter(std::string("ResourceOwnerAccount"), resourceOwnerAccount);
|
|
|
-}
|
|
|
-
|
|
|
std::string CreateDBNodesRequest::getClientToken() const {
|
|
|
return clientToken_;
|
|
|
}
|
|
|
@@ -52,24 +43,6 @@ void CreateDBNodesRequest::setClientToken(const std::string &clientToken) {
|
|
|
setParameter(std::string("ClientToken"), clientToken);
|
|
|
}
|
|
|
|
|
|
-std::string CreateDBNodesRequest::getOwnerAccount() const {
|
|
|
- return ownerAccount_;
|
|
|
-}
|
|
|
-
|
|
|
-void CreateDBNodesRequest::setOwnerAccount(const std::string &ownerAccount) {
|
|
|
- ownerAccount_ = ownerAccount;
|
|
|
- setParameter(std::string("OwnerAccount"), ownerAccount);
|
|
|
-}
|
|
|
-
|
|
|
-long CreateDBNodesRequest::getOwnerId() const {
|
|
|
- return ownerId_;
|
|
|
-}
|
|
|
-
|
|
|
-void CreateDBNodesRequest::setOwnerId(long ownerId) {
|
|
|
- ownerId_ = ownerId;
|
|
|
- setParameter(std::string("OwnerId"), std::to_string(ownerId));
|
|
|
-}
|
|
|
-
|
|
|
std::string CreateDBNodesRequest::getAccessKeyId() const {
|
|
|
return accessKeyId_;
|
|
|
}
|
|
|
@@ -79,6 +52,15 @@ void CreateDBNodesRequest::setAccessKeyId(const std::string &accessKeyId) {
|
|
|
setParameter(std::string("AccessKeyId"), accessKeyId);
|
|
|
}
|
|
|
|
|
|
+std::string CreateDBNodesRequest::getResourceGroupId() const {
|
|
|
+ return resourceGroupId_;
|
|
|
+}
|
|
|
+
|
|
|
+void CreateDBNodesRequest::setResourceGroupId(const std::string &resourceGroupId) {
|
|
|
+ resourceGroupId_ = resourceGroupId;
|
|
|
+ setParameter(std::string("ResourceGroupId"), resourceGroupId);
|
|
|
+}
|
|
|
+
|
|
|
std::string CreateDBNodesRequest::getDBInstanceId() const {
|
|
|
return dBInstanceId_;
|
|
|
}
|
|
|
@@ -88,6 +70,33 @@ void CreateDBNodesRequest::setDBInstanceId(const std::string &dBInstanceId) {
|
|
|
setParameter(std::string("DBInstanceId"), dBInstanceId);
|
|
|
}
|
|
|
|
|
|
+std::string CreateDBNodesRequest::getResourceOwnerAccount() const {
|
|
|
+ return resourceOwnerAccount_;
|
|
|
+}
|
|
|
+
|
|
|
+void CreateDBNodesRequest::setResourceOwnerAccount(const std::string &resourceOwnerAccount) {
|
|
|
+ resourceOwnerAccount_ = resourceOwnerAccount;
|
|
|
+ setParameter(std::string("ResourceOwnerAccount"), resourceOwnerAccount);
|
|
|
+}
|
|
|
+
|
|
|
+std::string CreateDBNodesRequest::getOwnerAccount() const {
|
|
|
+ return ownerAccount_;
|
|
|
+}
|
|
|
+
|
|
|
+void CreateDBNodesRequest::setOwnerAccount(const std::string &ownerAccount) {
|
|
|
+ ownerAccount_ = ownerAccount;
|
|
|
+ setParameter(std::string("OwnerAccount"), ownerAccount);
|
|
|
+}
|
|
|
+
|
|
|
+long CreateDBNodesRequest::getOwnerId() const {
|
|
|
+ return ownerId_;
|
|
|
+}
|
|
|
+
|
|
|
+void CreateDBNodesRequest::setOwnerId(long ownerId) {
|
|
|
+ ownerId_ = ownerId;
|
|
|
+ setParameter(std::string("OwnerId"), std::to_string(ownerId));
|
|
|
+}
|
|
|
+
|
|
|
std::string CreateDBNodesRequest::getDBNode() const {
|
|
|
return dBNode_;
|
|
|
}
|