oci-databasemigration 2.77.0 → 2.78.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 (45) hide show
  1. package/lib/client.d.ts +48 -42
  2. package/lib/client.js +50 -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/connection-diagnostics-request.d.ts +1 -1
  11. package/lib/request/create-connection-request.d.ts +1 -1
  12. package/lib/request/create-migration-request.d.ts +1 -1
  13. package/lib/request/delete-agent-request.d.ts +1 -1
  14. package/lib/request/delete-connection-request.d.ts +1 -1
  15. package/lib/request/delete-job-request.d.ts +1 -1
  16. package/lib/request/delete-migration-request.d.ts +1 -1
  17. package/lib/request/evaluate-migration-request.d.ts +1 -1
  18. package/lib/request/get-advisor-report-request.d.ts +1 -1
  19. package/lib/request/get-agent-request.d.ts +1 -1
  20. package/lib/request/get-connection-request.d.ts +1 -1
  21. package/lib/request/get-job-output-content-request.d.ts +1 -1
  22. package/lib/request/get-job-request.d.ts +1 -1
  23. package/lib/request/get-migration-request.d.ts +1 -1
  24. package/lib/request/get-work-request-request.d.ts +1 -1
  25. package/lib/request/list-agent-images-request.d.ts +1 -1
  26. package/lib/request/list-agents-request.d.ts +1 -1
  27. package/lib/request/list-connections-request.d.ts +1 -1
  28. package/lib/request/list-excluded-objects-request.d.ts +1 -1
  29. package/lib/request/list-job-outputs-request.d.ts +1 -1
  30. package/lib/request/list-jobs-request.d.ts +1 -1
  31. package/lib/request/list-migration-object-types-request.d.ts +1 -1
  32. package/lib/request/list-migration-objects-request.d.ts +1 -1
  33. package/lib/request/list-migrations-request.d.ts +1 -1
  34. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  35. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  36. package/lib/request/list-work-requests-request.d.ts +1 -1
  37. package/lib/request/remove-migration-objects-request.d.ts +1 -1
  38. package/lib/request/resume-job-request.d.ts +1 -1
  39. package/lib/request/retrieve-supported-phases-request.d.ts +1 -1
  40. package/lib/request/start-migration-request.d.ts +1 -1
  41. package/lib/request/update-agent-request.d.ts +1 -1
  42. package/lib/request/update-connection-request.d.ts +1 -1
  43. package/lib/request/update-job-request.d.ts +1 -1
  44. package/lib/request/update-migration-request.d.ts +1 -1
  45. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -45,6 +45,7 @@ const common = require("oci-common");
45
45
  const model = __importStar(require("./model"));
46
46
  const databasemigration_waiter_1 = require("./databasemigration-waiter");
47
47
  const oci_common_1 = require("oci-common");
48
+ const Breaker = require("opossum");
48
49
  // ===============================================
49
50
  // This file is autogenerated - Please do not edit
50
51
  // ===============================================
@@ -181,6 +182,14 @@ class DatabaseMigrationClient {
181
182
  }
182
183
  throw Error("Waiters do not exist. Please create waiters.");
183
184
  }
185
+ /**
186
+ * Shutdown the circuit breaker used by the client when it is no longer needed
187
+ */
188
+ shutdownCircuitBreaker() {
189
+ if (this._circuitBreaker) {
190
+ this._circuitBreaker.shutdown();
191
+ }
192
+ }
184
193
  /**
185
194
  * Aborts a Migration Job (either Evaluation or Migration).
186
195
  *
@@ -188,7 +197,7 @@ class DatabaseMigrationClient {
188
197
  * @param AbortJobRequest
189
198
  * @return AbortJobResponse
190
199
  * @throws OciError when an error occurs
191
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/AbortJob.ts.html |here} to see how to use AbortJob API.
200
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/AbortJob.ts.html |here} to see how to use AbortJob API.
192
201
  */
