Increase flow control value for ListDbfs.

This commit is contained in:
sdk-team
2023-03-16 11:50:45 +00:00
parent 7a240d684e
commit a22a0c32f6
6 changed files with 31 additions and 4 deletions

View File

@@ -55,6 +55,8 @@ void ListDbfsAttachableEcsInstancesResult::parse(const std::string &payload)
ecsLabelInfoObject.status = valueEcsLabelInfoLabelInfo["Status"].asString();
if(!valueEcsLabelInfoLabelInfo["ZoneId"].isNull())
ecsLabelInfoObject.zoneId = valueEcsLabelInfoLabelInfo["ZoneId"].asString();
if(!valueEcsLabelInfoLabelInfo["ImageId"].isNull())
ecsLabelInfoObject.imageId = valueEcsLabelInfoLabelInfo["ImageId"].asString();
ecsLabelInfo_.push_back(ecsLabelInfoObject);
}
if(!value["TotalCount"].isNull())

View File

@@ -52,6 +52,15 @@ void ListSnapshotLinksRequest::setFilterKey(const std::string &filterKey) {
setParameter(std::string("FilterKey"), filterKey);
}
std::string ListSnapshotLinksRequest::getLinkIds() const {
return linkIds_;
}
void ListSnapshotLinksRequest::setLinkIds(const std::string &linkIds) {
linkIds_ = linkIds;
setParameter(std::string("LinkIds"), linkIds);
}
std::string ListSnapshotLinksRequest::getRegionId() const {
return regionId_;
}
@@ -70,3 +79,12 @@ void ListSnapshotLinksRequest::setPageSize(int pageSize) {
setParameter(std::string("PageSize"), std::to_string(pageSize));
}
std::string ListSnapshotLinksRequest::getFsIds() const {
return fsIds_;
}
void ListSnapshotLinksRequest::setFsIds(const std::string &fsIds) {
fsIds_ = fsIds;
setParameter(std::string("FsIds"), fsIds);
}