|
@@ -25,6 +25,15 @@ ListDbfsAttachableEcsInstancesRequest::ListDbfsAttachableEcsInstancesRequest()
|
|
|
|
|
|
|
|
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 {
|
|
std::string ListDbfsAttachableEcsInstancesRequest::getRegionId() const {
|
|
|
return regionId_;
|
|
return regionId_;
|
|
|
}
|
|
}
|
|
@@ -43,6 +52,15 @@ void ListDbfsAttachableEcsInstancesRequest::setPageSize(int pageSize) {
|
|
|
setParameter(std::string("PageSize"), std::to_string(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 {
|
|
int ListDbfsAttachableEcsInstancesRequest::getPageNumber() const {
|
|
|
return pageNumber_;
|
|
return pageNumber_;
|
|
|
}
|
|
}
|