Kaynağa Gözat

Fix 500 for CreateOrder.

sdk-team 3 yıl önce
ebeveyn
işleme
bfc89d1cc7

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.1675
+1.36.1676

+ 3 - 0
rds/include/alibabacloud/rds/model/CopyDatabaseRequest.h

@@ -34,6 +34,8 @@ public:
 	void setResourceOwnerId(long resourceOwnerId);
 	std::string getAccessKeyId() const;
 	void setAccessKeyId(const std::string &accessKeyId);
+	std::string getResourceGroupId() const;
+	void setResourceGroupId(const std::string &resourceGroupId);
 	std::string getResourceOwnerAccount() const;
 	void setResourceOwnerAccount(const std::string &resourceOwnerAccount);
 	long getOwnerId() const;
@@ -42,6 +44,7 @@ public:
 private:
 	long resourceOwnerId_;
 	std::string accessKeyId_;
+	std::string resourceGroupId_;
 	std::string resourceOwnerAccount_;
 	long ownerId_;
 };

+ 12 - 9
rds/include/alibabacloud/rds/model/DeleteDBNodesRequest.h

@@ -34,28 +34,31 @@ public:
 	void setResourceOwnerId(long resourceOwnerId);
 	std::string getDBNodeId() const;
 	void setDBNodeId(const std::string &dBNodeId);
-	std::string getResourceOwnerAccount() const;
-	void setResourceOwnerAccount(const std::string &resourceOwnerAccount);
 	std::string getClientToken() const;
 	void setClientToken(const std::string &clientToken);
-	std::string getOwnerAccount() const;
-	void setOwnerAccount(const std::string &ownerAccount);
-	long getOwnerId() const;
-	void setOwnerId(long ownerId);
 	std::string getAccessKeyId() const;
 	void setAccessKeyId(const std::string &accessKeyId);
+	std::string getResourceGroupId() const;
+	void setResourceGroupId(const std::string &resourceGroupId);
 	std::string getDBInstanceId() const;
 	void setDBInstanceId(const std::string &dBInstanceId);
+	std::string getResourceOwnerAccount() const;
+	void setResourceOwnerAccount(const std::string &resourceOwnerAccount);
+	std::string getOwnerAccount() const;
+	void setOwnerAccount(const std::string &ownerAccount);
+	long getOwnerId() const;
+	void setOwnerId(long ownerId);
 
 private:
 	long resourceOwnerId_;
 	std::string dBNodeId_;
-	std::string resourceOwnerAccount_;
 	std::string clientToken_;
-	std::string ownerAccount_;
-	long ownerId_;
 	std::string accessKeyId_;
+	std::string resourceGroupId_;
 	std::string dBInstanceId_;
+	std::string resourceOwnerAccount_;
+	std::string ownerAccount_;
+	long ownerId_;
 };
 } // namespace Model
 } // namespace Rds

+ 12 - 9
rds/include/alibabacloud/rds/model/DescribeCharacterSetNameRequest.h

@@ -32,27 +32,30 @@ public:
 	~DescribeCharacterSetNameRequest();
 	long getResourceOwnerId() const;
 	void setResourceOwnerId(long resourceOwnerId);
-	std::string getResourceOwnerAccount() const;
-	void setResourceOwnerAccount(const std::string &resourceOwnerAccount);
-	std::string getOwnerAccount() const;
-	void setOwnerAccount(const std::string &ownerAccount);
-	long getOwnerId() const;
-	void setOwnerId(long ownerId);
 	std::string getAccessKeyId() const;
 	void setAccessKeyId(const std::string &accessKeyId);
+	std::string getResourceGroupId() const;
+	void setResourceGroupId(const std::string &resourceGroupId);
 	std::string getEngine() const;
 	void setEngine(const std::string &engine);
 	std::string getRegionId() const;
 	void setRegionId(const std::string &regionId);
+	std::string getResourceOwnerAccount() const;
+	void setResourceOwnerAccount(const std::string &resourceOwnerAccount);
+	std::string getOwnerAccount() const;
+	void setOwnerAccount(const std::string &ownerAccount);
+	long getOwnerId() const;
+	void setOwnerId(long ownerId);
 
 private:
 	long resourceOwnerId_;
-	std::string resourceOwnerAccount_;
-	std::string ownerAccount_;
-	long ownerId_;
 	std::string accessKeyId_;
+	std::string resourceGroupId_;
 	std::string engine_;
 	std::string regionId_;
+	std::string resourceOwnerAccount_;
+	std::string ownerAccount_;
+	long ownerId_;
 };
 } // namespace Model
 } // namespace Rds

+ 3 - 0
rds/include/alibabacloud/rds/model/DescribeRenewalPriceRequest.h

