diff --git a/VERSION b/VERSION index bc9c067f2..bf08dc262 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.1464 \ No newline at end of file +1.36.1465 \ No newline at end of file diff --git a/dytnsapi/include/alibabacloud/dytnsapi/model/ThreeElementsVerificationRequest.h b/dytnsapi/include/alibabacloud/dytnsapi/model/ThreeElementsVerificationRequest.h index 04c322634..210b7852b 100644 --- a/dytnsapi/include/alibabacloud/dytnsapi/model/ThreeElementsVerificationRequest.h +++ b/dytnsapi/include/alibabacloud/dytnsapi/model/ThreeElementsVerificationRequest.h @@ -36,6 +36,8 @@ public: void setAccessKeyId(const std::string &accessKeyId); std::string getCertCode() const; void setCertCode(const std::string &certCode); + std::string getRouteName() const; + void setRouteName(const std::string &routeName); std::string getMask() const; void setMask(const std::string &mask); std::string getResultCount() const; @@ -57,6 +59,7 @@ private: long resourceOwnerId_; std::string accessKeyId_; std::string certCode_; + std::string routeName_; std::string mask_; std::string resultCount_; std::string resourceOwnerAccount_; diff --git a/dytnsapi/include/alibabacloud/dytnsapi/model/TwoElementsVerificationRequest.h b/dytnsapi/include/alibabacloud/dytnsapi/model/TwoElementsVerificationRequest.h index c3f7f5604..ca2918144 100644 --- a/dytnsapi/include/alibabacloud/dytnsapi/model/TwoElementsVerificationRequest.h +++ b/dytnsapi/include/alibabacloud/dytnsapi/model/TwoElementsVerificationRequest.h @@ -34,6 +34,8 @@ public: void setResourceOwnerId(long resourceOwnerId); std::string getAccessKeyId() const; void setAccessKeyId(const std::string &accessKeyId); + std::string getRouteName() const; + void setRouteName(const std::string &routeName); std::string getMask() const; void setMask(const std::string &mask); std::string getResultCount() const; @@ -56,6 +58,7 @@ public: private: long resourceOwnerId_; std::string accessKeyId_; + std::string routeName_; std::string mask_; std::string resultCount_; std::string resourceOwnerAccount_; diff --git a/dytnsapi/src/model/ThreeElementsVerificationRequest.cc b/dytnsapi/src/model/ThreeElementsVerificationRequest.cc index 043093daa..0275c7ac9 100644 --- a/dytnsapi/src/model/ThreeElementsVerificationRequest.cc +++ b/dytnsapi/src/model/ThreeElementsVerificationRequest.cc @@ -52,6 +52,15 @@ void ThreeElementsVerificationRequest::setCertCode(const std::string &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 { return mask_; } diff --git a/dytnsapi/src/model/TwoElementsVerificationRequest.cc b/dytnsapi/src/model/TwoElementsVerificationRequest.cc index 12e782465..55effede7 100644 --- a/dytnsapi/src/model/TwoElementsVerificationRequest.cc +++ b/dytnsapi/src/model/TwoElementsVerificationRequest.cc @@ -43,6 +43,15 @@ void TwoElementsVerificationRequest::setAccessKeyId(const std::string &accessKey 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 { return mask_; }