oci-dataflow 2.79.1 → 2.80.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 (50) hide show
  1. package/lib/client.d.ts +44 -43
  2. package/lib/client.js +218 -87
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/sql-endpoint-network-configuration.js +4 -2
  5. package/lib/model/sql-endpoint-network-configuration.js.map +1 -1
  6. package/lib/model/statement-output-data.js +4 -2
  7. package/lib/model/statement-output-data.js.map +1 -1
  8. package/lib/request/change-application-compartment-request.d.ts +1 -1
  9. package/lib/request/change-pool-compartment-request.d.ts +1 -1
  10. package/lib/request/change-private-endpoint-compartment-request.d.ts +1 -1
  11. package/lib/request/change-run-compartment-request.d.ts +1 -1
  12. package/lib/request/change-sql-endpoint-compartment-request.d.ts +1 -1
  13. package/lib/request/create-application-request.d.ts +1 -1
  14. package/lib/request/create-pool-request.d.ts +1 -1
  15. package/lib/request/create-private-endpoint-request.d.ts +1 -1
  16. package/lib/request/create-run-request.d.ts +1 -1
  17. package/lib/request/create-sql-endpoint-request.d.ts +1 -1
  18. package/lib/request/create-statement-request.d.ts +1 -1
  19. package/lib/request/delete-application-request.d.ts +1 -1
  20. package/lib/request/delete-pool-request.d.ts +1 -1
  21. package/lib/request/delete-private-endpoint-request.d.ts +1 -1
  22. package/lib/request/delete-run-request.d.ts +1 -1
  23. package/lib/request/delete-sql-endpoint-request.d.ts +1 -1
  24. package/lib/request/delete-statement-request.d.ts +1 -1
  25. package/lib/request/get-application-request.d.ts +1 -1
  26. package/lib/request/get-pool-request.d.ts +1 -1
  27. package/lib/request/get-private-endpoint-request.d.ts +1 -1
  28. package/lib/request/get-run-log-request.d.ts +1 -1
  29. package/lib/request/get-run-request.d.ts +1 -1
  30. package/lib/request/get-sql-endpoint-request.d.ts +1 -1
  31. package/lib/request/get-statement-request.d.ts +1 -1
  32. package/lib/request/get-work-request-request.d.ts +1 -1
  33. package/lib/request/list-applications-request.d.ts +1 -1
  34. package/lib/request/list-pools-request.d.ts +1 -1
  35. package/lib/request/list-private-endpoints-request.d.ts +1 -1
  36. package/lib/request/list-run-logs-request.d.ts +1 -1
  37. package/lib/request/list-runs-request.d.ts +1 -1
  38. package/lib/request/list-sql-endpoints-request.d.ts +1 -1
  39. package/lib/request/list-statements-request.d.ts +1 -1
  40. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  41. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  42. package/lib/request/list-work-requests-request.d.ts +1 -1
  43. package/lib/request/start-pool-request.d.ts +1 -1
  44. package/lib/request/stop-pool-request.d.ts +1 -1
  45. package/lib/request/update-application-request.d.ts +1 -1
  46. package/lib/request/update-pool-request.d.ts +1 -1
  47. package/lib/request/update-private-endpoint-request.d.ts +1 -1
  48. package/lib/request/update-run-request.d.ts +1 -1
  49. package/lib/request/update-sql-endpoint-request.d.ts +1 -1
  50. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -25,7 +25,7 @@ export declare enum DataFlowApiKeys {
25
25
  export declare class DataFlowClient {
26
26
  protected static serviceEndpointTemplate: string;
27
27
  protected static endpointServiceName: string;
28
- protected "_realmSpecificEndpointTemplateEnabled": boolean;
28
+ protected "_realmSpecificEndpointTemplateEnabled": boolean | undefined;
29
29
  protected "_endpoint": string;
30
30
  protected "_defaultHeaders": any;
31
31
  protected "_waiters": DataFlowWaiter;
@@ -48,6 +48,7 @@ export declare class DataFlowClient {
48
48
  * @param endpoint The endpoint of the service.
49
49
  */
50
50
  set endpoint(endpoint: string);
51
+ get logger(): import("oci-common/lib/log").Logger;
51
52
  /**
52
53
  * Determines whether realm specific endpoint should be used or not.
53
54
  * Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
@@ -94,7 +95,7 @@ export declare class DataFlowClient {
94
95
  * @param ChangeApplicationCompartmentRequest
95
96
  * @return ChangeApplicationCompartmentResponse
96
97
  * @throws OciError when an error occurs
97
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
98
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
98
99
  */
99
100
  changeApplicationCompartment(changeApplicationCompartmentRequest: requests.ChangeApplicationCompartmentRequest): Promise<responses.ChangeApplicationCompartmentResponse>;
100
101
  /**
@@ -107,7 +108,7 @@ export declare class DataFlowClient {
107
108
  * @param ChangePoolCompartmentRequest
108
109
  * @return ChangePoolCompartmentResponse
109
110
  * @throws OciError when an error occurs
110
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ChangePoolCompartment.ts.html |here} to see how to use ChangePoolCompartment API.
111
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ChangePoolCompartment.ts.html |here} to see how to use ChangePoolCompartment API.
111
112
  */
112
113
  changePoolCompartment(changePoolCompartmentRequest: requests.ChangePoolCompartmentRequest): Promise<responses.ChangePoolCompartmentResponse>;
113
114
  /**
@@ -117,7 +118,7 @@ export declare class DataFlowClient {
117
118
  * @param ChangePrivateEndpointCompartmentRequest
118
119
  * @return ChangePrivateEndpointCompartmentResponse
119
120
  * @throws OciError when an error occurs
120
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
121
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
121
122
  */
122
123
  changePrivateEndpointCompartment(changePrivateEndpointCompartmentRequest: requests.ChangePrivateEndpointCompartmentRequest): Promise<responses.ChangePrivateEndpointCompartmentResponse>;
123
124
  /**
@@ -130,7 +131,7 @@ export declare class DataFlowClient {
130
131
  * @param ChangeRunCompartmentRequest
131
132
  * @return ChangeRunCompartmentResponse
132
133
  * @throws OciError when an error occurs
133
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
134
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
134
135
  */
135
136
  changeRunCompartment(changeRunCompartmentRequest: requests.ChangeRunCompartmentRequest): Promise<responses.ChangeRunCompartmentResponse>;
136
137
  /**
@@ -139,7 +140,7 @@ export declare class DataFlowClient {
139
140
  * @param ChangeSqlEndpointCompartmentRequest
140
141
  * @return ChangeSqlEndpointCompartmentResponse
141
142
  * @throws OciError when an error occurs
142
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ChangeSqlEndpointCompartment.ts.html |here} to see how to use ChangeSqlEndpointCompartment API.
143
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ChangeSqlEndpointCompartment.ts.html |here} to see how to use ChangeSqlEndpointCompartment API.
143
144
  */
144
145
  changeSqlEndpointCompartment(changeSqlEndpointCompartmentRequest: requests.ChangeSqlEndpointCompartmentRequest): Promise<responses.ChangeSqlEndpointCompartmentResponse>;
145
146
  /**
@@ -149,7 +150,7 @@ export declare class DataFlowClient {
149
150
  * @param CreateApplicationRequest
150
151
  * @return CreateApplicationResponse
151
152
  * @throws OciError when an error occurs
152
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
153
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
153
154
  */
154
155
  createApplication(createApplicationRequest: requests.CreateApplicationRequest): Promise<responses.CreateApplicationResponse>;
155
156
  /**
@@ -159,7 +160,7 @@ export declare class DataFlowClient {
159
160
  * @param CreatePoolRequest
160
161
  * @return CreatePoolResponse
161
162
  * @throws OciError when an error occurs
162
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/CreatePool.ts.html |here} to see how to use CreatePool API.
163
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/CreatePool.ts.html |here} to see how to use CreatePool API.
163
164
  */
164
165
  createPool(createPoolRequest: requests.CreatePoolRequest): Promise<responses.CreatePoolResponse>;
165
166
  /**
@@ -169,7 +170,7 @@ export declare class DataFlowClient {
169
170
  * @param CreatePrivateEndpointRequest
170
171
  * @return CreatePrivateEndpointResponse
171
172
  * @throws OciError when an error occurs
172
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
173
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
173
174
  */
174
175
  createPrivateEndpoint(createPrivateEndpointRequest: requests.CreatePrivateEndpointRequest): Promise<responses.CreatePrivateEndpointResponse>;
175
176
  /**
@@ -179,7 +180,7 @@ export declare class DataFlowClient {
179
180
  * @param CreateRunRequest
180
181
  * @return CreateRunResponse
181
182
  * @throws OciError when an error occurs
182
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
183
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
183
184
  */
184
185
  createRun(createRunRequest: requests.CreateRunRequest): Promise<responses.CreateRunResponse>;
185
186
  /**
@@ -188,7 +189,7 @@ export declare class DataFlowClient {
188
189
  * @param CreateSqlEndpointRequest
189
190
  * @return CreateSqlEndpointResponse
190
191
  * @throws OciError when an error occurs
191
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/CreateSqlEndpoint.ts.html |here} to see how to use CreateSqlEndpoint API.
192
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/CreateSqlEndpoint.ts.html |here} to see how to use CreateSqlEndpoint API.
192
193
  */
193
194
  createSqlEndpoint(createSqlEndpointRequest: requests.CreateSqlEndpointRequest): Promise<responses.CreateSqlEndpointResponse>;
194
195
  /**
@@ -198,7 +199,7 @@ export declare class DataFlowClient {
198
199
  * @param CreateStatementRequest
199
200
  * @return CreateStatementResponse
200
201
  * @throws OciError when an error occurs
201
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/CreateStatement.ts.html |here} to see how to use CreateStatement API.
202
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/CreateStatement.ts.html |here} to see how to use CreateStatement API.
202
203
  */
203
204
  createStatement(createStatementRequest: requests.CreateStatementRequest): Promise<responses.CreateStatementResponse>;
204
205
  /**
@@ -208,7 +209,7 @@ export declare class DataFlowClient {
208
209
  * @param DeleteApplicationRequest
209
210
  * @return DeleteApplicationResponse
210
211
  * @throws OciError when an error occurs
211
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
212
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
212
213
  */
213
214
  deleteApplication(deleteApplicationRequest: requests.DeleteApplicationRequest): Promise<responses.DeleteApplicationResponse>;
214
215
  /**
@@ -218,7 +219,7 @@ export declare class DataFlowClient {
218
219
  * @param DeletePoolRequest
219
220
  * @return DeletePoolResponse
220
221
  * @throws OciError when an error occurs
221
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/DeletePool.ts.html |here} to see how to use DeletePool API.
222
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/DeletePool.ts.html |here} to see how to use DeletePool API.
222
223
  */
223
224
  deletePool(deletePoolRequest: requests.DeletePoolRequest): Promise<responses.DeletePoolResponse>;
224
225
  /**
@@ -228,7 +229,7 @@ export declare class DataFlowClient {
228
229
  * @param DeletePrivateEndpointRequest
229
230
  * @return DeletePrivateEndpointResponse
230
231
  * @throws OciError when an error occurs
231
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
232
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
232
233
  */
233
234
  deletePrivateEndpoint(deletePrivateEndpointRequest: requests.DeletePrivateEndpointRequest): Promise<responses.DeletePrivateEndpointResponse>;
234
235
  /**
@@ -239,7 +240,7 @@ export declare class DataFlowClient {
239
240
  * @param DeleteRunRequest
240
241
  * @return DeleteRunResponse
241
242
  * @throws OciError when an error occurs
242
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
243
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
243
244
  */
244
245
  deleteRun(deleteRunRequest: requests.DeleteRunRequest): Promise<responses.DeleteRunResponse>;
245
246
  /**
@@ -248,7 +249,7 @@ export declare class DataFlowClient {
248
249
  * @param DeleteSqlEndpointRequest
249
250
  * @return DeleteSqlEndpointResponse
250
251
  * @throws OciError when an error occurs
251
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/DeleteSqlEndpoint.ts.html |here} to see how to use DeleteSqlEndpoint API.
252
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/DeleteSqlEndpoint.ts.html |here} to see how to use DeleteSqlEndpoint API.
252
253
  */
253
254
  deleteSqlEndpoint(deleteSqlEndpointRequest: requests.DeleteSqlEndpointRequest): Promise<responses.DeleteSqlEndpointResponse>;
254
255
  /**
@@ -258,7 +259,7 @@ export declare class DataFlowClient {
258
259
  * @param DeleteStatementRequest
259
260
  * @return DeleteStatementResponse
260
261
  * @throws OciError when an error occurs
261
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/DeleteStatement.ts.html |here} to see how to use DeleteStatement API.
262
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/DeleteStatement.ts.html |here} to see how to use DeleteStatement API.
262
263
  */
263
264
  deleteStatement(deleteStatementRequest: requests.DeleteStatementRequest): Promise<responses.DeleteStatementResponse>;
264
265
  /**
@@ -268,7 +269,7 @@ export declare class DataFlowClient {
268
269
  * @param GetApplicationRequest
269
270
  * @return GetApplicationResponse
270
271
  * @throws OciError when an error occurs
271
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
272
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
272
273
  */
273
274
  getApplication(getApplicationRequest: requests.GetApplicationRequest): Promise<responses.GetApplicationResponse>;
274
275
  /**
@@ -278,7 +279,7 @@ export declare class DataFlowClient {
278
279
  * @param GetPoolRequest
279
280
  * @return GetPoolResponse
280
281
  * @throws OciError when an error occurs
281
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetPool.ts.html |here} to see how to use GetPool API.
282
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/GetPool.ts.html |here} to see how to use GetPool API.
282
283
  */
283
284
  getPool(getPoolRequest: requests.GetPoolRequest): Promise<responses.GetPoolResponse>;
284
285
  /**
@@ -288,7 +289,7 @@ export declare class DataFlowClient {
288
289
  * @param GetPrivateEndpointRequest
289
290
  * @return GetPrivateEndpointResponse
290
291
  * @throws OciError when an error occurs
291
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
292
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
292
293
  */
293
294
  getPrivateEndpoint(getPrivateEndpointRequest: requests.GetPrivateEndpointRequest): Promise<responses.GetPrivateEndpointResponse>;
294
295
  /**
@@ -298,7 +299,7 @@ export declare class DataFlowClient {
298
299
  * @param GetRunRequest
299
300
  * @return GetRunResponse
300
301
  * @throws OciError when an error occurs
301
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
302
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
302
303
  */
303
304
  getRun(getRunRequest: requests.GetRunRequest): Promise<responses.GetRunResponse>;
304
305
  /**
@@ -308,7 +309,7 @@ export declare class DataFlowClient {
308
309
  * @param GetRunLogRequest
309
310
  * @return GetRunLogResponse
310
311
  * @throws OciError when an error occurs
311
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
312
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
312
313
  */
313
314
  getRunLog(getRunLogRequest: requests.GetRunLogRequest): Promise<responses.GetRunLogResponse>;
314
315
  /**
@@ -317,7 +318,7 @@ export declare class DataFlowClient {
317
318
  * @param GetSqlEndpointRequest
318
319
  * @return GetSqlEndpointResponse
319
320
  * @throws OciError when an error occurs
320
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetSqlEndpoint.ts.html |here} to see how to use GetSqlEndpoint API.
321
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/GetSqlEndpoint.ts.html |here} to see how to use GetSqlEndpoint API.
321
322
  */
322
323
  getSqlEndpoint(getSqlEndpointRequest: requests.GetSqlEndpointRequest): Promise<responses.GetSqlEndpointResponse>;
323
324
  /**
@@ -327,7 +328,7 @@ export declare class DataFlowClient {
327
328
  * @param GetStatementRequest
328
329
  * @return GetStatementResponse
329
330
  * @throws OciError when an error occurs
330
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetStatement.ts.html |here} to see how to use GetStatement API.
331
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/GetStatement.ts.html |here} to see how to use GetStatement API.
331
332
  */
332
333
  getStatement(getStatementRequest: requests.GetStatementRequest): Promise<responses.GetStatementResponse>;
333
334
  /**
@@ -337,7 +338,7 @@ export declare class DataFlowClient {
337
338
  * @param GetWorkRequestRequest
338
339
  * @return GetWorkRequestResponse
339
340
  * @throws OciError when an error occurs
340
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
341
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
341
342
  */
342
343
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
343
344
  /**
@@ -347,7 +348,7 @@ export declare class DataFlowClient {
347
348
  * @param ListApplicationsRequest
348
349
  * @return ListApplicationsResponse
349
350
  * @throws OciError when an error occurs
350
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
351
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
351
352
  */
352
353
  listApplications(listApplicationsRequest: requests.ListApplicationsRequest): Promise<responses.ListApplicationsResponse>;
353
354
  /**
@@ -389,7 +390,7 @@ export declare class DataFlowClient {
389
390
  * @param ListPoolsRequest
390
391
  * @return ListPoolsResponse
391
392
  * @throws OciError when an error occurs
392
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListPools.ts.html |here} to see how to use ListPools API.
393
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ListPools.ts.html |here} to see how to use ListPools API.
393
394
  */
394
395
  listPools(listPoolsRequest: requests.ListPoolsRequest): Promise<responses.ListPoolsResponse>;
395
396
  /**
@@ -399,7 +400,7 @@ export declare class DataFlowClient {
399
400
  * @param ListPrivateEndpointsRequest
400
401
  * @return ListPrivateEndpointsResponse
401
402
  * @throws OciError when an error occurs
402
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
403
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
403
404
  */
404
405
  listPrivateEndpoints(listPrivateEndpointsRequest: requests.ListPrivateEndpointsRequest): Promise<responses.ListPrivateEndpointsResponse>;
405
406
  /**
@@ -409,7 +410,7 @@ export declare class DataFlowClient {
409
410
  * @param ListRunLogsRequest
410
411
  * @return ListRunLogsResponse
411
412
  * @throws OciError when an error occurs
412
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
413
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
413
414
  */
414
415
  listRunLogs(listRunLogsRequest: requests.ListRunLogsRequest): Promise<responses.ListRunLogsResponse>;
415
416
  /**
@@ -451,7 +452,7 @@ export declare class DataFlowClient {
451
452
  * @param ListRunsRequest
452
453
  * @return ListRunsResponse
453
454
  * @throws OciError when an error occurs
454
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
455
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
455
456
  */
456
457
  listRuns(listRunsRequest: requests.ListRunsRequest): Promise<responses.ListRunsResponse>;
457
458
  /**
@@ -495,7 +496,7 @@ export declare class DataFlowClient {
495
496
  * @param ListSqlEndpointsRequest
496
497
  * @return ListSqlEndpointsResponse
497
498
  * @throws OciError when an error occurs
498
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListSqlEndpoints.ts.html |here} to see how to use ListSqlEndpoints API.
499
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ListSqlEndpoints.ts.html |here} to see how to use ListSqlEndpoints API.
499
500
  */
500
501
  listSqlEndpoints(listSqlEndpointsRequest: requests.ListSqlEndpointsRequest): Promise<responses.ListSqlEndpointsResponse>;
501
502
  /**
@@ -505,7 +506,7 @@ export declare class DataFlowClient {
505
506
  * @param ListStatementsRequest
506
507
  * @return ListStatementsResponse
507
508
  * @throws OciError when an error occurs
508
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListStatements.ts.html |here} to see how to use ListStatements API.
509
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ListStatements.ts.html |here} to see how to use ListStatements API.
509
510
  */
510
511
  listStatements(listStatementsRequest: requests.ListStatementsRequest): Promise<responses.ListStatementsResponse>;
511
512
  /**
@@ -515,7 +516,7 @@ export declare class DataFlowClient {
515
516
  * @param ListWorkRequestErrorsRequest
516
517
  * @return ListWorkRequestErrorsResponse
517
518
  * @throws OciError when an error occurs
518
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
519
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
519
520
  */
520
521
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
521
522
  /**
@@ -525,7 +526,7 @@ export declare class DataFlowClient {
525
526
  * @param ListWorkRequestLogsRequest
526
527
  * @return ListWorkRequestLogsResponse
527
528
  * @throws OciError when an error occurs
528
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
529
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
529
530
  */
530
531
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
531
532
  /**
@@ -535,7 +536,7 @@ export declare class DataFlowClient {
535
536
  * @param ListWorkRequestsRequest
536
537
  * @return ListWorkRequestsResponse
537
538
  * @throws OciError when an error occurs
538
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
539
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
539
540
  */
540
541
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
541
542
  /**
@@ -545,7 +546,7 @@ export declare class DataFlowClient {
545
546
  * @param StartPoolRequest
546
547
  * @return StartPoolResponse
547
548
  * @throws OciError when an error occurs
548
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/StartPool.ts.html |here} to see how to use StartPool API.
549
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/StartPool.ts.html |here} to see how to use StartPool API.
549
550
  */
550
551
  startPool(startPoolRequest: requests.StartPoolRequest): Promise<responses.StartPoolResponse>;
551
552
  /**
@@ -555,7 +556,7 @@ export declare class DataFlowClient {
555
556
  * @param StopPoolRequest
556
557
  * @return StopPoolResponse
557
558
  * @throws OciError when an error occurs
558
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/StopPool.ts.html |here} to see how to use StopPool API.
559
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/StopPool.ts.html |here} to see how to use StopPool API.
559
560
  */
560
561
  stopPool(stopPoolRequest: requests.StopPoolRequest): Promise<responses.StopPoolResponse>;
561
562
  /**
@@ -565,7 +566,7 @@ export declare class DataFlowClient {
565
566
  * @param UpdateApplicationRequest
566
567
  * @return UpdateApplicationResponse
567
568
  * @throws OciError when an error occurs
568
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
569
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
569
570
  */
570
571
  updateApplication(updateApplicationRequest: requests.UpdateApplicationRequest): Promise<responses.UpdateApplicationResponse>;
571
572
  /**
@@ -577,7 +578,7 @@ export declare class DataFlowClient {
577
578
  * @param UpdatePoolRequest
578
579
  * @return UpdatePoolResponse
579
580
  * @throws OciError when an error occurs
580
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/UpdatePool.ts.html |here} to see how to use UpdatePool API.
581
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/UpdatePool.ts.html |here} to see how to use UpdatePool API.
581
582
  */
582
583
  updatePool(updatePoolRequest: requests.UpdatePoolRequest): Promise<responses.UpdatePoolResponse>;
583
584
  /**
@@ -589,7 +590,7 @@ export declare class DataFlowClient {
589
590
  * @param UpdatePrivateEndpointRequest
590
591
  * @return UpdatePrivateEndpointResponse
591
592
  * @throws OciError when an error occurs
592
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
593
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
593
594
  */
594
595
  updatePrivateEndpoint(updatePrivateEndpointRequest: requests.UpdatePrivateEndpointRequest): Promise<responses.UpdatePrivateEndpointResponse>;
595
596
  /**
@@ -599,7 +600,7 @@ export declare class DataFlowClient {
599
600
  * @param UpdateRunRequest
600
601
  * @return UpdateRunResponse
601
602
  * @throws OciError when an error occurs
602
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
603
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
603
604
  */
604
605
  updateRun(updateRunRequest: requests.UpdateRunRequest): Promise<responses.UpdateRunResponse>;
605
606
  /**
@@ -608,7 +609,7 @@ export declare class DataFlowClient {
608
609
  * @param UpdateSqlEndpointRequest
609
610
  * @return UpdateSqlEndpointResponse
610
611
  * @throws OciError when an error occurs
611
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/UpdateSqlEndpoint.ts.html |here} to see how to use UpdateSqlEndpoint API.
612
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/dataflow/UpdateSqlEndpoint.ts.html |here} to see how to use UpdateSqlEndpoint API.
612
613
  */
613
614
  updateSqlEndpoint(updateSqlEndpointRequest: requests.UpdateSqlEndpointRequest): Promise<responses.UpdateSqlEndpointResponse>;
614
615
  }