@@ -36,6 +36,8 @@ public:
 	void setClientToken(const std::string &clientToken);
 	std::string getAccessKeyId() const;
 	void setAccessKeyId(const std::string &accessKeyId);
+	std::string getResourceGroupId() const;
+	void setResourceGroupId(const std::string &resourceGroupId);
 	std::string getRegionId() const;
 	void setRegionId(const std::string &regionId);
 	std::string getDBInstanceId() const;
@@ -69,6 +71,7 @@ private:
 	long resourceOwnerId_;
 	std::string clientToken_;
 	std::string accessKeyId_;
+	std::string resourceGroupId_;
 	std::string regionId_;
 	std::string dBInstanceId_;
 	std::string businessInfo_;

+ 9 - 0
rds/src/model/CopyDatabaseRequest.cc

@@ -43,6 +43,15 @@ void CopyDatabaseRequest::setAccessKeyId(const std::string &accessKeyId) {
   setParameter(std::string("AccessKeyId"), accessKeyId);
 }
 
+std::string CopyDatabaseRequest::getResourceGroupId() const {
+  return resourceGroupId_;
+}
+
+void CopyDatabaseRequest::setResourceGroupId(const std::string &resourceGroupId) {
+  resourceGroupId_ = resourceGroupId;
+  setParameter(std::string("ResourceGroupId"), resourceGroupId);
+}
+
 std::string CopyDatabaseRequest::getResourceOwnerAccount() const {
   return resourceOwnerAccount_;
 }

+ 36 - 27
rds/src/model/DeleteDBNodesRequest.cc

@@ -43,15 +43,6 @@ void DeleteDBNodesRequest::setDBNodeId(const std::string &dBNodeId) {
   setParameter(std::string("DBNodeId"), dBNodeId);
 }
 
-std::string DeleteDBNodesRequest::getResourceOwnerAccount() const {
-  return resourceOwnerAccount_;
-}
-
-void DeleteDBNodesRequest::setResourceOwnerAccount(const std::string &resourceOwnerAccount) {
-  resourceOwnerAccount_ = resourceOwnerAccount;
-  setParameter(std::string("ResourceOwnerAccount"), resourceOwnerAccount);
-}
-
 std::string DeleteDBNodesRequest::getClientToken() const {
   return clientToken_;
 }
@@ -61,24 +52,6 @@ void DeleteDBNodesRequest::setClientToken(const std::string &clientToken) {
   setParameter(std::string("ClientToken"), clientToken);
 }
 
-std::string DeleteDBNodesRequest::getOwnerAccount() const {
-  return ownerAccount_;
-}
-
-void DeleteDBNodesRequest::setOwnerAccount(const std::string &ownerAccount) {
-  ownerAccount_ = ownerAccount;
-  setParameter(std::string("OwnerAccount"), ownerAccount);
-}
-
-long DeleteDBNodesRequest::getOwnerId() const {
-  return ownerId_;
-}
-
-void DeleteDBNodesRequest::setOwnerId(long ownerId) {
-  ownerId_ = ownerId;
-  setParameter(std::string("OwnerId"), std::to_string(ownerId));
-}
-
 std::string DeleteDBNodesRequest::getAccessKeyId() const {
   return accessKeyId_;
 }
@@ -88,6 +61,15 @@ void DeleteDBNodesRequest::setAccessKeyId(const std::string &accessKeyId) {
   setParameter(std::string("AccessKeyId"), accessKeyId);
 }
 
+std::string DeleteDBNodesRequest::getResourceGroupId() const {
+  return resourceGroupId_;
+}
+
+void DeleteDBNodesRequest::setResourceGroupId(const std::string &resourceGroupId) {
+  resourceGroupId_ = resourceGroupId;
+  setParameter(std::string("ResourceGroupId"), resourceGroupId);
+}
+
 std::string DeleteDBNodesRequest::getDBInstanceId() const {
   return dBInstanceId_;
 }
@@ -97,3 +79,30 @@ void DeleteDBNodesRequest::setDBInstanceId(const std::string &dBInstanceId) {
   setParameter(std::string("DBInstanceId"), dBInstanceId);
 }
 
+std::string DeleteDBNodesRequest::getResourceOwnerAccount() const {
+  return resourceOwnerAccount_;
+}
+
+void DeleteDBNodesRequest::setResourceOwnerAccount(const std::string &resourceOwnerAccount) {
+  resourceOwnerAccount_ = resourceOwnerAccount;
+  setParameter(std::string("ResourceOwnerAccount"), resourceOwnerAccount);
+}
+
+std::string DeleteDBNodesRequest::getOwnerAccount() const {
+  return ownerAccount_;
+}
+
+void DeleteDBNodesRequest::setOwnerAccount(const std::string &ownerAccount) {
+  ownerAccount_ = ownerAccount;
+  setParameter(std::string("OwnerAccount"), ownerAccount);
+}
+
+long DeleteDBNodesRequest::getOwnerId() const {
+  return ownerId_;
+}
+
+void DeleteDBNodesRequest::setOwnerId(long ownerId) {
+  ownerId_ = ownerId;
+  setParameter(std::string("OwnerId"), std::to_string(ownerId));
+}
+

