Automatically generate sdk tasks.
This commit is contained in:
@@ -30,16 +30,22 @@ class ALIBABACLOUD_DBFS_EXPORT ListDbfsAttachableEcsInstancesRequest : public Rp
|
||||
public:
|
||||
ListDbfsAttachableEcsInstancesRequest();
|
||||
~ListDbfsAttachableEcsInstancesRequest();
|
||||
std::string getFilterKey() const;
|
||||
void setFilterKey(const std::string &filterKey);
|
||||
std::string getRegionId() const;
|
||||
void setRegionId(const std::string ®ionId);
|
||||
int getPageSize() const;
|
||||
void setPageSize(int pageSize);
|
||||
std::string getFilterValue() const;
|
||||
void setFilterValue(const std::string &filterValue);
|
||||
int getPageNumber() const;
|
||||
void setPageNumber(int pageNumber);
|
||||
|
||||
private:
|
||||
std::string filterKey_;
|
||||
std::string regionId_;
|
||||
int pageSize_;
|
||||
std::string filterValue_;
|
||||
int pageNumber_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -25,6 +25,15 @@ ListDbfsAttachableEcsInstancesRequest::ListDbfsAttachableEcsInstancesRequest()
|
||||
|
||||
ListDbfsAttachableEcsInstancesRequest::~ListDbfsAttachableEcsInstancesRequest() {}
|
||||
|
||||
std::string ListDbfsAttachableEcsInstancesRequest::getFilterKey() const {
|
||||
return filterKey_;
|
||||
}
|
||||
|
||||
void ListDbfsAttachableEcsInstancesRequest::setFilterKey(const std::string &filterKey) {
|
||||
filterKey_ = filterKey;
|
||||
setParameter(std::string("FilterKey"), filterKey);
|
||||
}
|
||||
|
||||
std::string ListDbfsAttachableEcsInstancesRequest::getRegionId() const {
|
||||
return regionId_;
|
||||
}
|
||||
@@ -43,6 +52,15 @@ void ListDbfsAttachableEcsInstancesRequest::setPageSize(int pageSize) {
|
||||
setParameter(std::string("PageSize"), std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string ListDbfsAttachableEcsInstancesRequest::getFilterValue() const {
|
||||
return filterValue_;
|
||||
}
|
||||
|
||||
void ListDbfsAttachableEcsInstancesRequest::setFilterValue(const std::string &filterValue) {
|
||||
filterValue_ = filterValue;
|
||||
setParameter(std::string("FilterValue"), filterValue);
|
||||
}
|
||||
|
||||
int ListDbfsAttachableEcsInstancesRequest::getPageNumber() const {
|
||||
return pageNumber_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user