DeleteFlow、DeleteSchedule Parameters move to body.

This commit is contained in:
sdk-team
2024-03-26 13:26:08 +00:00
parent 046fa0c8a7
commit fc0ca83c5e
3 changed files with 4 additions and 4 deletions

View File

@@ -1 +1 @@
1.36.1883
1.36.1884

View File

@@ -31,6 +31,6 @@ std::string DeleteFlowRequest::getName() const {
void DeleteFlowRequest::setName(const std::string &name) {
name_ = name;
setParameter(std::string("Name"), name);
setBodyParameter(std::string("Name"), name);
}

View File

@@ -31,7 +31,7 @@ std::string DeleteScheduleRequest::getScheduleName() const {
void DeleteScheduleRequest::setScheduleName(const std::string &scheduleName) {
scheduleName_ = scheduleName;
setParameter(std::string("ScheduleName"), scheduleName);
setBodyParameter(std::string("ScheduleName"), scheduleName);
}
std::string DeleteScheduleRequest::getFlowName() const {
@@ -40,6 +40,6 @@ std::string DeleteScheduleRequest::getFlowName() const {
void DeleteScheduleRequest::setFlowName(const std::string &flowName) {
flowName_ = flowName;
setParameter(std::string("FlowName"), flowName);
setBodyParameter(std::string("FlowName"), flowName);
}