oci-dataflow 2.67.0 → 2.68.1

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 (46) hide show
  1. package/lib/client.d.ts +43 -42
  2. package/lib/client.js +47 -43
  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-pool-compartment-request.d.ts +1 -1
  6. package/lib/request/change-private-endpoint-compartment-request.d.ts +1 -1
  7. package/lib/request/change-run-compartment-request.d.ts +1 -1
  8. package/lib/request/change-sql-endpoint-compartment-request.d.ts +1 -1
  9. package/lib/request/create-application-request.d.ts +1 -1
  10. package/lib/request/create-pool-request.d.ts +1 -1
  11. package/lib/request/create-private-endpoint-request.d.ts +1 -1
  12. package/lib/request/create-run-request.d.ts +1 -1
  13. package/lib/request/create-sql-endpoint-request.d.ts +1 -1
  14. package/lib/request/create-statement-request.d.ts +1 -1
  15. package/lib/request/delete-application-request.d.ts +1 -1
  16. package/lib/request/delete-pool-request.d.ts +1 -1
  17. package/lib/request/delete-private-endpoint-request.d.ts +1 -1
  18. package/lib/request/delete-run-request.d.ts +1 -1
  19. package/lib/request/delete-sql-endpoint-request.d.ts +1 -1
  20. package/lib/request/delete-statement-request.d.ts +1 -1
  21. package/lib/request/get-application-request.d.ts +1 -1
  22. package/lib/request/get-pool-request.d.ts +1 -1
  23. package/lib/request/get-private-endpoint-request.d.ts +1 -1
  24. package/lib/request/get-run-log-request.d.ts +1 -1
  25. package/lib/request/get-run-request.d.ts +1 -1
  26. package/lib/request/get-sql-endpoint-request.d.ts +1 -1
  27. package/lib/request/get-statement-request.d.ts +1 -1
  28. package/lib/request/get-work-request-request.d.ts +1 -1
  29. package/lib/request/list-applications-request.d.ts +1 -1
  30. package/lib/request/list-pools-request.d.ts +1 -1
  31. package/lib/request/list-private-endpoints-request.d.ts +1 -1
  32. package/lib/request/list-run-logs-request.d.ts +1 -1
  33. package/lib/request/list-runs-request.d.ts +1 -1
  34. package/lib/request/list-sql-endpoints-request.d.ts +1 -1
  35. package/lib/request/list-statements-request.d.ts +1 -1
  36. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  37. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  38. package/lib/request/list-work-requests-request.d.ts +1 -1
  39. package/lib/request/start-pool-request.d.ts +1 -1
  40. package/lib/request/stop-pool-request.d.ts +1 -1
  41. package/lib/request/update-application-request.d.ts +1 -1
  42. package/lib/request/update-pool-request.d.ts +1 -1
  43. package/lib/request/update-private-endpoint-request.d.ts +1 -1
  44. package/lib/request/update-run-request.d.ts +1 -1
  45. package/lib/request/update-sql-endpoint-request.d.ts +1 -1
  46. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -63,6 +63,7 @@ class DataFlowClient {
63
63
  this["_defaultHeaders"] = {};
64
64
  this._circuitBreaker = null;
65
65
  this._httpOptions = undefined;
66
+ this._bodyDuplexMode = undefined;
66
67
  this.targetService = "DataFlow";
67
68
  this._regionId = "";
68
69
  this._lastSetRegionOrRegionId = "";
@@ -77,6 +78,9 @@ class DataFlowClient {
77
78
  this._httpOptions = clientConfiguration.httpOptions
78
79
  ? clientConfiguration.httpOptions
79
80
  : undefined;
81
+ this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
82
+ ? clientConfiguration.bodyDuplexMode
83
+ : undefined;
80
84
  }
81
85
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
82
86
  const specCircuitBreakerEnabled = true;
@@ -87,7 +91,7 @@ class DataFlowClient {
87
91
  }
88
92
  this._httpClient =
89
93
  params.httpClient ||
90
- new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
94
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
91
95
  if (params.authenticationDetailsProvider &&
92
96
  common.isRegionProvider(params.authenticationDetailsProvider)) {
93
97
  const provider = params.authenticationDetailsProvider;
@@ -183,7 +187,7 @@ class DataFlowClient {
183
187
  * @param ChangeApplicationCompartmentRequest
184
188
  * @return ChangeApplicationCompartmentResponse
185
189
  * @throws OciError when an error occurs
186
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
190
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
187
191
  */
188
192
  changeApplicationCompartment(changeApplicationCompartmentRequest) {
189
193
  return __awaiter(this, void 0, void 0, function* () {
@@ -244,7 +248,7 @@ class DataFlowClient {
244
248
  * @param ChangePoolCompartmentRequest
245
249
  * @return ChangePoolCompartmentResponse
246
250
  * @throws OciError when an error occurs
247
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ChangePoolCompartment.ts.html |here} to see how to use ChangePoolCompartment API.
251
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ChangePoolCompartment.ts.html |here} to see how to use ChangePoolCompartment API.
248
252
  */
249
253
  changePoolCompartment(changePoolCompartmentRequest) {
250
254
  return __awaiter(this, void 0, void 0, function* () {
@@ -302,7 +306,7 @@ class DataFlowClient {
302
306
  * @param ChangePrivateEndpointCompartmentRequest
303
307
  * @return ChangePrivateEndpointCompartmentResponse
304
308
  * @throws OciError when an error occurs
305
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
309
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
306
310
  */
307
311
  changePrivateEndpointCompartment(changePrivateEndpointCompartmentRequest) {
308
312
  return __awaiter(this, void 0, void 0, function* () {
@@ -367,7 +371,7 @@ class DataFlowClient {
367
371
  * @param ChangeRunCompartmentRequest
368
372
  * @return ChangeRunCompartmentResponse
369
373
  * @throws OciError when an error occurs
370
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
374
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
371
375
  */
372
376
  changeRunCompartment(changeRunCompartmentRequest) {
373
377
  return __awaiter(this, void 0, void 0, function* () {
@@ -424,7 +428,7 @@ class DataFlowClient {
424
428
  * @param ChangeSqlEndpointCompartmentRequest
425
429
  * @return ChangeSqlEndpointCompartmentResponse
426
430
  * @throws OciError when an error occurs
427
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ChangeSqlEndpointCompartment.ts.html |here} to see how to use ChangeSqlEndpointCompartment API.
431
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ChangeSqlEndpointCompartment.ts.html |here} to see how to use ChangeSqlEndpointCompartment API.
428
432
  */
429
433
  changeSqlEndpointCompartment(changeSqlEndpointCompartmentRequest) {
430
434
  return __awaiter(this, void 0, void 0, function* () {
@@ -487,7 +491,7 @@ class DataFlowClient {
487
491
  * @param CreateApplicationRequest
488
492
  * @return CreateApplicationResponse
489
493
  * @throws OciError when an error occurs
490
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
494
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
491
495
  */
492
496
  createApplication(createApplicationRequest) {
493
497
  return __awaiter(this, void 0, void 0, function* () {
@@ -551,7 +555,7 @@ class DataFlowClient {
551
555
  * @param CreatePoolRequest
552
556
  * @return CreatePoolResponse
553
557
  * @throws OciError when an error occurs
554
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/CreatePool.ts.html |here} to see how to use CreatePool API.
558
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/CreatePool.ts.html |here} to see how to use CreatePool API.
555
559
  */
556
560
  createPool(createPoolRequest) {
557
561
  return __awaiter(this, void 0, void 0, function* () {
@@ -625,7 +629,7 @@ class DataFlowClient {
625
629
  * @param CreatePrivateEndpointRequest
626
630
  * @return CreatePrivateEndpointResponse
627
631
  * @throws OciError when an error occurs
628
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
632
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
629
633
  */
630
634
  createPrivateEndpoint(createPrivateEndpointRequest) {
631
635
  return __awaiter(this, void 0, void 0, function* () {
@@ -699,7 +703,7 @@ class DataFlowClient {
699
703
  * @param CreateRunRequest
700
704
  * @return CreateRunResponse
701
705
  * @throws OciError when an error occurs
702
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
706
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
703
707
  */
704
708
  createRun(createRunRequest) {
705
709
  return __awaiter(this, void 0, void 0, function* () {
@@ -762,7 +766,7 @@ class DataFlowClient {
762
766
  * @param CreateSqlEndpointRequest
763
767
  * @return CreateSqlEndpointResponse
764
768
  * @throws OciError when an error occurs
765
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/CreateSqlEndpoint.ts.html |here} to see how to use CreateSqlEndpoint API.
769
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/CreateSqlEndpoint.ts.html |here} to see how to use CreateSqlEndpoint API.
766
770
  */
767
771
  createSqlEndpoint(createSqlEndpointRequest) {
768
772
  return __awaiter(this, void 0, void 0, function* () {
@@ -831,7 +835,7 @@ class DataFlowClient {
831
835
  * @param CreateStatementRequest
832
836
  * @return CreateStatementResponse
833
837
  * @throws OciError when an error occurs
834
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/CreateStatement.ts.html |here} to see how to use CreateStatement API.
838
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/CreateStatement.ts.html |here} to see how to use CreateStatement API.
835
839
  */
836
840
  createStatement(createStatementRequest) {
837
841
  return __awaiter(this, void 0, void 0, function* () {
@@ -896,7 +900,7 @@ class DataFlowClient {
896
900
  * @param DeleteApplicationRequest
897
901
  * @return DeleteApplicationResponse
898
902
  * @throws OciError when an error occurs
899
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
903
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
900
904
  */
901
905
  deleteApplication(deleteApplicationRequest) {
902
906
  return __awaiter(this, void 0, void 0, function* () {
@@ -952,7 +956,7 @@ class DataFlowClient {
952
956
  * @param DeletePoolRequest
953
957
  * @return DeletePoolResponse
954
958
  * @throws OciError when an error occurs
955
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/DeletePool.ts.html |here} to see how to use DeletePool API.
959
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/DeletePool.ts.html |here} to see how to use DeletePool API.
956
960
  */
957
961
  deletePool(deletePoolRequest) {
958
962
  return __awaiter(this, void 0, void 0, function* () {
@@ -1008,7 +1012,7 @@ class DataFlowClient {
1008
1012
  * @param DeletePrivateEndpointRequest
1009
1013
  * @return DeletePrivateEndpointResponse
1010
1014
  * @throws OciError when an error occurs
1011
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
1015
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
1012
1016
  */
1013
1017
  deletePrivateEndpoint(deletePrivateEndpointRequest) {
1014
1018
  return __awaiter(this, void 0, void 0, function* () {
@@ -1070,7 +1074,7 @@ class DataFlowClient {
1070
1074
  * @param DeleteRunRequest
1071
1075
  * @return DeleteRunResponse
1072
1076
  * @throws OciError when an error occurs
1073
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
1077
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
1074
1078
  */
1075
1079
  deleteRun(deleteRunRequest) {
1076
1080
  return __awaiter(this, void 0, void 0, function* () {
@@ -1125,7 +1129,7 @@ class DataFlowClient {
1125
1129
  * @param DeleteSqlEndpointRequest
1126
1130
  * @return DeleteSqlEndpointResponse
1127
1131
  * @throws OciError when an error occurs
1128
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/DeleteSqlEndpoint.ts.html |here} to see how to use DeleteSqlEndpoint API.
1132
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/DeleteSqlEndpoint.ts.html |here} to see how to use DeleteSqlEndpoint API.
1129
1133
  */
1130
1134
  deleteSqlEndpoint(deleteSqlEndpointRequest) {
1131
1135
  return __awaiter(this, void 0, void 0, function* () {
@@ -1186,7 +1190,7 @@ class DataFlowClient {
1186
1190
  * @param DeleteStatementRequest
1187
1191
  * @return DeleteStatementResponse
1188
1192
  * @throws OciError when an error occurs
1189
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/DeleteStatement.ts.html |here} to see how to use DeleteStatement API.
1193
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/DeleteStatement.ts.html |here} to see how to use DeleteStatement API.
1190
1194
  */
1191
1195
  deleteStatement(deleteStatementRequest) {
1192
1196
  return __awaiter(this, void 0, void 0, function* () {
@@ -1243,7 +1247,7 @@ class DataFlowClient {
1243
1247
  * @param GetApplicationRequest
1244
1248
  * @return GetApplicationResponse
1245
1249
  * @throws OciError when an error occurs
1246
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
1250
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
1247
1251
  */
1248
1252
  getApplication(getApplicationRequest) {
1249
1253
  return __awaiter(this, void 0, void 0, function* () {
@@ -1307,7 +1311,7 @@ class DataFlowClient {
1307
1311
  * @param GetPoolRequest
1308
1312
  * @return GetPoolResponse
1309
1313
  * @throws OciError when an error occurs
1310
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/GetPool.ts.html |here} to see how to use GetPool API.
1314
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/GetPool.ts.html |here} to see how to use GetPool API.
1311
1315
  */
1312
1316
  getPool(getPoolRequest) {
1313
1317
  return __awaiter(this, void 0, void 0, function* () {
@@ -1371,7 +1375,7 @@ class DataFlowClient {
1371
1375
  * @param GetPrivateEndpointRequest
1372
1376
  * @return GetPrivateEndpointResponse
1373
1377
  * @throws OciError when an error occurs
1374
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
1378
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
1375
1379
  */
1376
1380
  getPrivateEndpoint(getPrivateEndpointRequest) {
1377
1381
  return __awaiter(this, void 0, void 0, function* () {
@@ -1435,7 +1439,7 @@ class DataFlowClient {
1435
1439
  * @param GetRunRequest
1436
1440
  * @return GetRunResponse
1437
1441
  * @throws OciError when an error occurs
1438
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
1442
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
1439
1443
  */
1440
1444
  getRun(getRunRequest) {
1441
1445
  return __awaiter(this, void 0, void 0, function* () {
@@ -1499,7 +1503,7 @@ class DataFlowClient {
1499
1503
  * @param GetRunLogRequest
1500
1504
  * @return GetRunLogResponse
1501
1505
  * @throws OciError when an error occurs
1502
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
1506
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
1503
1507
  */
1504
1508
  getRunLog(getRunLogRequest) {
1505
1509
  return __awaiter(this, void 0, void 0, function* () {
@@ -1585,7 +1589,7 @@ class DataFlowClient {
1585
1589
  * @param GetSqlEndpointRequest
1586
1590
  * @return GetSqlEndpointResponse
1587
1591
  * @throws OciError when an error occurs
1588
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/GetSqlEndpoint.ts.html |here} to see how to use GetSqlEndpoint API.
1592
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/GetSqlEndpoint.ts.html |here} to see how to use GetSqlEndpoint API.
1589
1593
  */
1590
1594
  getSqlEndpoint(getSqlEndpointRequest) {
1591
1595
  return __awaiter(this, void 0, void 0, function* () {
@@ -1649,7 +1653,7 @@ class DataFlowClient {
1649
1653
  * @param GetStatementRequest
1650
1654
  * @return GetStatementResponse
1651
1655
  * @throws OciError when an error occurs
1652
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/GetStatement.ts.html |here} to see how to use GetStatement API.
1656
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/GetStatement.ts.html |here} to see how to use GetStatement API.
1653
1657
  */
1654
1658
  getStatement(getStatementRequest) {
1655
1659
  return __awaiter(this, void 0, void 0, function* () {
@@ -1714,7 +1718,7 @@ class DataFlowClient {
1714
1718
  * @param GetWorkRequestRequest
1715
1719
  * @return GetWorkRequestResponse
1716
1720
  * @throws OciError when an error occurs
1717
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1721
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1718
1722
  */
1719
1723
  getWorkRequest(getWorkRequestRequest) {
1720
1724
  return __awaiter(this, void 0, void 0, function* () {
@@ -1773,7 +1777,7 @@ class DataFlowClient {
1773
1777
  * @param ListApplicationsRequest
1774
1778
  * @return ListApplicationsResponse
1775
1779
  * @throws OciError when an error occurs
1776
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
1780
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
1777
1781
  */
1778
1782
  listApplications(listApplicationsRequest) {
1779
1783
  return __awaiter(this, void 0, void 0, function* () {
@@ -1890,7 +1894,7 @@ class DataFlowClient {
1890
1894
  * @param ListPoolsRequest
1891
1895
  * @return ListPoolsResponse
1892
1896
  * @throws OciError when an error occurs
1893
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ListPools.ts.html |here} to see how to use ListPools API.
1897
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ListPools.ts.html |here} to see how to use ListPools API.
1894
1898
  */
1895
1899
  listPools(listPoolsRequest) {
1896
1900
  return __awaiter(this, void 0, void 0, function* () {
@@ -1967,7 +1971,7 @@ class DataFlowClient {
1967
1971
  * @param ListPrivateEndpointsRequest
1968
1972
  * @return ListPrivateEndpointsResponse
1969
1973
  * @throws OciError when an error occurs
1970
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
1974
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
1971
1975
  */
1972
1976
  listPrivateEndpoints(listPrivateEndpointsRequest) {
1973
1977
  return __awaiter(this, void 0, void 0, function* () {
@@ -2044,7 +2048,7 @@ class DataFlowClient {
2044
2048
  * @param ListRunLogsRequest
2045
2049
  * @return ListRunLogsResponse
2046
2050
  * @throws OciError when an error occurs
2047
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
2051
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
2048
2052
  */
2049
2053
  listRunLogs(listRunLogsRequest) {
2050
2054
  return __awaiter(this, void 0, void 0, function* () {
@@ -2156,7 +2160,7 @@ class DataFlowClient {
2156
2160
  * @param ListRunsRequest
2157
2161
  * @return ListRunsResponse
2158
2162
  * @throws OciError when an error occurs
2159
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
2163
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
2160
2164
  */
2161
2165
  listRuns(listRunsRequest) {
2162
2166
  return __awaiter(this, void 0, void 0, function* () {
@@ -2278,7 +2282,7 @@ class DataFlowClient {
2278
2282
  * @param ListSqlEndpointsRequest
2279
2283
  * @return ListSqlEndpointsResponse
2280
2284
  * @throws OciError when an error occurs
2281
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ListSqlEndpoints.ts.html |here} to see how to use ListSqlEndpoints API.
2285
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ListSqlEndpoints.ts.html |here} to see how to use ListSqlEndpoints API.
2282
2286
  */
2283
2287
  listSqlEndpoints(listSqlEndpointsRequest) {
2284
2288
  return __awaiter(this, void 0, void 0, function* () {
@@ -2349,7 +2353,7 @@ class DataFlowClient {
2349
2353
  * @param ListStatementsRequest
2350
2354
  * @return ListStatementsResponse
2351
2355
  * @throws OciError when an error occurs
2352
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ListStatements.ts.html |here} to see how to use ListStatements API.
2356
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ListStatements.ts.html |here} to see how to use ListStatements API.
2353
2357
  */
2354
2358
  listStatements(listStatementsRequest) {
2355
2359
  return __awaiter(this, void 0, void 0, function* () {
@@ -2424,7 +2428,7 @@ class DataFlowClient {
2424
2428
  * @param ListWorkRequestErrorsRequest
2425
2429
  * @return ListWorkRequestErrorsResponse
2426
2430
  * @throws OciError when an error occurs
2427
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2431
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2428
2432
  */
2429
2433
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
2430
2434
  return __awaiter(this, void 0, void 0, function* () {
@@ -2496,7 +2500,7 @@ class DataFlowClient {
2496
2500
  * @param ListWorkRequestLogsRequest
2497
2501
  * @return ListWorkRequestLogsResponse
2498
2502
  * @throws OciError when an error occurs
2499
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2503
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2500
2504
  */
2501
2505
  listWorkRequestLogs(listWorkRequestLogsRequest) {
2502
2506
  return __awaiter(this, void 0, void 0, function* () {
@@ -2568,7 +2572,7 @@ class DataFlowClient {
2568
2572
  * @param ListWorkRequestsRequest
2569
2573
  * @return ListWorkRequestsResponse
2570
2574
  * @throws OciError when an error occurs
2571
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2575
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2572
2576
  */
2573
2577
  listWorkRequests(listWorkRequestsRequest) {
2574
2578
  return __awaiter(this, void 0, void 0, function* () {
@@ -2639,7 +2643,7 @@ class DataFlowClient {
2639
2643
  * @param StartPoolRequest
2640
2644
  * @return StartPoolResponse
2641
2645
  * @throws OciError when an error occurs
2642
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/StartPool.ts.html |here} to see how to use StartPool API.
2646
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/StartPool.ts.html |here} to see how to use StartPool API.
2643
2647
  */
2644
2648
  startPool(startPoolRequest) {
2645
2649
  return __awaiter(this, void 0, void 0, function* () {
@@ -2701,7 +2705,7 @@ class DataFlowClient {
2701
2705
  * @param StopPoolRequest
2702
2706
  * @return StopPoolResponse
2703
2707
  * @throws OciError when an error occurs
2704
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/StopPool.ts.html |here} to see how to use StopPool API.
2708
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/StopPool.ts.html |here} to see how to use StopPool API.
2705
2709
  */
2706
2710
  stopPool(stopPoolRequest) {
2707
2711
  return __awaiter(this, void 0, void 0, function* () {
@@ -2763,7 +2767,7 @@ class DataFlowClient {
2763
2767
  * @param UpdateApplicationRequest
2764
2768
  * @return UpdateApplicationResponse
2765
2769
  * @throws OciError when an error occurs
2766
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
2770
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
2767
2771
  */
2768
2772
  updateApplication(updateApplicationRequest) {
2769
2773
  return __awaiter(this, void 0, void 0, function* () {
@@ -2831,7 +2835,7 @@ class DataFlowClient {
2831
2835
  * @param UpdatePoolRequest
2832
2836
  * @return UpdatePoolResponse
2833
2837
  * @throws OciError when an error occurs
2834
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/UpdatePool.ts.html |here} to see how to use UpdatePool API.
2838
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/UpdatePool.ts.html |here} to see how to use UpdatePool API.
2835
2839
  */
2836
2840
  updatePool(updatePoolRequest) {
2837
2841
  return __awaiter(this, void 0, void 0, function* () {
@@ -2895,7 +2899,7 @@ class DataFlowClient {
2895
2899
  * @param UpdatePrivateEndpointRequest
2896
2900
  * @return UpdatePrivateEndpointResponse
2897
2901
  * @throws OciError when an error occurs
2898
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
2902
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
2899
2903
  */
2900
2904
  updatePrivateEndpoint(updatePrivateEndpointRequest) {
2901
2905
  return __awaiter(this, void 0, void 0, function* () {
@@ -2957,7 +2961,7 @@ class DataFlowClient {
2957
2961
  * @param UpdateRunRequest
2958
2962
  * @return UpdateRunResponse
2959
2963
  * @throws OciError when an error occurs
2960
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
2964
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
2961
2965
  */
2962
2966
  updateRun(updateRunRequest) {
2963
2967
  return __awaiter(this, void 0, void 0, function* () {
@@ -3022,7 +3026,7 @@ class DataFlowClient {
3022
3026
  * @param UpdateSqlEndpointRequest
3023
3027
  * @return UpdateSqlEndpointResponse
3024
3028
  * @throws OciError when an error occurs
3025
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/dataflow/UpdateSqlEndpoint.ts.html |here} to see how to use UpdateSqlEndpoint API.
3029
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/dataflow/UpdateSqlEndpoint.ts.html |here} to see how to use UpdateSqlEndpoint API.
3026
3030
  */
3027
3031
  updateSqlEndpoint(updateSqlEndpointRequest) {
3028
3032
  return __awaiter(this, void 0, void 0, function* () {