Browse Source

Update monitor related API.

sdk-team 6 năm trước cách đây
mục cha
commit
6bba61cebe

+ 3 - 0
CHANGELOG

@@ -1,3 +1,6 @@
+2020-06-16 Version: 1.36.462
+- Update monitor related API.
+
 2020-06-15 Version: 1.36.461
 - Generated 2019-09-10 for `waf-openapi`.
 

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.461
+1.36.462

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

@@ -43,12 +43,15 @@ namespace AlibabaCloud
 				void setDescription(const std::string& description);
 				int getBatchIndicator()const;
 				void setBatchIndicator(int batchIndicator);
+				std::string getAlgorithmVendor()const;
+				void setAlgorithmVendor(const std::string& algorithmVendor);
 
             private:
 				std::string monitorType_;
 				std::string corpId_;
 				std::string description_;
 				int batchIndicator_;
+				std::string algorithmVendor_;
 
 			};
 		}

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

@@ -41,6 +41,8 @@ namespace AlibabaCloud
 				void setEndTime(long endTime);
 				long getStartTime()const;
 				void setStartTime(long startTime);
+				std::string getAlgorithmVendor()const;
+				void setAlgorithmVendor(const std::string& algorithmVendor);
 				std::string getMinRecordId()const;
 				void setMinRecordId(const std::string& minRecordId);
 				std::string getTaskId()const;
@@ -50,6 +52,7 @@ namespace AlibabaCloud
 				std::string corpId_;
 				long endTime_;
 				long startTime_;
+				std::string algorithmVendor_;
 				std::string minRecordId_;
 				std::string taskId_;
 

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

@@ -35,10 +35,13 @@ namespace AlibabaCloud
 				StopMonitorRequest();
 				~StopMonitorRequest();
 
+				std::string getAlgorithmVendor()const;
+				void setAlgorithmVendor(const std::string& algorithmVendor);
 				std::string getTaskId()const;
 				void setTaskId(const std::string& taskId);
 
             private:
+				std::string algorithmVendor_;
 				std::string taskId_;
 
 			};

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

@@ -59,6 +59,8 @@ namespace AlibabaCloud
 				void setAttributeValueList(const std::string& attributeValueList);
 				std::string getDeviceList()const;
 				void setDeviceList(const std::string& deviceList);
+				std::string getAlgorithmVendor()const;
+				void setAlgorithmVendor(const std::string& algorithmVendor);
 
             private:
 				std::string corpId_;
@@ -73,6 +75,7 @@ namespace AlibabaCloud
 				std::string picList_;
 				std::string attributeValueList_;
 				std::string deviceList_;
+				std::string algorithmVendor_;
 
 			};
 		}

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

@@ -71,3 +71,14 @@ void AddMonitorRequest::setBatchIndicator(int batchIndicator)
 	setBodyParameter("BatchIndicator", std::to_string(batchIndicator));
 }
 
+std::string AddMonitorRequest::getAlgorithmVendor()const
+{
+	return algorithmVendor_;
+}
+
+void AddMonitorRequest::setAlgorithmVendor(const std::string& algorithmVendor)
+{
+	algorithmVendor_ = algorithmVendor;
+	setBodyParameter("AlgorithmVendor", algorithmVendor);
+}
+

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

@@ -60,6 +60,17 @@ void GetMonitorResultRequest::setStartTime(long startTime)
 	setBodyParameter("StartTime", std::to_string(startTime));
 }
 
+std::string GetMonitorResultRequest::getAlgorithmVendor()const
+{
+	return algorithmVendor_;
+}
+
+void GetMonitorResultRequest::setAlgorithmVendor(const std::string& algorithmVendor)
+{
+	algorithmVendor_ = algorithmVendor;
+	setBodyParameter("AlgorithmVendor", algorithmVendor);
+}
+
 std::string GetMonitorResultRequest::getMinRecordId()const
 {
 	return minRecordId_;

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

@@ -27,6 +27,17 @@ StopMonitorRequest::StopMonitorRequest() :
 StopMonitorRequest::~StopMonitorRequest()
 {}
 
+std::string StopMonitorRequest::getAlgorithmVendor()const
+{
+	return algorithmVendor_;
+}
+
+void StopMonitorRequest::setAlgorithmVendor(const std::string& algorithmVendor)
+{
+	algorithmVendor_ = algorithmVendor;
+	setBodyParameter("AlgorithmVendor", algorithmVendor);
+}
+
 std::string StopMonitorRequest::getTaskId()const
 {
 	return taskId_;

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

@@ -159,3 +159,14 @@ void UpdateMonitorRequest::setDeviceList(const std::string& deviceList)
 	setBodyParameter("DeviceList", deviceList);
 }
 
+std::string UpdateMonitorRequest::getAlgorithmVendor()const
+{
+	return algorithmVendor_;
+}
+
+void UpdateMonitorRequest::setAlgorithmVendor(const std::string& algorithmVendor)
+{
+	algorithmVendor_ = algorithmVendor;
+	setBodyParameter("AlgorithmVendor", algorithmVendor);
+}
+