oci-databasemigration 2.21.0 → 2.25.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.
Files changed (44) hide show
  1. package/lib/client.d.ts +41 -40
  2. package/lib/client.js +46 -41
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/abort-job-request.d.ts +1 -1
  5. package/lib/request/add-migration-objects-request.d.ts +1 -1
  6. package/lib/request/change-agent-compartment-request.d.ts +1 -1
  7. package/lib/request/change-connection-compartment-request.d.ts +1 -1
  8. package/lib/request/change-migration-compartment-request.d.ts +1 -1
  9. package/lib/request/clone-migration-request.d.ts +1 -1
  10. package/lib/request/create-connection-request.d.ts +1 -1
  11. package/lib/request/create-migration-request.d.ts +1 -1
  12. package/lib/request/delete-agent-request.d.ts +1 -1
  13. package/lib/request/delete-connection-request.d.ts +1 -1
  14. package/lib/request/delete-job-request.d.ts +1 -1
  15. package/lib/request/delete-migration-request.d.ts +1 -1
  16. package/lib/request/evaluate-migration-request.d.ts +1 -1
  17. package/lib/request/get-advisor-report-request.d.ts +1 -1
  18. package/lib/request/get-agent-request.d.ts +1 -1
  19. package/lib/request/get-connection-request.d.ts +1 -1
  20. package/lib/request/get-job-output-content-request.d.ts +1 -1
  21. package/lib/request/get-job-request.d.ts +1 -1
  22. package/lib/request/get-migration-request.d.ts +1 -1
  23. package/lib/request/get-work-request-request.d.ts +1 -1
  24. package/lib/request/list-agent-images-request.d.ts +1 -1
  25. package/lib/request/list-agents-request.d.ts +1 -1
  26. package/lib/request/list-connections-request.d.ts +1 -1
  27. package/lib/request/list-excluded-objects-request.d.ts +1 -1
  28. package/lib/request/list-job-outputs-request.d.ts +1 -1
  29. package/lib/request/list-jobs-request.d.ts +1 -1
  30. package/lib/request/list-migration-object-types-request.d.ts +1 -1
  31. package/lib/request/list-migration-objects-request.d.ts +1 -1
  32. package/lib/request/list-migrations-request.d.ts +1 -1
  33. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  34. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  35. package/lib/request/list-work-requests-request.d.ts +1 -1
  36. package/lib/request/remove-migration-objects-request.d.ts +1 -1
  37. package/lib/request/resume-job-request.d.ts +1 -1
  38. package/lib/request/retrieve-supported-phases-request.d.ts +1 -1
  39. package/lib/request/start-migration-request.d.ts +1 -1
  40. package/lib/request/update-agent-request.d.ts +1 -1
  41. package/lib/request/update-connection-request.d.ts +1 -1
  42. package/lib/request/update-job-request.d.ts +1 -1
  43. package/lib/request/update-migration-request.d.ts +1 -1
  44. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -59,6 +59,7 @@ class DatabaseMigrationClient {
59
59
  this["_endpoint"] = "";
60
60
  this["_defaultHeaders"] = {};
61
61
  this._circuitBreaker = null;
62
+ this._httpOptions = undefined;
62
63
  const requestSigner = params.authenticationDetailsProvider
63
64
  ? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
64
65
  : null;
@@ -67,6 +68,9 @@ class DatabaseMigrationClient {
67
68
  this._circuitBreaker = clientConfiguration.circuitBreaker
68
69
  ? clientConfiguration.circuitBreaker.circuit
69
70
  : null;
71
+ this._httpOptions = clientConfiguration.httpOptions
72
+ ? clientConfiguration.httpOptions
73
+ : undefined;
70
74
  }
71
75
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
72
76
  const specCircuitBreakerEnabled = true;
@@ -76,7 +80,8 @@ class DatabaseMigrationClient {
76
80
  this._circuitBreaker = new common.CircuitBreaker().circuit;
77
81
  }
78
82
  this._httpClient =
79
- params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
83
+ params.httpClient ||
84
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
80
85
  if (params.authenticationDetailsProvider &&
81
86
  common.isRegionProvider(params.authenticationDetailsProvider)) {
82
87
  const provider = params.authenticationDetailsProvider;
@@ -151,7 +156,7 @@ class DatabaseMigrationClient {
151
156
  * @param AbortJobRequest
152
157
  * @return AbortJobResponse
153
158
  * @throws OciError when an error occurs
154
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/AbortJob.ts.html |here} to see how to use AbortJob API.
159
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/AbortJob.ts.html |here} to see how to use AbortJob API.
155
160
  */
156
161
  abortJob(abortJobRequest) {
157
162
  return __awaiter(this, void 0, void 0, function* () {
@@ -215,7 +220,7 @@ class DatabaseMigrationClient {
215
220
  * @param AddMigrationObjectsRequest
216
221
  * @return AddMigrationObjectsResponse
217
222
  * @throws OciError when an error occurs
218
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/AddMigrationObjects.ts.html |here} to see how to use AddMigrationObjects API.
223
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/AddMigrationObjects.ts.html |here} to see how to use AddMigrationObjects API.
219
224
  */
220
225
  addMigrationObjects(addMigrationObjectsRequest) {
221
226
  return __awaiter(this, void 0, void 0, function* () {
@@ -270,7 +275,7 @@ class DatabaseMigrationClient {
270
275
  * @param ChangeAgentCompartmentRequest
271
276
  * @return ChangeAgentCompartmentResponse
272
277
  * @throws OciError when an error occurs
273
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
278
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
274
279
  */
275
280
  changeAgentCompartment(changeAgentCompartmentRequest) {
276
281
  return __awaiter(this, void 0, void 0, function* () {
@@ -326,7 +331,7 @@ class DatabaseMigrationClient {
326
331
  * @param ChangeConnectionCompartmentRequest
327
332
  * @return ChangeConnectionCompartmentResponse
328
333
  * @throws OciError when an error occurs
329
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ChangeConnectionCompartment.ts.html |here} to see how to use ChangeConnectionCompartment API.
334
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ChangeConnectionCompartment.ts.html |here} to see how to use ChangeConnectionCompartment API.
330
335
  */
331
336
  changeConnectionCompartment(changeConnectionCompartmentRequest) {
332
337
  return __awaiter(this, void 0, void 0, function* () {
@@ -382,7 +387,7 @@ class DatabaseMigrationClient {
382
387
  * @param ChangeMigrationCompartmentRequest
383
388
  * @return ChangeMigrationCompartmentResponse
384
389
  * @throws OciError when an error occurs
385
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ChangeMigrationCompartment.ts.html |here} to see how to use ChangeMigrationCompartment API.
390
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ChangeMigrationCompartment.ts.html |here} to see how to use ChangeMigrationCompartment API.
386
391
  */
387
392
  changeMigrationCompartment(changeMigrationCompartmentRequest) {
388
393
  return __awaiter(this, void 0, void 0, function* () {
@@ -438,7 +443,7 @@ class DatabaseMigrationClient {
438
443
  * @param CloneMigrationRequest
439
444
  * @return CloneMigrationResponse
440
445
  * @throws OciError when an error occurs
441
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/CloneMigration.ts.html |here} to see how to use CloneMigration API.
446
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/CloneMigration.ts.html |here} to see how to use CloneMigration API.
442
447
  */
443
448
  cloneMigration(cloneMigrationRequest) {
444
449
  return __awaiter(this, void 0, void 0, function* () {
@@ -509,7 +514,7 @@ class DatabaseMigrationClient {
509
514
  * @param CreateConnectionRequest
510
515
  * @return CreateConnectionResponse
511
516
  * @throws OciError when an error occurs
512
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/CreateConnection.ts.html |here} to see how to use CreateConnection API.
517
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/CreateConnection.ts.html |here} to see how to use CreateConnection API.
513
518
  */
514
519
  createConnection(createConnectionRequest) {
515
520
  return __awaiter(this, void 0, void 0, function* () {
@@ -578,7 +583,7 @@ class DatabaseMigrationClient {
578
583
  * @param CreateMigrationRequest
579
584
  * @return CreateMigrationResponse
580
585
  * @throws OciError when an error occurs
581
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/CreateMigration.ts.html |here} to see how to use CreateMigration API.
586
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/CreateMigration.ts.html |here} to see how to use CreateMigration API.
582
587
  */
583
588
  createMigration(createMigrationRequest) {
584
589
  return __awaiter(this, void 0, void 0, function* () {
@@ -645,7 +650,7 @@ class DatabaseMigrationClient {
645
650
  * @param DeleteAgentRequest
646
651
  * @return DeleteAgentResponse
647
652
  * @throws OciError when an error occurs
648
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
653
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
649
654
  */
650
655
  deleteAgent(deleteAgentRequest) {
651
656
  return __awaiter(this, void 0, void 0, function* () {
@@ -704,7 +709,7 @@ class DatabaseMigrationClient {
704
709
  * @param DeleteConnectionRequest
705
710
  * @return DeleteConnectionResponse
706
711
  * @throws OciError when an error occurs
707
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/DeleteConnection.ts.html |here} to see how to use DeleteConnection API.
712
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/DeleteConnection.ts.html |here} to see how to use DeleteConnection API.
708
713
  */
709
714
  deleteConnection(deleteConnectionRequest) {
710
715
  return __awaiter(this, void 0, void 0, function* () {
@@ -763,7 +768,7 @@ class DatabaseMigrationClient {
763
768
  * @param DeleteJobRequest
764
769
  * @return DeleteJobResponse
765
770
  * @throws OciError when an error occurs
766
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/DeleteJob.ts.html |here} to see how to use DeleteJob API.
771
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/DeleteJob.ts.html |here} to see how to use DeleteJob API.
767
772
  */
768
773
  deleteJob(deleteJobRequest) {
769
774
  return __awaiter(this, void 0, void 0, function* () {
@@ -817,7 +822,7 @@ class DatabaseMigrationClient {
817
822
  * @param DeleteMigrationRequest
818
823
  * @return DeleteMigrationResponse
819
824
  * @throws OciError when an error occurs
820
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/DeleteMigration.ts.html |here} to see how to use DeleteMigration API.
825
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/DeleteMigration.ts.html |here} to see how to use DeleteMigration API.
821
826
  */
822
827
  deleteMigration(deleteMigrationRequest) {
823
828
  return __awaiter(this, void 0, void 0, function* () {
@@ -876,7 +881,7 @@ class DatabaseMigrationClient {
876
881
  * @param EvaluateMigrationRequest
877
882
  * @return EvaluateMigrationResponse
878
883
  * @throws OciError when an error occurs
879
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/EvaluateMigration.ts.html |here} to see how to use EvaluateMigration API.
884
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/EvaluateMigration.ts.html |here} to see how to use EvaluateMigration API.
880
885
  */
881
886
  evaluateMigration(evaluateMigrationRequest) {
882
887
  return __awaiter(this, void 0, void 0, function* () {
@@ -945,7 +950,7 @@ class DatabaseMigrationClient {
945
950
  * @param GetAdvisorReportRequest
946
951
  * @return GetAdvisorReportResponse
947
952
  * @throws OciError when an error occurs
948
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/GetAdvisorReport.ts.html |here} to see how to use GetAdvisorReport API.
953
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/GetAdvisorReport.ts.html |here} to see how to use GetAdvisorReport API.
949
954
  */
950
955
  getAdvisorReport(getAdvisorReportRequest) {
951
956
  return __awaiter(this, void 0, void 0, function* () {
@@ -1007,7 +1012,7 @@ class DatabaseMigrationClient {
1007
1012
  * @param GetAgentRequest
1008
1013
  * @return GetAgentResponse
1009
1014
  * @throws OciError when an error occurs
1010
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/GetAgent.ts.html |here} to see how to use GetAgent API.
1015
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/GetAgent.ts.html |here} to see how to use GetAgent API.
1011
1016
  */
1012
1017
  getAgent(getAgentRequest) {
1013
1018
  return __awaiter(this, void 0, void 0, function* () {
@@ -1069,7 +1074,7 @@ class DatabaseMigrationClient {
1069
1074
  * @param GetConnectionRequest
1070
1075
  * @return GetConnectionResponse
1071
1076
  * @throws OciError when an error occurs
1072
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/GetConnection.ts.html |here} to see how to use GetConnection API.
1077
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/GetConnection.ts.html |here} to see how to use GetConnection API.
1073
1078
  */
1074
1079
  getConnection(getConnectionRequest) {
1075
1080
  return __awaiter(this, void 0, void 0, function* () {
@@ -1131,7 +1136,7 @@ class DatabaseMigrationClient {
1131
1136
  * @param GetJobRequest
1132
1137
  * @return GetJobResponse
1133
1138
  * @throws OciError when an error occurs
1134
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/GetJob.ts.html |here} to see how to use GetJob API.
1139
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/GetJob.ts.html |here} to see how to use GetJob API.
1135
1140
  */
1136
1141
  getJob(getJobRequest) {
1137
1142
  return __awaiter(this, void 0, void 0, function* () {
@@ -1193,7 +1198,7 @@ class DatabaseMigrationClient {
1193
1198
  * @param GetJobOutputContentRequest
1194
1199
  * @return GetJobOutputContentResponse
1195
1200
  * @throws OciError when an error occurs
1196
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/GetJobOutputContent.ts.html |here} to see how to use GetJobOutputContent API.
1201
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/GetJobOutputContent.ts.html |here} to see how to use GetJobOutputContent API.
1197
1202
  */
1198
1203
  getJobOutputContent(getJobOutputContentRequest) {
1199
1204
  return __awaiter(this, void 0, void 0, function* () {
@@ -1249,7 +1254,7 @@ class DatabaseMigrationClient {
1249
1254
  * @param GetMigrationRequest
1250
1255
  * @return GetMigrationResponse
1251
1256
  * @throws OciError when an error occurs
1252
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/GetMigration.ts.html |here} to see how to use GetMigration API.
1257
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/GetMigration.ts.html |here} to see how to use GetMigration API.
1253
1258
  */
1254
1259
  getMigration(getMigrationRequest) {
1255
1260
  return __awaiter(this, void 0, void 0, function* () {
@@ -1312,7 +1317,7 @@ class DatabaseMigrationClient {
1312
1317
  * @param GetWorkRequestRequest
1313
1318
  * @return GetWorkRequestResponse
1314
1319
  * @throws OciError when an error occurs
1315
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1320
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1316
1321
  */
1317
1322
  getWorkRequest(getWorkRequestRequest) {
1318
1323
  return __awaiter(this, void 0, void 0, function* () {
@@ -1369,7 +1374,7 @@ class DatabaseMigrationClient {
1369
1374
  * @param ListAgentImagesRequest
1370
1375
  * @return ListAgentImagesResponse
1371
1376
  * @throws OciError when an error occurs
1372
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ListAgentImages.ts.html |here} to see how to use ListAgentImages API.
1377
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ListAgentImages.ts.html |here} to see how to use ListAgentImages API.
1373
1378
  */
1374
1379
  listAgentImages(listAgentImagesRequest) {
1375
1380
  return __awaiter(this, void 0, void 0, function* () {
@@ -1433,7 +1438,7 @@ class DatabaseMigrationClient {
1433
1438
  * @param ListAgentsRequest
1434
1439
  * @return ListAgentsResponse
1435
1440
  * @throws OciError when an error occurs
1436
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ListAgents.ts.html |here} to see how to use ListAgents API.
1441
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ListAgents.ts.html |here} to see how to use ListAgents API.
1437
1442
  */
1438
1443
  listAgents(listAgentsRequest) {
1439
1444
  return __awaiter(this, void 0, void 0, function* () {
@@ -1501,7 +1506,7 @@ class DatabaseMigrationClient {
1501
1506
  * @param ListConnectionsRequest
1502
1507
  * @return ListConnectionsResponse
1503
1508
  * @throws OciError when an error occurs
1504
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ListConnections.ts.html |here} to see how to use ListConnections API.
1509
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ListConnections.ts.html |here} to see how to use ListConnections API.
1505
1510
  */
1506
1511
  listConnections(listConnectionsRequest) {
1507
1512
  return __awaiter(this, void 0, void 0, function* () {
@@ -1569,7 +1574,7 @@ class DatabaseMigrationClient {
1569
1574
  * @param ListExcludedObjectsRequest
1570
1575
  * @return ListExcludedObjectsResponse
1571
1576
  * @throws OciError when an error occurs
1572
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ListExcludedObjects.ts.html |here} to see how to use ListExcludedObjects API.
1577
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ListExcludedObjects.ts.html |here} to see how to use ListExcludedObjects API.
1573
1578
  */
1574
1579
  listExcludedObjects(listExcludedObjectsRequest) {
1575
1580
  return __awaiter(this, void 0, void 0, function* () {
@@ -1643,7 +1648,7 @@ class DatabaseMigrationClient {
1643
1648
  * @param ListJobOutputsRequest
1644
1649
  * @return ListJobOutputsResponse
1645
1650
  * @throws OciError when an error occurs
1646
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ListJobOutputs.ts.html |here} to see how to use ListJobOutputs API.
1651
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ListJobOutputs.ts.html |here} to see how to use ListJobOutputs API.
1647
1652
  */
1648
1653
  listJobOutputs(listJobOutputsRequest) {
1649
1654
  return __awaiter(this, void 0, void 0, function* () {
@@ -1709,7 +1714,7 @@ class DatabaseMigrationClient {
1709
1714
  * @param ListJobsRequest
1710
1715
  * @return ListJobsResponse
1711
1716
  * @throws OciError when an error occurs
1712
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ListJobs.ts.html |here} to see how to use ListJobs API.
1717
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ListJobs.ts.html |here} to see how to use ListJobs API.
1713
1718
  */
1714
1719
  listJobs(listJobsRequest) {
1715
1720
  return __awaiter(this, void 0, void 0, function* () {
@@ -1777,7 +1782,7 @@ class DatabaseMigrationClient {
1777
1782
  * @param ListMigrationObjectTypesRequest
1778
1783
  * @return ListMigrationObjectTypesResponse
1779
1784
  * @throws OciError when an error occurs
1780
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ListMigrationObjectTypes.ts.html |here} to see how to use ListMigrationObjectTypes API.
1785
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ListMigrationObjectTypes.ts.html |here} to see how to use ListMigrationObjectTypes API.
1781
1786
  */
1782
1787
  listMigrationObjectTypes(listMigrationObjectTypesRequest) {
1783
1788
  return __awaiter(this, void 0, void 0, function* () {
@@ -1842,7 +1847,7 @@ class DatabaseMigrationClient {
1842
1847
  * @param ListMigrationObjectsRequest
1843
1848
  * @return ListMigrationObjectsResponse
1844
1849
  * @throws OciError when an error occurs
1845
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ListMigrationObjects.ts.html |here} to see how to use ListMigrationObjects API.
1850
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ListMigrationObjects.ts.html |here} to see how to use ListMigrationObjects API.
1846
1851
  */
1847
1852
  listMigrationObjects(listMigrationObjectsRequest) {
1848
1853
  return __awaiter(this, void 0, void 0, function* () {
@@ -1908,7 +1913,7 @@ class DatabaseMigrationClient {
1908
1913
  * @param ListMigrationsRequest
1909
1914
  * @return ListMigrationsResponse
1910
1915
  * @throws OciError when an error occurs
1911
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ListMigrations.ts.html |here} to see how to use ListMigrations API.
1916
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ListMigrations.ts.html |here} to see how to use ListMigrations API.
1912
1917
  */
1913
1918
  listMigrations(listMigrationsRequest) {
1914
1919
  return __awaiter(this, void 0, void 0, function* () {
@@ -1977,7 +1982,7 @@ class DatabaseMigrationClient {
1977
1982
  * @param ListWorkRequestErrorsRequest
1978
1983
  * @return ListWorkRequestErrorsResponse
1979
1984
  * @throws OciError when an error occurs
1980
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1985
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1981
1986
  */
1982
1987
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
1983
1988
  return __awaiter(this, void 0, void 0, function* () {
@@ -2044,7 +2049,7 @@ class DatabaseMigrationClient {
2044
2049
  * @param ListWorkRequestLogsRequest
2045
2050
  * @return ListWorkRequestLogsResponse
2046
2051
  * @throws OciError when an error occurs
2047
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2052
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2048
2053
  */
2049
2054
  listWorkRequestLogs(listWorkRequestLogsRequest) {
2050
2055
  return __awaiter(this, void 0, void 0, function* () {
@@ -2111,7 +2116,7 @@ class DatabaseMigrationClient {
2111
2116
  * @param ListWorkRequestsRequest
2112
2117
  * @return ListWorkRequestsResponse
2113
2118
  * @throws OciError when an error occurs
2114
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2119
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2115
2120
  */
2116
2121
  listWorkRequests(listWorkRequestsRequest) {
2117
2122
  return __awaiter(this, void 0, void 0, function* () {
@@ -2179,7 +2184,7 @@ class DatabaseMigrationClient {
2179
2184
  * @param RemoveMigrationObjectsRequest
2180
2185
  * @return RemoveMigrationObjectsResponse
2181
2186
  * @throws OciError when an error occurs
2182
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/RemoveMigrationObjects.ts.html |here} to see how to use RemoveMigrationObjects API.
2187
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/RemoveMigrationObjects.ts.html |here} to see how to use RemoveMigrationObjects API.
2183
2188
  */
2184
2189
  removeMigrationObjects(removeMigrationObjectsRequest) {
2185
2190
  return __awaiter(this, void 0, void 0, function* () {
@@ -2234,7 +2239,7 @@ class DatabaseMigrationClient {
2234
2239
  * @param ResumeJobRequest
2235
2240
  * @return ResumeJobResponse
2236
2241
  * @throws OciError when an error occurs
2237
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/ResumeJob.ts.html |here} to see how to use ResumeJob API.
2242
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/ResumeJob.ts.html |here} to see how to use ResumeJob API.
2238
2243
  */
2239
2244
  resumeJob(resumeJobRequest) {
2240
2245
  return __awaiter(this, void 0, void 0, function* () {
@@ -2299,7 +2304,7 @@ class DatabaseMigrationClient {
2299
2304
  * @param RetrieveSupportedPhasesRequest
2300
2305
  * @return RetrieveSupportedPhasesResponse
2301
2306
  * @throws OciError when an error occurs
2302
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/RetrieveSupportedPhases.ts.html |here} to see how to use RetrieveSupportedPhases API.
2307
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/RetrieveSupportedPhases.ts.html |here} to see how to use RetrieveSupportedPhases API.
2303
2308
  */
2304
2309
  retrieveSupportedPhases(retrieveSupportedPhasesRequest) {
2305
2310
  return __awaiter(this, void 0, void 0, function* () {
@@ -2356,7 +2361,7 @@ class DatabaseMigrationClient {
2356
2361
  * @param StartMigrationRequest
2357
2362
  * @return StartMigrationResponse
2358
2363
  * @throws OciError when an error occurs
2359
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/StartMigration.ts.html |here} to see how to use StartMigration API.
2364
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/StartMigration.ts.html |here} to see how to use StartMigration API.
2360
2365
  */
2361
2366
  startMigration(startMigrationRequest) {
2362
2367
  return __awaiter(this, void 0, void 0, function* () {
@@ -2426,7 +2431,7 @@ class DatabaseMigrationClient {
2426
2431
  * @param UpdateAgentRequest
2427
2432
  * @return UpdateAgentResponse
2428
2433
  * @throws OciError when an error occurs
2429
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
2434
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
2430
2435
  */
2431
2436
  updateAgent(updateAgentRequest) {
2432
2437
  return __awaiter(this, void 0, void 0, function* () {
@@ -2491,7 +2496,7 @@ class DatabaseMigrationClient {
2491
2496
  * @param UpdateConnectionRequest
2492
2497
  * @return UpdateConnectionResponse
2493
2498
  * @throws OciError when an error occurs
2494
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/UpdateConnection.ts.html |here} to see how to use UpdateConnection API.
2499
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/UpdateConnection.ts.html |here} to see how to use UpdateConnection API.
2495
2500
  */
2496
2501
  updateConnection(updateConnectionRequest) {
2497
2502
  return __awaiter(this, void 0, void 0, function* () {
@@ -2551,7 +2556,7 @@ class DatabaseMigrationClient {
2551
2556
  * @param UpdateJobRequest
2552
2557
  * @return UpdateJobResponse
2553
2558
  * @throws OciError when an error occurs
2554
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/UpdateJob.ts.html |here} to see how to use UpdateJob API.
2559
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/UpdateJob.ts.html |here} to see how to use UpdateJob API.
2555
2560
  */
2556
2561
  updateJob(updateJobRequest) {
2557
2562
  return __awaiter(this, void 0, void 0, function* () {
@@ -2615,7 +2620,7 @@ class DatabaseMigrationClient {
2615
2620
  * @param UpdateMigrationRequest
2616
2621
  * @return UpdateMigrationResponse
2617
2622
  * @throws OciError when an error occurs
2618
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/databasemigration/UpdateMigration.ts.html |here} to see how to use UpdateMigration API.
2623
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/databasemigration/UpdateMigration.ts.html |here} to see how to use UpdateMigration API.
2619
2624
  */
2620
2625
  updateMigration(updateMigrationRequest) {
2621
2626
  return __awaiter(this, void 0, void 0, function* () {