Explorar el Código

Change backend api.

sdk-team hace 3 años
padre
commit
ad6d6026c2

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.1464
+1.36.1465

+ 3 - 0
dytnsapi/include/alibabacloud/dytnsapi/model/ThreeElementsVerificationRequest.h

@@ -36,6 +36,8 @@ public:
 	void setAccessKeyId(const std::string &accessKeyId);
 	void setAccessKeyId(const std::string &accessKeyId);
 	std::string getCertCode() const;
 	std::string getCertCode() const;
 	void setCertCode(const std::string &certCode);
 	void setCertCode(const std::string &certCode);
+	std::string getRouteName() const;
+	void setRouteName(const std::string &routeName);
 	std::string getMask() const;
 	std::string getMask() const;
 	void setMask(const std::string &mask);
 	void setMask(const std::string &mask);
 	std::string getResultCount() const;
 	std::string getResultCount() const;
@@ -57,6 +59,7 @@ private:
 	long resourceOwnerId_;
 	long resourceOwnerId_;
 	std::string accessKeyId_;
 	std::string accessKeyId_;
 	std::string certCode_;
 	std::string certCode_;
+	std::string routeName_;
 	std::string mask_;
 	std::string mask_;
 	std::string resultCount_;
 	std::string resultCount_;
 	std::string resourceOwnerAccount_;
 	std::string resourceOwnerAccount_;

+ 3 - 0
dytnsapi/include/alibabacloud/dytnsapi/model/TwoElementsVerificationRequest.h

@@ -34,6 +34,8 @@ public:
 	void setResourceOwnerId(long resourceOwnerId);
 	void setResourceOwnerId(long resourceOwnerId);
 	std::string getAccessKeyId() const;
 	std::string getAccessKeyId() const;
 	void setAccessKeyId(const std::string &accessKeyId);
 	void setAccessKeyId(const std::string &accessKeyId);
+	std::string getRouteName() const;
+	void setRouteName(const std::string &routeName);
 	std::string getMask() const;
 	std::string getMask() const;
 	void setMask(const std::string &mask);
 	void setMask(const std::string &mask);
 	std::string getResultCount() const;
 	std::string getResultCount() const;
@@ -56,6 +58,7 @@ public:
 private:
 private:
 	long resourceOwnerId_;
 	long resourceOwnerId_;
 	std::string accessKeyId_;
 	std::string accessKeyId_;
+	std::string routeName_;
 	std::string mask_;
 	std::string mask_;
 	std::string resultCount_;
 	std::string resultCount_;
 	std::string resourceOwnerAccount_;
 	std::string resourceOwnerAccount_;

+ 9 - 0
dytnsapi/src/model/ThreeElementsVerificationRequest.cc

@@ -52,6 +52,15 @@ void ThreeElementsVerificationRequest::setCertCode(const std::string &certCode)
   setParameter(std::string("CertCode"), certCode);
   setParameter(std::string("CertCode"), certCode);
 }
 }
 
 
+std::string ThreeElementsVerificationRequest::getRouteName() const {
+  return routeName_;
+}
+
+void ThreeElementsVerificationRequest::setRouteName(const std::string &routeName) {
+  routeName_ = routeName;
+  setParameter(std::string("RouteName"), routeName);
+}
+
 std::string ThreeElementsVerificationRequest::getMask() const {
 std::string ThreeElementsVerificationRequest::getMask() const {
   return mask_;
   return mask_;
 }
 }

+ 9 - 0
dytnsapi/src/model/TwoElementsVerificationRequest.cc

@@ -43,6 +43,15 @@ void TwoElementsVerificationRequest::setAccessKeyId(const std::string &accessKey
   setParameter(std::string("AccessKeyId"), accessKeyId);
   setParameter(std::string("AccessKeyId"), accessKeyId);
 }
 }
 
 
+std::string TwoElementsVerificationRequest::getRouteName() const {
+  return routeName_;
+}
+
+void TwoElementsVerificationRequest::setRouteName(const std::string &routeName) {
+  routeName_ = routeName;
+  setParameter(std::string("RouteName"), routeName);
+}
+
 std::string TwoElementsVerificationRequest::getMask() const {
 std::string TwoElementsVerificationRequest::getMask() const {
   return mask_;
   return mask_;
 }
 }