oci-dataflow 2.84.0 → 2.84.2

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 (51) hide show
  1. package/lib/client.d.ts +46 -42
  2. package/lib/client.js +50 -43
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/sql-endpoint-lifecycle-state.d.ts +4 -0
  5. package/lib/model/sql-endpoint-lifecycle-state.js +4 -0
  6. package/lib/model/sql-endpoint-lifecycle-state.js.map +1 -1
  7. package/lib/model/sql-endpoint.d.ts +4 -0
  8. package/lib/model/sql-endpoint.js.map +1 -1
  9. package/lib/request/change-application-compartment-request.d.ts +1 -1
  10. package/lib/request/change-pool-compartment-request.d.ts +1 -1
  11. package/lib/request/change-private-endpoint-compartment-request.d.ts +1 -1
  12. package/lib/request/change-run-compartment-request.d.ts +1 -1
  13. package/lib/request/change-sql-endpoint-compartment-request.d.ts +1 -1
  14. package/lib/request/create-application-request.d.ts +1 -1
  15. package/lib/request/create-pool-request.d.ts +1 -1
  16. package/lib/request/create-private-endpoint-request.d.ts +1 -1
  17. package/lib/request/create-run-request.d.ts +7 -1
  18. package/lib/request/create-sql-endpoint-request.d.ts +1 -1
  19. package/lib/request/create-statement-request.d.ts +1 -1
  20. package/lib/request/delete-application-request.d.ts +1 -1
  21. package/lib/request/delete-pool-request.d.ts +1 -1
  22. package/lib/request/delete-private-endpoint-request.d.ts +1 -1
  23. package/lib/request/delete-run-request.d.ts +1 -1
  24. package/lib/request/delete-sql-endpoint-request.d.ts +1 -1
  25. package/lib/request/delete-statement-request.d.ts +1 -1
  26. package/lib/request/get-application-request.d.ts +1 -1
  27. package/lib/request/get-pool-request.d.ts +1 -1
  28. package/lib/request/get-private-endpoint-request.d.ts +1 -1
  29. package/lib/request/get-run-log-request.d.ts +1 -1
  30. package/lib/request/get-run-request.d.ts +1 -1
  31. package/lib/request/get-sql-endpoint-request.d.ts +1 -1
  32. package/lib/request/get-statement-request.d.ts +1 -1
  33. package/lib/request/get-work-request-request.d.ts +1 -1
  34. package/lib/request/list-applications-request.d.ts +1 -1
  35. package/lib/request/list-pools-request.d.ts +1 -1
  36. package/lib/request/list-private-endpoints-request.d.ts +1 -1
  37. package/lib/request/list-run-logs-request.d.ts +1 -1
  38. package/lib/request/list-runs-request.d.ts +1 -1
  39. package/lib/request/list-sql-endpoints-request.d.ts +1 -1
  40. package/lib/request/list-statements-request.d.ts +1 -1
  41. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  42. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  43. package/lib/request/list-work-requests-request.d.ts +1 -1
  44. package/lib/request/start-pool-request.d.ts +1 -1
  45. package/lib/request/stop-pool-request.d.ts +1 -1
  46. package/lib/request/update-application-request.d.ts +1 -1
  47. package/lib/request/update-pool-request.d.ts +1 -1
  48. package/lib/request/update-private-endpoint-request.d.ts +1 -1
  49. package/lib/request/update-run-request.d.ts +1 -1
  50. package/lib/request/update-sql-endpoint-request.d.ts +1 -1
  51. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -87,6 +87,10 @@ export declare class DataFlowClient {
87
87
  * Shutdown the circuit breaker used by the client when it is no longer needed
88
88
  */
89
89
  shutdownCircuitBreaker(): void;
90
+ /**
91
+ * Close the client once it is no longer needed
92
+ */
93
+ close(): void;
90
94
  /**
91
95
  * Moves an application into a different compartment. When provided, If-Match is checked against ETag values of the resource.
92
96
  * Associated resources, like runs, will not be automatically moved.
@@ -95,7 +99,7 @@ export declare class DataFlowClient {
95
99
  * @param ChangeApplicationCompartmentRequest
96
100
  * @return ChangeApplicationCompartmentResponse
97
101
  * @throws OciError when an error occurs
98
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
102
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
99
103
  */
100
104
  changeApplicationCompartment(changeApplicationCompartmentRequest: requests.ChangeApplicationCompartmentRequest): Promise<responses.ChangeApplicationCompartmentResponse>;
101
105
  /**
@@ -108,7 +112,7 @@ export declare class DataFlowClient {
108
112
  * @param ChangePoolCompartmentRequest
109
113
  * @return ChangePoolCompartmentResponse
110
114
  * @throws OciError when an error occurs
111
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ChangePoolCompartment.ts.html |here} to see how to use ChangePoolCompartment API.
115
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ChangePoolCompartment.ts.html |here} to see how to use ChangePoolCompartment API.
112
116
  */
113
117
  changePoolCompartment(changePoolCompartmentRequest: requests.ChangePoolCompartmentRequest): Promise<responses.ChangePoolCompartmentResponse>;
114
118
  /**
@@ -118,7 +122,7 @@ export declare class DataFlowClient {
118
122
  * @param ChangePrivateEndpointCompartmentRequest
119
123
  * @return ChangePrivateEndpointCompartmentResponse
120
124
  * @throws OciError when an error occurs
121
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
125
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
122
126
  */
123
127
  changePrivateEndpointCompartment(changePrivateEndpointCompartmentRequest: requests.ChangePrivateEndpointCompartmentRequest): Promise<responses.ChangePrivateEndpointCompartmentResponse>;
124
128
  /**
@@ -131,7 +135,7 @@ export declare class DataFlowClient {
131
135
  * @param ChangeRunCompartmentRequest
132
136
  * @return ChangeRunCompartmentResponse
133
137
  * @throws OciError when an error occurs
134
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
138
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
135
139
  */
136
140
  changeRunCompartment(changeRunCompartmentRequest: requests.ChangeRunCompartmentRequest): Promise<responses.ChangeRunCompartmentResponse>;
137
141
  /**
@@ -140,7 +144,7 @@ export declare class DataFlowClient {
140
144
  * @param ChangeSqlEndpointCompartmentRequest
141
145
  * @return ChangeSqlEndpointCompartmentResponse
142
146
  * @throws OciError when an error occurs
143
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ChangeSqlEndpointCompartment.ts.html |here} to see how to use ChangeSqlEndpointCompartment API.
147
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ChangeSqlEndpointCompartment.ts.html |here} to see how to use ChangeSqlEndpointCompartment API.
144
148
  */
145
149
  changeSqlEndpointCompartment(changeSqlEndpointCompartmentRequest: requests.ChangeSqlEndpointCompartmentRequest): Promise<responses.ChangeSqlEndpointCompartmentResponse>;
146
150
  /**
@@ -150,7 +154,7 @@ export declare class DataFlowClient {
150
154
  * @param CreateApplicationRequest
151
155
  * @return CreateApplicationResponse
152
156
  * @throws OciError when an error occurs
153
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
157
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
154
158
  */
155
159
  createApplication(createApplicationRequest: requests.CreateApplicationRequest): Promise<responses.CreateApplicationResponse>;
156
160
  /**
@@ -160,7 +164,7 @@ export declare class DataFlowClient {
160
164
  * @param CreatePoolRequest
161
165
  * @return CreatePoolResponse
162
166
  * @throws OciError when an error occurs
163
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/CreatePool.ts.html |here} to see how to use CreatePool API.
167
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/CreatePool.ts.html |here} to see how to use CreatePool API.
164
168
  */
165
169
  createPool(createPoolRequest: requests.CreatePoolRequest): Promise<responses.CreatePoolResponse>;
166
170
  /**
@@ -170,7 +174,7 @@ export declare class DataFlowClient {
170
174
  * @param CreatePrivateEndpointRequest
171
175
  * @return CreatePrivateEndpointResponse
172
176
  * @throws OciError when an error occurs
173
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
177
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
174
178
  */
175
179
  createPrivateEndpoint(createPrivateEndpointRequest: requests.CreatePrivateEndpointRequest): Promise<responses.CreatePrivateEndpointResponse>;
176
180
  /**
@@ -180,7 +184,7 @@ export declare class DataFlowClient {
180
184
  * @param CreateRunRequest
181
185
  * @return CreateRunResponse
182
186
  * @throws OciError when an error occurs
183
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
187
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
184
188
  */
185
189
  createRun(createRunRequest: requests.CreateRunRequest): Promise<responses.CreateRunResponse>;
186
190
  /**
@@ -189,7 +193,7 @@ export declare class DataFlowClient {
189
193
  * @param CreateSqlEndpointRequest
190
194
  * @return CreateSqlEndpointResponse
191
195
  * @throws OciError when an error occurs
192
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/CreateSqlEndpoint.ts.html |here} to see how to use CreateSqlEndpoint API.
196
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/CreateSqlEndpoint.ts.html |here} to see how to use CreateSqlEndpoint API.
193
197
  */
194
198
  createSqlEndpoint(createSqlEndpointRequest: requests.CreateSqlEndpointRequest): Promise<responses.CreateSqlEndpointResponse>;
195
199
  /**
@@ -199,7 +203,7 @@ export declare class DataFlowClient {
199
203
  * @param CreateStatementRequest
200
204
  * @return CreateStatementResponse
201
205
  * @throws OciError when an error occurs
202
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/CreateStatement.ts.html |here} to see how to use CreateStatement API.
206
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/CreateStatement.ts.html |here} to see how to use CreateStatement API.
203
207
  */
204
208
  createStatement(createStatementRequest: requests.CreateStatementRequest): Promise<responses.CreateStatementResponse>;
205
209
  /**
@@ -209,7 +213,7 @@ export declare class DataFlowClient {
209
213
  * @param DeleteApplicationRequest
210
214
  * @return DeleteApplicationResponse
211
215
  * @throws OciError when an error occurs
212
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
216
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
213
217
  */
214
218
  deleteApplication(deleteApplicationRequest: requests.DeleteApplicationRequest): Promise<responses.DeleteApplicationResponse>;
215
219
  /**
@@ -219,7 +223,7 @@ export declare class DataFlowClient {
219
223
  * @param DeletePoolRequest
220
224
  * @return DeletePoolResponse
221
225
  * @throws OciError when an error occurs
222
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/DeletePool.ts.html |here} to see how to use DeletePool API.
226
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/DeletePool.ts.html |here} to see how to use DeletePool API.
223
227
  */
224
228
  deletePool(deletePoolRequest: requests.DeletePoolRequest): Promise<responses.DeletePoolResponse>;
225
229
  /**
@@ -229,7 +233,7 @@ export declare class DataFlowClient {
229
233
  * @param DeletePrivateEndpointRequest
230
234
  * @return DeletePrivateEndpointResponse
231
235
  * @throws OciError when an error occurs
232
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
236
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
233
237
  */
234
238
  deletePrivateEndpoint(deletePrivateEndpointRequest: requests.DeletePrivateEndpointRequest): Promise<responses.DeletePrivateEndpointResponse>;
235
239
  /**
@@ -240,7 +244,7 @@ export declare class DataFlowClient {
240
244
  * @param DeleteRunRequest
241
245
  * @return DeleteRunResponse
242
246
  * @throws OciError when an error occurs
243
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
247
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
244
248
  */
245
249
  deleteRun(deleteRunRequest: requests.DeleteRunRequest): Promise<responses.DeleteRunResponse>;
246
250
  /**
@@ -249,7 +253,7 @@ export declare class DataFlowClient {
249
253
  * @param DeleteSqlEndpointRequest
250
254
  * @return DeleteSqlEndpointResponse
251
255
  * @throws OciError when an error occurs
252
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/DeleteSqlEndpoint.ts.html |here} to see how to use DeleteSqlEndpoint API.
256
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/DeleteSqlEndpoint.ts.html |here} to see how to use DeleteSqlEndpoint API.
253
257
  */
254
258
  deleteSqlEndpoint(deleteSqlEndpointRequest: requests.DeleteSqlEndpointRequest): Promise<responses.DeleteSqlEndpointResponse>;
255
259
  /**
@@ -259,7 +263,7 @@ export declare class DataFlowClient {
259
263
  * @param DeleteStatementRequest
260
264
  * @return DeleteStatementResponse
261
265
  * @throws OciError when an error occurs
262
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/DeleteStatement.ts.html |here} to see how to use DeleteStatement API.
266
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/DeleteStatement.ts.html |here} to see how to use DeleteStatement API.
263
267
  */
264
268
  deleteStatement(deleteStatementRequest: requests.DeleteStatementRequest): Promise<responses.DeleteStatementResponse>;
265
269
  /**
@@ -269,7 +273,7 @@ export declare class DataFlowClient {
269
273
  * @param GetApplicationRequest
270
274
  * @return GetApplicationResponse
271
275
  * @throws OciError when an error occurs
272
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
276
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
273
277
  */
274
278
  getApplication(getApplicationRequest: requests.GetApplicationRequest): Promise<responses.GetApplicationResponse>;
275
279
  /**
@@ -279,7 +283,7 @@ export declare class DataFlowClient {
279
283
  * @param GetPoolRequest
280
284
  * @return GetPoolResponse
281
285
  * @throws OciError when an error occurs
282
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/GetPool.ts.html |here} to see how to use GetPool API.
286
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetPool.ts.html |here} to see how to use GetPool API.
283
287
  */
284
288
  getPool(getPoolRequest: requests.GetPoolRequest): Promise<responses.GetPoolResponse>;
285
289
  /**
@@ -289,7 +293,7 @@ export declare class DataFlowClient {
289
293
  * @param GetPrivateEndpointRequest
290
294
  * @return GetPrivateEndpointResponse
291
295
  * @throws OciError when an error occurs
292
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
296
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
293
297
  */
294
298
  getPrivateEndpoint(getPrivateEndpointRequest: requests.GetPrivateEndpointRequest): Promise<responses.GetPrivateEndpointResponse>;
295
299
  /**
@@ -299,7 +303,7 @@ export declare class DataFlowClient {
299
303
  * @param GetRunRequest
300
304
  * @return GetRunResponse
301
305
  * @throws OciError when an error occurs
302
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
306
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
303
307
  */
304
308
  getRun(getRunRequest: requests.GetRunRequest): Promise<responses.GetRunResponse>;
305
309
  /**
@@ -309,7 +313,7 @@ export declare class DataFlowClient {
309
313
  * @param GetRunLogRequest
310
314
  * @return GetRunLogResponse
311
315
  * @throws OciError when an error occurs
312
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
316
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
313
317
  */
314
318
  getRunLog(getRunLogRequest: requests.GetRunLogRequest): Promise<responses.GetRunLogResponse>;
315
319
  /**
@@ -318,7 +322,7 @@ export declare class DataFlowClient {
318
322
  * @param GetSqlEndpointRequest
319
323
  * @return GetSqlEndpointResponse
320
324
  * @throws OciError when an error occurs
321
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/GetSqlEndpoint.ts.html |here} to see how to use GetSqlEndpoint API.
325
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetSqlEndpoint.ts.html |here} to see how to use GetSqlEndpoint API.
322
326
  */
323
327
  getSqlEndpoint(getSqlEndpointRequest: requests.GetSqlEndpointRequest): Promise<responses.GetSqlEndpointResponse>;
324
328
  /**
@@ -328,7 +332,7 @@ export declare class DataFlowClient {
328
332
  * @param GetStatementRequest
329
333
  * @return GetStatementResponse
330
334
  * @throws OciError when an error occurs
331
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/GetStatement.ts.html |here} to see how to use GetStatement API.
335
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetStatement.ts.html |here} to see how to use GetStatement API.
332
336
  */
333
337
  getStatement(getStatementRequest: requests.GetStatementRequest): Promise<responses.GetStatementResponse>;
334
338
  /**
@@ -338,7 +342,7 @@ export declare class DataFlowClient {
338
342
  * @param GetWorkRequestRequest
339
343
  * @return GetWorkRequestResponse
340
344
  * @throws OciError when an error occurs
341
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
345
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
342
346
  */
343
347
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
344
348
  /**
@@ -348,7 +352,7 @@ export declare class DataFlowClient {
348
352
  * @param ListApplicationsRequest
349
353
  * @return ListApplicationsResponse
350
354
  * @throws OciError when an error occurs
351
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
355
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
352
356
  */
353
357
  listApplications(listApplicationsRequest: requests.ListApplicationsRequest): Promise<responses.ListApplicationsResponse>;
354
358
  /**
@@ -390,7 +394,7 @@ export declare class DataFlowClient {
390
394
  * @param ListPoolsRequest
391
395
  * @return ListPoolsResponse
392
396
  * @throws OciError when an error occurs
393
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ListPools.ts.html |here} to see how to use ListPools API.
397
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListPools.ts.html |here} to see how to use ListPools API.
394
398
  */
395
399
  listPools(listPoolsRequest: requests.ListPoolsRequest): Promise<responses.ListPoolsResponse>;
396
400
  /**
@@ -400,7 +404,7 @@ export declare class DataFlowClient {
400
404
  * @param ListPrivateEndpointsRequest
401
405
  * @return ListPrivateEndpointsResponse
402
406
  * @throws OciError when an error occurs
403
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
407
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
404
408
  */
405
409
  listPrivateEndpoints(listPrivateEndpointsRequest: requests.ListPrivateEndpointsRequest): Promise<responses.ListPrivateEndpointsResponse>;
406
410
  /**
@@ -410,7 +414,7 @@ export declare class DataFlowClient {
410
414
  * @param ListRunLogsRequest
411
415
  * @return ListRunLogsResponse
412
416
  * @throws OciError when an error occurs
413
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
417
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
414
418
  */
415
419
  listRunLogs(listRunLogsRequest: requests.ListRunLogsRequest): Promise<responses.ListRunLogsResponse>;
416
420
  /**
@@ -452,7 +456,7 @@ export declare class DataFlowClient {
452
456
  * @param ListRunsRequest
453
457
  * @return ListRunsResponse
454
458
  * @throws OciError when an error occurs
455
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
459
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
456
460
  */
457
461
  listRuns(listRunsRequest: requests.ListRunsRequest): Promise<responses.ListRunsResponse>;
458
462
  /**
@@ -496,7 +500,7 @@ export declare class DataFlowClient {
496
500
  * @param ListSqlEndpointsRequest
497
501
  * @return ListSqlEndpointsResponse
498
502
  * @throws OciError when an error occurs
499
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ListSqlEndpoints.ts.html |here} to see how to use ListSqlEndpoints API.
503
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListSqlEndpoints.ts.html |here} to see how to use ListSqlEndpoints API.
500
504
  */
501
505
  listSqlEndpoints(listSqlEndpointsRequest: requests.ListSqlEndpointsRequest): Promise<responses.ListSqlEndpointsResponse>;
502
506
  /**
@@ -506,7 +510,7 @@ export declare class DataFlowClient {
506
510
  * @param ListStatementsRequest
507
511
  * @return ListStatementsResponse
508
512
  * @throws OciError when an error occurs
509
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ListStatements.ts.html |here} to see how to use ListStatements API.
513
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListStatements.ts.html |here} to see how to use ListStatements API.
510
514
  */
511
515
  listStatements(listStatementsRequest: requests.ListStatementsRequest): Promise<responses.ListStatementsResponse>;
512
516
  /**
@@ -516,7 +520,7 @@ export declare class DataFlowClient {
516
520
  * @param ListWorkRequestErrorsRequest
517
521
  * @return ListWorkRequestErrorsResponse
518
522
  * @throws OciError when an error occurs
519
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
523
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
520
524
  */
521
525
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
522
526
  /**
@@ -526,7 +530,7 @@ export declare class DataFlowClient {
526
530
  * @param ListWorkRequestLogsRequest
527
531
  * @return ListWorkRequestLogsResponse
528
532
  * @throws OciError when an error occurs
529
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
533
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
530
534
  */
531
535
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
532
536
  /**
@@ -536,7 +540,7 @@ export declare class DataFlowClient {
536
540
  * @param ListWorkRequestsRequest
537
541
  * @return ListWorkRequestsResponse
538
542
  * @throws OciError when an error occurs
539
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
543
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
540
544
  */
541
545
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
542
546
  /**
@@ -546,7 +550,7 @@ export declare class DataFlowClient {
546
550
  * @param StartPoolRequest
547
551
  * @return StartPoolResponse
548
552
  * @throws OciError when an error occurs
549
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/StartPool.ts.html |here} to see how to use StartPool API.
553
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/StartPool.ts.html |here} to see how to use StartPool API.
550
554
  */
551
555
  startPool(startPoolRequest: requests.StartPoolRequest): Promise<responses.StartPoolResponse>;
552
556
  /**
@@ -556,7 +560,7 @@ export declare class DataFlowClient {
556
560
  * @param StopPoolRequest
557
561
  * @return StopPoolResponse
558
562
  * @throws OciError when an error occurs
559
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/StopPool.ts.html |here} to see how to use StopPool API.
563
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/StopPool.ts.html |here} to see how to use StopPool API.
560
564
  */
561
565
  stopPool(stopPoolRequest: requests.StopPoolRequest): Promise<responses.StopPoolResponse>;
562
566
  /**
@@ -566,7 +570,7 @@ export declare class DataFlowClient {
566
570
  * @param UpdateApplicationRequest
567
571
  * @return UpdateApplicationResponse
568
572
  * @throws OciError when an error occurs
569
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
573
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
570
574
  */
571
575
  updateApplication(updateApplicationRequest: requests.UpdateApplicationRequest): Promise<responses.UpdateApplicationResponse>;
572
576
  /**
@@ -578,7 +582,7 @@ export declare class DataFlowClient {
578
582
  * @param UpdatePoolRequest
579
583
  * @return UpdatePoolResponse
580
584
  * @throws OciError when an error occurs
581
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/UpdatePool.ts.html |here} to see how to use UpdatePool API.
585
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/UpdatePool.ts.html |here} to see how to use UpdatePool API.
582
586
  */
583
587
  updatePool(updatePoolRequest: requests.UpdatePoolRequest): Promise<responses.UpdatePoolResponse>;
584
588
  /**
@@ -590,7 +594,7 @@ export declare class DataFlowClient {
590
594
  * @param UpdatePrivateEndpointRequest
591
595
  * @return UpdatePrivateEndpointResponse
592
596
  * @throws OciError when an error occurs
593
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
597
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
594
598
  */
595
599
  updatePrivateEndpoint(updatePrivateEndpointRequest: requests.UpdatePrivateEndpointRequest): Promise<responses.UpdatePrivateEndpointResponse>;
596
600
  /**
@@ -600,7 +604,7 @@ export declare class DataFlowClient {
600
604
  * @param UpdateRunRequest
601
605
  * @return UpdateRunResponse
602
606
  * @throws OciError when an error occurs
603
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
607
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
604
608
  */
605
609
  updateRun(updateRunRequest: requests.UpdateRunRequest): Promise<responses.UpdateRunResponse>;
606
610
  /**
@@ -609,7 +613,7 @@ export declare class DataFlowClient {
609
613
  * @param UpdateSqlEndpointRequest
610
614
  * @return UpdateSqlEndpointResponse
611
615
  * @throws OciError when an error occurs
612
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/dataflow/UpdateSqlEndpoint.ts.html |here} to see how to use UpdateSqlEndpoint API.
616
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/UpdateSqlEndpoint.ts.html |here} to see how to use UpdateSqlEndpoint API.
613
617
  */
614
618
  updateSqlEndpoint(updateSqlEndpointRequest: requests.UpdateSqlEndpointRequest): Promise<responses.UpdateSqlEndpointResponse>;
615
619
  }