Modify SubmitSmarttagJob.

This commit is contained in:
sdk-team
2020-04-16 19:47:18 +08:00
parent b004f4b9fa
commit e53482d9c6
4 changed files with 18 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
2020-04-16 Version: 1.36.362
- Modify `SubmitSmarttagJob`.
2020-04-16 Version: 1.36.361 2020-04-16 Version: 1.36.361
- Add ModifyWhiteIps. - Add ModifyWhiteIps.

View File

@@ -1 +1 @@
1.36.361 1.36.362

View File

@@ -59,6 +59,8 @@ namespace AlibabaCloud
void setPipelineId(const std::string& pipelineId); void setPipelineId(const std::string& pipelineId);
std::string getContentType()const; std::string getContentType()const;
void setContentType(const std::string& contentType); void setContentType(const std::string& contentType);
std::string getInput()const;
void setInput(const std::string& input);
std::string getContentAddr()const; std::string getContentAddr()const;
void setContentAddr(const std::string& contentAddr); void setContentAddr(const std::string& contentAddr);
@@ -75,6 +77,7 @@ namespace AlibabaCloud
std::string params_; std::string params_;
std::string pipelineId_; std::string pipelineId_;
std::string contentType_; std::string contentType_;
std::string input_;
std::string contentAddr_; std::string contentAddr_;
}; };

View File

@@ -159,6 +159,17 @@ void SubmitSmarttagJobRequest::setContentType(const std::string& contentType)
setParameter("ContentType", 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 std::string SubmitSmarttagJobRequest::getContentAddr()const
{ {
return contentAddr_; return contentAddr_;