Skip to content

Commit

Permalink
Update API CreateDataLimit: add param InstantlyScan.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 2, 2024
1 parent b02380f commit 4eb6b4f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sddp-20190103/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024-07-02 Version: 1.1.5
- Update API CreateDataLimit: add param InstantlyScan.


2024-06-27 Version: 1.1.4
- Update API DescribeParentInstance: update response param.

Expand Down
7 changes: 7 additions & 0 deletions sddp-20190103/include/alibabacloud/sddp_20190103.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ class CreateDataLimitRequest : public Darabonba::Model {
shared_ptr<string> engineType{};
shared_ptr<long> eventStatus{};
shared_ptr<long> featureType{};
shared_ptr<bool> instantlyScan{};
shared_ptr<string> lang{};
shared_ptr<long> logStoreDay{};
shared_ptr<long> ocrStatus{};
Expand Down Expand Up @@ -217,6 +218,9 @@ class CreateDataLimitRequest : public Darabonba::Model {
if (featureType) {
res["FeatureType"] = boost::any(*featureType);
}
if (instantlyScan) {
res["InstantlyScan"] = boost::any(*instantlyScan);
}
if (lang) {
res["Lang"] = boost::any(*lang);
}
Expand Down Expand Up @@ -275,6 +279,9 @@ class CreateDataLimitRequest : public Darabonba::Model {
if (m.find("FeatureType") != m.end() && !m["FeatureType"].empty()) {
featureType = make_shared<long>(boost::any_cast<long>(m["FeatureType"]));
}
if (m.find("InstantlyScan") != m.end() && !m["InstantlyScan"].empty()) {
instantlyScan = make_shared<bool>(boost::any_cast<bool>(m["InstantlyScan"]));
}
if (m.find("Lang") != m.end() && !m["Lang"].empty()) {
lang = make_shared<string>(boost::any_cast<string>(m["Lang"]));
}
Expand Down
3 changes: 3 additions & 0 deletions sddp-20190103/src/sddp_20190103.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ CreateDataLimitResponse Alibabacloud_Sddp20190103::Client::createDataLimitWithOp
if (!Darabonba_Util::Client::isUnset<long>(request->featureType)) {
query->insert(pair<string, long>("FeatureType", *request->featureType));
}
if (!Darabonba_Util::Client::isUnset<bool>(request->instantlyScan)) {
query->insert(pair<string, bool>("InstantlyScan", *request->instantlyScan));
}
if (!Darabonba_Util::Client::isUnset<string>(request->lang)) {
query->insert(pair<string, string>("Lang", *request->lang));
}
Expand Down

0 comments on commit 4eb6b4f

Please sign in to comment.