oci-dataflow 2.83.0 → 2.84.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +46 -42
- package/lib/client.js +50 -43
- package/lib/client.js.map +1 -1
- package/lib/model/sql-endpoint-lifecycle-state.d.ts +4 -0
- package/lib/model/sql-endpoint-lifecycle-state.js +4 -0
- package/lib/model/sql-endpoint-lifecycle-state.js.map +1 -1
- package/lib/model/sql-endpoint.d.ts +4 -0
- package/lib/model/sql-endpoint.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 +7 -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
|
@@ -192,6 +192,12 @@ class DataFlowClient {
|
|
|
192
192
|
this._circuitBreaker.shutdown();
|
|
193
193
|
}
|
|
194
194
|
}
|
|
195
|
+
/**
|
|
196
|
+
* Close the client once it is no longer needed
|
|
197
|
+
*/
|
|
198
|
+
close() {
|
|
199
|
+
this.shutdownCircuitBreaker();
|
|
200
|
+
}
|
|
195
201
|
/**
|
|
196
202
|
* Moves an application into a different compartment. When provided, If-Match is checked against ETag values of the resource.
|
|
197
203
|
* Associated resources, like runs, will not be automatically moved.
|
|
@@ -200,7 +206,7 @@ class DataFlowClient {
|
|
|
200
206
|
* @param ChangeApplicationCompartmentRequest
|
|
201
207
|
* @return ChangeApplicationCompartmentResponse
|
|
202
208
|
* @throws OciError when an error occurs
|
|
203
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
209
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
|
|
204
210
|
*/
|
|
205
211
|
changeApplicationCompartment(changeApplicationCompartmentRequest) {
|
|
206
212
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -261,7 +267,7 @@ class DataFlowClient {
|
|
|
261
267
|
* @param ChangePoolCompartmentRequest
|
|
262
268
|
* @return ChangePoolCompartmentResponse
|
|
263
269
|
* @throws OciError when an error occurs
|
|
264
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
270
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ChangePoolCompartment.ts.html |here} to see how to use ChangePoolCompartment API.
|
|
265
271
|
*/
|
|
266
272
|
changePoolCompartment(changePoolCompartmentRequest) {
|
|
267
273
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -319,7 +325,7 @@ class DataFlowClient {
|
|
|
319
325
|
* @param ChangePrivateEndpointCompartmentRequest
|
|
320
326
|
* @return ChangePrivateEndpointCompartmentResponse
|
|
321
327
|
* @throws OciError when an error occurs
|
|
322
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
328
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
|
|
323
329
|
*/
|
|
324
330
|
changePrivateEndpointCompartment(changePrivateEndpointCompartmentRequest) {
|
|
325
331
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -384,7 +390,7 @@ class DataFlowClient {
|
|
|
384
390
|
* @param ChangeRunCompartmentRequest
|
|
385
391
|
* @return ChangeRunCompartmentResponse
|
|
386
392
|
* @throws OciError when an error occurs
|
|
387
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
393
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
|
|
388
394
|
*/
|
|
389
395
|
changeRunCompartment(changeRunCompartmentRequest) {
|
|
390
396
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -441,7 +447,7 @@ class DataFlowClient {
|
|
|
441
447
|
* @param ChangeSqlEndpointCompartmentRequest
|
|
442
448
|
* @return ChangeSqlEndpointCompartmentResponse
|
|
443
449
|
* @throws OciError when an error occurs
|
|
444
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
450
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ChangeSqlEndpointCompartment.ts.html |here} to see how to use ChangeSqlEndpointCompartment API.
|
|
445
451
|
*/
|
|
446
452
|
changeSqlEndpointCompartment(changeSqlEndpointCompartmentRequest) {
|
|
447
453
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -504,7 +510,7 @@ class DataFlowClient {
|
|
|
504
510
|
* @param CreateApplicationRequest
|
|
505
511
|
* @return CreateApplicationResponse
|
|
506
512
|
* @throws OciError when an error occurs
|
|
507
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
513
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
|
|
508
514
|
*/
|
|
509
515
|
createApplication(createApplicationRequest) {
|
|
510
516
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -568,7 +574,7 @@ class DataFlowClient {
|
|
|
568
574
|
* @param CreatePoolRequest
|
|
569
575
|
* @return CreatePoolResponse
|
|
570
576
|
* @throws OciError when an error occurs
|
|
571
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
577
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/CreatePool.ts.html |here} to see how to use CreatePool API.
|
|
572
578
|
*/
|
|
573
579
|
createPool(createPoolRequest) {
|
|
574
580
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -642,7 +648,7 @@ class DataFlowClient {
|
|
|
642
648
|
* @param CreatePrivateEndpointRequest
|
|
643
649
|
* @return CreatePrivateEndpointResponse
|
|
644
650
|
* @throws OciError when an error occurs
|
|
645
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
651
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
|
|
646
652
|
*/
|
|
647
653
|
createPrivateEndpoint(createPrivateEndpointRequest) {
|
|
648
654
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -716,7 +722,7 @@ class DataFlowClient {
|
|
|
716
722
|
* @param CreateRunRequest
|
|
717
723
|
* @return CreateRunResponse
|
|
718
724
|
* @throws OciError when an error occurs
|
|
719
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
725
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
|
|
720
726
|
*/
|
|
721
727
|
createRun(createRunRequest) {
|
|
722
728
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -729,7 +735,8 @@ class DataFlowClient {
|
|
|
729
735
|
let headerParams = {
|
|
730
736
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
731
737
|
"opc-retry-token": createRunRequest.opcRetryToken,
|
|
732
|
-
"opc-request-id": createRunRequest.opcRequestId
|
|
738
|
+
"opc-request-id": createRunRequest.opcRequestId,
|
|
739
|
+
"opc-parent-rpt-url": createRunRequest.opcParentRptUrl
|
|
733
740
|
};
|
|
734
741
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
735
742
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createRunRequest.retryConfiguration, specRetryConfiguration);
|
|
@@ -779,7 +786,7 @@ class DataFlowClient {
|
|
|
779
786
|
* @param CreateSqlEndpointRequest
|
|
780
787
|
* @return CreateSqlEndpointResponse
|
|
781
788
|
* @throws OciError when an error occurs
|
|
782
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
789
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/CreateSqlEndpoint.ts.html |here} to see how to use CreateSqlEndpoint API.
|
|
783
790
|
*/
|
|
784
791
|
createSqlEndpoint(createSqlEndpointRequest) {
|
|
785
792
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -848,7 +855,7 @@ class DataFlowClient {
|
|
|
848
855
|
* @param CreateStatementRequest
|
|
849
856
|
* @return CreateStatementResponse
|
|
850
857
|
* @throws OciError when an error occurs
|
|
851
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
858
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/CreateStatement.ts.html |here} to see how to use CreateStatement API.
|
|
852
859
|
*/
|
|
853
860
|
createStatement(createStatementRequest) {
|
|
854
861
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -913,7 +920,7 @@ class DataFlowClient {
|
|
|
913
920
|
* @param DeleteApplicationRequest
|
|
914
921
|
* @return DeleteApplicationResponse
|
|
915
922
|
* @throws OciError when an error occurs
|
|
916
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
923
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
|
|
917
924
|
*/
|
|
918
925
|
deleteApplication(deleteApplicationRequest) {
|
|
919
926
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -969,7 +976,7 @@ class DataFlowClient {
|
|
|
969
976
|
* @param DeletePoolRequest
|
|
970
977
|
* @return DeletePoolResponse
|
|
971
978
|
* @throws OciError when an error occurs
|
|
972
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
979
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/DeletePool.ts.html |here} to see how to use DeletePool API.
|
|
973
980
|
*/
|
|
974
981
|
deletePool(deletePoolRequest) {
|
|
975
982
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1025,7 +1032,7 @@ class DataFlowClient {
|
|
|
1025
1032
|
* @param DeletePrivateEndpointRequest
|
|
1026
1033
|
* @return DeletePrivateEndpointResponse
|
|
1027
1034
|
* @throws OciError when an error occurs
|
|
1028
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1035
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
|
|
1029
1036
|
*/
|
|
1030
1037
|
deletePrivateEndpoint(deletePrivateEndpointRequest) {
|
|
1031
1038
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1087,7 +1094,7 @@ class DataFlowClient {
|
|
|
1087
1094
|
* @param DeleteRunRequest
|
|
1088
1095
|
* @return DeleteRunResponse
|
|
1089
1096
|
* @throws OciError when an error occurs
|
|
1090
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1097
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
|
|
1091
1098
|
*/
|
|
1092
1099
|
deleteRun(deleteRunRequest) {
|
|
1093
1100
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1142,7 +1149,7 @@ class DataFlowClient {
|
|
|
1142
1149
|
* @param DeleteSqlEndpointRequest
|
|
1143
1150
|
* @return DeleteSqlEndpointResponse
|
|
1144
1151
|
* @throws OciError when an error occurs
|
|
1145
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1152
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/DeleteSqlEndpoint.ts.html |here} to see how to use DeleteSqlEndpoint API.
|
|
1146
1153
|
*/
|
|
1147
1154
|
deleteSqlEndpoint(deleteSqlEndpointRequest) {
|
|
1148
1155
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1203,7 +1210,7 @@ class DataFlowClient {
|
|
|
1203
1210
|
* @param DeleteStatementRequest
|
|
1204
1211
|
* @return DeleteStatementResponse
|
|
1205
1212
|
* @throws OciError when an error occurs
|
|
1206
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1213
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/DeleteStatement.ts.html |here} to see how to use DeleteStatement API.
|
|
1207
1214
|
*/
|
|
1208
1215
|
deleteStatement(deleteStatementRequest) {
|
|
1209
1216
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1260,7 +1267,7 @@ class DataFlowClient {
|
|
|
1260
1267
|
* @param GetApplicationRequest
|
|
1261
1268
|
* @return GetApplicationResponse
|
|
1262
1269
|
* @throws OciError when an error occurs
|
|
1263
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1270
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
|
|
1264
1271
|
*/
|
|
1265
1272
|
getApplication(getApplicationRequest) {
|
|
1266
1273
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1324,7 +1331,7 @@ class DataFlowClient {
|
|
|
1324
1331
|
* @param GetPoolRequest
|
|
1325
1332
|
* @return GetPoolResponse
|
|
1326
1333
|
* @throws OciError when an error occurs
|
|
1327
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1334
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetPool.ts.html |here} to see how to use GetPool API.
|
|
1328
1335
|
*/
|
|
1329
1336
|
getPool(getPoolRequest) {
|
|
1330
1337
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1388,7 +1395,7 @@ class DataFlowClient {
|
|
|
1388
1395
|
* @param GetPrivateEndpointRequest
|
|
1389
1396
|
* @return GetPrivateEndpointResponse
|
|
1390
1397
|
* @throws OciError when an error occurs
|
|
1391
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1398
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
|
|
1392
1399
|
*/
|
|
1393
1400
|
getPrivateEndpoint(getPrivateEndpointRequest) {
|
|
1394
1401
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1452,7 +1459,7 @@ class DataFlowClient {
|
|
|
1452
1459
|
* @param GetRunRequest
|
|
1453
1460
|
* @return GetRunResponse
|
|
1454
1461
|
* @throws OciError when an error occurs
|
|
1455
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1462
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
|
|
1456
1463
|
*/
|
|
1457
1464
|
getRun(getRunRequest) {
|
|
1458
1465
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1516,7 +1523,7 @@ class DataFlowClient {
|
|
|
1516
1523
|
* @param GetRunLogRequest
|
|
1517
1524
|
* @return GetRunLogResponse
|
|
1518
1525
|
* @throws OciError when an error occurs
|
|
1519
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1526
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
|
|
1520
1527
|
*/
|
|
1521
1528
|
getRunLog(getRunLogRequest) {
|
|
1522
1529
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1602,7 +1609,7 @@ class DataFlowClient {
|
|
|
1602
1609
|
* @param GetSqlEndpointRequest
|
|
1603
1610
|
* @return GetSqlEndpointResponse
|
|
1604
1611
|
* @throws OciError when an error occurs
|
|
1605
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1612
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetSqlEndpoint.ts.html |here} to see how to use GetSqlEndpoint API.
|
|
1606
1613
|
*/
|
|
1607
1614
|
getSqlEndpoint(getSqlEndpointRequest) {
|
|
1608
1615
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1666,7 +1673,7 @@ class DataFlowClient {
|
|
|
1666
1673
|
* @param GetStatementRequest
|
|
1667
1674
|
* @return GetStatementResponse
|
|
1668
1675
|
* @throws OciError when an error occurs
|
|
1669
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1676
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetStatement.ts.html |here} to see how to use GetStatement API.
|
|
1670
1677
|
*/
|
|
1671
1678
|
getStatement(getStatementRequest) {
|
|
1672
1679
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1731,7 +1738,7 @@ class DataFlowClient {
|
|
|
1731
1738
|
* @param GetWorkRequestRequest
|
|
1732
1739
|
* @return GetWorkRequestResponse
|
|
1733
1740
|
* @throws OciError when an error occurs
|
|
1734
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1741
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1735
1742
|
*/
|
|
1736
1743
|
getWorkRequest(getWorkRequestRequest) {
|
|
1737
1744
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1790,7 +1797,7 @@ class DataFlowClient {
|
|
|
1790
1797
|
* @param ListApplicationsRequest
|
|
1791
1798
|
* @return ListApplicationsResponse
|
|
1792
1799
|
* @throws OciError when an error occurs
|
|
1793
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1800
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
|
|
1794
1801
|
*/
|
|
1795
1802
|
listApplications(listApplicationsRequest) {
|
|
1796
1803
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1907,7 +1914,7 @@ class DataFlowClient {
|
|
|
1907
1914
|
* @param ListPoolsRequest
|
|
1908
1915
|
* @return ListPoolsResponse
|
|
1909
1916
|
* @throws OciError when an error occurs
|
|
1910
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1917
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListPools.ts.html |here} to see how to use ListPools API.
|
|
1911
1918
|
*/
|
|
1912
1919
|
listPools(listPoolsRequest) {
|
|
1913
1920
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1984,7 +1991,7 @@ class DataFlowClient {
|
|
|
1984
1991
|
* @param ListPrivateEndpointsRequest
|
|
1985
1992
|
* @return ListPrivateEndpointsResponse
|
|
1986
1993
|
* @throws OciError when an error occurs
|
|
1987
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1994
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
|
|
1988
1995
|
*/
|
|
1989
1996
|
listPrivateEndpoints(listPrivateEndpointsRequest) {
|
|
1990
1997
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2061,7 +2068,7 @@ class DataFlowClient {
|
|
|
2061
2068
|
* @param ListRunLogsRequest
|
|
2062
2069
|
* @return ListRunLogsResponse
|
|
2063
2070
|
* @throws OciError when an error occurs
|
|
2064
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2071
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
|
|
2065
2072
|
*/
|
|
2066
2073
|
listRunLogs(listRunLogsRequest) {
|
|
2067
2074
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2173,7 +2180,7 @@ class DataFlowClient {
|
|
|
2173
2180
|
* @param ListRunsRequest
|
|
2174
2181
|
* @return ListRunsResponse
|
|
2175
2182
|
* @throws OciError when an error occurs
|
|
2176
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2183
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
|
|
2177
2184
|
*/
|
|
2178
2185
|
listRuns(listRunsRequest) {
|
|
2179
2186
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2295,7 +2302,7 @@ class DataFlowClient {
|
|
|
2295
2302
|
* @param ListSqlEndpointsRequest
|
|
2296
2303
|
* @return ListSqlEndpointsResponse
|
|
2297
2304
|
* @throws OciError when an error occurs
|
|
2298
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2305
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListSqlEndpoints.ts.html |here} to see how to use ListSqlEndpoints API.
|
|
2299
2306
|
*/
|
|
2300
2307
|
listSqlEndpoints(listSqlEndpointsRequest) {
|
|
2301
2308
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2366,7 +2373,7 @@ class DataFlowClient {
|
|
|
2366
2373
|
* @param ListStatementsRequest
|
|
2367
2374
|
* @return ListStatementsResponse
|
|
2368
2375
|
* @throws OciError when an error occurs
|
|
2369
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2376
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListStatements.ts.html |here} to see how to use ListStatements API.
|
|
2370
2377
|
*/
|
|
2371
2378
|
listStatements(listStatementsRequest) {
|
|
2372
2379
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2441,7 +2448,7 @@ class DataFlowClient {
|
|
|
2441
2448
|
* @param ListWorkRequestErrorsRequest
|
|
2442
2449
|
* @return ListWorkRequestErrorsResponse
|
|
2443
2450
|
* @throws OciError when an error occurs
|
|
2444
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2451
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2445
2452
|
*/
|
|
2446
2453
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2447
2454
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2513,7 +2520,7 @@ class DataFlowClient {
|
|
|
2513
2520
|
* @param ListWorkRequestLogsRequest
|
|
2514
2521
|
* @return ListWorkRequestLogsResponse
|
|
2515
2522
|
* @throws OciError when an error occurs
|
|
2516
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2523
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2517
2524
|
*/
|
|
2518
2525
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2519
2526
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2585,7 +2592,7 @@ class DataFlowClient {
|
|
|
2585
2592
|
* @param ListWorkRequestsRequest
|
|
2586
2593
|
* @return ListWorkRequestsResponse
|
|
2587
2594
|
* @throws OciError when an error occurs
|
|
2588
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2595
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2589
2596
|
*/
|
|
2590
2597
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2591
2598
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2656,7 +2663,7 @@ class DataFlowClient {
|
|
|
2656
2663
|
* @param StartPoolRequest
|
|
2657
2664
|
* @return StartPoolResponse
|
|
2658
2665
|
* @throws OciError when an error occurs
|
|
2659
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2666
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/StartPool.ts.html |here} to see how to use StartPool API.
|
|
2660
2667
|
*/
|
|
2661
2668
|
startPool(startPoolRequest) {
|
|
2662
2669
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2718,7 +2725,7 @@ class DataFlowClient {
|
|
|
2718
2725
|
* @param StopPoolRequest
|
|
2719
2726
|
* @return StopPoolResponse
|
|
2720
2727
|
* @throws OciError when an error occurs
|
|
2721
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2728
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/StopPool.ts.html |here} to see how to use StopPool API.
|
|
2722
2729
|
*/
|
|
2723
2730
|
stopPool(stopPoolRequest) {
|
|
2724
2731
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2780,7 +2787,7 @@ class DataFlowClient {
|
|
|
2780
2787
|
* @param UpdateApplicationRequest
|
|
2781
2788
|
* @return UpdateApplicationResponse
|
|
2782
2789
|
* @throws OciError when an error occurs
|
|
2783
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2790
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
|
|
2784
2791
|
*/
|
|
2785
2792
|
updateApplication(updateApplicationRequest) {
|
|
2786
2793
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2848,7 +2855,7 @@ class DataFlowClient {
|
|
|
2848
2855
|
* @param UpdatePoolRequest
|
|
2849
2856
|
* @return UpdatePoolResponse
|
|
2850
2857
|
* @throws OciError when an error occurs
|
|
2851
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2858
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/UpdatePool.ts.html |here} to see how to use UpdatePool API.
|
|
2852
2859
|
*/
|
|
2853
2860
|
updatePool(updatePoolRequest) {
|
|
2854
2861
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2912,7 +2919,7 @@ class DataFlowClient {
|
|
|
2912
2919
|
* @param UpdatePrivateEndpointRequest
|
|
2913
2920
|
* @return UpdatePrivateEndpointResponse
|
|
2914
2921
|
* @throws OciError when an error occurs
|
|
2915
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2922
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
|
|
2916
2923
|
*/
|
|
2917
2924
|
updatePrivateEndpoint(updatePrivateEndpointRequest) {
|
|
2918
2925
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2974,7 +2981,7 @@ class DataFlowClient {
|
|
|
2974
2981
|
* @param UpdateRunRequest
|
|
2975
2982
|
* @return UpdateRunResponse
|
|
2976
2983
|
* @throws OciError when an error occurs
|
|
2977
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2984
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
|
|
2978
2985
|
*/
|
|
2979
2986
|
updateRun(updateRunRequest) {
|
|
2980
2987
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3039,7 +3046,7 @@ class DataFlowClient {
|
|
|
3039
3046
|
* @param UpdateSqlEndpointRequest
|
|
3040
3047
|
* @return UpdateSqlEndpointResponse
|
|
3041
3048
|
* @throws OciError when an error occurs
|
|
3042
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3049
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/dataflow/UpdateSqlEndpoint.ts.html |here} to see how to use UpdateSqlEndpoint API.
|
|
3043
3050
|
*/
|
|
3044
3051
|
updateSqlEndpoint(updateSqlEndpointRequest) {
|
|
3045
3052
|
return __awaiter(this, void 0, void 0, function* () {
|