oci-databasemigration 2.74.0 → 2.76.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +41 -41
- package/lib/client.js +45 -41
- package/lib/client.js.map +1 -1
- package/lib/request/abort-job-request.d.ts +1 -1
- package/lib/request/add-migration-objects-request.d.ts +1 -1
- package/lib/request/change-agent-compartment-request.d.ts +1 -1
- package/lib/request/change-connection-compartment-request.d.ts +1 -1
- package/lib/request/change-migration-compartment-request.d.ts +1 -1
- package/lib/request/clone-migration-request.d.ts +1 -1
- package/lib/request/connection-diagnostics-request.d.ts +1 -1
- package/lib/request/create-connection-request.d.ts +1 -1
- package/lib/request/create-migration-request.d.ts +1 -1
- package/lib/request/delete-agent-request.d.ts +1 -1
- package/lib/request/delete-connection-request.d.ts +1 -1
- package/lib/request/delete-job-request.d.ts +1 -1
- package/lib/request/delete-migration-request.d.ts +1 -1
- package/lib/request/evaluate-migration-request.d.ts +1 -1
- package/lib/request/get-advisor-report-request.d.ts +1 -1
- package/lib/request/get-agent-request.d.ts +1 -1
- package/lib/request/get-connection-request.d.ts +1 -1
- package/lib/request/get-job-output-content-request.d.ts +1 -1
- package/lib/request/get-job-request.d.ts +1 -1
- package/lib/request/get-migration-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-agent-images-request.d.ts +1 -1
- package/lib/request/list-agents-request.d.ts +1 -1
- package/lib/request/list-connections-request.d.ts +1 -1
- package/lib/request/list-excluded-objects-request.d.ts +1 -1
- package/lib/request/list-job-outputs-request.d.ts +1 -1
- package/lib/request/list-jobs-request.d.ts +1 -1
- package/lib/request/list-migration-object-types-request.d.ts +1 -1
- package/lib/request/list-migration-objects-request.d.ts +1 -1
- package/lib/request/list-migrations-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/remove-migration-objects-request.d.ts +1 -1
- package/lib/request/resume-job-request.d.ts +1 -1
- package/lib/request/retrieve-supported-phases-request.d.ts +1 -1
- package/lib/request/start-migration-request.d.ts +1 -1
- package/lib/request/update-agent-request.d.ts +1 -1
- package/lib/request/update-connection-request.d.ts +1 -1
- package/lib/request/update-job-request.d.ts +1 -1
- package/lib/request/update-migration-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -80,6 +80,10 @@ class DatabaseMigrationClient {
|
|
|
80
80
|
? clientConfiguration.bodyDuplexMode
|
|
81
81
|
: undefined;
|
|
82
82
|
}
|
|
83
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("databasemigration")) {
|
|
84
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
85
|
+
throw errmsg.concat("databasemigration");
|
|
86
|
+
}
|
|
83
87
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
84
88
|
const specCircuitBreakerEnabled = true;
|
|
85
89
|
if (!this._circuitBreaker &&
|
|
@@ -184,7 +188,7 @@ class DatabaseMigrationClient {
|
|
|
184
188
|
* @param AbortJobRequest
|
|
185
189
|
* @return AbortJobResponse
|
|
186
190
|
* @throws OciError when an error occurs
|
|
187
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
191
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/AbortJob.ts.html |here} to see how to use AbortJob API.
|
|
188
192
|
*/
|
|
189
193
|
abortJob(abortJobRequest) {
|
|
190
194
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -250,7 +254,7 @@ class DatabaseMigrationClient {
|
|
|
250
254
|
* @param AddMigrationObjectsRequest
|
|
251
255
|
* @return AddMigrationObjectsResponse
|
|
252
256
|
* @throws OciError when an error occurs
|
|
253
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
257
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/AddMigrationObjects.ts.html |here} to see how to use AddMigrationObjects API.
|
|
254
258
|
*/
|
|
255
259
|
addMigrationObjects(addMigrationObjectsRequest) {
|
|
256
260
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -307,7 +311,7 @@ class DatabaseMigrationClient {
|
|
|
307
311
|
* @param ChangeAgentCompartmentRequest
|
|
308
312
|
* @return ChangeAgentCompartmentResponse
|
|
309
313
|
* @throws OciError when an error occurs
|
|
310
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
314
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
|
|
311
315
|
*/
|
|
312
316
|
changeAgentCompartment(changeAgentCompartmentRequest) {
|
|
313
317
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -365,7 +369,7 @@ class DatabaseMigrationClient {
|
|
|
365
369
|
* @param ChangeConnectionCompartmentRequest
|
|
366
370
|
* @return ChangeConnectionCompartmentResponse
|
|
367
371
|
* @throws OciError when an error occurs
|
|
368
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
372
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ChangeConnectionCompartment.ts.html |here} to see how to use ChangeConnectionCompartment API.
|
|
369
373
|
*/
|
|
370
374
|
changeConnectionCompartment(changeConnectionCompartmentRequest) {
|
|
371
375
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -423,7 +427,7 @@ class DatabaseMigrationClient {
|
|
|
423
427
|
* @param ChangeMigrationCompartmentRequest
|
|
424
428
|
* @return ChangeMigrationCompartmentResponse
|
|
425
429
|
* @throws OciError when an error occurs
|
|
426
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
430
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ChangeMigrationCompartment.ts.html |here} to see how to use ChangeMigrationCompartment API.
|
|
427
431
|
*/
|
|
428
432
|
changeMigrationCompartment(changeMigrationCompartmentRequest) {
|
|
429
433
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -481,7 +485,7 @@ class DatabaseMigrationClient {
|
|
|
481
485
|
* @param CloneMigrationRequest
|
|
482
486
|
* @return CloneMigrationResponse
|
|
483
487
|
* @throws OciError when an error occurs
|
|
484
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
488
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/CloneMigration.ts.html |here} to see how to use CloneMigration API.
|
|
485
489
|
*/
|
|
486
490
|
cloneMigration(cloneMigrationRequest) {
|
|
487
491
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -553,7 +557,7 @@ class DatabaseMigrationClient {
|
|
|
553
557
|
* @param ConnectionDiagnosticsRequest
|
|
554
558
|
* @return ConnectionDiagnosticsResponse
|
|
555
559
|
* @throws OciError when an error occurs
|
|
556
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
560
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ConnectionDiagnostics.ts.html |here} to see how to use ConnectionDiagnostics API.
|
|
557
561
|
*/
|
|
558
562
|
connectionDiagnostics(connectionDiagnosticsRequest) {
|
|
559
563
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -620,7 +624,7 @@ class DatabaseMigrationClient {
|
|
|
620
624
|
* @param CreateConnectionRequest
|
|
621
625
|
* @return CreateConnectionResponse
|
|
622
626
|
* @throws OciError when an error occurs
|
|
623
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
627
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/CreateConnection.ts.html |here} to see how to use CreateConnection API.
|
|
624
628
|
*/
|
|
625
629
|
createConnection(createConnectionRequest) {
|
|
626
630
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -691,7 +695,7 @@ class DatabaseMigrationClient {
|
|
|
691
695
|
* @param CreateMigrationRequest
|
|
692
696
|
* @return CreateMigrationResponse
|
|
693
697
|
* @throws OciError when an error occurs
|
|
694
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
698
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/CreateMigration.ts.html |here} to see how to use CreateMigration API.
|
|
695
699
|
*/
|
|
696
700
|
createMigration(createMigrationRequest) {
|
|
697
701
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -760,7 +764,7 @@ class DatabaseMigrationClient {
|
|
|
760
764
|
* @param DeleteAgentRequest
|
|
761
765
|
* @return DeleteAgentResponse
|
|
762
766
|
* @throws OciError when an error occurs
|
|
763
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
767
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
|
|
764
768
|
*/
|
|
765
769
|
deleteAgent(deleteAgentRequest) {
|
|
766
770
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -821,7 +825,7 @@ class DatabaseMigrationClient {
|
|
|
821
825
|
* @param DeleteConnectionRequest
|
|
822
826
|
* @return DeleteConnectionResponse
|
|
823
827
|
* @throws OciError when an error occurs
|
|
824
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
828
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/DeleteConnection.ts.html |here} to see how to use DeleteConnection API.
|
|
825
829
|
*/
|
|
826
830
|
deleteConnection(deleteConnectionRequest) {
|
|
827
831
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -882,7 +886,7 @@ class DatabaseMigrationClient {
|
|
|
882
886
|
* @param DeleteJobRequest
|
|
883
887
|
* @return DeleteJobResponse
|
|
884
888
|
* @throws OciError when an error occurs
|
|
885
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
889
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/DeleteJob.ts.html |here} to see how to use DeleteJob API.
|
|
886
890
|
*/
|
|
887
891
|
deleteJob(deleteJobRequest) {
|
|
888
892
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -938,7 +942,7 @@ class DatabaseMigrationClient {
|
|
|
938
942
|
* @param DeleteMigrationRequest
|
|
939
943
|
* @return DeleteMigrationResponse
|
|
940
944
|
* @throws OciError when an error occurs
|
|
941
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
945
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/DeleteMigration.ts.html |here} to see how to use DeleteMigration API.
|
|
942
946
|
*/
|
|
943
947
|
deleteMigration(deleteMigrationRequest) {
|
|
944
948
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -999,7 +1003,7 @@ class DatabaseMigrationClient {
|
|
|
999
1003
|
* @param EvaluateMigrationRequest
|
|
1000
1004
|
* @return EvaluateMigrationResponse
|
|
1001
1005
|
* @throws OciError when an error occurs
|
|
1002
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1006
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/EvaluateMigration.ts.html |here} to see how to use EvaluateMigration API.
|
|
1003
1007
|
*/
|
|
1004
1008
|
evaluateMigration(evaluateMigrationRequest) {
|
|
1005
1009
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1070,7 +1074,7 @@ class DatabaseMigrationClient {
|
|
|
1070
1074
|
* @param GetAdvisorReportRequest
|
|
1071
1075
|
* @return GetAdvisorReportResponse
|
|
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.
|
|
1077
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/GetAdvisorReport.ts.html |here} to see how to use GetAdvisorReport API.
|
|
1074
1078
|
*/
|
|
1075
1079
|
getAdvisorReport(getAdvisorReportRequest) {
|
|
1076
1080
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1134,7 +1138,7 @@ class DatabaseMigrationClient {
|
|
|
1134
1138
|
* @param GetAgentRequest
|
|
1135
1139
|
* @return GetAgentResponse
|
|
1136
1140
|
* @throws OciError when an error occurs
|
|
1137
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1141
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/GetAgent.ts.html |here} to see how to use GetAgent API.
|
|
1138
1142
|
*/
|
|
1139
1143
|
getAgent(getAgentRequest) {
|
|
1140
1144
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1198,7 +1202,7 @@ class DatabaseMigrationClient {
|
|
|
1198
1202
|
* @param GetConnectionRequest
|
|
1199
1203
|
* @return GetConnectionResponse
|
|
1200
1204
|
* @throws OciError when an error occurs
|
|
1201
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1205
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/GetConnection.ts.html |here} to see how to use GetConnection API.
|
|
1202
1206
|
*/
|
|
1203
1207
|
getConnection(getConnectionRequest) {
|
|
1204
1208
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1262,7 +1266,7 @@ class DatabaseMigrationClient {
|
|
|
1262
1266
|
* @param GetJobRequest
|
|
1263
1267
|
* @return GetJobResponse
|
|
1264
1268
|
* @throws OciError when an error occurs
|
|
1265
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1269
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/GetJob.ts.html |here} to see how to use GetJob API.
|
|
1266
1270
|
*/
|
|
1267
1271
|
getJob(getJobRequest) {
|
|
1268
1272
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1326,7 +1330,7 @@ class DatabaseMigrationClient {
|
|
|
1326
1330
|
* @param GetJobOutputContentRequest
|
|
1327
1331
|
* @return GetJobOutputContentResponse
|
|
1328
1332
|
* @throws OciError when an error occurs
|
|
1329
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1333
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/GetJobOutputContent.ts.html |here} to see how to use GetJobOutputContent API.
|
|
1330
1334
|
*/
|
|
1331
1335
|
getJobOutputContent(getJobOutputContentRequest) {
|
|
1332
1336
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1384,7 +1388,7 @@ class DatabaseMigrationClient {
|
|
|
1384
1388
|
* @param GetMigrationRequest
|
|
1385
1389
|
* @return GetMigrationResponse
|
|
1386
1390
|
* @throws OciError when an error occurs
|
|
1387
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1391
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/GetMigration.ts.html |here} to see how to use GetMigration API.
|
|
1388
1392
|
*/
|
|
1389
1393
|
getMigration(getMigrationRequest) {
|
|
1390
1394
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1449,7 +1453,7 @@ class DatabaseMigrationClient {
|
|
|
1449
1453
|
* @param GetWorkRequestRequest
|
|
1450
1454
|
* @return GetWorkRequestResponse
|
|
1451
1455
|
* @throws OciError when an error occurs
|
|
1452
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1456
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1453
1457
|
*/
|
|
1454
1458
|
getWorkRequest(getWorkRequestRequest) {
|
|
1455
1459
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1508,7 +1512,7 @@ class DatabaseMigrationClient {
|
|
|
1508
1512
|
* @param ListAgentImagesRequest
|
|
1509
1513
|
* @return ListAgentImagesResponse
|
|
1510
1514
|
* @throws OciError when an error occurs
|
|
1511
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1515
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ListAgentImages.ts.html |here} to see how to use ListAgentImages API.
|
|
1512
1516
|
*/
|
|
1513
1517
|
listAgentImages(listAgentImagesRequest) {
|
|
1514
1518
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1574,7 +1578,7 @@ class DatabaseMigrationClient {
|
|
|
1574
1578
|
* @param ListAgentsRequest
|
|
1575
1579
|
* @return ListAgentsResponse
|
|
1576
1580
|
* @throws OciError when an error occurs
|
|
1577
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1581
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ListAgents.ts.html |here} to see how to use ListAgents API.
|
|
1578
1582
|
*/
|
|
1579
1583
|
listAgents(listAgentsRequest) {
|
|
1580
1584
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1644,7 +1648,7 @@ class DatabaseMigrationClient {
|
|
|
1644
1648
|
* @param ListConnectionsRequest
|
|
1645
1649
|
* @return ListConnectionsResponse
|
|
1646
1650
|
* @throws OciError when an error occurs
|
|
1647
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1651
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ListConnections.ts.html |here} to see how to use ListConnections API.
|
|
1648
1652
|
*/
|
|
1649
1653
|
listConnections(listConnectionsRequest) {
|
|
1650
1654
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1714,7 +1718,7 @@ class DatabaseMigrationClient {
|
|
|
1714
1718
|
* @param ListExcludedObjectsRequest
|
|
1715
1719
|
* @return ListExcludedObjectsResponse
|
|
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.
|
|
1721
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ListExcludedObjects.ts.html |here} to see how to use ListExcludedObjects API.
|
|
1718
1722
|
*/
|
|
1719
1723
|
listExcludedObjects(listExcludedObjectsRequest) {
|
|
1720
1724
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1790,7 +1794,7 @@ class DatabaseMigrationClient {
|
|
|
1790
1794
|
* @param ListJobOutputsRequest
|
|
1791
1795
|
* @return ListJobOutputsResponse
|
|
1792
1796
|
* @throws OciError when an error occurs
|
|
1793
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1797
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ListJobOutputs.ts.html |here} to see how to use ListJobOutputs API.
|
|
1794
1798
|
*/
|
|
1795
1799
|
listJobOutputs(listJobOutputsRequest) {
|
|
1796
1800
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1858,7 +1862,7 @@ class DatabaseMigrationClient {
|
|
|
1858
1862
|
* @param ListJobsRequest
|
|
1859
1863
|
* @return ListJobsResponse
|
|
1860
1864
|
* @throws OciError when an error occurs
|
|
1861
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1865
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ListJobs.ts.html |here} to see how to use ListJobs API.
|
|
1862
1866
|
*/
|
|
1863
1867
|
listJobs(listJobsRequest) {
|
|
1864
1868
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1928,7 +1932,7 @@ class DatabaseMigrationClient {
|
|
|
1928
1932
|
* @param ListMigrationObjectTypesRequest
|
|
1929
1933
|
* @return ListMigrationObjectTypesResponse
|
|
1930
1934
|
* @throws OciError when an error occurs
|
|
1931
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1935
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ListMigrationObjectTypes.ts.html |here} to see how to use ListMigrationObjectTypes API.
|
|
1932
1936
|
*/
|
|
1933
1937
|
listMigrationObjectTypes(listMigrationObjectTypesRequest) {
|
|
1934
1938
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1995,7 +1999,7 @@ class DatabaseMigrationClient {
|
|
|
1995
1999
|
* @param ListMigrationObjectsRequest
|
|
1996
2000
|
* @return ListMigrationObjectsResponse
|
|
1997
2001
|
* @throws OciError when an error occurs
|
|
1998
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2002
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ListMigrationObjects.ts.html |here} to see how to use ListMigrationObjects API.
|
|
1999
2003
|
*/
|
|
2000
2004
|
listMigrationObjects(listMigrationObjectsRequest) {
|
|
2001
2005
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2063,7 +2067,7 @@ class DatabaseMigrationClient {
|
|
|
2063
2067
|
* @param ListMigrationsRequest
|
|
2064
2068
|
* @return ListMigrationsResponse
|
|
2065
2069
|
* @throws OciError when an error occurs
|
|
2066
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2070
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ListMigrations.ts.html |here} to see how to use ListMigrations API.
|
|
2067
2071
|
*/
|
|
2068
2072
|
listMigrations(listMigrationsRequest) {
|
|
2069
2073
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2134,7 +2138,7 @@ class DatabaseMigrationClient {
|
|
|
2134
2138
|
* @param ListWorkRequestErrorsRequest
|
|
2135
2139
|
* @return ListWorkRequestErrorsResponse
|
|
2136
2140
|
* @throws OciError when an error occurs
|
|
2137
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2141
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2138
2142
|
*/
|
|
2139
2143
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2140
2144
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2203,7 +2207,7 @@ class DatabaseMigrationClient {
|
|
|
2203
2207
|
* @param ListWorkRequestLogsRequest
|
|
2204
2208
|
* @return ListWorkRequestLogsResponse
|
|
2205
2209
|
* @throws OciError when an error occurs
|
|
2206
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2210
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2207
2211
|
*/
|
|
2208
2212
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2209
2213
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2272,7 +2276,7 @@ class DatabaseMigrationClient {
|
|
|
2272
2276
|
* @param ListWorkRequestsRequest
|
|
2273
2277
|
* @return ListWorkRequestsResponse
|
|
2274
2278
|
* @throws OciError when an error occurs
|
|
2275
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2279
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2276
2280
|
*/
|
|
2277
2281
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2278
2282
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2342,7 +2346,7 @@ class DatabaseMigrationClient {
|
|
|
2342
2346
|
* @param RemoveMigrationObjectsRequest
|
|
2343
2347
|
* @return RemoveMigrationObjectsResponse
|
|
2344
2348
|
* @throws OciError when an error occurs
|
|
2345
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2349
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/RemoveMigrationObjects.ts.html |here} to see how to use RemoveMigrationObjects API.
|
|
2346
2350
|
*/
|
|
2347
2351
|
removeMigrationObjects(removeMigrationObjectsRequest) {
|
|
2348
2352
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2399,7 +2403,7 @@ class DatabaseMigrationClient {
|
|
|
2399
2403
|
* @param ResumeJobRequest
|
|
2400
2404
|
* @return ResumeJobResponse
|
|
2401
2405
|
* @throws OciError when an error occurs
|
|
2402
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2406
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/ResumeJob.ts.html |here} to see how to use ResumeJob API.
|
|
2403
2407
|
*/
|
|
2404
2408
|
resumeJob(resumeJobRequest) {
|
|
2405
2409
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2466,7 +2470,7 @@ class DatabaseMigrationClient {
|
|
|
2466
2470
|
* @param RetrieveSupportedPhasesRequest
|
|
2467
2471
|
* @return RetrieveSupportedPhasesResponse
|
|
2468
2472
|
* @throws OciError when an error occurs
|
|
2469
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2473
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/RetrieveSupportedPhases.ts.html |here} to see how to use RetrieveSupportedPhases API.
|
|
2470
2474
|
*/
|
|
2471
2475
|
retrieveSupportedPhases(retrieveSupportedPhasesRequest) {
|
|
2472
2476
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2525,7 +2529,7 @@ class DatabaseMigrationClient {
|
|
|
2525
2529
|
* @param StartMigrationRequest
|
|
2526
2530
|
* @return StartMigrationResponse
|
|
2527
2531
|
* @throws OciError when an error occurs
|
|
2528
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2532
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/StartMigration.ts.html |here} to see how to use StartMigration API.
|
|
2529
2533
|
*/
|
|
2530
2534
|
startMigration(startMigrationRequest) {
|
|
2531
2535
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2597,7 +2601,7 @@ class DatabaseMigrationClient {
|
|
|
2597
2601
|
* @param UpdateAgentRequest
|
|
2598
2602
|
* @return UpdateAgentResponse
|
|
2599
2603
|
* @throws OciError when an error occurs
|
|
2600
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2604
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
|
|
2601
2605
|
*/
|
|
2602
2606
|
updateAgent(updateAgentRequest) {
|
|
2603
2607
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2664,7 +2668,7 @@ class DatabaseMigrationClient {
|
|
|
2664
2668
|
* @param UpdateConnectionRequest
|
|
2665
2669
|
* @return UpdateConnectionResponse
|
|
2666
2670
|
* @throws OciError when an error occurs
|
|
2667
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2671
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/UpdateConnection.ts.html |here} to see how to use UpdateConnection API.
|
|
2668
2672
|
*/
|
|
2669
2673
|
updateConnection(updateConnectionRequest) {
|
|
2670
2674
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2726,7 +2730,7 @@ class DatabaseMigrationClient {
|
|
|
2726
2730
|
* @param UpdateJobRequest
|
|
2727
2731
|
* @return UpdateJobResponse
|
|
2728
2732
|
* @throws OciError when an error occurs
|
|
2729
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2733
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/UpdateJob.ts.html |here} to see how to use UpdateJob API.
|
|
2730
2734
|
*/
|
|
2731
2735
|
updateJob(updateJobRequest) {
|
|
2732
2736
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2792,7 +2796,7 @@ class DatabaseMigrationClient {
|
|
|
2792
2796
|
* @param UpdateMigrationRequest
|
|
2793
2797
|
* @return UpdateMigrationResponse
|
|
2794
2798
|
* @throws OciError when an error occurs
|
|
2795
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2799
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/databasemigration/UpdateMigration.ts.html |here} to see how to use UpdateMigration API.
|
|
2796
2800
|
*/
|
|
2797
2801
|
updateMigration(updateMigrationRequest) {
|
|
2798
2802
|
return __awaiter(this, void 0, void 0, function* () {
|