Add parameters to control different role.

This commit is contained in:
sdk-team
2025-03-31 02:44:45 +00:00
parent 28503fa2e5
commit cf5863b104
275 changed files with 2772 additions and 6239 deletions

View File

@@ -25,6 +25,15 @@ DescribeEventDisposeRequest::DescribeEventDisposeRequest()
DescribeEventDisposeRequest::~DescribeEventDisposeRequest() {}
long DescribeEventDisposeRequest::getRoleFor() const {
return roleFor_;
}
void DescribeEventDisposeRequest::setRoleFor(long roleFor) {
roleFor_ = roleFor;
setBodyParameter(std::string("RoleFor"), std::to_string(roleFor));
}
std::string DescribeEventDisposeRequest::getRegionId() const {
return regionId_;
}
@@ -43,6 +52,15 @@ void DescribeEventDisposeRequest::setPageSize(int pageSize) {
setBodyParameter(std::string("PageSize"), std::to_string(pageSize));
}
int DescribeEventDisposeRequest::getRoleType() const {
return roleType_;
}
void DescribeEventDisposeRequest::setRoleType(int roleType) {
roleType_ = roleType;
setBodyParameter(std::string("RoleType"), std::to_string(roleType));
}
int DescribeEventDisposeRequest::getCurrentPage() const {
return currentPage_;
}