oci-dataflow 2.77.0 → 2.77.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.
- package/lib/client.d.ts +49 -43
- package/lib/client.js +51 -42
- package/lib/client.js.map +1 -1
- package/lib/request/change-application-compartment-request.d.ts +1 -1
- package/lib/request/change-pool-compartment-request.d.ts +1 -1
- package/lib/request/change-private-endpoint-compartment-request.d.ts +1 -1
- package/lib/request/change-run-compartment-request.d.ts +1 -1
- package/lib/request/change-sql-endpoint-compartment-request.d.ts +1 -1
- package/lib/request/create-application-request.d.ts +1 -1
- package/lib/request/create-pool-request.d.ts +1 -1
- package/lib/request/create-private-endpoint-request.d.ts +1 -1
- package/lib/request/create-run-request.d.ts +1 -1
- package/lib/request/create-sql-endpoint-request.d.ts +1 -1
- package/lib/request/create-statement-request.d.ts +1 -1
- package/lib/request/delete-application-request.d.ts +1 -1
- package/lib/request/delete-pool-request.d.ts +1 -1
- package/lib/request/delete-private-endpoint-request.d.ts +1 -1
- package/lib/request/delete-run-request.d.ts +1 -1
- package/lib/request/delete-sql-endpoint-request.d.ts +1 -1
- package/lib/request/delete-statement-request.d.ts +1 -1
- package/lib/request/get-application-request.d.ts +1 -1
- package/lib/request/get-pool-request.d.ts +1 -1
- package/lib/request/get-private-endpoint-request.d.ts +1 -1
- package/lib/request/get-run-log-request.d.ts +1 -1
- package/lib/request/get-run-request.d.ts +1 -1
- package/lib/request/get-sql-endpoint-request.d.ts +1 -1
- package/lib/request/get-statement-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-applications-request.d.ts +1 -1
- package/lib/request/list-pools-request.d.ts +1 -1
- package/lib/request/list-private-endpoints-request.d.ts +1 -1
- package/lib/request/list-run-logs-request.d.ts +1 -1
- package/lib/request/list-runs-request.d.ts +1 -1
- package/lib/request/list-sql-endpoints-request.d.ts +1 -1
- package/lib/request/list-statements-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/start-pool-request.d.ts +1 -1
- package/lib/request/stop-pool-request.d.ts +1 -1
- package/lib/request/update-application-request.d.ts +1 -1
- package/lib/request/update-pool-request.d.ts +1 -1
- package/lib/request/update-private-endpoint-request.d.ts +1 -1
- package/lib/request/update-run-request.d.ts +1 -1
- package/lib/request/update-sql-endpoint-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -47,6 +47,7 @@ const model = __importStar(require("./model"));
|
|
|
47
47
|
const oci_common_1 = require("oci-common");
|
|
48
48
|
const dataflow_waiter_1 = require("./dataflow-waiter");
|
|
49
49
|
const oci_common_2 = require("oci-common");
|
|
50
|
+
const Breaker = require("opossum");
|
|
50
51
|
// ===============================================
|
|
51
52
|
// This file is autogenerated - Please do not edit
|
|
52
53
|
// ===============================================
|
|
@@ -183,6 +184,14 @@ class DataFlowClient {
|
|
|
183
184
|
}
|
|
184
185
|
throw Error("Waiters do not exist. Please create waiters.");
|
|
185
186
|
}
|
|
187
|
+
/**
|
|
188
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
189
|
+
*/
|
|
190
|
+
shutdownCircuitBreaker() {
|
|
191
|
+
if (this._circuitBreaker) {
|
|
192
|
+
this._circuitBreaker.shutdown();
|
|
193
|
+
}
|
|
194
|
+
}
|
|
186
195
|
/**
|
|
187
196
|
* Moves an application into a different compartment. When provided, If-Match is checked against ETag values of the resource.
|
|
188
197
|
* Associated resources, like runs, will not be automatically moved.
|
|
@@ -191,7 +200,7 @@ class DataFlowClient {
|
|
|
191
200
|
* @param ChangeApplicationCompartmentRequest
|
|
192
201
|
* @return ChangeApplicationCompartmentResponse
|
|
193
202
|
* @throws OciError when an error occurs
|
|
194
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
203
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
|
|
195
204
|
*/
|
|
196
205
|
changeApplicationCompartment(changeApplicationCompartmentRequest) {
|
|
197
206
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -252,7 +261,7 @@ class DataFlowClient {
|
|
|
252
261
|
* @param ChangePoolCompartmentRequest
|
|
253
262
|
* @return ChangePoolCompartmentResponse
|
|
254
263
|
* @throws OciError when an error occurs
|
|
255
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
264
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ChangePoolCompartment.ts.html |here} to see how to use ChangePoolCompartment API.
|
|
256
265
|
*/
|
|
257
266
|
changePoolCompartment(changePoolCompartmentRequest) {
|
|
258
267
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -310,7 +319,7 @@ class DataFlowClient {
|
|
|
310
319
|
* @param ChangePrivateEndpointCompartmentRequest
|
|
311
320
|
* @return ChangePrivateEndpointCompartmentResponse
|
|
312
321
|
* @throws OciError when an error occurs
|
|
313
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
322
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
|
|
314
323
|
*/
|
|
315
324
|
changePrivateEndpointCompartment(changePrivateEndpointCompartmentRequest) {
|
|
316
325
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -375,7 +384,7 @@ class DataFlowClient {
|
|
|
375
384
|
* @param ChangeRunCompartmentRequest
|
|
376
385
|
* @return ChangeRunCompartmentResponse
|
|
377
386
|
* @throws OciError when an error occurs
|
|
378
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
387
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
|
|
379
388
|
*/
|
|
380
389
|
changeRunCompartment(changeRunCompartmentRequest) {
|
|
381
390
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -432,7 +441,7 @@ class DataFlowClient {
|
|
|
432
441
|
* @param ChangeSqlEndpointCompartmentRequest
|
|
433
442
|
* @return ChangeSqlEndpointCompartmentResponse
|
|
434
443
|
* @throws OciError when an error occurs
|
|
435
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
444
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ChangeSqlEndpointCompartment.ts.html |here} to see how to use ChangeSqlEndpointCompartment API.
|
|
436
445
|
*/
|
|
437
446
|
changeSqlEndpointCompartment(changeSqlEndpointCompartmentRequest) {
|
|
438
447
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -495,7 +504,7 @@ class DataFlowClient {
|
|
|
495
504
|
* @param CreateApplicationRequest
|
|
496
505
|
* @return CreateApplicationResponse
|
|
497
506
|
* @throws OciError when an error occurs
|
|
498
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
507
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
|
|
499
508
|
*/
|
|
500
509
|
createApplication(createApplicationRequest) {
|
|
501
510
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -559,7 +568,7 @@ class DataFlowClient {
|
|
|
559
568
|
* @param CreatePoolRequest
|
|
560
569
|
* @return CreatePoolResponse
|
|
561
570
|
* @throws OciError when an error occurs
|
|
562
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
571
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/CreatePool.ts.html |here} to see how to use CreatePool API.
|
|
563
572
|
*/
|
|
564
573
|
createPool(createPoolRequest) {
|
|
565
574
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -633,7 +642,7 @@ class DataFlowClient {
|
|
|
633
642
|
* @param CreatePrivateEndpointRequest
|
|
634
643
|
* @return CreatePrivateEndpointResponse
|
|
635
644
|
* @throws OciError when an error occurs
|
|
636
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
645
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
|
|
637
646
|
*/
|
|
638
647
|
createPrivateEndpoint(createPrivateEndpointRequest) {
|
|
639
648
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -707,7 +716,7 @@ class DataFlowClient {
|
|
|
707
716
|
* @param CreateRunRequest
|
|
708
717
|
* @return CreateRunResponse
|
|
709
718
|
* @throws OciError when an error occurs
|
|
710
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
719
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
|
|
711
720
|
*/
|
|
712
721
|
createRun(createRunRequest) {
|
|
713
722
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -770,7 +779,7 @@ class DataFlowClient {
|
|
|
770
779
|
* @param CreateSqlEndpointRequest
|
|
771
780
|
* @return CreateSqlEndpointResponse
|
|
772
781
|
* @throws OciError when an error occurs
|
|
773
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
782
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/CreateSqlEndpoint.ts.html |here} to see how to use CreateSqlEndpoint API.
|
|
774
783
|
*/
|
|
775
784
|
createSqlEndpoint(createSqlEndpointRequest) {
|
|
776
785
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -839,7 +848,7 @@ class DataFlowClient {
|
|
|
839
848
|
* @param CreateStatementRequest
|
|
840
849
|
* @return CreateStatementResponse
|
|
841
850
|
* @throws OciError when an error occurs
|
|
842
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
851
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/CreateStatement.ts.html |here} to see how to use CreateStatement API.
|
|
843
852
|
*/
|
|
844
853
|
createStatement(createStatementRequest) {
|
|
845
854
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -904,7 +913,7 @@ class DataFlowClient {
|
|
|
904
913
|
* @param DeleteApplicationRequest
|
|
905
914
|
* @return DeleteApplicationResponse
|
|
906
915
|
* @throws OciError when an error occurs
|
|
907
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
916
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
|
|
908
917
|
*/
|
|
909
918
|
deleteApplication(deleteApplicationRequest) {
|
|
910
919
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -960,7 +969,7 @@ class DataFlowClient {
|
|
|
960
969
|
* @param DeletePoolRequest
|
|
961
970
|
* @return DeletePoolResponse
|
|
962
971
|
* @throws OciError when an error occurs
|
|
963
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
972
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/DeletePool.ts.html |here} to see how to use DeletePool API.
|
|
964
973
|
*/
|
|
965
974
|
deletePool(deletePoolRequest) {
|
|
966
975
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1016,7 +1025,7 @@ class DataFlowClient {
|
|
|
1016
1025
|
* @param DeletePrivateEndpointRequest
|
|
1017
1026
|
* @return DeletePrivateEndpointResponse
|
|
1018
1027
|
* @throws OciError when an error occurs
|
|
1019
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1028
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
|
|
1020
1029
|
*/
|
|
1021
1030
|
deletePrivateEndpoint(deletePrivateEndpointRequest) {
|
|
1022
1031
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1078,7 +1087,7 @@ class DataFlowClient {
|
|
|
1078
1087
|
* @param DeleteRunRequest
|
|
1079
1088
|
* @return DeleteRunResponse
|
|
1080
1089
|
* @throws OciError when an error occurs
|
|
1081
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1090
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
|
|
1082
1091
|
*/
|
|
1083
1092
|
deleteRun(deleteRunRequest) {
|
|
1084
1093
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1133,7 +1142,7 @@ class DataFlowClient {
|
|
|
1133
1142
|
* @param DeleteSqlEndpointRequest
|
|
1134
1143
|
* @return DeleteSqlEndpointResponse
|
|
1135
1144
|
* @throws OciError when an error occurs
|
|
1136
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1145
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/DeleteSqlEndpoint.ts.html |here} to see how to use DeleteSqlEndpoint API.
|
|
1137
1146
|
*/
|
|
1138
1147
|
deleteSqlEndpoint(deleteSqlEndpointRequest) {
|
|
1139
1148
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1194,7 +1203,7 @@ class DataFlowClient {
|
|
|
1194
1203
|
* @param DeleteStatementRequest
|
|
1195
1204
|
* @return DeleteStatementResponse
|
|
1196
1205
|
* @throws OciError when an error occurs
|
|
1197
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1206
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/DeleteStatement.ts.html |here} to see how to use DeleteStatement API.
|
|
1198
1207
|
*/
|
|
1199
1208
|
deleteStatement(deleteStatementRequest) {
|
|
1200
1209
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1251,7 +1260,7 @@ class DataFlowClient {
|
|
|
1251
1260
|
* @param GetApplicationRequest
|
|
1252
1261
|
* @return GetApplicationResponse
|
|
1253
1262
|
* @throws OciError when an error occurs
|
|
1254
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1263
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
|
|
1255
1264
|
*/
|
|
1256
1265
|
getApplication(getApplicationRequest) {
|
|
1257
1266
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1315,7 +1324,7 @@ class DataFlowClient {
|
|
|
1315
1324
|
* @param GetPoolRequest
|
|
1316
1325
|
* @return GetPoolResponse
|
|
1317
1326
|
* @throws OciError when an error occurs
|
|
1318
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1327
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetPool.ts.html |here} to see how to use GetPool API.
|
|
1319
1328
|
*/
|
|
1320
1329
|
getPool(getPoolRequest) {
|
|
1321
1330
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1379,7 +1388,7 @@ class DataFlowClient {
|
|
|
1379
1388
|
* @param GetPrivateEndpointRequest
|
|
1380
1389
|
* @return GetPrivateEndpointResponse
|
|
1381
1390
|
* @throws OciError when an error occurs
|
|
1382
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1391
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
|
|
1383
1392
|
*/
|
|
1384
1393
|
getPrivateEndpoint(getPrivateEndpointRequest) {
|
|
1385
1394
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1443,7 +1452,7 @@ class DataFlowClient {
|
|
|
1443
1452
|
* @param GetRunRequest
|
|
1444
1453
|
* @return GetRunResponse
|
|
1445
1454
|
* @throws OciError when an error occurs
|
|
1446
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1455
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
|
|
1447
1456
|
*/
|
|
1448
1457
|
getRun(getRunRequest) {
|
|
1449
1458
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1507,7 +1516,7 @@ class DataFlowClient {
|
|
|
1507
1516
|
* @param GetRunLogRequest
|
|
1508
1517
|
* @return GetRunLogResponse
|
|
1509
1518
|
* @throws OciError when an error occurs
|
|
1510
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1519
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
|
|
1511
1520
|
*/
|
|
1512
1521
|
getRunLog(getRunLogRequest) {
|
|
1513
1522
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1593,7 +1602,7 @@ class DataFlowClient {
|
|
|
1593
1602
|
* @param GetSqlEndpointRequest
|
|
1594
1603
|
* @return GetSqlEndpointResponse
|
|
1595
1604
|
* @throws OciError when an error occurs
|
|
1596
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1605
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetSqlEndpoint.ts.html |here} to see how to use GetSqlEndpoint API.
|
|
1597
1606
|
*/
|
|
1598
1607
|
getSqlEndpoint(getSqlEndpointRequest) {
|
|
1599
1608
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1657,7 +1666,7 @@ class DataFlowClient {
|
|
|
1657
1666
|
* @param GetStatementRequest
|
|
1658
1667
|
* @return GetStatementResponse
|
|
1659
1668
|
* @throws OciError when an error occurs
|
|
1660
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1669
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetStatement.ts.html |here} to see how to use GetStatement API.
|
|
1661
1670
|
*/
|
|
1662
1671
|
getStatement(getStatementRequest) {
|
|
1663
1672
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1722,7 +1731,7 @@ class DataFlowClient {
|
|
|
1722
1731
|
* @param GetWorkRequestRequest
|
|
1723
1732
|
* @return GetWorkRequestResponse
|
|
1724
1733
|
* @throws OciError when an error occurs
|
|
1725
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1734
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1726
1735
|
*/
|
|
1727
1736
|
getWorkRequest(getWorkRequestRequest) {
|
|
1728
1737
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1781,7 +1790,7 @@ class DataFlowClient {
|
|
|
1781
1790
|
* @param ListApplicationsRequest
|
|
1782
1791
|
* @return ListApplicationsResponse
|
|
1783
1792
|
* @throws OciError when an error occurs
|
|
1784
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1793
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
|
|
1785
1794
|
*/
|
|
1786
1795
|
listApplications(listApplicationsRequest) {
|
|
1787
1796
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1898,7 +1907,7 @@ class DataFlowClient {
|
|
|
1898
1907
|
* @param ListPoolsRequest
|
|
1899
1908
|
* @return ListPoolsResponse
|
|
1900
1909
|
* @throws OciError when an error occurs
|
|
1901
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1910
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListPools.ts.html |here} to see how to use ListPools API.
|
|
1902
1911
|
*/
|
|
1903
1912
|
listPools(listPoolsRequest) {
|
|
1904
1913
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1975,7 +1984,7 @@ class DataFlowClient {
|
|
|
1975
1984
|
* @param ListPrivateEndpointsRequest
|
|
1976
1985
|
* @return ListPrivateEndpointsResponse
|
|
1977
1986
|
* @throws OciError when an error occurs
|
|
1978
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1987
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
|
|
1979
1988
|
*/
|
|
1980
1989
|
listPrivateEndpoints(listPrivateEndpointsRequest) {
|
|
1981
1990
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2052,7 +2061,7 @@ class DataFlowClient {
|
|
|
2052
2061
|
* @param ListRunLogsRequest
|
|
2053
2062
|
* @return ListRunLogsResponse
|
|
2054
2063
|
* @throws OciError when an error occurs
|
|
2055
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2064
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
|
|
2056
2065
|
*/
|
|
2057
2066
|
listRunLogs(listRunLogsRequest) {
|
|
2058
2067
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2164,7 +2173,7 @@ class DataFlowClient {
|
|
|
2164
2173
|
* @param ListRunsRequest
|
|
2165
2174
|
* @return ListRunsResponse
|
|
2166
2175
|
* @throws OciError when an error occurs
|
|
2167
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2176
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
|
|
2168
2177
|
*/
|
|
2169
2178
|
listRuns(listRunsRequest) {
|
|
2170
2179
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2286,7 +2295,7 @@ class DataFlowClient {
|
|
|
2286
2295
|
* @param ListSqlEndpointsRequest
|
|
2287
2296
|
* @return ListSqlEndpointsResponse
|
|
2288
2297
|
* @throws OciError when an error occurs
|
|
2289
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2298
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListSqlEndpoints.ts.html |here} to see how to use ListSqlEndpoints API.
|
|
2290
2299
|
*/
|
|
2291
2300
|
listSqlEndpoints(listSqlEndpointsRequest) {
|
|
2292
2301
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2357,7 +2366,7 @@ class DataFlowClient {
|
|
|
2357
2366
|
* @param ListStatementsRequest
|
|
2358
2367
|
* @return ListStatementsResponse
|
|
2359
2368
|
* @throws OciError when an error occurs
|
|
2360
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2369
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListStatements.ts.html |here} to see how to use ListStatements API.
|
|
2361
2370
|
*/
|
|
2362
2371
|
listStatements(listStatementsRequest) {
|
|
2363
2372
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2432,7 +2441,7 @@ class DataFlowClient {
|
|
|
2432
2441
|
* @param ListWorkRequestErrorsRequest
|
|
2433
2442
|
* @return ListWorkRequestErrorsResponse
|
|
2434
2443
|
* @throws OciError when an error occurs
|
|
2435
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2444
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2436
2445
|
*/
|
|
2437
2446
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2438
2447
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2504,7 +2513,7 @@ class DataFlowClient {
|
|
|
2504
2513
|
* @param ListWorkRequestLogsRequest
|
|
2505
2514
|
* @return ListWorkRequestLogsResponse
|
|
2506
2515
|
* @throws OciError when an error occurs
|
|
2507
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2516
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2508
2517
|
*/
|
|
2509
2518
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2510
2519
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2576,7 +2585,7 @@ class DataFlowClient {
|
|
|
2576
2585
|
* @param ListWorkRequestsRequest
|
|
2577
2586
|
* @return ListWorkRequestsResponse
|
|
2578
2587
|
* @throws OciError when an error occurs
|
|
2579
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2588
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2580
2589
|
*/
|
|
2581
2590
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2582
2591
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2647,7 +2656,7 @@ class DataFlowClient {
|
|
|
2647
2656
|
* @param StartPoolRequest
|
|
2648
2657
|
* @return StartPoolResponse
|
|
2649
2658
|
* @throws OciError when an error occurs
|
|
2650
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2659
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/StartPool.ts.html |here} to see how to use StartPool API.
|
|
2651
2660
|
*/
|
|
2652
2661
|
startPool(startPoolRequest) {
|
|
2653
2662
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2709,7 +2718,7 @@ class DataFlowClient {
|
|
|
2709
2718
|
* @param StopPoolRequest
|
|
2710
2719
|
* @return StopPoolResponse
|
|
2711
2720
|
* @throws OciError when an error occurs
|
|
2712
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2721
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/StopPool.ts.html |here} to see how to use StopPool API.
|
|
2713
2722
|
*/
|
|
2714
2723
|
stopPool(stopPoolRequest) {
|
|
2715
2724
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2771,7 +2780,7 @@ class DataFlowClient {
|
|
|
2771
2780
|
* @param UpdateApplicationRequest
|
|
2772
2781
|
* @return UpdateApplicationResponse
|
|
2773
2782
|
* @throws OciError when an error occurs
|
|
2774
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2783
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
|
|
2775
2784
|
*/
|
|
2776
2785
|
updateApplication(updateApplicationRequest) {
|
|
2777
2786
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2839,7 +2848,7 @@ class DataFlowClient {
|
|
|
2839
2848
|
* @param UpdatePoolRequest
|
|
2840
2849
|
* @return UpdatePoolResponse
|
|
2841
2850
|
* @throws OciError when an error occurs
|
|
2842
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2851
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/UpdatePool.ts.html |here} to see how to use UpdatePool API.
|
|
2843
2852
|
*/
|
|
2844
2853
|
updatePool(updatePoolRequest) {
|
|
2845
2854
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2903,7 +2912,7 @@ class DataFlowClient {
|
|
|
2903
2912
|
* @param UpdatePrivateEndpointRequest
|
|
2904
2913
|
* @return UpdatePrivateEndpointResponse
|
|
2905
2914
|
* @throws OciError when an error occurs
|
|
2906
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2915
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
|
|
2907
2916
|
*/
|
|
2908
2917
|
updatePrivateEndpoint(updatePrivateEndpointRequest) {
|
|
2909
2918
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2965,7 +2974,7 @@ class DataFlowClient {
|
|
|
2965
2974
|
* @param UpdateRunRequest
|
|
2966
2975
|
* @return UpdateRunResponse
|
|
2967
2976
|
* @throws OciError when an error occurs
|
|
2968
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2977
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
|
|
2969
2978
|
*/
|
|
2970
2979
|
updateRun(updateRunRequest) {
|
|
2971
2980
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3030,7 +3039,7 @@ class DataFlowClient {
|
|
|
3030
3039
|
* @param UpdateSqlEndpointRequest
|
|
3031
3040
|
* @return UpdateSqlEndpointResponse
|
|
3032
3041
|
* @throws OciError when an error occurs
|
|
3033
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
3042
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/UpdateSqlEndpoint.ts.html |here} to see how to use UpdateSqlEndpoint API.
|
|
3034
3043
|
*/
|
|
3035
3044
|
updateSqlEndpoint(updateSqlEndpointRequest) {
|
|
3036
3045
|
return __awaiter(this, void 0, void 0, function* () {
|