oci-dataflow 2.5.2 → 2.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/lib/client.d.ts +51 -24
  2. package/lib/client.js +106 -48
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/change-application-compartment-request.d.ts +1 -1
  5. package/lib/request/change-private-endpoint-compartment-request.d.ts +1 -1
  6. package/lib/request/change-run-compartment-request.d.ts +1 -1
  7. package/lib/request/create-application-request.d.ts +1 -1
  8. package/lib/request/create-private-endpoint-request.d.ts +1 -1
  9. package/lib/request/create-run-request.d.ts +1 -1
  10. package/lib/request/delete-application-request.d.ts +1 -1
  11. package/lib/request/delete-private-endpoint-request.d.ts +1 -1
  12. package/lib/request/delete-run-request.d.ts +1 -1
  13. package/lib/request/get-application-request.d.ts +1 -1
  14. package/lib/request/get-private-endpoint-request.d.ts +1 -1
  15. package/lib/request/get-run-log-request.d.ts +1 -1
  16. package/lib/request/get-run-request.d.ts +1 -1
  17. package/lib/request/get-work-request-request.d.ts +1 -1
  18. package/lib/request/list-applications-request.d.ts +1 -1
  19. package/lib/request/list-private-endpoints-request.d.ts +1 -1
  20. package/lib/request/list-run-logs-request.d.ts +1 -1
  21. package/lib/request/list-runs-request.d.ts +1 -1
  22. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  23. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  24. package/lib/request/list-work-requests-request.d.ts +1 -1
  25. package/lib/request/update-application-request.d.ts +1 -1
  26. package/lib/request/update-private-endpoint-request.d.ts +1 -1
  27. package/lib/request/update-run-request.d.ts +1 -1
  28. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -18,6 +18,9 @@ import * as responses from "./response";
18
18
  import { DataFlowWaiter } from "./dataflow-waiter";
19
19
  export declare enum DataFlowApiKeys {
20
20
  }
