You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/anomalydetector/azure-ai-anomalydetector/src/main/java/com/azure/ai/anomalydetector/AnomalyDetectorClient.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -79,8 +79,8 @@ public Response<EntireDetectResponse> detectEntireSeriesWithResponse(DetectReque
79
79
}
80
80
81
81
/**
82
-
* This operation generates a model using points before the latest one. With this method, only historical points are
83
-
* used to determine whether the target point is an anomaly. The latest point detecting operation matches the
82
+
* This operation generates a model using the data points that you sent to the API, and based on all data
83
+
* to determine whether the last point is anomalous. The latest point detecting operation matches the
84
84
* scenario of real-time monitoring of business metrics.
85
85
*
86
86
* @param body Time series points and period if needed. Advanced model parameters can also be set in the request.
@@ -95,8 +95,8 @@ public LastDetectResponse detectLastPoint(DetectRequest body) {
95
95
}
96
96
97
97
/**
98
-
* This operation generates a model using points before the latest one. With this method, only historical points are
99
-
* used to determine whether the target point is an anomaly. The latest point detecting operation matches the
98
+
* This operation generates a model using the data points that you sent to the API, and based on all data
99
+
* to determine whether the last point is anomalous. The latest point detecting operation matches the
100
100
* scenario of real-time monitoring of business metrics.
101
101
*
102
102
* @param body Time series points and period if needed. Advanced model parameters can also be set in the request.
0 commit comments