193
202
  abortJob(abortJobRequest) {
194
203
  return __awaiter(this, void 0, void 0, function* () {
@@ -254,7 +263,7 @@ class DatabaseMigrationClient {
254
263
  * @param AddMigrationObjectsRequest
255
264
  * @return AddMigrationObjectsResponse
256
265
  * @throws OciError when an error occurs
257
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/AddMigrationObjects.ts.html |here} to see how to use AddMigrationObjects API.
266
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/AddMigrationObjects.ts.html |here} to see how to use AddMigrationObjects API.
258
267
  */
259
268
  addMigrationObjects(addMigrationObjectsRequest) {
260
269
  return __awaiter(this, void 0, void 0, function* () {
@@ -311,7 +320,7 @@ class DatabaseMigrationClient {
311
320
  * @param ChangeAgentCompartmentRequest
312
321
  * @return ChangeAgentCompartmentResponse
313
322
  * @throws OciError when an error occurs
314
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
323
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
315
324
  */
316
325
  changeAgentCompartment(changeAgentCompartmentRequest) {
317
326
  return __awaiter(this, void 0, void 0, function* () {
@@ -369,7 +378,7 @@ class DatabaseMigrationClient {
369
378
  * @param ChangeConnectionCompartmentRequest
370
379
  * @return ChangeConnectionCompartmentResponse
371
380
  * @throws OciError when an error occurs
372
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ChangeConnectionCompartment.ts.html |here} to see how to use ChangeConnectionCompartment API.
381
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ChangeConnectionCompartment.ts.html |here} to see how to use ChangeConnectionCompartment API.
373
382
  */
374
383
  changeConnectionCompartment(changeConnectionCompartmentRequest) {
375
384
  return __awaiter(this, void 0, void 0, function* () {
@@ -427,7 +436,7 @@ class DatabaseMigrationClient {
427
436
  * @param ChangeMigrationCompartmentRequest
428
437
  * @return ChangeMigrationCompartmentResponse
429
438
  * @throws OciError when an error occurs
430
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ChangeMigrationCompartment.ts.html |here} to see how to use ChangeMigrationCompartment API.
439
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ChangeMigrationCompartment.ts.html |here} to see how to use ChangeMigrationCompartment API.
431
440
  */
432
441
  changeMigrationCompartment(changeMigrationCompartmentRequest) {
433
442
  return __awaiter(this, void 0, void 0, function* () {
@@ -485,7 +494,7 @@ class DatabaseMigrationClient {
485
494
  * @param CloneMigrationRequest
486
495
  * @return CloneMigrationResponse
487
496
  * @throws OciError when an error occurs
488
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/CloneMigration.ts.html |here} to see how to use CloneMigration API.
497
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/CloneMigration.ts.html |here} to see how to use CloneMigration API.
489
498
  */
490
499
  cloneMigration(cloneMigrationRequest) {
491
500
  return __awaiter(this, void 0, void 0, function* () {
@@ -557,7 +566,7 @@ class DatabaseMigrationClient {
557
566
  * @param ConnectionDiagnosticsRequest
558
567
  * @return ConnectionDiagnosticsResponse
559
568
  * @throws OciError when an error occurs
560
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ConnectionDiagnostics.ts.html |here} to see how to use ConnectionDiagnostics API.
569
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ConnectionDiagnostics.ts.html |here} to see how to use ConnectionDiagnostics API.
561
570
  */
562
571
  connectionDiagnostics(connectionDiagnosticsRequest) {
563
572
  return __awaiter(this, void 0, void 0, function* () {
@@ -624,7 +633,7 @@ class DatabaseMigrationClient {
624
633
  * @param CreateConnectionRequest
625
634
  * @return CreateConnectionResponse
626
635
  * @throws OciError when an error occurs
627
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/CreateConnection.ts.html |here} to see how to use CreateConnection API.
636
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/CreateConnection.ts.html |here} to see how to use CreateConnection API.
628
637
  */
629
638
  createConnection(createConnectionRequest) {
630
639
  return __awaiter(this, void 0, void 0, function* () {
@@ -695,7 +704,7 @@ class DatabaseMigrationClient {
695
704
  * @param CreateMigrationRequest
696
705
  * @return CreateMigrationResponse
697
706
  * @throws OciError when an error occurs
698
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/CreateMigration.ts.html |here} to see how to use CreateMigration API.
707
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/CreateMigration.ts.html |here} to see how to use CreateMigration API.
699
708
  */
700
709
  createMigration(createMigrationRequest) {
701
710
  return __awaiter(this, void 0, void 0, function* () {
@@ -764,7 +773,7 @@ class DatabaseMigrationClient {
764
773
  * @param DeleteAgentRequest
765
774
  * @return DeleteAgentResponse
766
775
  * @throws OciError when an error occurs
767
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
776
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
768
777
  */
769
778
  deleteAgent(deleteAgentRequest) {
770
779
  return __awaiter(this, void 0, void 0, function* () {
@@ -825,7 +834,7 @@ class DatabaseMigrationClient {
825
834
  * @param DeleteConnectionRequest
826
835
  * @return DeleteConnectionResponse
827
836
  * @throws OciError when an error occurs
828
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/DeleteConnection.ts.html |here} to see how to use DeleteConnection API.
837
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/DeleteConnection.ts.html |here} to see how to use DeleteConnection API.
829
838
  */
830
839
  deleteConnection(deleteConnectionRequest) {
831
840
  return __awaiter(this, void 0, void 0, function* () {
@@ -886,7 +895,7 @@ class DatabaseMigrationClient {
886
895
  * @param DeleteJobRequest
887
896
  * @return DeleteJobResponse
888
897
  * @throws OciError when an error occurs
889
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/DeleteJob.ts.html |here} to see how to use DeleteJob API.
898
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/DeleteJob.ts.html |here} to see how to use DeleteJob API.
890
899
  */
891
900
  deleteJob(deleteJobRequest) {
892
901
  return __awaiter(this, void 0, void 0, function* () {
@@ -942,7 +951,7 @@ class DatabaseMigrationClient {
942
951
  * @param DeleteMigrationRequest
943
952
  * @return DeleteMigrationResponse
944
953
  * @throws OciError when an error occurs
945
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/DeleteMigration.ts.html |here} to see how to use DeleteMigration API.
954
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/DeleteMigration.ts.html |here} to see how to use DeleteMigration API.
946
955
  */
947
956
  deleteMigration(deleteMigrationRequest) {
948
957
  return __awaiter(this, void 0, void 0, function* () {
@@ -1003,7 +1012,7 @@ class DatabaseMigrationClient {
1003
1012
  * @param EvaluateMigrationRequest
1004
1013
  * @return EvaluateMigrationResponse
1005
1014
  * @throws OciError when an error occurs
1006
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/EvaluateMigration.ts.html |here} to see how to use EvaluateMigration API.
1015
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/EvaluateMigration.ts.html |here} to see how to use EvaluateMigration API.
1007
1016
  */
1008
1017
  evaluateMigration(evaluateMigrationRequest) {
1009
1018
  return __awaiter(this, void 0, void 0, function* () {
@@ -1074,7 +1083,7 @@ class DatabaseMigrationClient {
1074
1083
  * @param GetAdvisorReportRequest
1075
1084
  * @return GetAdvisorReportResponse
1076
1085
  * @throws OciError when an error occurs
1077
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetAdvisorReport.ts.html |here} to see how to use GetAdvisorReport API.
1086
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/GetAdvisorReport.ts.html |here} to see how to use GetAdvisorReport API.
1078
1087
  */
1079
1088
  getAdvisorReport(getAdvisorReportRequest) {
1080
1089
  return __awaiter(this, void 0, void 0, function* () {
@@ -1138,7 +1147,7 @@ class DatabaseMigrationClient {
1138
1147
  * @param GetAgentRequest
1139
1148
  * @return GetAgentResponse
1140
1149
  * @throws OciError when an error occurs
1141
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetAgent.ts.html |here} to see how to use GetAgent API.
1150
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/GetAgent.ts.html |here} to see how to use GetAgent API.
1142
1151
  */
1143
1152
  getAgent(getAgentRequest) {
1144
1153
  return __awaiter(this, void 0, void 0, function* () {
@@ -1202,7 +1211,7 @@ class DatabaseMigrationClient {
1202
1211
  * @param GetConnectionRequest
1203
1212
  * @return GetConnectionResponse
1204
1213
  * @throws OciError when an error occurs
1205
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetConnection.ts.html |here} to see how to use GetConnection API.
1214
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/GetConnection.ts.html |here} to see how to use GetConnection API.
1206
1215
  */
1207
1216
  getConnection(getConnectionRequest) {
1208
1217
  return __awaiter(this, void 0, void 0, function* () {
@@ -1266,7 +1275,7 @@ class DatabaseMigrationClient {
1266
1275
  * @param GetJobRequest
1267
1276
  * @return GetJobResponse
1268
1277
  * @throws OciError when an error occurs
1269
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetJob.ts.html |here} to see how to use GetJob API.
1278
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/GetJob.ts.html |here} to see how to use GetJob API.
1270
1279
  */
1271
1280
  getJob(getJobRequest) {
1272
1281
  return __awaiter(this, void 0, void 0, function* () {
@@ -1330,7 +1339,7 @@ class DatabaseMigrationClient {
1330
1339
  * @param GetJobOutputContentRequest
1331
1340
  * @return GetJobOutputContentResponse
1332
1341
  * @throws OciError when an error occurs
1333
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetJobOutputContent.ts.html |here} to see how to use GetJobOutputContent API.
1342
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/GetJobOutputContent.ts.html |here} to see how to use GetJobOutputContent API.
1334
1343
  */
1335
1344
  getJobOutputContent(getJobOutputContentRequest) {
1336
1345
  return __awaiter(this, void 0, void 0, function* () {
@@ -1388,7 +1397,7 @@ class DatabaseMigrationClient {
1388
1397
  * @param GetMigrationRequest
1389
1398
  * @return GetMigrationResponse
1390
1399
  * @throws OciError when an error occurs
1391
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetMigration.ts.html |here} to see how to use GetMigration API.
1400
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/GetMigration.ts.html |here} to see how to use GetMigration API.
1392
1401
  */
1393
1402
  getMigration(getMigrationRequest) {
1394
1403
  return __awaiter(this, void 0, void 0, function* () {
@@ -1453,7 +1462,7 @@ class DatabaseMigrationClient {
1453
1462
  * @param GetWorkRequestRequest
1454
1463
  * @return GetWorkRequestResponse
1455
1464
  * @throws OciError when an error occurs
1456
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1465
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1457
1466
  */
1458
1467
  getWorkRequest(getWorkRequestRequest) {
1459
1468
  return __awaiter(this, void 0, void 0, function* () {
@@ -1512,7 +1521,7 @@ class DatabaseMigrationClient {
1512
1521
  * @param ListAgentImagesRequest
1513
1522
  * @return ListAgentImagesResponse
1514
1523
  * @throws OciError when an error occurs
1515
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListAgentImages.ts.html |here} to see how to use ListAgentImages API.
1524
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ListAgentImages.ts.html |here} to see how to use ListAgentImages API.
1516
1525
  */
1517
1526
  listAgentImages(listAgentImagesRequest) {
1518
1527
  return __awaiter(this, void 0, void 0, function* () {
@@ -1578,7 +1587,7 @@ class DatabaseMigrationClient {
1578
1587
  * @param ListAgentsRequest
1579
1588
  * @return ListAgentsResponse
1580
1589
  * @throws OciError when an error occurs
1581
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListAgents.ts.html |here} to see how to use ListAgents API.
1590
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ListAgents.ts.html |here} to see how to use ListAgents API.
1582
1591
  */
1583
1592
  listAgents(listAgentsRequest) {
1584
1593
  return __awaiter(this, void 0, void 0, function* () {
@@ -1648,7 +1657,7 @@ class DatabaseMigrationClient {
1648
1657
  * @param ListConnectionsRequest
1649
1658
  * @return ListConnectionsResponse
1650
1659
  * @throws OciError when an error occurs
1651
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListConnections.ts.html |here} to see how to use ListConnections API.
1660
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ListConnections.ts.html |here} to see how to use ListConnections API.
1652
1661
  */
1653
1662
  listConnections(listConnectionsRequest) {
1654
1663
  return __awaiter(this, void 0, void 0, function* () {
@@ -1718,7 +1727,7 @@ class DatabaseMigrationClient {
1718
1727
  * @param ListExcludedObjectsRequest
1719
1728
  * @return ListExcludedObjectsResponse
1720
1729
  * @throws OciError when an error occurs
1721
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListExcludedObjects.ts.html |here} to see how to use ListExcludedObjects API.
1730
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ListExcludedObjects.ts.html |here} to see how to use ListExcludedObjects API.
1722
1731
  */
1723
1732
  listExcludedObjects(listExcludedObjectsRequest) {
1724
1733
  return __awaiter(this, void 0, void 0, function* () {
@@ -1794,7 +1803,7 @@ class DatabaseMigrationClient {
1794
1803
  * @param ListJobOutputsRequest
1795
1804
  * @return ListJobOutputsResponse
1796
1805
  * @throws OciError when an error occurs
1797
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListJobOutputs.ts.html |here} to see how to use ListJobOutputs API.
1806
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ListJobOutputs.ts.html |here} to see how to use ListJobOutputs API.
1798
1807
  */
1799
1808
  listJobOutputs(listJobOutputsRequest) {
1800
1809
  return __awaiter(this, void 0, void 0, function* () {
@@ -1862,7 +1871,7 @@ class DatabaseMigrationClient {
1862
1871
  * @param ListJobsRequest
1863
1872
  * @return ListJobsResponse
1864
1873
  * @throws OciError when an error occurs
1865
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListJobs.ts.html |here} to see how to use ListJobs API.
1874
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ListJobs.ts.html |here} to see how to use ListJobs API.
1866
1875
  */
1867
1876
  listJobs(listJobsRequest) {
1868
1877
  return __awaiter(this, void 0, void 0, function* () {
@@ -1932,7 +1941,7 @@ class DatabaseMigrationClient {
1932
1941
  * @param ListMigrationObjectTypesRequest
1933
1942
  * @return ListMigrationObjectTypesResponse
1934
1943
  * @throws OciError when an error occurs
1935
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListMigrationObjectTypes.ts.html |here} to see how to use ListMigrationObjectTypes API.
1944
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ListMigrationObjectTypes.ts.html |here} to see how to use ListMigrationObjectTypes API.
1936
1945
  */
1937
1946
  listMigrationObjectTypes(listMigrationObjectTypesRequest) {
1938
1947
  return __awaiter(this, void 0, void 0, function* () {
@@ -1999,7 +2008,7 @@ class DatabaseMigrationClient {
1999
2008
  * @param ListMigrationObjectsRequest
2000
2009
  * @return ListMigrationObjectsResponse
2001
2010
  * @throws OciError when an error occurs
2002
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListMigrationObjects.ts.html |here} to see how to use ListMigrationObjects API.
2011
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ListMigrationObjects.ts.html |here} to see how to use ListMigrationObjects API.
2003
2012
  */
2004
2013
  listMigrationObjects(listMigrationObjectsRequest) {
2005
2014
  return __awaiter(this, void 0, void 0, function* () {
@@ -2067,7 +2076,7 @@ class DatabaseMigrationClient {
2067
2076
  * @param ListMigrationsRequest
2068
2077
  * @return ListMigrationsResponse
2069
2078
  * @throws OciError when an error occurs
2070
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListMigrations.ts.html |here} to see how to use ListMigrations API.
2079
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ListMigrations.ts.html |here} to see how to use ListMigrations API.
2071
2080
  */
2072
2081
  listMigrations(listMigrationsRequest) {
2073
2082
  return __awaiter(this, void 0, void 0, function* () {
@@ -2138,7 +2147,7 @@ class DatabaseMigrationClient {
2138
2147
  * @param ListWorkRequestErrorsRequest
2139
2148
  * @return ListWorkRequestErrorsResponse
2140
2149
  * @throws OciError when an error occurs
2141
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2150
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2142
2151
  */
2143
2152
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
2144
2153
  return __awaiter(this, void 0, void 0, function* () {
@@ -2207,7 +2216,7 @@ class DatabaseMigrationClient {
2207
2216
  * @param ListWorkRequestLogsRequest
2208
2217
  * @return ListWorkRequestLogsResponse
2209
2218
  * @throws OciError when an error occurs
2210
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2219
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2211
2220
  */
2212
2221
  listWorkRequestLogs(listWorkRequestLogsRequest) {
2213
2222
  return __awaiter(this, void 0, void 0, function* () {
@@ -2276,7 +2285,7 @@ class DatabaseMigrationClient {
2276
2285
  * @param ListWorkRequestsRequest
2277
2286
  * @return ListWorkRequestsResponse
2278
2287
  * @throws OciError when an error occurs
2279
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2288
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2280
2289
  */
2281
2290
  listWorkRequests(listWorkRequestsRequest) {
2282
2291
  return __awaiter(this, void 0, void 0, function* () {
@@ -2346,7 +2355,7 @@ class DatabaseMigrationClient {
2346
2355
  * @param RemoveMigrationObjectsRequest
2347
2356
  * @return RemoveMigrationObjectsResponse
2348
2357
  * @throws OciError when an error occurs
2349
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/RemoveMigrationObjects.ts.html |here} to see how to use RemoveMigrationObjects API.
2358
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/RemoveMigrationObjects.ts.html |here} to see how to use RemoveMigrationObjects API.
2350
2359
  */
2351
2360
  removeMigrationObjects(removeMigrationObjectsRequest) {
2352
2361
  return __awaiter(this, void 0, void 0, function* () {
@@ -2403,7 +2412,7 @@ class DatabaseMigrationClient {
2403
2412
  * @param ResumeJobRequest
2404
2413
  * @return ResumeJobResponse
2405
2414
  * @throws OciError when an error occurs
2406
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ResumeJob.ts.html |here} to see how to use ResumeJob API.
2415
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/ResumeJob.ts.html |here} to see how to use ResumeJob API.
2407
2416
  */
2408
2417
  resumeJob(resumeJobRequest) {
2409
2418
  return __awaiter(this, void 0, void 0, function* () {
@@ -2470,7 +2479,7 @@ class DatabaseMigrationClient {
2470
2479
  * @param RetrieveSupportedPhasesRequest
2471
2480
  * @return RetrieveSupportedPhasesResponse
2472
2481
  * @throws OciError when an error occurs
2473
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/RetrieveSupportedPhases.ts.html |here} to see how to use RetrieveSupportedPhases API.
2482
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/RetrieveSupportedPhases.ts.html |here} to see how to use RetrieveSupportedPhases API.
2474
2483
  */
2475
2484
  retrieveSupportedPhases(retrieveSupportedPhasesRequest) {
2476
2485
  return __awaiter(this, void 0, void 0, function* () {
@@ -2529,7 +2538,7 @@ class DatabaseMigrationClient {
2529
2538
  * @param StartMigrationRequest
2530
2539
  * @return StartMigrationResponse
2531
2540
  * @throws OciError when an error occurs
2532
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/StartMigration.ts.html |here} to see how to use StartMigration API.
2541
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/StartMigration.ts.html |here} to see how to use StartMigration API.
2533
2542
  */
2534
2543
  startMigration(startMigrationRequest) {
2535
2544
  return __awaiter(this, void 0, void 0, function* () {
@@ -2601,7 +2610,7 @@ class DatabaseMigrationClient {
2601
2610
  * @param UpdateAgentRequest
2602
2611
  * @return UpdateAgentResponse
2603
2612
  * @throws OciError when an error occurs
2604
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
2613
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
2605
2614
  */
2606
2615
  updateAgent(updateAgentRequest) {
2607
2616
  return __awaiter(this, void 0, void 0, function* () {
@@ -2668,7 +2677,7 @@ class DatabaseMigrationClient {
2668
2677
  * @param UpdateConnectionRequest
2669
2678
  * @return UpdateConnectionResponse
2670
2679
  * @throws OciError when an error occurs
2671
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/UpdateConnection.ts.html |here} to see how to use UpdateConnection API.
2680
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/UpdateConnection.ts.html |here} to see how to use UpdateConnection API.
2672
2681
  */
2673
2682
  updateConnection(updateConnectionRequest) {
2674
2683
  return __awaiter(this, void 0, void 0, function* () {
@@ -2730,7 +2739,7 @@ class DatabaseMigrationClient {
2730
2739
  * @param UpdateJobRequest
2731
2740
  * @return UpdateJobResponse
2732
2741
  * @throws OciError when an error occurs
2733
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/UpdateJob.ts.html |here} to see how to use UpdateJob API.
2742
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/UpdateJob.ts.html |here} to see how to use UpdateJob API.
2734
2743
  */
2735
2744
  updateJob(updateJobRequest) {
2736
2745
  return __awaiter(this, void 0, void 0, function* () {
@@ -2796,7 +2805,7 @@ class DatabaseMigrationClient {
2796
2805
  * @param UpdateMigrationRequest
2797
2806
  * @return UpdateMigrationResponse
2798
2807
  * @throws OciError when an error occurs
2799
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/UpdateMigration.ts.html |here} to see how to use UpdateMigration API.
2808
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/databasemigration/UpdateMigration.ts.html |here} to see how to use UpdateMigration API.
2800
2809
  */
2801
2810
  updateMigration(updateMigrationRequest) {
2802
2811
  return __awaiter(this, void 0, void 0, function* () {