oci-databasemigration 2.67.0 → 2.68.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +42 -41
- package/lib/client.js +46 -42
- package/lib/client.js.map +1 -1
- package/lib/model/database-object.d.ts +5 -0
- package/lib/model/database-object.js.map +1 -1
- package/lib/model/migration-object-summary.d.ts +5 -0
- package/lib/model/migration-object-summary.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
|
@@ -61,6 +61,7 @@ class DatabaseMigrationClient {
|
|
|
61
61
|
this["_defaultHeaders"] = {};
|
|
62
62
|
this._circuitBreaker = null;
|
|
63
63
|
this._httpOptions = undefined;
|
|
64
|
+
this._bodyDuplexMode = undefined;
|
|
64
65
|
this.targetService = "DatabaseMigration";
|
|
65
66
|
this._regionId = "";
|
|
66
67
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -75,6 +76,9 @@ class DatabaseMigrationClient {
|
|
|
75
76
|
this._httpOptions = clientConfiguration.httpOptions
|
|
76
77
|
? clientConfiguration.httpOptions
|
|
77
78
|
: undefined;
|
|
79
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
80
|
+
? clientConfiguration.bodyDuplexMode
|
|
81
|
+
: undefined;
|
|
78
82
|
}
|
|
79
83
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
80
84
|
const specCircuitBreakerEnabled = true;
|
|
@@ -85,7 +89,7 @@ class DatabaseMigrationClient {
|
|
|
85
89
|
}
|
|
86
90
|
this._httpClient =
|
|
87
91
|
params.httpClient ||
|
|
88
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
92
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
89
93
|
if (params.authenticationDetailsProvider &&
|
|
90
94
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
91
95
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -180,7 +184,7 @@ class DatabaseMigrationClient {
|
|
|
180
184
|
* @param AbortJobRequest
|
|
181
185
|
* @return AbortJobResponse
|
|
182
186
|
* @throws OciError when an error occurs
|
|
183
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
187
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/AbortJob.ts.html |here} to see how to use AbortJob API.
|
|
184
188
|
*/
|
|
185
189
|
abortJob(abortJobRequest) {
|
|
186
190
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -246,7 +250,7 @@ class DatabaseMigrationClient {
|
|
|
246
250
|
* @param AddMigrationObjectsRequest
|
|
247
251
|
* @return AddMigrationObjectsResponse
|
|
248
252
|
* @throws OciError when an error occurs
|
|
249
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
253
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/AddMigrationObjects.ts.html |here} to see how to use AddMigrationObjects API.
|
|
250
254
|
*/
|
|
251
255
|
addMigrationObjects(addMigrationObjectsRequest) {
|
|
252
256
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -303,7 +307,7 @@ class DatabaseMigrationClient {
|
|
|
303
307
|
* @param ChangeAgentCompartmentRequest
|
|
304
308
|
* @return ChangeAgentCompartmentResponse
|
|
305
309
|
* @throws OciError when an error occurs
|
|
306
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
310
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
|
|
307
311
|
*/
|
|
308
312
|
changeAgentCompartment(changeAgentCompartmentRequest) {
|
|
309
313
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -361,7 +365,7 @@ class DatabaseMigrationClient {
|
|
|
361
365
|
* @param ChangeConnectionCompartmentRequest
|
|
362
366
|
* @return ChangeConnectionCompartmentResponse
|
|
363
367
|
* @throws OciError when an error occurs
|
|
364
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
368
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ChangeConnectionCompartment.ts.html |here} to see how to use ChangeConnectionCompartment API.
|
|
365
369
|
*/
|
|
366
370
|
changeConnectionCompartment(changeConnectionCompartmentRequest) {
|
|
367
371
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -419,7 +423,7 @@ class DatabaseMigrationClient {
|
|
|
419
423
|
* @param ChangeMigrationCompartmentRequest
|
|
420
424
|
* @return ChangeMigrationCompartmentResponse
|
|
421
425
|
* @throws OciError when an error occurs
|
|
422
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
426
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ChangeMigrationCompartment.ts.html |here} to see how to use ChangeMigrationCompartment API.
|
|
423
427
|
*/
|
|
424
428
|
changeMigrationCompartment(changeMigrationCompartmentRequest) {
|
|
425
429
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -477,7 +481,7 @@ class DatabaseMigrationClient {
|
|
|
477
481
|
* @param CloneMigrationRequest
|
|
478
482
|
* @return CloneMigrationResponse
|
|
479
483
|
* @throws OciError when an error occurs
|
|
480
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
484
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/CloneMigration.ts.html |here} to see how to use CloneMigration API.
|
|
481
485
|
*/
|
|
482
486
|
cloneMigration(cloneMigrationRequest) {
|
|
483
487
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -549,7 +553,7 @@ class DatabaseMigrationClient {
|
|
|
549
553
|
* @param ConnectionDiagnosticsRequest
|
|
550
554
|
* @return ConnectionDiagnosticsResponse
|
|
551
555
|
* @throws OciError when an error occurs
|
|
552
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
556
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ConnectionDiagnostics.ts.html |here} to see how to use ConnectionDiagnostics API.
|
|
553
557
|
*/
|
|
554
558
|
connectionDiagnostics(connectionDiagnosticsRequest) {
|
|
555
559
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -616,7 +620,7 @@ class DatabaseMigrationClient {
|
|
|
616
620
|
* @param CreateConnectionRequest
|
|
617
621
|
* @return CreateConnectionResponse
|
|
618
622
|
* @throws OciError when an error occurs
|
|
619
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
623
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/CreateConnection.ts.html |here} to see how to use CreateConnection API.
|
|
620
624
|
*/
|
|
621
625
|
createConnection(createConnectionRequest) {
|
|
622
626
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -687,7 +691,7 @@ class DatabaseMigrationClient {
|
|
|
687
691
|
* @param CreateMigrationRequest
|
|
688
692
|
* @return CreateMigrationResponse
|
|
689
693
|
* @throws OciError when an error occurs
|
|
690
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
694
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/CreateMigration.ts.html |here} to see how to use CreateMigration API.
|
|
691
695
|
*/
|
|
692
696
|
createMigration(createMigrationRequest) {
|
|
693
697
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -756,7 +760,7 @@ class DatabaseMigrationClient {
|
|
|
756
760
|
* @param DeleteAgentRequest
|
|
757
761
|
* @return DeleteAgentResponse
|
|
758
762
|
* @throws OciError when an error occurs
|
|
759
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
763
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
|
|
760
764
|
*/
|
|
761
765
|
deleteAgent(deleteAgentRequest) {
|
|
762
766
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -817,7 +821,7 @@ class DatabaseMigrationClient {
|
|
|
817
821
|
* @param DeleteConnectionRequest
|
|
818
822
|
* @return DeleteConnectionResponse
|
|
819
823
|
* @throws OciError when an error occurs
|
|
820
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
824
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/DeleteConnection.ts.html |here} to see how to use DeleteConnection API.
|
|
821
825
|
*/
|
|
822
826
|
deleteConnection(deleteConnectionRequest) {
|
|
823
827
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -878,7 +882,7 @@ class DatabaseMigrationClient {
|
|
|
878
882
|
* @param DeleteJobRequest
|
|
879
883
|
* @return DeleteJobResponse
|
|
880
884
|
* @throws OciError when an error occurs
|
|
881
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
885
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/DeleteJob.ts.html |here} to see how to use DeleteJob API.
|
|
882
886
|
*/
|
|
883
887
|
deleteJob(deleteJobRequest) {
|
|
884
888
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -934,7 +938,7 @@ class DatabaseMigrationClient {
|
|
|
934
938
|
* @param DeleteMigrationRequest
|
|
935
939
|
* @return DeleteMigrationResponse
|
|
936
940
|
* @throws OciError when an error occurs
|
|
937
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
941
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/DeleteMigration.ts.html |here} to see how to use DeleteMigration API.
|
|
938
942
|
*/
|
|
939
943
|
deleteMigration(deleteMigrationRequest) {
|
|
940
944
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -995,7 +999,7 @@ class DatabaseMigrationClient {
|
|
|
995
999
|
* @param EvaluateMigrationRequest
|
|
996
1000
|
* @return EvaluateMigrationResponse
|
|
997
1001
|
* @throws OciError when an error occurs
|
|
998
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1002
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/EvaluateMigration.ts.html |here} to see how to use EvaluateMigration API.
|
|
999
1003
|
*/
|
|
1000
1004
|
evaluateMigration(evaluateMigrationRequest) {
|
|
1001
1005
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1066,7 +1070,7 @@ class DatabaseMigrationClient {
|
|
|
1066
1070
|
* @param GetAdvisorReportRequest
|
|
1067
1071
|
* @return GetAdvisorReportResponse
|
|
1068
1072
|
* @throws OciError when an error occurs
|
|
1069
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1073
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/GetAdvisorReport.ts.html |here} to see how to use GetAdvisorReport API.
|
|
1070
1074
|
*/
|
|
1071
1075
|
getAdvisorReport(getAdvisorReportRequest) {
|
|
1072
1076
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1130,7 +1134,7 @@ class DatabaseMigrationClient {
|
|
|
1130
1134
|
* @param GetAgentRequest
|
|
1131
1135
|
* @return GetAgentResponse
|
|
1132
1136
|
* @throws OciError when an error occurs
|
|
1133
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1137
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/GetAgent.ts.html |here} to see how to use GetAgent API.
|
|
1134
1138
|
*/
|
|
1135
1139
|
getAgent(getAgentRequest) {
|
|
1136
1140
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1194,7 +1198,7 @@ class DatabaseMigrationClient {
|
|
|
1194
1198
|
* @param GetConnectionRequest
|
|
1195
1199
|
* @return GetConnectionResponse
|
|
1196
1200
|
* @throws OciError when an error occurs
|
|
1197
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1201
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/GetConnection.ts.html |here} to see how to use GetConnection API.
|
|
1198
1202
|
*/
|
|
1199
1203
|
getConnection(getConnectionRequest) {
|
|
1200
1204
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1258,7 +1262,7 @@ class DatabaseMigrationClient {
|
|
|
1258
1262
|
* @param GetJobRequest
|
|
1259
1263
|
* @return GetJobResponse
|
|
1260
1264
|
* @throws OciError when an error occurs
|
|
1261
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1265
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/GetJob.ts.html |here} to see how to use GetJob API.
|
|
1262
1266
|
*/
|
|
1263
1267
|
getJob(getJobRequest) {
|
|
1264
1268
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1322,7 +1326,7 @@ class DatabaseMigrationClient {
|
|
|
1322
1326
|
* @param GetJobOutputContentRequest
|
|
1323
1327
|
* @return GetJobOutputContentResponse
|
|
1324
1328
|
* @throws OciError when an error occurs
|
|
1325
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1329
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/GetJobOutputContent.ts.html |here} to see how to use GetJobOutputContent API.
|
|
1326
1330
|
*/
|
|
1327
1331
|
getJobOutputContent(getJobOutputContentRequest) {
|
|
1328
1332
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1380,7 +1384,7 @@ class DatabaseMigrationClient {
|
|
|
1380
1384
|
* @param GetMigrationRequest
|
|
1381
1385
|
* @return GetMigrationResponse
|
|
1382
1386
|
* @throws OciError when an error occurs
|
|
1383
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1387
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/GetMigration.ts.html |here} to see how to use GetMigration API.
|
|
1384
1388
|
*/
|
|
1385
1389
|
getMigration(getMigrationRequest) {
|
|
1386
1390
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1445,7 +1449,7 @@ class DatabaseMigrationClient {
|
|
|
1445
1449
|
* @param GetWorkRequestRequest
|
|
1446
1450
|
* @return GetWorkRequestResponse
|
|
1447
1451
|
* @throws OciError when an error occurs
|
|
1448
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1452
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1449
1453
|
*/
|
|
1450
1454
|
getWorkRequest(getWorkRequestRequest) {
|
|
1451
1455
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1504,7 +1508,7 @@ class DatabaseMigrationClient {
|
|
|
1504
1508
|
* @param ListAgentImagesRequest
|
|
1505
1509
|
* @return ListAgentImagesResponse
|
|
1506
1510
|
* @throws OciError when an error occurs
|
|
1507
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1511
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ListAgentImages.ts.html |here} to see how to use ListAgentImages API.
|
|
1508
1512
|
*/
|
|
1509
1513
|
listAgentImages(listAgentImagesRequest) {
|
|
1510
1514
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1570,7 +1574,7 @@ class DatabaseMigrationClient {
|
|
|
1570
1574
|
* @param ListAgentsRequest
|
|
1571
1575
|
* @return ListAgentsResponse
|
|
1572
1576
|
* @throws OciError when an error occurs
|
|
1573
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1577
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ListAgents.ts.html |here} to see how to use ListAgents API.
|
|
1574
1578
|
*/
|
|
1575
1579
|
listAgents(listAgentsRequest) {
|
|
1576
1580
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1640,7 +1644,7 @@ class DatabaseMigrationClient {
|
|
|
1640
1644
|
* @param ListConnectionsRequest
|
|
1641
1645
|
* @return ListConnectionsResponse
|
|
1642
1646
|
* @throws OciError when an error occurs
|
|
1643
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1647
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ListConnections.ts.html |here} to see how to use ListConnections API.
|
|
1644
1648
|
*/
|
|
1645
1649
|
listConnections(listConnectionsRequest) {
|
|
1646
1650
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1710,7 +1714,7 @@ class DatabaseMigrationClient {
|
|
|
1710
1714
|
* @param ListExcludedObjectsRequest
|
|
1711
1715
|
* @return ListExcludedObjectsResponse
|
|
1712
1716
|
* @throws OciError when an error occurs
|
|
1713
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1717
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ListExcludedObjects.ts.html |here} to see how to use ListExcludedObjects API.
|
|
1714
1718
|
*/
|
|
1715
1719
|
listExcludedObjects(listExcludedObjectsRequest) {
|
|
1716
1720
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1786,7 +1790,7 @@ class DatabaseMigrationClient {
|
|
|
1786
1790
|
* @param ListJobOutputsRequest
|
|
1787
1791
|
* @return ListJobOutputsResponse
|
|
1788
1792
|
* @throws OciError when an error occurs
|
|
1789
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1793
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ListJobOutputs.ts.html |here} to see how to use ListJobOutputs API.
|
|
1790
1794
|
*/
|
|
1791
1795
|
listJobOutputs(listJobOutputsRequest) {
|
|
1792
1796
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1854,7 +1858,7 @@ class DatabaseMigrationClient {
|
|
|
1854
1858
|
* @param ListJobsRequest
|
|
1855
1859
|
* @return ListJobsResponse
|
|
1856
1860
|
* @throws OciError when an error occurs
|
|
1857
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1861
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ListJobs.ts.html |here} to see how to use ListJobs API.
|
|
1858
1862
|
*/
|
|
1859
1863
|
listJobs(listJobsRequest) {
|
|
1860
1864
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1924,7 +1928,7 @@ class DatabaseMigrationClient {
|
|
|
1924
1928
|
* @param ListMigrationObjectTypesRequest
|
|
1925
1929
|
* @return ListMigrationObjectTypesResponse
|
|
1926
1930
|
* @throws OciError when an error occurs
|
|
1927
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1931
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ListMigrationObjectTypes.ts.html |here} to see how to use ListMigrationObjectTypes API.
|
|
1928
1932
|
*/
|
|
1929
1933
|
listMigrationObjectTypes(listMigrationObjectTypesRequest) {
|
|
1930
1934
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1991,7 +1995,7 @@ class DatabaseMigrationClient {
|
|
|
1991
1995
|
* @param ListMigrationObjectsRequest
|
|
1992
1996
|
* @return ListMigrationObjectsResponse
|
|
1993
1997
|
* @throws OciError when an error occurs
|
|
1994
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1998
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ListMigrationObjects.ts.html |here} to see how to use ListMigrationObjects API.
|
|
1995
1999
|
*/
|
|
1996
2000
|
listMigrationObjects(listMigrationObjectsRequest) {
|
|
1997
2001
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2059,7 +2063,7 @@ class DatabaseMigrationClient {
|
|
|
2059
2063
|
* @param ListMigrationsRequest
|
|
2060
2064
|
* @return ListMigrationsResponse
|
|
2061
2065
|
* @throws OciError when an error occurs
|
|
2062
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2066
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ListMigrations.ts.html |here} to see how to use ListMigrations API.
|
|
2063
2067
|
*/
|
|
2064
2068
|
listMigrations(listMigrationsRequest) {
|
|
2065
2069
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2130,7 +2134,7 @@ class DatabaseMigrationClient {
|
|
|
2130
2134
|
* @param ListWorkRequestErrorsRequest
|
|
2131
2135
|
* @return ListWorkRequestErrorsResponse
|
|
2132
2136
|
* @throws OciError when an error occurs
|
|
2133
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2137
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2134
2138
|
*/
|
|
2135
2139
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2136
2140
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2199,7 +2203,7 @@ class DatabaseMigrationClient {
|
|
|
2199
2203
|
* @param ListWorkRequestLogsRequest
|
|
2200
2204
|
* @return ListWorkRequestLogsResponse
|
|
2201
2205
|
* @throws OciError when an error occurs
|
|
2202
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2206
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2203
2207
|
*/
|
|
2204
2208
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2205
2209
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2268,7 +2272,7 @@ class DatabaseMigrationClient {
|
|
|
2268
2272
|
* @param ListWorkRequestsRequest
|
|
2269
2273
|
* @return ListWorkRequestsResponse
|
|
2270
2274
|
* @throws OciError when an error occurs
|
|
2271
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2275
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2272
2276
|
*/
|
|
2273
2277
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2274
2278
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2338,7 +2342,7 @@ class DatabaseMigrationClient {
|
|
|
2338
2342
|
* @param RemoveMigrationObjectsRequest
|
|
2339
2343
|
* @return RemoveMigrationObjectsResponse
|
|
2340
2344
|
* @throws OciError when an error occurs
|
|
2341
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2345
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/RemoveMigrationObjects.ts.html |here} to see how to use RemoveMigrationObjects API.
|
|
2342
2346
|
*/
|
|
2343
2347
|
removeMigrationObjects(removeMigrationObjectsRequest) {
|
|
2344
2348
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2395,7 +2399,7 @@ class DatabaseMigrationClient {
|
|
|
2395
2399
|
* @param ResumeJobRequest
|
|
2396
2400
|
* @return ResumeJobResponse
|
|
2397
2401
|
* @throws OciError when an error occurs
|
|
2398
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2402
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/ResumeJob.ts.html |here} to see how to use ResumeJob API.
|
|
2399
2403
|
*/
|
|
2400
2404
|
resumeJob(resumeJobRequest) {
|
|
2401
2405
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2462,7 +2466,7 @@ class DatabaseMigrationClient {
|
|
|
2462
2466
|
* @param RetrieveSupportedPhasesRequest
|
|
2463
2467
|
* @return RetrieveSupportedPhasesResponse
|
|
2464
2468
|
* @throws OciError when an error occurs
|
|
2465
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2469
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/RetrieveSupportedPhases.ts.html |here} to see how to use RetrieveSupportedPhases API.
|
|
2466
2470
|
*/
|
|
2467
2471
|
retrieveSupportedPhases(retrieveSupportedPhasesRequest) {
|
|
2468
2472
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2521,7 +2525,7 @@ class DatabaseMigrationClient {
|
|
|
2521
2525
|
* @param StartMigrationRequest
|
|
2522
2526
|
* @return StartMigrationResponse
|
|
2523
2527
|
* @throws OciError when an error occurs
|
|
2524
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2528
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/StartMigration.ts.html |here} to see how to use StartMigration API.
|
|
2525
2529
|
*/
|
|
2526
2530
|
startMigration(startMigrationRequest) {
|
|
2527
2531
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2593,7 +2597,7 @@ class DatabaseMigrationClient {
|
|
|
2593
2597
|
* @param UpdateAgentRequest
|
|
2594
2598
|
* @return UpdateAgentResponse
|
|
2595
2599
|
* @throws OciError when an error occurs
|
|
2596
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2600
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
|
|
2597
2601
|
*/
|
|
2598
2602
|
updateAgent(updateAgentRequest) {
|
|
2599
2603
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2660,7 +2664,7 @@ class DatabaseMigrationClient {
|
|
|
2660
2664
|
* @param UpdateConnectionRequest
|
|
2661
2665
|
* @return UpdateConnectionResponse
|
|
2662
2666
|
* @throws OciError when an error occurs
|
|
2663
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2667
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/UpdateConnection.ts.html |here} to see how to use UpdateConnection API.
|
|
2664
2668
|
*/
|
|
2665
2669
|
updateConnection(updateConnectionRequest) {
|
|
2666
2670
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2722,7 +2726,7 @@ class DatabaseMigrationClient {
|
|
|
2722
2726
|
* @param UpdateJobRequest
|
|
2723
2727
|
* @return UpdateJobResponse
|
|
2724
2728
|
* @throws OciError when an error occurs
|
|
2725
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2729
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/UpdateJob.ts.html |here} to see how to use UpdateJob API.
|
|
2726
2730
|
*/
|
|
2727
2731
|
updateJob(updateJobRequest) {
|
|
2728
2732
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2788,7 +2792,7 @@ class DatabaseMigrationClient {
|
|
|
2788
2792
|
* @param UpdateMigrationRequest
|
|
2789
2793
|
* @return UpdateMigrationResponse
|
|
2790
2794
|
* @throws OciError when an error occurs
|
|
2791
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2795
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/databasemigration/UpdateMigration.ts.html |here} to see how to use UpdateMigration API.
|
|
2792
2796
|
*/
|
|
2793
2797
|
updateMigration(updateMigrationRequest) {
|
|
2794
2798
|
return __awaiter(this, void 0, void 0, function* () {
|