sdk-team 6 лет назад
Родитель
Сommit
059ea89535

+ 3 - 0
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.
 

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.201
+1.36.202

+ 3 - 0
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_;

+ 11 - 0
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_;