Skip to content

Commit 6538cf5

Browse files
committed
add CHANGELOG.md
Signed-off-by: Amit Galitzky <amgalitz@amazon.com>
1 parent dedfd63 commit 6538cf5

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
99
- Adds capability to automatically switch to old access-control if model-group is excluded from protected resources setting ([#1569](https://github.com/opensearch-project/anomaly-detection/pull/1569))
1010
- Adding suggest and validate transport actions to node client ([#1605](https://github.com/opensearch-project/anomaly-detection/pull/1605))
1111
- Adding auto create as an optional field on detectors ([#1602](https://github.com/opensearch-project/anomaly-detection/pull/1602))
12+
- Adding create and start to AD node client ([#1611](https://github.com/opensearch-project/anomaly-detection/pull/1611))
1213

1314
### Bug Fixes
1415
- fix(forecast): auto-expand replicas for default results index on 3AZ domains ([#1615](https://github.com/opensearch-project/anomaly-detection/pull/1615))

build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,6 @@ dependencies {
192192
testImplementation 'org.reflections:reflections:0.10.2'
193193

194194
testImplementation "org.opensearch.test:framework:${opensearch_version}"
195-
196-
zipArchive("org.opensearch.plugin:opensearch-ml-plugin:${opensearch_build}")
197-
198195
}
199196

200197
apply plugin: 'java'

src/main/java/org/opensearch/ad/client/AnomalyDetectionClient.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ default ActionFuture<SuggestConfigParamResponse> suggestAnomalyDetector(SuggestC
116116
void suggestAnomalyDetector(SuggestConfigParamRequest suggestRequest, ActionListener<SuggestConfigParamResponse> listener);
117117

118118
/**
119-
* Create anomaly detector - refer to https://opensearch.org/docs/latest/observing-your-data/ad/api/#create-detector
119+
* Create anomaly detector - refer to https://docs.opensearch.org/latest/observing-your-data/ad/api/#create-anomaly-detector
120120
* @param createRequest request to create the detector
121121
* @return ActionFuture of IndexAnomalyDetectorResponse
122122
*/
@@ -127,14 +127,14 @@ default ActionFuture<IndexAnomalyDetectorResponse> createAnomalyDetector(IndexAn
127127
}
128128

129129
/**
130-
* Create anomaly detector - refer to https://opensearch.org/docs/latest/observing-your-data/ad/api/#create-detector
130+
* Create anomaly detector - refer to https://docs.opensearch.org/latest/observing-your-data/ad/api/#create-anomaly-detector
131131
* @param createRequest request to create the detector
132132
* @param listener a listener to be notified of the result
133133
*/
134134
void createAnomalyDetector(IndexAnomalyDetectorRequest createRequest, ActionListener<IndexAnomalyDetectorResponse> listener);
135135

136136
/**
137-
* Start anomaly detector - refer to https://opensearch.org/docs/latest/observing-your-data/ad/api/#start-detector
137+
* Start anomaly detector - refer to https://docs.opensearch.org/latest/observing-your-data/ad/api/#start-detector-job
138138
* @param startRequest request to start the detector
139139
* @return ActionFuture of JobResponse
140140
*/
@@ -145,7 +145,7 @@ default ActionFuture<JobResponse> startAnomalyDetector(JobRequest startRequest)
145145
}
146146

147147
/**
148-
* Start anomaly detector - refer to https://opensearch.org/docs/latest/observing-your-data/ad/api/#start-detector
148+
* Start anomaly detector - refer to https://docs.opensearch.org/latest/observing-your-data/ad/api/#start-detector-job
149149
* @param startRequest request to start the detector
150150
* @param listener a listener to be notified of the result
151151
*/

0 commit comments

Comments
 (0)