update api
This commit is contained in:
@@ -34,8 +34,6 @@ public:
|
||||
void setDescription(const std::string &description);
|
||||
std::string getType() const;
|
||||
void setType(const std::string &type);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
std::string getRoleArn() const;
|
||||
void setRoleArn(const std::string &roleArn);
|
||||
std::string getName() const;
|
||||
@@ -50,7 +48,6 @@ public:
|
||||
private:
|
||||
std::string description_;
|
||||
std::string type_;
|
||||
std::string requestId_;
|
||||
std::string roleArn_;
|
||||
std::string name_;
|
||||
std::string definition_;
|
||||
|
||||
@@ -30,28 +30,28 @@ class ALIBABACLOUD_FNF_EXPORT CreateScheduleRequest : public RpcServiceRequest {
|
||||
public:
|
||||
CreateScheduleRequest();
|
||||
~CreateScheduleRequest();
|
||||
std::string getScheduleName() const;
|
||||
void setScheduleName(const std::string &scheduleName);
|
||||
std::string getCronExpression() const;
|
||||
void setCronExpression(const std::string &cronExpression);
|
||||
std::string getPayload() const;
|
||||
void setPayload(const std::string &payload);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
bool getEnable() const;
|
||||
void setEnable(bool enable);
|
||||
std::string getDescription() const;
|
||||
void setDescription(const std::string &description);
|
||||
std::string getScheduleName() const;
|
||||
void setScheduleName(const std::string &scheduleName);
|
||||
std::string getSignatureVersion() const;
|
||||
void setSignatureVersion(const std::string &signatureVersion);
|
||||
std::string getPayload() const;
|
||||
void setPayload(const std::string &payload);
|
||||
bool getEnable() const;
|
||||
void setEnable(bool enable);
|
||||
std::string getFlowName() const;
|
||||
void setFlowName(const std::string &flowName);
|
||||
|
||||
private:
|
||||
std::string scheduleName_;
|
||||
std::string cronExpression_;
|
||||
std::string payload_;
|
||||
std::string requestId_;
|
||||
bool enable_;
|
||||
std::string description_;
|
||||
std::string scheduleName_;
|
||||
std::string signatureVersion_;
|
||||
std::string payload_;
|
||||
bool enable_;
|
||||
std::string flowName_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -30,13 +30,10 @@ class ALIBABACLOUD_FNF_EXPORT DeleteFlowRequest : public RpcServiceRequest {
|
||||
public:
|
||||
DeleteFlowRequest();
|
||||
~DeleteFlowRequest();
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
std::string getName() const;
|
||||
void setName(const std::string &name);
|
||||
|
||||
private:
|
||||
std::string requestId_;
|
||||
std::string name_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -32,14 +32,11 @@ public:
|
||||
~DeleteScheduleRequest();
|
||||
std::string getScheduleName() const;
|
||||
void setScheduleName(const std::string &scheduleName);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
std::string getFlowName() const;
|
||||
void setFlowName(const std::string &flowName);
|
||||
|
||||
private:
|
||||
std::string scheduleName_;
|
||||
std::string requestId_;
|
||||
std::string flowName_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -34,15 +34,12 @@ public:
|
||||
void setExecutionName(const std::string &executionName);
|
||||
int getWaitTimeSeconds() const;
|
||||
void setWaitTimeSeconds(int waitTimeSeconds);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
std::string getFlowName() const;
|
||||
void setFlowName(const std::string &flowName);
|
||||
|
||||
private:
|
||||
std::string executionName_;
|
||||
int waitTimeSeconds_;
|
||||
std::string requestId_;
|
||||
std::string flowName_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -30,13 +30,10 @@ class ALIBABACLOUD_FNF_EXPORT DescribeFlowRequest : public RpcServiceRequest {
|
||||
public:
|
||||
DescribeFlowRequest();
|
||||
~DescribeFlowRequest();
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
std::string getName() const;
|
||||
void setName(const std::string &name);
|
||||
|
||||
private:
|
||||
std::string requestId_;
|
||||
std::string name_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -32,14 +32,11 @@ public:
|
||||
~DescribeScheduleRequest();
|
||||
std::string getScheduleName() const;
|
||||
void setScheduleName(const std::string &scheduleName);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
std::string getFlowName() const;
|
||||
void setFlowName(const std::string &flowName);
|
||||
|
||||
private:
|
||||
std::string scheduleName_;
|
||||
std::string requestId_;
|
||||
std::string flowName_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -34,8 +34,6 @@ public:
|
||||
void setExecutionName(const std::string &executionName);
|
||||
std::string getNextToken() const;
|
||||
void setNextToken(const std::string &nextToken);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
int getLimit() const;
|
||||
void setLimit(int limit);
|
||||
std::string getFlowName() const;
|
||||
@@ -44,7 +42,6 @@ public:
|
||||
private:
|
||||
std::string executionName_;
|
||||
std::string nextToken_;
|
||||
std::string requestId_;
|
||||
int limit_;
|
||||
std::string flowName_;
|
||||
};
|
||||
|
||||
@@ -36,8 +36,6 @@ public:
|
||||
void setExecutionNamePrefix(const std::string &executionNamePrefix);
|
||||
std::string getNextToken() const;
|
||||
void setNextToken(const std::string &nextToken);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
int getLimit() const;
|
||||
void setLimit(int limit);
|
||||
std::string getFlowName() const;
|
||||
@@ -51,7 +49,6 @@ private:
|
||||
std::string startedTimeBegin_;
|
||||
std::string executionNamePrefix_;
|
||||
std::string nextToken_;
|
||||
std::string requestId_;
|
||||
int limit_;
|
||||
std::string flowName_;
|
||||
std::string startedTimeEnd_;
|
||||
|
||||
@@ -32,14 +32,11 @@ public:
|
||||
~ListFlowsRequest();
|
||||
std::string getNextToken() const;
|
||||
void setNextToken(const std::string &nextToken);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
int getLimit() const;
|
||||
void setLimit(int limit);
|
||||
|
||||
private:
|
||||
std::string nextToken_;
|
||||
std::string requestId_;
|
||||
int limit_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -32,8 +32,6 @@ public:
|
||||
~ListSchedulesRequest();
|
||||
std::string getNextToken() const;
|
||||
void setNextToken(const std::string &nextToken);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
int getLimit() const;
|
||||
void setLimit(int limit);
|
||||
std::string getFlowName() const;
|
||||
@@ -41,7 +39,6 @@ public:
|
||||
|
||||
private:
|
||||
std::string nextToken_;
|
||||
std::string requestId_;
|
||||
int limit_;
|
||||
std::string flowName_;
|
||||
};
|
||||
|
||||
@@ -34,15 +34,12 @@ public:
|
||||
void setCause(const std::string &cause);
|
||||
std::string getError() const;
|
||||
void setError(const std::string &error);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
std::string getTaskToken() const;
|
||||
void setTaskToken(const std::string &taskToken);
|
||||
|
||||
private:
|
||||
std::string cause_;
|
||||
std::string error_;
|
||||
std::string requestId_;
|
||||
std::string taskToken_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -32,14 +32,11 @@ public:
|
||||
~ReportTaskSucceededRequest();
|
||||
std::string getOutput() const;
|
||||
void setOutput(const std::string &output);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
std::string getTaskToken() const;
|
||||
void setTaskToken(const std::string &taskToken);
|
||||
|
||||
private:
|
||||
std::string output_;
|
||||
std::string requestId_;
|
||||
std::string taskToken_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -36,8 +36,6 @@ public:
|
||||
void setExecutionName(const std::string &executionName);
|
||||
std::string getInput() const;
|
||||
void setInput(const std::string &input);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
std::string getFlowName() const;
|
||||
void setFlowName(const std::string &flowName);
|
||||
|
||||
@@ -45,7 +43,6 @@ private:
|
||||
std::string callbackFnFTaskToken_;
|
||||
std::string executionName_;
|
||||
std::string input_;
|
||||
std::string requestId_;
|
||||
std::string flowName_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -34,15 +34,12 @@ public:
|
||||
void setExecutionName(const std::string &executionName);
|
||||
std::string getInput() const;
|
||||
void setInput(const std::string &input);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
std::string getFlowName() const;
|
||||
void setFlowName(const std::string &flowName);
|
||||
|
||||
private:
|
||||
std::string executionName_;
|
||||
std::string input_;
|
||||
std::string requestId_;
|
||||
std::string flowName_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -36,8 +36,6 @@ public:
|
||||
void setCause(const std::string &cause);
|
||||
std::string getError() const;
|
||||
void setError(const std::string &error);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
std::string getFlowName() const;
|
||||
void setFlowName(const std::string &flowName);
|
||||
|
||||
@@ -45,7 +43,6 @@ private:
|
||||
std::string executionName_;
|
||||
std::string cause_;
|
||||
std::string error_;
|
||||
std::string requestId_;
|
||||
std::string flowName_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -34,8 +34,6 @@ public:
|
||||
void setDescription(const std::string &description);
|
||||
std::string getType() const;
|
||||
void setType(const std::string &type);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
std::string getRoleArn() const;
|
||||
void setRoleArn(const std::string &roleArn);
|
||||
std::string getName() const;
|
||||
@@ -48,7 +46,6 @@ public:
|
||||
private:
|
||||
std::string description_;
|
||||
std::string type_;
|
||||
std::string requestId_;
|
||||
std::string roleArn_;
|
||||
std::string name_;
|
||||
std::string definition_;
|
||||
|
||||
@@ -30,28 +30,25 @@ class ALIBABACLOUD_FNF_EXPORT UpdateScheduleRequest : public RpcServiceRequest {
|
||||
public:
|
||||
UpdateScheduleRequest();
|
||||
~UpdateScheduleRequest();
|
||||
std::string getScheduleName() const;
|
||||
void setScheduleName(const std::string &scheduleName);
|
||||
std::string getCronExpression() const;
|
||||
void setCronExpression(const std::string &cronExpression);
|
||||
std::string getPayload() const;
|
||||
void setPayload(const std::string &payload);
|
||||
std::string getRequestId() const;
|
||||
void setRequestId(const std::string &requestId);
|
||||
bool getEnable() const;
|
||||
void setEnable(bool enable);
|
||||
std::string getDescription() const;
|
||||
void setDescription(const std::string &description);
|
||||
std::string getScheduleName() const;
|
||||
void setScheduleName(const std::string &scheduleName);
|
||||
std::string getPayload() const;
|
||||
void setPayload(const std::string &payload);
|
||||
bool getEnable() const;
|
||||
void setEnable(bool enable);
|
||||
std::string getFlowName() const;
|
||||
void setFlowName(const std::string &flowName);
|
||||
|
||||
private:
|
||||
std::string scheduleName_;
|
||||
std::string cronExpression_;
|
||||
std::string payload_;
|
||||
std::string requestId_;
|
||||
bool enable_;
|
||||
std::string description_;
|
||||
std::string scheduleName_;
|
||||
std::string payload_;
|
||||
bool enable_;
|
||||
std::string flowName_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -43,15 +43,6 @@ void CreateFlowRequest::setType(const std::string &type) {
|
||||
setBodyParameter(std::string("Type"), type);
|
||||
}
|
||||
|
||||
std::string CreateFlowRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void CreateFlowRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
std::string CreateFlowRequest::getRoleArn() const {
|
||||
return roleArn_;
|
||||
}
|
||||
|
||||
@@ -25,15 +25,6 @@ CreateScheduleRequest::CreateScheduleRequest()
|
||||
|
||||
CreateScheduleRequest::~CreateScheduleRequest() {}
|
||||
|
||||
std::string CreateScheduleRequest::getScheduleName() const {
|
||||
return scheduleName_;
|
||||
}
|
||||
|
||||
void CreateScheduleRequest::setScheduleName(const std::string &scheduleName) {
|
||||
scheduleName_ = scheduleName;
|
||||
setBodyParameter(std::string("ScheduleName"), scheduleName);
|
||||
}
|
||||
|
||||
std::string CreateScheduleRequest::getCronExpression() const {
|
||||
return cronExpression_;
|
||||
}
|
||||
@@ -43,33 +34,6 @@ void CreateScheduleRequest::setCronExpression(const std::string &cronExpression)
|
||||
setBodyParameter(std::string("CronExpression"), cronExpression);
|
||||
}
|
||||
|
||||
std::string CreateScheduleRequest::getPayload() const {
|
||||
return payload_;
|
||||
}
|
||||
|
||||
void CreateScheduleRequest::setPayload(const std::string &payload) {
|
||||
payload_ = payload;
|
||||
setBodyParameter(std::string("Payload"), payload);
|
||||
}
|
||||
|
||||
std::string CreateScheduleRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void CreateScheduleRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
bool CreateScheduleRequest::getEnable() const {
|
||||
return enable_;
|
||||
}
|
||||
|
||||
void CreateScheduleRequest::setEnable(bool enable) {
|
||||
enable_ = enable;
|
||||
setBodyParameter(std::string("Enable"), enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateScheduleRequest::getDescription() const {
|
||||
return description_;
|
||||
}
|
||||
@@ -79,6 +43,42 @@ void CreateScheduleRequest::setDescription(const std::string &description) {
|
||||
setBodyParameter(std::string("Description"), description);
|
||||
}
|
||||
|
||||
std::string CreateScheduleRequest::getScheduleName() const {
|
||||
return scheduleName_;
|
||||
}
|
||||
|
||||
void CreateScheduleRequest::setScheduleName(const std::string &scheduleName) {
|
||||
scheduleName_ = scheduleName;
|
||||
setBodyParameter(std::string("ScheduleName"), scheduleName);
|
||||
}
|
||||
|
||||
std::string CreateScheduleRequest::getSignatureVersion() const {
|
||||
return signatureVersion_;
|
||||
}
|
||||
|
||||
void CreateScheduleRequest::setSignatureVersion(const std::string &signatureVersion) {
|
||||
signatureVersion_ = signatureVersion;
|
||||
setParameter(std::string("SignatureVersion"), signatureVersion);
|
||||
}
|
||||
|
||||
std::string CreateScheduleRequest::getPayload() const {
|
||||
return payload_;
|
||||
}
|
||||
|
||||
void CreateScheduleRequest::setPayload(const std::string &payload) {
|
||||
payload_ = payload;
|
||||
setBodyParameter(std::string("Payload"), payload);
|
||||
}
|
||||
|
||||
bool CreateScheduleRequest::getEnable() const {
|
||||
return enable_;
|
||||
}
|
||||
|
||||
void CreateScheduleRequest::setEnable(bool enable) {
|
||||
enable_ = enable;
|
||||
setBodyParameter(std::string("Enable"), enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateScheduleRequest::getFlowName() const {
|
||||
return flowName_;
|
||||
}
|
||||
|
||||
@@ -20,20 +20,11 @@ using AlibabaCloud::Fnf::Model::DeleteFlowRequest;
|
||||
|
||||
DeleteFlowRequest::DeleteFlowRequest()
|
||||
: RpcServiceRequest("fnf", "2019-03-15", "DeleteFlow") {
|
||||
setMethod(HttpRequest::Method::Get);
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteFlowRequest::~DeleteFlowRequest() {}
|
||||
|
||||
std::string DeleteFlowRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void DeleteFlowRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
std::string DeleteFlowRequest::getName() const {
|
||||
return name_;
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@ using AlibabaCloud::Fnf::Model::DeleteScheduleRequest;
|
||||
|
||||
DeleteScheduleRequest::DeleteScheduleRequest()
|
||||
: RpcServiceRequest("fnf", "2019-03-15", "DeleteSchedule") {
|
||||
setMethod(HttpRequest::Method::Get);
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteScheduleRequest::~DeleteScheduleRequest() {}
|
||||
@@ -34,15 +34,6 @@ void DeleteScheduleRequest::setScheduleName(const std::string &scheduleName) {
|
||||
setParameter(std::string("ScheduleName"), scheduleName);
|
||||
}
|
||||
|
||||
std::string DeleteScheduleRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void DeleteScheduleRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
std::string DeleteScheduleRequest::getFlowName() const {
|
||||
return flowName_;
|
||||
}
|
||||
|
||||
@@ -43,15 +43,6 @@ void DescribeExecutionRequest::setWaitTimeSeconds(int waitTimeSeconds) {
|
||||
setParameter(std::string("WaitTimeSeconds"), std::to_string(waitTimeSeconds));
|
||||
}
|
||||
|
||||
std::string DescribeExecutionRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void DescribeExecutionRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
std::string DescribeExecutionRequest::getFlowName() const {
|
||||
return flowName_;
|
||||
}
|
||||
|
||||
@@ -25,15 +25,6 @@ DescribeFlowRequest::DescribeFlowRequest()
|
||||
|
||||
DescribeFlowRequest::~DescribeFlowRequest() {}
|
||||
|
||||
std::string DescribeFlowRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void DescribeFlowRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
std::string DescribeFlowRequest::getName() const {
|
||||
return name_;
|
||||
}
|
||||
|
||||
@@ -34,15 +34,6 @@ void DescribeScheduleRequest::setScheduleName(const std::string &scheduleName) {
|
||||
setParameter(std::string("ScheduleName"), scheduleName);
|
||||
}
|
||||
|
||||
std::string DescribeScheduleRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void DescribeScheduleRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
std::string DescribeScheduleRequest::getFlowName() const {
|
||||
return flowName_;
|
||||
}
|
||||
|
||||
@@ -43,15 +43,6 @@ void GetExecutionHistoryRequest::setNextToken(const std::string &nextToken) {
|
||||
setParameter(std::string("NextToken"), nextToken);
|
||||
}
|
||||
|
||||
std::string GetExecutionHistoryRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void GetExecutionHistoryRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
int GetExecutionHistoryRequest::getLimit() const {
|
||||
return limit_;
|
||||
}
|
||||
|
||||
@@ -52,15 +52,6 @@ void ListExecutionsRequest::setNextToken(const std::string &nextToken) {
|
||||
setParameter(std::string("NextToken"), nextToken);
|
||||
}
|
||||
|
||||
std::string ListExecutionsRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void ListExecutionsRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
int ListExecutionsRequest::getLimit() const {
|
||||
return limit_;
|
||||
}
|
||||
|
||||
@@ -34,15 +34,6 @@ void ListFlowsRequest::setNextToken(const std::string &nextToken) {
|
||||
setParameter(std::string("NextToken"), nextToken);
|
||||
}
|
||||
|
||||
std::string ListFlowsRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void ListFlowsRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
int ListFlowsRequest::getLimit() const {
|
||||
return limit_;
|
||||
}
|
||||
|
||||
@@ -34,15 +34,6 @@ void ListSchedulesRequest::setNextToken(const std::string &nextToken) {
|
||||
setParameter(std::string("NextToken"), nextToken);
|
||||
}
|
||||
|
||||
std::string ListSchedulesRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void ListSchedulesRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
int ListSchedulesRequest::getLimit() const {
|
||||
return limit_;
|
||||
}
|
||||
|
||||
@@ -43,15 +43,6 @@ void ReportTaskFailedRequest::setError(const std::string &error) {
|
||||
setBodyParameter(std::string("Error"), error);
|
||||
}
|
||||
|
||||
std::string ReportTaskFailedRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void ReportTaskFailedRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
std::string ReportTaskFailedRequest::getTaskToken() const {
|
||||
return taskToken_;
|
||||
}
|
||||
|
||||
@@ -34,15 +34,6 @@ void ReportTaskSucceededRequest::setOutput(const std::string &output) {
|
||||
setBodyParameter(std::string("Output"), output);
|
||||
}
|
||||
|
||||
std::string ReportTaskSucceededRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void ReportTaskSucceededRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
std::string ReportTaskSucceededRequest::getTaskToken() const {
|
||||
return taskToken_;
|
||||
}
|
||||
|
||||
@@ -52,15 +52,6 @@ void StartExecutionRequest::setInput(const std::string &input) {
|
||||
setBodyParameter(std::string("Input"), input);
|
||||
}
|
||||
|
||||
std::string StartExecutionRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void StartExecutionRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
std::string StartExecutionRequest::getFlowName() const {
|
||||
return flowName_;
|
||||
}
|
||||
|
||||
@@ -43,15 +43,6 @@ void StartSyncExecutionRequest::setInput(const std::string &input) {
|
||||
setBodyParameter(std::string("Input"), input);
|
||||
}
|
||||
|
||||
std::string StartSyncExecutionRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void StartSyncExecutionRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
std::string StartSyncExecutionRequest::getFlowName() const {
|
||||
return flowName_;
|
||||
}
|
||||
|
||||
@@ -52,15 +52,6 @@ void StopExecutionRequest::setError(const std::string &error) {
|
||||
setBodyParameter(std::string("Error"), error);
|
||||
}
|
||||
|
||||
std::string StopExecutionRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void StopExecutionRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
std::string StopExecutionRequest::getFlowName() const {
|
||||
return flowName_;
|
||||
}
|
||||
|
||||
@@ -43,15 +43,6 @@ void UpdateFlowRequest::setType(const std::string &type) {
|
||||
setBodyParameter(std::string("Type"), type);
|
||||
}
|
||||
|
||||
std::string UpdateFlowRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void UpdateFlowRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
std::string UpdateFlowRequest::getRoleArn() const {
|
||||
return roleArn_;
|
||||
}
|
||||
|
||||
@@ -25,15 +25,6 @@ UpdateScheduleRequest::UpdateScheduleRequest()
|
||||
|
||||
UpdateScheduleRequest::~UpdateScheduleRequest() {}
|
||||
|
||||
std::string UpdateScheduleRequest::getScheduleName() const {
|
||||
return scheduleName_;
|
||||
}
|
||||
|
||||
void UpdateScheduleRequest::setScheduleName(const std::string &scheduleName) {
|
||||
scheduleName_ = scheduleName;
|
||||
setBodyParameter(std::string("ScheduleName"), scheduleName);
|
||||
}
|
||||
|
||||
std::string UpdateScheduleRequest::getCronExpression() const {
|
||||
return cronExpression_;
|
||||
}
|
||||
@@ -43,33 +34,6 @@ void UpdateScheduleRequest::setCronExpression(const std::string &cronExpression)
|
||||
setBodyParameter(std::string("CronExpression"), cronExpression);
|
||||
}
|
||||
|
||||
std::string UpdateScheduleRequest::getPayload() const {
|
||||
return payload_;
|
||||
}
|
||||
|
||||
void UpdateScheduleRequest::setPayload(const std::string &payload) {
|
||||
payload_ = payload;
|
||||
setBodyParameter(std::string("Payload"), payload);
|
||||
}
|
||||
|
||||
std::string UpdateScheduleRequest::getRequestId() const {
|
||||
return requestId_;
|
||||
}
|
||||
|
||||
void UpdateScheduleRequest::setRequestId(const std::string &requestId) {
|
||||
requestId_ = requestId;
|
||||
setParameter(std::string("RequestId"), requestId);
|
||||
}
|
||||
|
||||
bool UpdateScheduleRequest::getEnable() const {
|
||||
return enable_;
|
||||
}
|
||||
|
||||
void UpdateScheduleRequest::setEnable(bool enable) {
|
||||
enable_ = enable;
|
||||
setBodyParameter(std::string("Enable"), enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string UpdateScheduleRequest::getDescription() const {
|
||||
return description_;
|
||||
}
|
||||
@@ -79,6 +43,33 @@ void UpdateScheduleRequest::setDescription(const std::string &description) {
|
||||
setBodyParameter(std::string("Description"), description);
|
||||
}
|
||||
|
||||
std::string UpdateScheduleRequest::getScheduleName() const {
|
||||
return scheduleName_;
|
||||
}
|
||||
|
||||
void UpdateScheduleRequest::setScheduleName(const std::string &scheduleName) {
|
||||
scheduleName_ = scheduleName;
|
||||
setBodyParameter(std::string("ScheduleName"), scheduleName);
|
||||
}
|
||||
|
||||
std::string UpdateScheduleRequest::getPayload() const {
|
||||
return payload_;
|
||||
}
|
||||
|
||||
void UpdateScheduleRequest::setPayload(const std::string &payload) {
|
||||
payload_ = payload;
|
||||
setBodyParameter(std::string("Payload"), payload);
|
||||
}
|
||||
|
||||
bool UpdateScheduleRequest::getEnable() const {
|
||||
return enable_;
|
||||
}
|
||||
|
||||
void UpdateScheduleRequest::setEnable(bool enable) {
|
||||
enable_ = enable;
|
||||
setBodyParameter(std::string("Enable"), enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string UpdateScheduleRequest::getFlowName() const {
|
||||
return flowName_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user