+ 36 - 27
rds/src/model/DescribeCharacterSetNameRequest.cc

@@ -34,33 +34,6 @@ void DescribeCharacterSetNameRequest::setResourceOwnerId(long resourceOwnerId) {
   setParameter(std::string("ResourceOwnerId"), std::to_string(resourceOwnerId));
 }
 
-std::string DescribeCharacterSetNameRequest::getResourceOwnerAccount() const {
-  return resourceOwnerAccount_;
-}
-
-void DescribeCharacterSetNameRequest::setResourceOwnerAccount(const std::string &resourceOwnerAccount) {
-  resourceOwnerAccount_ = resourceOwnerAccount;
-  setParameter(std::string("ResourceOwnerAccount"), resourceOwnerAccount);
-}
-
-std::string DescribeCharacterSetNameRequest::getOwnerAccount() const {
-  return ownerAccount_;
-}
-
-void DescribeCharacterSetNameRequest::setOwnerAccount(const std::string &ownerAccount) {
-  ownerAccount_ = ownerAccount;
-  setParameter(std::string("OwnerAccount"), ownerAccount);
-}
-
-long DescribeCharacterSetNameRequest::getOwnerId() const {
-  return ownerId_;
-}
-
-void DescribeCharacterSetNameRequest::setOwnerId(long ownerId) {
-  ownerId_ = ownerId;
-  setParameter(std::string("OwnerId"), std::to_string(ownerId));
-}
-
 std::string DescribeCharacterSetNameRequest::getAccessKeyId() const {
   return accessKeyId_;
 }
@@ -70,6 +43,15 @@ void DescribeCharacterSetNameRequest::setAccessKeyId(const std::string &accessKe
   setParameter(std::string("AccessKeyId"), accessKeyId);
 }
 
+std::string DescribeCharacterSetNameRequest::getResourceGroupId() const {
+  return resourceGroupId_;
+}
+
+void DescribeCharacterSetNameRequest::setResourceGroupId(const std::string &resourceGroupId) {
+  resourceGroupId_ = resourceGroupId;
+  setParameter(std::string("ResourceGroupId"), resourceGroupId);
+}
+
 std::string DescribeCharacterSetNameRequest::getEngine() const {
   return engine_;
 }
@@ -88,3 +70,30 @@ void DescribeCharacterSetNameRequest::setRegionId(const std::string &regionId) {
   setParameter(std::string("RegionId"), regionId);
 }
 
+std::string DescribeCharacterSetNameRequest::getResourceOwnerAccount() const {
+  return resourceOwnerAccount_;
+}
+
+void DescribeCharacterSetNameRequest::setResourceOwnerAccount(const std::string &resourceOwnerAccount) {
+  resourceOwnerAccount_ = resourceOwnerAccount;
+  setParameter(std::string("ResourceOwnerAccount"), resourceOwnerAccount);
+}
+
+std::string DescribeCharacterSetNameRequest::getOwnerAccount() const {
+  return ownerAccount_;
+}
+
+void DescribeCharacterSetNameRequest::setOwnerAccount(const std::string &ownerAccount) {
+  ownerAccount_ = ownerAccount;
+  setParameter(std::string("OwnerAccount"), ownerAccount);
+}
+
+long DescribeCharacterSetNameRequest::getOwnerId() const {
+  return ownerId_;
+}
+
+void DescribeCharacterSetNameRequest::setOwnerId(long ownerId) {
+  ownerId_ = ownerId;
+  setParameter(std::string("OwnerId"), std::to_string(ownerId));
+}
+

+ 9 - 0
rds/src/model/DescribeRenewalPriceRequest.cc

@@ -52,6 +52,15 @@ void DescribeRenewalPriceRequest::setAccessKeyId(const std::string &accessKeyId)
   setParameter(std::string("AccessKeyId"), accessKeyId);
 }
 
+std::string DescribeRenewalPriceRequest::getResourceGroupId() const {
+  return resourceGroupId_;
+}
+
+void DescribeRenewalPriceRequest::setResourceGroupId(const std::string &resourceGroupId) {
+  resourceGroupId_ = resourceGroupId;
+  setParameter(std::string("ResourceGroupId"), resourceGroupId);
+}
+
 std::string DescribeRenewalPriceRequest::getRegionId() const {
   return regionId_;
 }