Explorar el Código

Add source picture url for Monitor.

sdk-team hace 6 años
padre
commit
d412a52735

+ 3 - 0
CHANGELOG

@@ -1,3 +1,6 @@
+2020-08-03 Version: 1.36.553
+- Add source picture url for Monitor.
+
 2020-08-03 Version: 1.36.552
 - Fix Some API Response Define.
 

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.552
+1.36.553

+ 3 - 0
vcs/include/alibabacloud/vcs/model/InvokeMotorModelRequest.h

@@ -39,12 +39,15 @@ namespace AlibabaCloud
 				void setPicPath(const std::string& picPath);
 				std::string getCorpId()const;
 				void setCorpId(const std::string& corpId);
+				std::string getPicUrl()const;
+				void setPicUrl(const std::string& picUrl);
 				std::string getPicId()const;
 				void setPicId(const std::string& picId);
 
             private:
 				std::string picPath_;
 				std::string corpId_;
+				std::string picUrl_;
 				std::string picId_;
 
 			};

+ 11 - 0
vcs/src/model/InvokeMotorModelRequest.cc

@@ -49,6 +49,17 @@ void InvokeMotorModelRequest::setCorpId(const std::string& corpId)
 	setBodyParameter("CorpId", corpId);
 }
 
+std::string InvokeMotorModelRequest::getPicUrl()const
+{
+	return picUrl_;
+}
+
+void InvokeMotorModelRequest::setPicUrl(const std::string& picUrl)
+{
+	picUrl_ = picUrl;
+	setBodyParameter("PicUrl", picUrl);
+}
+
 std::string InvokeMotorModelRequest::getPicId()const
 {
 	return picId_;