DeleteFlow、DeleteSchedule Parameters move to body.
This commit is contained in:
@@ -31,6 +31,6 @@ std::string DeleteFlowRequest::getName() const {
|
|||||||
|
|
||||||
void DeleteFlowRequest::setName(const std::string &name) {
|
void DeleteFlowRequest::setName(const std::string &name) {
|
||||||
name_ = name;
|
name_ = name;
|
||||||
setParameter(std::string("Name"), name);
|
setBodyParameter(std::string("Name"), name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ std::string DeleteScheduleRequest::getScheduleName() const {
|
|||||||
|
|
||||||
void DeleteScheduleRequest::setScheduleName(const std::string &scheduleName) {
|
void DeleteScheduleRequest::setScheduleName(const std::string &scheduleName) {
|
||||||
scheduleName_ = scheduleName;
|
scheduleName_ = scheduleName;
|
||||||
setParameter(std::string("ScheduleName"), scheduleName);
|
setBodyParameter(std::string("ScheduleName"), scheduleName);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string DeleteScheduleRequest::getFlowName() const {
|
std::string DeleteScheduleRequest::getFlowName() const {
|
||||||
@@ -40,6 +40,6 @@ std::string DeleteScheduleRequest::getFlowName() const {
|
|||||||
|
|
||||||
void DeleteScheduleRequest::setFlowName(const std::string &flowName) {
|
void DeleteScheduleRequest::setFlowName(const std::string &flowName) {
|
||||||
flowName_ = flowName;
|
flowName_ = flowName;
|
||||||
setParameter(std::string("FlowName"), flowName);
|
setBodyParameter(std::string("FlowName"), flowName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user