diff --git a/CHANGELOG b/CHANGELOG index 2fa4b0157..e89aef192 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2019-11-28 Version 1.36.202 +- Supported dash for compress. + 2019-11-28 Version 1.36.201 - Eni Supports Multi-SecurityGroup. diff --git a/VERSION b/VERSION index 996d4a327..b6d57ce91 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.201 \ No newline at end of file +1.36.202 \ No newline at end of file diff --git a/imm/include/alibabacloud/imm/model/CreateVideoCompressTaskRequest.h b/imm/include/alibabacloud/imm/model/CreateVideoCompressTaskRequest.h index ccf64d93a..3df333655 100644 --- a/imm/include/alibabacloud/imm/model/CreateVideoCompressTaskRequest.h +++ b/imm/include/alibabacloud/imm/model/CreateVideoCompressTaskRequest.h @@ -41,6 +41,8 @@ namespace AlibabaCloud void setAccessKeyId(const std::string& accessKeyId); std::string getNotifyEndpoint()const; void setNotifyEndpoint(const std::string& notifyEndpoint); + std::string getTargetContainer()const; + void setTargetContainer(const std::string& targetContainer); std::string getCustomMessage()const; void setCustomMessage(const std::string& customMessage); std::string getNotifyTopicName()const; @@ -54,6 +56,7 @@ namespace AlibabaCloud std::string project_; std::string accessKeyId_; std::string notifyEndpoint_; + std::string targetContainer_; std::string customMessage_; std::string notifyTopicName_; std::string targetList_; diff --git a/imm/src/model/CreateVideoCompressTaskRequest.cc b/imm/src/model/CreateVideoCompressTaskRequest.cc index 6820914e5..adcdf0cb4 100644 --- a/imm/src/model/CreateVideoCompressTaskRequest.cc +++ b/imm/src/model/CreateVideoCompressTaskRequest.cc @@ -60,6 +60,17 @@ void CreateVideoCompressTaskRequest::setNotifyEndpoint(const std::string& notify setCoreParameter("NotifyEndpoint", notifyEndpoint); } +std::string CreateVideoCompressTaskRequest::getTargetContainer()const +{ + return targetContainer_; +} + +void CreateVideoCompressTaskRequest::setTargetContainer(const std::string& targetContainer) +{ + targetContainer_ = targetContainer; + setCoreParameter("TargetContainer", targetContainer); +} + std::string CreateVideoCompressTaskRequest::getCustomMessage()const { return customMessage_;