21
+ /**
22
+ * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
23
+ */
21
24
  export declare class DataFlowClient {
22
25
  protected static serviceEndpointTemplate: string;
23
26
  protected "_endpoint": string;
@@ -69,19 +72,21 @@ export declare class DataFlowClient {
69
72
  * Moves an application into a different compartment. When provided, If-Match is checked against ETag values of the resource.
70
73
  * Associated resources, like runs, will not be automatically moved.
71
74
  *
75
+ * This operation does not retry by default if the user has not defined a retry configuration.
72
76
  * @param ChangeApplicationCompartmentRequest
73
77
  * @return ChangeApplicationCompartmentResponse
74
78
  * @throws OciError when an error occurs
75
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
79
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
76
80
  */
77
81
  changeApplicationCompartment(changeApplicationCompartmentRequest: requests.ChangeApplicationCompartmentRequest): Promise<responses.ChangeApplicationCompartmentResponse>;
78
82
  /**
79
83
  * Moves a private endpoint into a different compartment. When provided, If-Match is checked against ETag values of the resource.
80
84
  *
85
+ * This operation does not retry by default if the user has not defined a retry configuration.
81
86
  * @param ChangePrivateEndpointCompartmentRequest
82
87
  * @return ChangePrivateEndpointCompartmentResponse
83
88
  * @throws OciError when an error occurs
84
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
89
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
85
90
  */
86
91
  changePrivateEndpointCompartment(changePrivateEndpointCompartmentRequest: requests.ChangePrivateEndpointCompartmentRequest): Promise<responses.ChangePrivateEndpointCompartmentResponse>;
87
92
  /**
@@ -90,119 +95,132 @@ export declare class DataFlowClient {
90
95
  * automatically moved. The run must be in a terminal state (CANCELED, FAILED, SUCCEEDED) in
91
96
  * order for it to be moved to a different compartment
92
97
  *
98
+ * This operation does not retry by default if the user has not defined a retry configuration.
93
99
  * @param ChangeRunCompartmentRequest
94
100
  * @return ChangeRunCompartmentResponse
95
101
  * @throws OciError when an error occurs
96
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
102
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
97
103
  */
98
104
  changeRunCompartment(changeRunCompartmentRequest: requests.ChangeRunCompartmentRequest): Promise<responses.ChangeRunCompartmentResponse>;
99
105
  /**
100
106
  * Creates an application.
101
107
  *
108
+ * This operation does not retry by default if the user has not defined a retry configuration.
102
109
  * @param CreateApplicationRequest
103
110
  * @return CreateApplicationResponse
104
111
  * @throws OciError when an error occurs
105
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
112
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
106
113
  */
107
114
  createApplication(createApplicationRequest: requests.CreateApplicationRequest): Promise<responses.CreateApplicationResponse>;
108
115
  /**
109
116
  * Creates a private endpoint to be used by applications.
110
117
  *
118
+ * This operation does not retry by default if the user has not defined a retry configuration.
111
119
  * @param CreatePrivateEndpointRequest
112
120
  * @return CreatePrivateEndpointResponse
113
121
  * @throws OciError when an error occurs
114
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
122
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
115
123
  */
116
124
  createPrivateEndpoint(createPrivateEndpointRequest: requests.CreatePrivateEndpointRequest): Promise<responses.CreatePrivateEndpointResponse>;
117
125
  /**
118
126
  * Creates a run for an application.
119
127
  *
128
+ * This operation does not retry by default if the user has not defined a retry configuration.
120
129
  * @param CreateRunRequest
121
130
  * @return CreateRunResponse
122
131
  * @throws OciError when an error occurs
123
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
132
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
124
133
  */
125
134
  createRun(createRunRequest: requests.CreateRunRequest): Promise<responses.CreateRunResponse>;
126
135
  /**
127
136
  * Deletes an application using an `applicationId`.
128
137
  *
138
+ * This operation does not retry by default if the user has not defined a retry configuration.
129
139
  * @param DeleteApplicationRequest
130
140
  * @return DeleteApplicationResponse
131
141
  * @throws OciError when an error occurs
132
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
142
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
133
143
  */
134
144
  deleteApplication(deleteApplicationRequest: requests.DeleteApplicationRequest): Promise<responses.DeleteApplicationResponse>;
135
145
  /**
136
146
  * Deletes a private endpoint using a `privateEndpointId`.
137
147
  *
148
+ * This operation does not retry by default if the user has not defined a retry configuration.
138
149
  * @param DeletePrivateEndpointRequest
139
150
  * @return DeletePrivateEndpointResponse
140
151
  * @throws OciError when an error occurs
141
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
152
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
142
153
  */
143
154
  deletePrivateEndpoint(deletePrivateEndpointRequest: requests.DeletePrivateEndpointRequest): Promise<responses.DeletePrivateEndpointResponse>;
144
155
  /**
145
156
  * Cancels the specified run if it has not already completed or was previously cancelled.
146
157
  * If a run is in progress, the executing job will be killed.
147
158
  *
159
+ * This operation does not retry by default if the user has not defined a retry configuration.
148
160
  * @param DeleteRunRequest
149
161
  * @return DeleteRunResponse
150
162
  * @throws OciError when an error occurs
151
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
163
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
152
164
  */
153
165
  deleteRun(deleteRunRequest: requests.DeleteRunRequest): Promise<responses.DeleteRunResponse>;
154
166
  /**
155
167
  * Retrieves an application using an `applicationId`.
156
168
  *
169
+ * This operation does not retry by default if the user has not defined a retry configuration.
157
170
  * @param GetApplicationRequest
158
171
  * @return GetApplicationResponse
159
172
  * @throws OciError when an error occurs
160
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
173
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
161
174
  */
162
175
  getApplication(getApplicationRequest: requests.GetApplicationRequest): Promise<responses.GetApplicationResponse>;
163
176
  /**
164
177
  * Retrieves an private endpoint using a `privateEndpointId`.
165
178
  *
179
+ * This operation does not retry by default if the user has not defined a retry configuration.
166
180
  * @param GetPrivateEndpointRequest
167
181
  * @return GetPrivateEndpointResponse
168
182
  * @throws OciError when an error occurs
169
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
183
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
170
184
  */
171
185
  getPrivateEndpoint(getPrivateEndpointRequest: requests.GetPrivateEndpointRequest): Promise<responses.GetPrivateEndpointResponse>;
172
186
  /**
173
187
  * Retrieves the run for the specified `runId`.
174
188
  *
189
+ * This operation does not retry by default if the user has not defined a retry configuration.
175
190
  * @param GetRunRequest
176
191
  * @return GetRunResponse
177
192
  * @throws OciError when an error occurs
178
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
193
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
179
194
  */
180
195
  getRun(getRunRequest: requests.GetRunRequest): Promise<responses.GetRunResponse>;
181
196
  /**
182
197
  * Retrieves the content of an run log.
183
198
  *
199
+ * This operation does not retry by default if the user has not defined a retry configuration.
184
200
  * @param GetRunLogRequest
185
201
  * @return GetRunLogResponse
186
202
  * @throws OciError when an error occurs
187
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
203
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
188
204
  */
189
205
  getRunLog(getRunLogRequest: requests.GetRunLogRequest): Promise<responses.GetRunLogResponse>;
190
206
  /**
191
207
  * Gets the status of the work request with the given OCID.
192
208
  *
209
+ * This operation does not retry by default if the user has not defined a retry configuration.
193
210
  * @param GetWorkRequestRequest
194
211
  * @return GetWorkRequestResponse
195
212
  * @throws OciError when an error occurs
196
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
213
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
197
214
  */
198
215
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
199
216
  /**
200
217
  * Lists all applications in the specified compartment. Only one parameter other than compartmentId may also be included in a query. The query must include compartmentId. If the query does not include compartmentId, or includes compartmentId but two or more other parameters an error is returned.
201
218
  *
219
+ * This operation does not retry by default if the user has not defined a retry configuration.
202
220
  * @param ListApplicationsRequest
203
221
  * @return ListApplicationsResponse
204
222
  * @throws OciError when an error occurs
205
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
223
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
206
224
  */
207
225
  listApplications(listApplicationsRequest: requests.ListApplicationsRequest): Promise<responses.ListApplicationsResponse>;
208
226
  /**
@@ -240,19 +258,21 @@ export declare class DataFlowClient {
240
258
  /**
241
259
  * Lists all private endpoints in the specified compartment.
242
260
  *
261
+ * This operation does not retry by default if the user has not defined a retry configuration.
243
262
  * @param ListPrivateEndpointsRequest
244
263
  * @return ListPrivateEndpointsResponse
245
264
  * @throws OciError when an error occurs
246
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
265
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
247
266
  */
248
267
  listPrivateEndpoints(listPrivateEndpointsRequest: requests.ListPrivateEndpointsRequest): Promise<responses.ListPrivateEndpointsResponse>;
249
268
  /**
250
269
  * Retrieves summaries of the run's logs.
251
270
  *
271
+ * This operation does not retry by default if the user has not defined a retry configuration.
252
272
  * @param ListRunLogsRequest
253
273
  * @return ListRunLogsResponse
254
274
  * @throws OciError when an error occurs
255
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
275
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
256
276
  */
257
277
  listRunLogs(listRunLogsRequest: requests.ListRunLogsRequest): Promise<responses.ListRunLogsResponse>;
258
278
  /**
@@ -290,10 +310,11 @@ export declare class DataFlowClient {
290
310
  /**
291
311
  * Lists all runs of an application in the specified compartment. Only one parameter other than compartmentId may also be included in a query. The query must include compartmentId. If the query does not include compartmentId, or includes compartmentId but two or more other parameters an error is returned.
292
312
  *
313
+ * This operation does not retry by default if the user has not defined a retry configuration.
293
314
  * @param ListRunsRequest
294
315
  * @return ListRunsResponse
295
316
  * @throws OciError when an error occurs
296
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
317
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
297
318
  */
298
319
  listRuns(listRunsRequest: requests.ListRunsRequest): Promise<responses.ListRunsResponse>;
299
320
  /**
@@ -331,37 +352,41 @@ export declare class DataFlowClient {
331
352
  /**
332
353
  * Return a (paginated) list of errors for a given work request.
333
354
  *
355
+ * This operation does not retry by default if the user has not defined a retry configuration.
334
356
  * @param ListWorkRequestErrorsRequest
335
357
  * @return ListWorkRequestErrorsResponse
336
358
  * @throws OciError when an error occurs
337
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
359
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
338
360
  */
339
361
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
340
362
  /**
341
363
  * Return a paginated list of logs for a given work request.
342
364
  *
365
+ * This operation does not retry by default if the user has not defined a retry configuration.
343
366
  * @param ListWorkRequestLogsRequest
344
367
  * @return ListWorkRequestLogsResponse
345
368
  * @throws OciError when an error occurs
346
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
369
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
347
370
  */
348
371
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
349
372
  /**
350
373
  * Lists the work requests in a compartment.
351
374
  *
375
+ * This operation does not retry by default if the user has not defined a retry configuration.
352
376
  * @param ListWorkRequestsRequest
353
377
  * @return ListWorkRequestsResponse
354
378
  * @throws OciError when an error occurs
355
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
379
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
356
380
  */
357
381
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
358
382
  /**
359
383
  * Updates an application using an `applicationId`.
360
384
  *
385
+ * This operation does not retry by default if the user has not defined a retry configuration.
361
386
  * @param UpdateApplicationRequest
362
387
  * @return UpdateApplicationResponse
363
388
  * @throws OciError when an error occurs
364
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
389
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
365
390
  */
366
391
  updateApplication(updateApplicationRequest: requests.UpdateApplicationRequest): Promise<responses.UpdateApplicationResponse>;
367
392
  /**
@@ -369,19 +394,21 @@ export declare class DataFlowClient {
369
394
  * a previously defined private endpoint, then a 409 status code will be returned. This indicates
370
395
  * that a conflict has been detected.
371
396
  *
397
+ * This operation does not retry by default if the user has not defined a retry configuration.
372
398
  * @param UpdatePrivateEndpointRequest
373
399
  * @return UpdatePrivateEndpointResponse
374
400
  * @throws OciError when an error occurs
375
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
401
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
376
402
  */
377
403
  updatePrivateEndpoint(updatePrivateEndpointRequest: requests.UpdatePrivateEndpointRequest): Promise<responses.UpdatePrivateEndpointResponse>;
378
404
  /**
379
405
  * Updates a run using a `runId`.
380
406
  *
407
+ * This operation does not retry by default if the user has not defined a retry configuration.
381
408
  * @param UpdateRunRequest
382
409
  * @return UpdateRunResponse
383
410
  * @throws OciError when an error occurs
384
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
411
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
385
412
  */
386
413
  updateRun(updateRunRequest: requests.UpdateRunRequest): Promise<responses.UpdateRunResponse>;
387
414
  }