Modify SubmitSmarttagJob.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
2020-04-16 Version: 1.36.362
|
||||
- Modify `SubmitSmarttagJob`.
|
||||
|
||||
2020-04-16 Version: 1.36.361
|
||||
- Add ModifyWhiteIps.
|
||||
|
||||
|
||||
@@ -59,6 +59,8 @@ namespace AlibabaCloud
|
||||
void setPipelineId(const std::string& pipelineId);
|
||||
std::string getContentType()const;
|
||||
void setContentType(const std::string& contentType);
|
||||
std::string getInput()const;
|
||||
void setInput(const std::string& input);
|
||||
std::string getContentAddr()const;
|
||||
void setContentAddr(const std::string& contentAddr);
|
||||
|
||||
@@ -75,6 +77,7 @@ namespace AlibabaCloud
|
||||
std::string params_;
|
||||
std::string pipelineId_;
|
||||
std::string contentType_;
|
||||
std::string input_;
|
||||
std::string contentAddr_;
|
||||
|
||||
};
|
||||
|
||||
@@ -159,6 +159,17 @@ void SubmitSmarttagJobRequest::setContentType(const std::string& contentType)
|
||||
setParameter("ContentType", contentType);
|
||||
}
|
||||
|
||||
std::string SubmitSmarttagJobRequest::getInput()const
|
||||
{
|
||||
return input_;
|
||||
}
|
||||
|
||||
void SubmitSmarttagJobRequest::setInput(const std::string& input)
|
||||
{
|
||||
input_ = input;
|
||||
setParameter("Input", input);
|
||||
}
|
||||
|
||||
std::string SubmitSmarttagJobRequest::getContentAddr()const
|
||||
{
|
||||
return contentAddr_;
|
||||
|
||||
Reference in New Issue
Block a user