diff --git a/VERSION b/VERSION index fee06c9fa..e6611c5f1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.1560 \ No newline at end of file +1.36.1561 \ No newline at end of file diff --git a/cbn/include/alibabacloud/cbn/model/DescribeGrantRulesToCenRequest.h b/cbn/include/alibabacloud/cbn/model/DescribeGrantRulesToCenRequest.h index a1262210a..db336f1fa 100644 --- a/cbn/include/alibabacloud/cbn/model/DescribeGrantRulesToCenRequest.h +++ b/cbn/include/alibabacloud/cbn/model/DescribeGrantRulesToCenRequest.h @@ -48,6 +48,10 @@ public: void setOwnerId(long ownerId); std::string getVersion() const; void setVersion(const std::string &version); + long getChildInstanceOwnerId() const; + void setChildInstanceOwnerId(long childInstanceOwnerId); + std::string getChildInstanceId() const; + void setChildInstanceId(const std::string &childInstanceId); long getMaxResults() const; void setMaxResults(long maxResults); @@ -61,6 +65,8 @@ private: std::string ownerAccount_; long ownerId_; std::string version_; + long childInstanceOwnerId_; + std::string childInstanceId_; long maxResults_; }; } // namespace Model diff --git a/cbn/src/model/DescribeGrantRulesToCenRequest.cc b/cbn/src/model/DescribeGrantRulesToCenRequest.cc index 9411bfd5a..bc7ecaf78 100644 --- a/cbn/src/model/DescribeGrantRulesToCenRequest.cc +++ b/cbn/src/model/DescribeGrantRulesToCenRequest.cc @@ -106,6 +106,24 @@ void DescribeGrantRulesToCenRequest::setVersion(const std::string &version) { setParameter(std::string("Version"), version); } +long DescribeGrantRulesToCenRequest::getChildInstanceOwnerId() const { + return childInstanceOwnerId_; +} + +void DescribeGrantRulesToCenRequest::setChildInstanceOwnerId(long childInstanceOwnerId) { + childInstanceOwnerId_ = childInstanceOwnerId; + setParameter(std::string("ChildInstanceOwnerId"), std::to_string(childInstanceOwnerId)); +} + +std::string DescribeGrantRulesToCenRequest::getChildInstanceId() const { + return childInstanceId_; +} + +void DescribeGrantRulesToCenRequest::setChildInstanceId(const std::string &childInstanceId) { + childInstanceId_ = childInstanceId; + setParameter(std::string("ChildInstanceId"), childInstanceId); +} + long DescribeGrantRulesToCenRequest::getMaxResults() const { return maxResults_; }