@@ -46,11 +46,11 @@ public final class DataFrameClient {
4646 }
4747
4848 /**
49- * Creates a new Data Frame Transform
49+ * Creates a new transform
5050 * <p>
5151 * For additional info
52- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/put-data-frame- transform.html">
53- * Create data frame transform documentation</a>
52+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/put-transform.html">
53+ * Create transform documentation</a>
5454 *
5555 * @param request The PutDataFrameTransformRequest containing the
5656 * {@link org.elasticsearch.client.dataframe.transforms.DataFrameTransformConfig}.
@@ -67,11 +67,11 @@ public AcknowledgedResponse putDataFrameTransform(PutDataFrameTransformRequest r
6767 }
6868
6969 /**
70- * Creates a new Data Frame Transform asynchronously and notifies listener on completion
70+ * Creates a new transform asynchronously and notifies listener on completion
7171 * <p>
7272 * For additional info
73- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/put-data-frame- transform.html">
74- * Create data frame transform documentation</a>
73+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/put-transform.html">
74+ * Create transform documentation</a>
7575 *
7676 * @param request The PutDataFrameTransformRequest containing the
7777 * {@link org.elasticsearch.client.dataframe.transforms.DataFrameTransformConfig}.
@@ -89,15 +89,15 @@ public void putDataFrameTransformAsync(PutDataFrameTransformRequest request, Req
8989 }
9090
9191 /**
92- * Get the running statistics of a Data Frame Transform
92+ * Get the running statistics of a transform
9393 * <p>
9494 * For additional info
95- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/get-data-frame- transform-stats.html">
96- * Get data frame transform stats documentation</a>
95+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/get-transform-stats.html">
96+ * Get transform stats documentation</a>
9797 *
9898 * @param request Specifies the which transforms to get the stats for
9999 * @param options Additional request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
100- * @return The Data Frame Transform stats
100+ * @return The transform stats
101101 * @throws IOException when there is a serialization issue sending the request or receiving the response
102102 */
103103 public GetDataFrameTransformStatsResponse getDataFrameTransformStats (GetDataFrameTransformStatsRequest request , RequestOptions options )
@@ -110,11 +110,11 @@ public GetDataFrameTransformStatsResponse getDataFrameTransformStats(GetDataFram
110110 }
111111
112112 /**
113- * Get the running statistics of a Data Frame Transform asynchronously and notifies listener on completion
113+ * Get the running statistics of a transform asynchronously and notifies listener on completion
114114 * <p>
115115 * For additional info
116- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/get-data-frame- transform-stats.html">
117- * Get data frame transform stats documentation</a>
116+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/get-transform-stats.html">
117+ * Get transform stats documentation</a>
118118 *
119119 * @param request Specifies the which transforms to get the stats for
120120 * @param options Additional request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
@@ -131,13 +131,13 @@ public void getDataFrameTransformStatsAsync(GetDataFrameTransformStatsRequest re
131131 }
132132
133133 /**
134- * Delete a data frame transform
134+ * Delete a transform
135135 * <p>
136136 * For additional info
137- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-data-frame- transform.html">
138- * Delete data frame transform documentation</a>
137+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-transform.html">
138+ * Delete transform documentation</a>
139139 *
140- * @param request The delete data frame transform request
140+ * @param request The delete transform request
141141 * @param options Additional request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
142142 * @return An AcknowledgedResponse object indicating request success
143143 * @throws IOException when there is a serialization issue sending the request or receiving the response
@@ -152,13 +152,13 @@ public AcknowledgedResponse deleteDataFrameTransform(DeleteDataFrameTransformReq
152152 }
153153
154154 /**
155- * Delete a data frame transform asynchronously and notifies listener on completion
155+ * Delete a transform asynchronously and notifies listener on completion
156156 * <p>
157157 * For additional info
158- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-data-frame- transform.html">
159- * Delete data frame transform documentation</a>
158+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-transform.html">
159+ * Delete transform documentation</a>
160160 *
161- * @param request The delete data frame transform request
161+ * @param request The delete transform request
162162 * @param options Additional request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
163163 * @param listener Listener to be notified upon request completion
164164 */
@@ -173,13 +173,13 @@ public void deleteDataFrameTransformAsync(DeleteDataFrameTransformRequest reques
173173 }
174174
175175 /**
176- * Preview the result of a data frame transform
176+ * Preview the result of a transform
177177 * <p>
178178 * For additional info
179- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/preview-data-frame- transform.html">
180- * Preview data frame transform documentation</a>
179+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/preview-transform.html">
180+ * Preview transform documentation</a>
181181 *
182- * @param request The preview data frame transform request
182+ * @param request The preview transform request
183183 * @param options Additional request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
184184 * @return A response containing the results of the applied transform
185185 * @throws IOException when there is a serialization issue sending the request or receiving the response
@@ -194,12 +194,12 @@ public PreviewDataFrameTransformResponse previewDataFrameTransform(PreviewDataFr
194194 }
195195
196196 /**
197- * Preview the result of a data frame transform asynchronously and notifies listener on completion
197+ * Preview the result of a transform asynchronously and notifies listener on completion
198198 * <p>
199- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/preview-data-frame- transform.html">
200- * Preview data frame transform documentation</a>
199+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/preview-transform.html">
200+ * Preview transform documentation</a>
201201 *
202- * @param request The preview data frame transform request
202+ * @param request The preview transform request
203203 * @param options Additional request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
204204 * @param listener Listener to be notified upon request completion
205205 */
@@ -214,13 +214,13 @@ public void previewDataFrameTransformAsync(PreviewDataFrameTransformRequest requ
214214 }
215215
216216 /**
217- * Start a data frame transform
217+ * Start a transform
218218 * <p>
219219 * For additional info
220- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/start-data-frame- transform.html">
221- * Start data frame transform documentation</a>
220+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/start-transform.html">
221+ * Start transform documentation</a>
222222 *
223- * @param request The start data frame transform request
223+ * @param request The start transform request
224224 * @param options Additional request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
225225 * @return A response object indicating request success
226226 * @throws IOException when there is a serialization issue sending the request or receiving the response
@@ -235,13 +235,13 @@ public StartDataFrameTransformResponse startDataFrameTransform(StartDataFrameTra
235235 }
236236
237237 /**
238- * Start a data frame transform asynchronously and notifies listener on completion
238+ * Start a transform asynchronously and notifies listener on completion
239239 * <p>
240240 * For additional info
241- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/start-data-frame- transform.html">
242- * Start data frame transform documentation</a>
241+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/start-transform.html">
242+ * Start transform documentation</a>
243243 *
244- * @param request The start data frame transform request
244+ * @param request The start transform request
245245 * @param options Additional request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
246246 * @param listener Listener to be notified upon request completion
247247 */
@@ -256,13 +256,13 @@ public void startDataFrameTransformAsync(StartDataFrameTransformRequest request,
256256 }
257257
258258 /**
259- * Stop a data frame transform
259+ * Stop a transform
260260 * <p>
261261 * For additional info
262- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/stop-data-frame- transform.html">
263- * Stop data frame transform documentation</a>
262+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/stop-transform.html">
263+ * Stop transform documentation</a>
264264 *
265- * @param request The stop data frame transform request
265+ * @param request The stop transform request
266266 * @param options Additional request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
267267 * @return A response object indicating request success
268268 * @throws IOException when there is a serialization issue sending the request or receiving the response
@@ -277,13 +277,13 @@ public StopDataFrameTransformResponse stopDataFrameTransform(StopDataFrameTransf
277277 }
278278
279279 /**
280- * Stop a data frame transform asynchronously and notifies listener on completion
280+ * Stop a transform asynchronously and notifies listener on completion
281281 * <p>
282282 * For additional info
283- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/stop-data-frame- transform.html">
284- * Stop data frame transform documentation</a>
283+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/stop-transform.html">
284+ * Stop transform documentation</a>
285285 *
286- * @param request The stop data frame transform request
286+ * @param request The stop transform request
287287 * @param options Additional request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
288288 * @param listener Listener to be notified upon request completion
289289 */
@@ -298,13 +298,13 @@ public void stopDataFrameTransformAsync(StopDataFrameTransformRequest request, R
298298 }
299299
300300 /**
301- * Get one or more data frame transform configurations
301+ * Get one or more transform configurations
302302 * <p>
303303 * For additional info
304- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/get-data-frame- transform.html">
305- * Get data frame transform documentation</a>
304+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/get-transform.html">
305+ * Get transform documentation</a>
306306 *
307- * @param request The get data frame transform request
307+ * @param request The get transform request
308308 * @param options Additional request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
309309 * @return An GetDataFrameTransformResponse containing the requested transforms
310310 * @throws IOException when there is a serialization issue sending the request or receiving the response
@@ -319,13 +319,13 @@ public GetDataFrameTransformResponse getDataFrameTransform(GetDataFrameTransform
319319 }
320320
321321 /**
322- * Get one or more data frame transform configurations asynchronously and notifies listener on completion
322+ * Get one or more transform configurations asynchronously and notifies listener on completion
323323 * <p>
324324 * For additional info
325- * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/get-data-frame- transform.html">
326- * Get data frame transform documentation</a>
325+ * see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/get-transform.html">
326+ * Get transform documentation</a>
327327 *
328- * @param request The get data frame transform request
328+ * @param request The get transform request
329329 * @param options Additional request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
330330 * @param listener Listener to be notified upon request completion
331331 */
0 commit comments