oci-databasemigration 2.89.0 → 2.89.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 +44 -35
- package/lib/client.js +103 -35
- package/lib/client.js.map +1 -1
- package/lib/model/advanced-parameter-data-types.d.ts +31 -0
- package/lib/model/advanced-parameter-data-types.js +42 -0
- package/lib/model/advanced-parameter-data-types.js.map +1 -0
- package/lib/model/create-oracle-migration-details.d.ts +4 -0
- package/lib/model/create-oracle-migration-details.js +10 -0
- package/lib/model/create-oracle-migration-details.js.map +1 -1
- package/lib/model/index.d.ts +10 -0
- package/lib/model/index.js +15 -4
- package/lib/model/index.js.map +1 -1
- package/lib/model/migration-parameter-base.d.ts +30 -0
- package/lib/model/migration-parameter-base.js +29 -0
- package/lib/model/migration-parameter-base.js.map +1 -0
- package/lib/model/migration-parameter-details.d.ts +38 -0
- package/lib/model/migration-parameter-details.js +29 -0
- package/lib/model/migration-parameter-details.js.map +1 -0
- package/lib/model/migration-parameter-summary-collection.d.ts +26 -0
- package/lib/model/migration-parameter-summary-collection.js +61 -0
- package/lib/model/migration-parameter-summary-collection.js.map +1 -0
- package/lib/model/migration-parameter-summary.d.ts +76 -0
- package/lib/model/migration-parameter-summary.js +29 -0
- package/lib/model/migration-parameter-summary.js.map +1 -0
- package/lib/model/oracle-migration.d.ts +4 -0
- package/lib/model/oracle-migration.js +10 -0
- package/lib/model/oracle-migration.js.map +1 -1
- package/lib/model/update-oracle-migration-details.d.ts +4 -0
- package/lib/model/update-oracle-migration-details.js +10 -0
- package/lib/model/update-oracle-migration-details.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-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-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-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/index.d.ts +2 -0
- package/lib/request/index.js +3 -1
- package/lib/request/index.js.map +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-migration-parameters-request.d.ts +62 -0
- package/lib/request/list-migration-parameters-request.js +24 -0
- package/lib/request/list-migration-parameters-request.js.map +1 -0
- 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-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/lib/response/index.d.ts +2 -0
- package/lib/response/list-migration-parameters-response.d.ts +32 -0
- package/lib/response/list-migration-parameters-response.js +15 -0
- package/lib/response/list-migration-parameters-response.js.map +1 -0
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -203,7 +203,7 @@ class DatabaseMigrationClient {
|
|
|
203
203
|
* @param AbortJobRequest
|
|
204
204
|
* @return AbortJobResponse
|
|
205
205
|
* @throws OciError when an error occurs
|
|
206
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
206
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/AbortJob.ts.html |here} to see how to use AbortJob API.
|
|
207
207
|
*/
|
|
208
208
|
abortJob(abortJobRequest) {
|
|
209
209
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -269,7 +269,7 @@ class DatabaseMigrationClient {
|
|
|
269
269
|
* @param AddMigrationObjectsRequest
|
|
270
270
|
* @return AddMigrationObjectsResponse
|
|
271
271
|
* @throws OciError when an error occurs
|
|
272
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
272
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/AddMigrationObjects.ts.html |here} to see how to use AddMigrationObjects API.
|
|
273
273
|
*/
|
|
274
274
|
addMigrationObjects(addMigrationObjectsRequest) {
|
|
275
275
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -326,7 +326,7 @@ class DatabaseMigrationClient {
|
|
|
326
326
|
* @param ChangeConnectionCompartmentRequest
|
|
327
327
|
* @return ChangeConnectionCompartmentResponse
|
|
328
328
|
* @throws OciError when an error occurs
|
|
329
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
329
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ChangeConnectionCompartment.ts.html |here} to see how to use ChangeConnectionCompartment API.
|
|
330
330
|
*/
|
|
331
331
|
changeConnectionCompartment(changeConnectionCompartmentRequest) {
|
|
332
332
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -384,7 +384,7 @@ class DatabaseMigrationClient {
|
|
|
384
384
|
* @param ChangeMigrationCompartmentRequest
|
|
385
385
|
* @return ChangeMigrationCompartmentResponse
|
|
386
386
|
* @throws OciError when an error occurs
|
|
387
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
387
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ChangeMigrationCompartment.ts.html |here} to see how to use ChangeMigrationCompartment API.
|
|
388
388
|
*/
|
|
389
389
|
changeMigrationCompartment(changeMigrationCompartmentRequest) {
|
|
390
390
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -442,7 +442,7 @@ class DatabaseMigrationClient {
|
|
|
442
442
|
* @param CloneMigrationRequest
|
|
443
443
|
* @return CloneMigrationResponse
|
|
444
444
|
* @throws OciError when an error occurs
|
|
445
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
445
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/CloneMigration.ts.html |here} to see how to use CloneMigration API.
|
|
446
446
|
*/
|
|
447
447
|
cloneMigration(cloneMigrationRequest) {
|
|
448
448
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -514,7 +514,7 @@ class DatabaseMigrationClient {
|
|
|
514
514
|
* @param ConnectionDiagnosticsRequest
|
|
515
515
|
* @return ConnectionDiagnosticsResponse
|
|
516
516
|
* @throws OciError when an error occurs
|
|
517
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
517
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ConnectionDiagnostics.ts.html |here} to see how to use ConnectionDiagnostics API.
|
|
518
518
|
*/
|
|
519
519
|
connectionDiagnostics(connectionDiagnosticsRequest) {
|
|
520
520
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -581,7 +581,7 @@ class DatabaseMigrationClient {
|
|
|
581
581
|
* @param CreateConnectionRequest
|
|
582
582
|
* @return CreateConnectionResponse
|
|
583
583
|
* @throws OciError when an error occurs
|
|
584
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
584
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/CreateConnection.ts.html |here} to see how to use CreateConnection API.
|
|
585
585
|
*/
|
|
586
586
|
createConnection(createConnectionRequest) {
|
|
587
587
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -652,7 +652,7 @@ class DatabaseMigrationClient {
|
|
|
652
652
|
* @param CreateMigrationRequest
|
|
653
653
|
* @return CreateMigrationResponse
|
|
654
654
|
* @throws OciError when an error occurs
|
|
655
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
655
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/CreateMigration.ts.html |here} to see how to use CreateMigration API.
|
|
656
656
|
*/
|
|
657
657
|
createMigration(createMigrationRequest) {
|
|
658
658
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -721,7 +721,7 @@ class DatabaseMigrationClient {
|
|
|
721
721
|
* @param DeleteConnectionRequest
|
|
722
722
|
* @return DeleteConnectionResponse
|
|
723
723
|
* @throws OciError when an error occurs
|
|
724
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
724
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/DeleteConnection.ts.html |here} to see how to use DeleteConnection API.
|
|
725
725
|
*/
|
|
726
726
|
deleteConnection(deleteConnectionRequest) {
|
|
727
727
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -782,7 +782,7 @@ class DatabaseMigrationClient {
|
|
|
782
782
|
* @param DeleteJobRequest
|
|
783
783
|
* @return DeleteJobResponse
|
|
784
784
|
* @throws OciError when an error occurs
|
|
785
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
785
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/DeleteJob.ts.html |here} to see how to use DeleteJob API.
|
|
786
786
|
*/
|
|
787
787
|
deleteJob(deleteJobRequest) {
|
|
788
788
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -838,7 +838,7 @@ class DatabaseMigrationClient {
|
|
|
838
838
|
* @param DeleteMigrationRequest
|
|
839
839
|
* @return DeleteMigrationResponse
|
|
840
840
|
* @throws OciError when an error occurs
|
|
841
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
841
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/DeleteMigration.ts.html |here} to see how to use DeleteMigration API.
|
|
842
842
|
*/
|
|
843
843
|
deleteMigration(deleteMigrationRequest) {
|
|
844
844
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -899,7 +899,7 @@ class DatabaseMigrationClient {
|
|
|
899
899
|
* @param EvaluateMigrationRequest
|
|
900
900
|
* @return EvaluateMigrationResponse
|
|
901
901
|
* @throws OciError when an error occurs
|
|
902
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
902
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/EvaluateMigration.ts.html |here} to see how to use EvaluateMigration API.
|
|
903
903
|
*/
|
|
904
904
|
evaluateMigration(evaluateMigrationRequest) {
|
|
905
905
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -970,7 +970,7 @@ class DatabaseMigrationClient {
|
|
|
970
970
|
* @param GetAdvisorReportRequest
|
|
971
971
|
* @return GetAdvisorReportResponse
|
|
972
972
|
* @throws OciError when an error occurs
|
|
973
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
973
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/GetAdvisorReport.ts.html |here} to see how to use GetAdvisorReport API.
|
|
974
974
|
*/
|
|
975
975
|
getAdvisorReport(getAdvisorReportRequest) {
|
|
976
976
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1034,7 +1034,7 @@ class DatabaseMigrationClient {
|
|
|
1034
1034
|
* @param GetConnectionRequest
|
|
1035
1035
|
* @return GetConnectionResponse
|
|
1036
1036
|
* @throws OciError when an error occurs
|
|
1037
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1037
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/GetConnection.ts.html |here} to see how to use GetConnection API.
|
|
1038
1038
|
*/
|
|
1039
1039
|
getConnection(getConnectionRequest) {
|
|
1040
1040
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1098,7 +1098,7 @@ class DatabaseMigrationClient {
|
|
|
1098
1098
|
* @param GetJobRequest
|
|
1099
1099
|
* @return GetJobResponse
|
|
1100
1100
|
* @throws OciError when an error occurs
|
|
1101
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1101
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/GetJob.ts.html |here} to see how to use GetJob API.
|
|
1102
1102
|
*/
|
|
1103
1103
|
getJob(getJobRequest) {
|
|
1104
1104
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1162,7 +1162,7 @@ class DatabaseMigrationClient {
|
|
|
1162
1162
|
* @param GetJobOutputContentRequest
|
|
1163
1163
|
* @return GetJobOutputContentResponse
|
|
1164
1164
|
* @throws OciError when an error occurs
|
|
1165
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1165
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/GetJobOutputContent.ts.html |here} to see how to use GetJobOutputContent API.
|
|
1166
1166
|
*/
|
|
1167
1167
|
getJobOutputContent(getJobOutputContentRequest) {
|
|
1168
1168
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1220,7 +1220,7 @@ class DatabaseMigrationClient {
|
|
|
1220
1220
|
* @param GetMigrationRequest
|
|
1221
1221
|
* @return GetMigrationResponse
|
|
1222
1222
|
* @throws OciError when an error occurs
|
|
1223
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1223
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/GetMigration.ts.html |here} to see how to use GetMigration API.
|
|
1224
1224
|
*/
|
|
1225
1225
|
getMigration(getMigrationRequest) {
|
|
1226
1226
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1285,7 +1285,7 @@ class DatabaseMigrationClient {
|
|
|
1285
1285
|
* @param GetWorkRequestRequest
|
|
1286
1286
|
* @return GetWorkRequestResponse
|
|
1287
1287
|
* @throws OciError when an error occurs
|
|
1288
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1288
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1289
1289
|
*/
|
|
1290
1290
|
getWorkRequest(getWorkRequestRequest) {
|
|
1291
1291
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1344,7 +1344,7 @@ class DatabaseMigrationClient {
|
|
|
1344
1344
|
* @param ListConnectionsRequest
|
|
1345
1345
|
* @return ListConnectionsResponse
|
|
1346
1346
|
* @throws OciError when an error occurs
|
|
1347
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1347
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ListConnections.ts.html |here} to see how to use ListConnections API.
|
|
1348
1348
|
*/
|
|
1349
1349
|
listConnections(listConnectionsRequest) {
|
|
1350
1350
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1417,7 +1417,7 @@ class DatabaseMigrationClient {
|
|
|
1417
1417
|
* @param ListExcludedObjectsRequest
|
|
1418
1418
|
* @return ListExcludedObjectsResponse
|
|
1419
1419
|
* @throws OciError when an error occurs
|
|
1420
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1420
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ListExcludedObjects.ts.html |here} to see how to use ListExcludedObjects API.
|
|
1421
1421
|
*/
|
|
1422
1422
|
listExcludedObjects(listExcludedObjectsRequest) {
|
|
1423
1423
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1493,7 +1493,7 @@ class DatabaseMigrationClient {
|
|
|
1493
1493
|
* @param ListJobOutputsRequest
|
|
1494
1494
|
* @return ListJobOutputsResponse
|
|
1495
1495
|
* @throws OciError when an error occurs
|
|
1496
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1496
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ListJobOutputs.ts.html |here} to see how to use ListJobOutputs API.
|
|
1497
1497
|
*/
|
|
1498
1498
|
listJobOutputs(listJobOutputsRequest) {
|
|
1499
1499
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1561,7 +1561,7 @@ class DatabaseMigrationClient {
|
|
|
1561
1561
|
* @param ListJobsRequest
|
|
1562
1562
|
* @return ListJobsResponse
|
|
1563
1563
|
* @throws OciError when an error occurs
|
|
1564
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1564
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ListJobs.ts.html |here} to see how to use ListJobs API.
|
|
1565
1565
|
*/
|
|
1566
1566
|
listJobs(listJobsRequest) {
|
|
1567
1567
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1631,7 +1631,7 @@ class DatabaseMigrationClient {
|
|
|
1631
1631
|
* @param ListMigrationObjectTypesRequest
|
|
1632
1632
|
* @return ListMigrationObjectTypesResponse
|
|
1633
1633
|
* @throws OciError when an error occurs
|
|
1634
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1634
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ListMigrationObjectTypes.ts.html |here} to see how to use ListMigrationObjectTypes API.
|
|
1635
1635
|
*/
|
|
1636
1636
|
listMigrationObjectTypes(listMigrationObjectTypesRequest) {
|
|
1637
1637
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1699,7 +1699,7 @@ class DatabaseMigrationClient {
|
|
|
1699
1699
|
* @param ListMigrationObjectsRequest
|
|
1700
1700
|
* @return ListMigrationObjectsResponse
|
|
1701
1701
|
* @throws OciError when an error occurs
|
|
1702
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1702
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ListMigrationObjects.ts.html |here} to see how to use ListMigrationObjects API.
|
|
1703
1703
|
*/
|
|
1704
1704
|
listMigrationObjects(listMigrationObjectsRequest) {
|
|
1705
1705
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1760,6 +1760,74 @@ class DatabaseMigrationClient {
|
|
|
1760
1760
|
}
|
|
1761
1761
|
});
|
|
1762
1762
|
}
|
|
1763
|
+
/**
|
|
1764
|
+
* List of parameters that can be used to customize migrations.
|
|
1765
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1766
|
+
* @param ListMigrationParametersRequest
|
|
1767
|
+
* @return ListMigrationParametersResponse
|
|
1768
|
+
* @throws OciError when an error occurs
|
|
1769
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ListMigrationParameters.ts.html |here} to see how to use ListMigrationParameters API.
|
|
1770
|
+
*/
|
|
1771
|
+
listMigrationParameters(listMigrationParametersRequest) {
|
|
1772
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1773
|
+
if (this.logger)
|
|
1774
|
+
this.logger.debug("Calling operation DatabaseMigrationClient#listMigrationParameters.");
|
|
1775
|
+
const operationName = "listMigrationParameters";
|
|
1776
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/database-migration/20230518/MigrationParameterSummary/ListMigrationParameters";
|
|
1777
|
+
const pathParams = {};
|
|
1778
|
+
const queryParams = {
|
|
1779
|
+
"migrationType": listMigrationParametersRequest.migrationType,
|
|
1780
|
+
"databaseCombination": listMigrationParametersRequest.databaseCombination,
|
|
1781
|
+
"limit": listMigrationParametersRequest.limit,
|
|
1782
|
+
"page": listMigrationParametersRequest.page,
|
|
1783
|
+
"sortBy": listMigrationParametersRequest.sortBy,
|
|
1784
|
+
"sortOrder": listMigrationParametersRequest.sortOrder
|
|
1785
|
+
};
|
|
1786
|
+
let headerParams = {
|
|
1787
|
+
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1788
|
+
"opc-request-id": listMigrationParametersRequest.opcRequestId
|
|
1789
|
+
};
|
|
1790
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1791
|
+
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listMigrationParametersRequest.retryConfiguration, specRetryConfiguration);
|
|
1792
|
+
if (this.logger)
|
|
1793
|
+
retrier.logger = this.logger;
|
|
1794
|
+
const request = yield oci_common_1.composeRequest({
|
|
1795
|
+
baseEndpoint: this._endpoint,
|
|
1796
|
+
defaultHeaders: this._defaultHeaders,
|
|
1797
|
+
path: "/migrationParameters",
|
|
1798
|
+
method: "GET",
|
|
1799
|
+
pathParams: pathParams,
|
|
1800
|
+
headerParams: headerParams,
|
|
1801
|
+
queryParams: queryParams
|
|
1802
|
+
});
|
|
1803
|
+
try {
|
|
1804
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1805
|
+
const sdkResponse = oci_common_1.composeResponse({
|
|
1806
|
+
responseObject: {},
|
|
1807
|
+
body: yield response.json(),
|
|
1808
|
+
bodyKey: "migrationParameterSummaryCollection",
|
|
1809
|
+
bodyModel: model.MigrationParameterSummaryCollection,
|
|
1810
|
+
type: "model.MigrationParameterSummaryCollection",
|
|
1811
|
+
responseHeaders: [
|
|
1812
|
+
{
|
|
1813
|
+
value: response.headers.get("opc-request-id"),
|
|
1814
|
+
key: "opcRequestId",
|
|
1815
|
+
dataType: "string"
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
value: response.headers.get("opc-next-page"),
|
|
1819
|
+
key: "opcNextPage",
|
|
1820
|
+
dataType: "string"
|
|
1821
|
+
}
|
|
1822
|
+
]
|
|
1823
|
+
});
|
|
1824
|
+
return sdkResponse;
|
|
1825
|
+
}
|
|
1826
|
+
catch (err) {
|
|
1827
|
+
throw err;
|
|
1828
|
+
}
|
|
1829
|
+
});
|
|
1830
|
+
}
|
|
1763
1831
|
/**
|
|
1764
1832
|
* List all Migrations.
|
|
1765
1833
|
*
|
|
@@ -1767,7 +1835,7 @@ class DatabaseMigrationClient {
|
|
|
1767
1835
|
* @param ListMigrationsRequest
|
|
1768
1836
|
* @return ListMigrationsResponse
|
|
1769
1837
|
* @throws OciError when an error occurs
|
|
1770
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1838
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ListMigrations.ts.html |here} to see how to use ListMigrations API.
|
|
1771
1839
|
*/
|
|
1772
1840
|
listMigrations(listMigrationsRequest) {
|
|
1773
1841
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1838,7 +1906,7 @@ class DatabaseMigrationClient {
|
|
|
1838
1906
|
* @param ListWorkRequestErrorsRequest
|
|
1839
1907
|
* @return ListWorkRequestErrorsResponse
|
|
1840
1908
|
* @throws OciError when an error occurs
|
|
1841
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1909
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1842
1910
|
*/
|
|
1843
1911
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
1844
1912
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1907,7 +1975,7 @@ class DatabaseMigrationClient {
|
|
|
1907
1975
|
* @param ListWorkRequestLogsRequest
|
|
1908
1976
|
* @return ListWorkRequestLogsResponse
|
|
1909
1977
|
* @throws OciError when an error occurs
|
|
1910
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
1978
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
1911
1979
|
*/
|
|
1912
1980
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
1913
1981
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1976,7 +2044,7 @@ class DatabaseMigrationClient {
|
|
|
1976
2044
|
* @param ListWorkRequestsRequest
|
|
1977
2045
|
* @return ListWorkRequestsResponse
|
|
1978
2046
|
* @throws OciError when an error occurs
|
|
1979
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
2047
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1980
2048
|
*/
|
|
1981
2049
|
listWorkRequests(listWorkRequestsRequest) {
|
|
1982
2050
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2046,7 +2114,7 @@ class DatabaseMigrationClient {
|
|
|
2046
2114
|
* @param RemoveMigrationObjectsRequest
|
|
2047
2115
|
* @return RemoveMigrationObjectsResponse
|
|
2048
2116
|
* @throws OciError when an error occurs
|
|
2049
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
2117
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/RemoveMigrationObjects.ts.html |here} to see how to use RemoveMigrationObjects API.
|
|
2050
2118
|
*/
|
|
2051
2119
|
removeMigrationObjects(removeMigrationObjectsRequest) {
|
|
2052
2120
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2103,7 +2171,7 @@ class DatabaseMigrationClient {
|
|
|
2103
2171
|
* @param ResumeJobRequest
|
|
2104
2172
|
* @return ResumeJobResponse
|
|
2105
2173
|
* @throws OciError when an error occurs
|
|
2106
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
2174
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/ResumeJob.ts.html |here} to see how to use ResumeJob API.
|
|
2107
2175
|
*/
|
|
2108
2176
|
resumeJob(resumeJobRequest) {
|
|
2109
2177
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2170,7 +2238,7 @@ class DatabaseMigrationClient {
|
|
|
2170
2238
|
* @param RetrieveSupportedPhasesRequest
|
|
2171
2239
|
* @return RetrieveSupportedPhasesResponse
|
|
2172
2240
|
* @throws OciError when an error occurs
|
|
2173
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
2241
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/RetrieveSupportedPhases.ts.html |here} to see how to use RetrieveSupportedPhases API.
|
|
2174
2242
|
*/
|
|
2175
2243
|
retrieveSupportedPhases(retrieveSupportedPhasesRequest) {
|
|
2176
2244
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2229,7 +2297,7 @@ class DatabaseMigrationClient {
|
|
|
2229
2297
|
* @param StartMigrationRequest
|
|
2230
2298
|
* @return StartMigrationResponse
|
|
2231
2299
|
* @throws OciError when an error occurs
|
|
2232
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
2300
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/StartMigration.ts.html |here} to see how to use StartMigration API.
|
|
2233
2301
|
*/
|
|
2234
2302
|
startMigration(startMigrationRequest) {
|
|
2235
2303
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2301,7 +2369,7 @@ class DatabaseMigrationClient {
|
|
|
2301
2369
|
* @param UpdateConnectionRequest
|
|
2302
2370
|
* @return UpdateConnectionResponse
|
|
2303
2371
|
* @throws OciError when an error occurs
|
|
2304
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
2372
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/UpdateConnection.ts.html |here} to see how to use UpdateConnection API.
|
|
2305
2373
|
*/
|
|
2306
2374
|
updateConnection(updateConnectionRequest) {
|
|
2307
2375
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2363,7 +2431,7 @@ class DatabaseMigrationClient {
|
|
|
2363
2431
|
* @param UpdateJobRequest
|
|
2364
2432
|
* @return UpdateJobResponse
|
|
2365
2433
|
* @throws OciError when an error occurs
|
|
2366
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
2434
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/UpdateJob.ts.html |here} to see how to use UpdateJob API.
|
|
2367
2435
|
*/
|
|
2368
2436
|
updateJob(updateJobRequest) {
|
|
2369
2437
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2429,7 +2497,7 @@ class DatabaseMigrationClient {
|
|
|
2429
2497
|
* @param UpdateMigrationRequest
|
|
2430
2498
|
* @return UpdateMigrationResponse
|
|
2431
2499
|
* @throws OciError when an error occurs
|
|
2432
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
2500
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.2/databasemigration/UpdateMigration.ts.html |here} to see how to use UpdateMigration API.
|
|
2433
2501
|
*/
|
|
2434
2502
|
updateMigration(updateMigrationRequest) {
|
|
2435
2503
|
return __awaiter(this, void 0, void 0, function* () {
|