oci-adm 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 (40) hide show
  1. package/lib/client.d.ts +43 -37
  2. package/lib/client.js +45 -36
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/activate-remediation-recipe-request.d.ts +1 -1
  5. package/lib/request/cancel-remediation-run-request.d.ts +1 -1
  6. package/lib/request/cancel-work-request-request.d.ts +1 -1
  7. package/lib/request/change-knowledge-base-compartment-request.d.ts +1 -1
  8. package/lib/request/change-remediation-recipe-compartment-request.d.ts +1 -1
  9. package/lib/request/change-remediation-run-compartment-request.d.ts +1 -1
  10. package/lib/request/change-vulnerability-audit-compartment-request.d.ts +1 -1
  11. package/lib/request/create-knowledge-base-request.d.ts +1 -1
  12. package/lib/request/create-remediation-recipe-request.d.ts +1 -1
  13. package/lib/request/create-remediation-run-request.d.ts +1 -1
  14. package/lib/request/create-vulnerability-audit-request.d.ts +1 -1
  15. package/lib/request/deactivate-remediation-recipe-request.d.ts +1 -1
  16. package/lib/request/delete-knowledge-base-request.d.ts +1 -1
  17. package/lib/request/delete-remediation-recipe-request.d.ts +1 -1
  18. package/lib/request/delete-remediation-run-request.d.ts +1 -1
  19. package/lib/request/delete-vulnerability-audit-request.d.ts +1 -1
  20. package/lib/request/get-knowledge-base-request.d.ts +1 -1
  21. package/lib/request/get-remediation-recipe-request.d.ts +1 -1
  22. package/lib/request/get-remediation-run-request.d.ts +1 -1
  23. package/lib/request/get-stage-request.d.ts +1 -1
  24. package/lib/request/get-vulnerability-audit-request.d.ts +1 -1
  25. package/lib/request/get-work-request-request.d.ts +1 -1
  26. package/lib/request/list-application-dependency-recommendations-request.d.ts +1 -1
  27. package/lib/request/list-application-dependency-vulnerabilities-request.d.ts +1 -1
  28. package/lib/request/list-knowledge-bases-request.d.ts +1 -1
  29. package/lib/request/list-remediation-recipes-request.d.ts +1 -1
  30. package/lib/request/list-remediation-runs-request.d.ts +1 -1
  31. package/lib/request/list-stages-request.d.ts +1 -1
  32. package/lib/request/list-vulnerability-audits-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/update-knowledge-base-request.d.ts +1 -1
  37. package/lib/request/update-remediation-recipe-request.d.ts +1 -1
  38. package/lib/request/update-remediation-run-request.d.ts +1 -1
  39. package/lib/request/update-vulnerability-audit-request.d.ts +1 -1
  40. 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 applicationdependencymanagement_waiter_1 = require("./applicationdependencymanagement-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,13 +182,21 @@ class ApplicationDependencyManagementClient {
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
  * Activates the specified Remediation Recipe.
186
195
  * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
187
196
  * @param ActivateRemediationRecipeRequest
188
197
  * @return ActivateRemediationRecipeResponse
189
198
  * @throws OciError when an error occurs
190
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ActivateRemediationRecipe.ts.html |here} to see how to use ActivateRemediationRecipe API.
199
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ActivateRemediationRecipe.ts.html |here} to see how to use ActivateRemediationRecipe API.
191
200
  */
192
201
  activateRemediationRecipe(activateRemediationRecipeRequest) {
193
202
  return __awaiter(this, void 0, void 0, function* () {
@@ -247,7 +256,7 @@ class ApplicationDependencyManagementClient {
247
256
  * @param CancelRemediationRunRequest
248
257
  * @return CancelRemediationRunResponse
249
258
  * @throws OciError when an error occurs
250
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/CancelRemediationRun.ts.html |here} to see how to use CancelRemediationRun API.
259
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/CancelRemediationRun.ts.html |here} to see how to use CancelRemediationRun API.
251
260
  */
252
261
  cancelRemediationRun(cancelRemediationRunRequest) {
253
262
  return __awaiter(this, void 0, void 0, function* () {
@@ -312,7 +321,7 @@ class ApplicationDependencyManagementClient {
312
321
  * @param CancelWorkRequestRequest
313
322
  * @return CancelWorkRequestResponse
314
323
  * @throws OciError when an error occurs
315
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
324
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
316
325
  */
317
326
  cancelWorkRequest(cancelWorkRequestRequest) {
318
327
  return __awaiter(this, void 0, void 0, function* () {
@@ -367,7 +376,7 @@ class ApplicationDependencyManagementClient {
367
376
  * @param ChangeKnowledgeBaseCompartmentRequest
368
377
  * @return ChangeKnowledgeBaseCompartmentResponse
369
378
  * @throws OciError when an error occurs
370
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ChangeKnowledgeBaseCompartment.ts.html |here} to see how to use ChangeKnowledgeBaseCompartment API.
379
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ChangeKnowledgeBaseCompartment.ts.html |here} to see how to use ChangeKnowledgeBaseCompartment API.
371
380
  */
372
381
  changeKnowledgeBaseCompartment(changeKnowledgeBaseCompartmentRequest) {
373
382
  return __awaiter(this, void 0, void 0, function* () {
@@ -429,7 +438,7 @@ class ApplicationDependencyManagementClient {
429
438
  * @param ChangeRemediationRecipeCompartmentRequest
430
439
  * @return ChangeRemediationRecipeCompartmentResponse
431
440
  * @throws OciError when an error occurs
432
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ChangeRemediationRecipeCompartment.ts.html |here} to see how to use ChangeRemediationRecipeCompartment API.
441
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ChangeRemediationRecipeCompartment.ts.html |here} to see how to use ChangeRemediationRecipeCompartment API.
433
442
  */
434
443
  changeRemediationRecipeCompartment(changeRemediationRecipeCompartmentRequest) {
435
444
  return __awaiter(this, void 0, void 0, function* () {
@@ -491,7 +500,7 @@ class ApplicationDependencyManagementClient {
491
500
  * @param ChangeRemediationRunCompartmentRequest
492
501
  * @return ChangeRemediationRunCompartmentResponse
493
502
  * @throws OciError when an error occurs
494
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ChangeRemediationRunCompartment.ts.html |here} to see how to use ChangeRemediationRunCompartment API.
503
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ChangeRemediationRunCompartment.ts.html |here} to see how to use ChangeRemediationRunCompartment API.
495
504
  */
496
505
  changeRemediationRunCompartment(changeRemediationRunCompartmentRequest) {
497
506
  return __awaiter(this, void 0, void 0, function* () {
@@ -548,7 +557,7 @@ class ApplicationDependencyManagementClient {
548
557
  * @param ChangeVulnerabilityAuditCompartmentRequest
549
558
  * @return ChangeVulnerabilityAuditCompartmentResponse
550
559
  * @throws OciError when an error occurs
551
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ChangeVulnerabilityAuditCompartment.ts.html |here} to see how to use ChangeVulnerabilityAuditCompartment API.
560
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ChangeVulnerabilityAuditCompartment.ts.html |here} to see how to use ChangeVulnerabilityAuditCompartment API.
552
561
  */
553
562
  changeVulnerabilityAuditCompartment(changeVulnerabilityAuditCompartmentRequest) {
554
563
  return __awaiter(this, void 0, void 0, function* () {
@@ -605,7 +614,7 @@ class ApplicationDependencyManagementClient {
605
614
  * @param CreateKnowledgeBaseRequest
606
615
  * @return CreateKnowledgeBaseResponse
607
616
  * @throws OciError when an error occurs
608
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/CreateKnowledgeBase.ts.html |here} to see how to use CreateKnowledgeBase API.
617
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/CreateKnowledgeBase.ts.html |here} to see how to use CreateKnowledgeBase API.
609
618
  */
610
619
  createKnowledgeBase(createKnowledgeBaseRequest) {
611
620
  return __awaiter(this, void 0, void 0, function* () {
@@ -664,7 +673,7 @@ class ApplicationDependencyManagementClient {
664
673
  * @param CreateRemediationRecipeRequest
665
674
  * @return CreateRemediationRecipeResponse
666
675
  * @throws OciError when an error occurs
667
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/CreateRemediationRecipe.ts.html |here} to see how to use CreateRemediationRecipe API.
676
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/CreateRemediationRecipe.ts.html |here} to see how to use CreateRemediationRecipe API.
668
677
  */
669
678
  createRemediationRecipe(createRemediationRecipeRequest) {
670
679
  return __awaiter(this, void 0, void 0, function* () {
@@ -723,7 +732,7 @@ class ApplicationDependencyManagementClient {
723
732
  * @param CreateRemediationRunRequest
724
733
  * @return CreateRemediationRunResponse
725
734
  * @throws OciError when an error occurs
726
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/CreateRemediationRun.ts.html |here} to see how to use CreateRemediationRun API.
735
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/CreateRemediationRun.ts.html |here} to see how to use CreateRemediationRun API.
727
736
  */
728
737
  createRemediationRun(createRemediationRunRequest) {
729
738
  return __awaiter(this, void 0, void 0, function* () {
@@ -786,7 +795,7 @@ class ApplicationDependencyManagementClient {
786
795
  * @param CreateVulnerabilityAuditRequest
787
796
  * @return CreateVulnerabilityAuditResponse
788
797
  * @throws OciError when an error occurs
789
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/CreateVulnerabilityAudit.ts.html |here} to see how to use CreateVulnerabilityAudit API.
798
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/CreateVulnerabilityAudit.ts.html |here} to see how to use CreateVulnerabilityAudit API.
790
799
  */
791
800
  createVulnerabilityAudit(createVulnerabilityAuditRequest) {
792
801
  return __awaiter(this, void 0, void 0, function* () {
@@ -850,7 +859,7 @@ class ApplicationDependencyManagementClient {
850
859
  * @param DeactivateRemediationRecipeRequest
851
860
  * @return DeactivateRemediationRecipeResponse
852
861
  * @throws OciError when an error occurs
853
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/DeactivateRemediationRecipe.ts.html |here} to see how to use DeactivateRemediationRecipe API.
862
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/DeactivateRemediationRecipe.ts.html |here} to see how to use DeactivateRemediationRecipe API.
854
863
  */
855
864
  deactivateRemediationRecipe(deactivateRemediationRecipeRequest) {
856
865
  return __awaiter(this, void 0, void 0, function* () {
@@ -910,7 +919,7 @@ class ApplicationDependencyManagementClient {
910
919
  * @param DeleteKnowledgeBaseRequest
911
920
  * @return DeleteKnowledgeBaseResponse
912
921
  * @throws OciError when an error occurs
913
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/DeleteKnowledgeBase.ts.html |here} to see how to use DeleteKnowledgeBase API.
922
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/DeleteKnowledgeBase.ts.html |here} to see how to use DeleteKnowledgeBase API.
914
923
  */
915
924
  deleteKnowledgeBase(deleteKnowledgeBaseRequest) {
916
925
  return __awaiter(this, void 0, void 0, function* () {
@@ -970,7 +979,7 @@ class ApplicationDependencyManagementClient {
970
979
  * @param DeleteRemediationRecipeRequest
971
980
  * @return DeleteRemediationRecipeResponse
972
981
  * @throws OciError when an error occurs
973
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/DeleteRemediationRecipe.ts.html |here} to see how to use DeleteRemediationRecipe API.
982
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/DeleteRemediationRecipe.ts.html |here} to see how to use DeleteRemediationRecipe API.
974
983
  */
975
984
  deleteRemediationRecipe(deleteRemediationRecipeRequest) {
976
985
  return __awaiter(this, void 0, void 0, function* () {
@@ -1030,7 +1039,7 @@ class ApplicationDependencyManagementClient {
1030
1039
  * @param DeleteRemediationRunRequest
1031
1040
  * @return DeleteRemediationRunResponse
1032
1041
  * @throws OciError when an error occurs
1033
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/DeleteRemediationRun.ts.html |here} to see how to use DeleteRemediationRun API.
1042
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/DeleteRemediationRun.ts.html |here} to see how to use DeleteRemediationRun API.
1034
1043
  */
1035
1044
  deleteRemediationRun(deleteRemediationRunRequest) {
1036
1045
  return __awaiter(this, void 0, void 0, function* () {
@@ -1085,7 +1094,7 @@ class ApplicationDependencyManagementClient {
1085
1094
  * @param DeleteVulnerabilityAuditRequest
1086
1095
  * @return DeleteVulnerabilityAuditResponse
1087
1096
  * @throws OciError when an error occurs
1088
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/DeleteVulnerabilityAudit.ts.html |here} to see how to use DeleteVulnerabilityAudit API.
1097
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/DeleteVulnerabilityAudit.ts.html |here} to see how to use DeleteVulnerabilityAudit API.
1089
1098
  */
1090
1099
  deleteVulnerabilityAudit(deleteVulnerabilityAuditRequest) {
1091
1100
  return __awaiter(this, void 0, void 0, function* () {
@@ -1140,7 +1149,7 @@ class ApplicationDependencyManagementClient {
1140
1149
  * @param GetKnowledgeBaseRequest
1141
1150
  * @return GetKnowledgeBaseResponse
1142
1151
  * @throws OciError when an error occurs
1143
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/GetKnowledgeBase.ts.html |here} to see how to use GetKnowledgeBase API.
1152
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/GetKnowledgeBase.ts.html |here} to see how to use GetKnowledgeBase API.
1144
1153
  */
1145
1154
  getKnowledgeBase(getKnowledgeBaseRequest) {
1146
1155
  return __awaiter(this, void 0, void 0, function* () {
@@ -1203,7 +1212,7 @@ class ApplicationDependencyManagementClient {
1203
1212
  * @param GetRemediationRecipeRequest
1204
1213
  * @return GetRemediationRecipeResponse
1205
1214
  * @throws OciError when an error occurs
1206
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/GetRemediationRecipe.ts.html |here} to see how to use GetRemediationRecipe API.
1215
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/GetRemediationRecipe.ts.html |here} to see how to use GetRemediationRecipe API.
1207
1216
  */
1208
1217
  getRemediationRecipe(getRemediationRecipeRequest) {
1209
1218
  return __awaiter(this, void 0, void 0, function* () {
@@ -1266,7 +1275,7 @@ class ApplicationDependencyManagementClient {
1266
1275
  * @param GetRemediationRunRequest
1267
1276
  * @return GetRemediationRunResponse
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/adm/GetRemediationRun.ts.html |here} to see how to use GetRemediationRun API.
1278
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/GetRemediationRun.ts.html |here} to see how to use GetRemediationRun API.
1270
1279
  */
1271
1280
  getRemediationRun(getRemediationRunRequest) {
1272
1281
  return __awaiter(this, void 0, void 0, function* () {
@@ -1329,7 +1338,7 @@ class ApplicationDependencyManagementClient {
1329
1338
  * @param GetStageRequest
1330
1339
  * @return GetStageResponse
1331
1340
  * @throws OciError when an error occurs
1332
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/GetStage.ts.html |here} to see how to use GetStage API.
1341
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/GetStage.ts.html |here} to see how to use GetStage API.
1333
1342
  */
1334
1343
  getStage(getStageRequest) {
1335
1344
  return __awaiter(this, void 0, void 0, function* () {
@@ -1388,7 +1397,7 @@ class ApplicationDependencyManagementClient {
1388
1397
  * @param GetVulnerabilityAuditRequest
1389
1398
  * @return GetVulnerabilityAuditResponse
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/adm/GetVulnerabilityAudit.ts.html |here} to see how to use GetVulnerabilityAudit API.
1400
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/GetVulnerabilityAudit.ts.html |here} to see how to use GetVulnerabilityAudit API.
1392
1401
  */
1393
1402
  getVulnerabilityAudit(getVulnerabilityAuditRequest) {
1394
1403
  return __awaiter(this, void 0, void 0, function* () {
@@ -1451,7 +1460,7 @@ class ApplicationDependencyManagementClient {
1451
1460
  * @param GetWorkRequestRequest
1452
1461
  * @return GetWorkRequestResponse
1453
1462
  * @throws OciError when an error occurs
1454
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1463
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1455
1464
  */
1456
1465
  getWorkRequest(getWorkRequestRequest) {
1457
1466
  return __awaiter(this, void 0, void 0, function* () {
@@ -1519,7 +1528,7 @@ class ApplicationDependencyManagementClient {
1519
1528
  * @param ListApplicationDependencyRecommendationsRequest
1520
1529
  * @return ListApplicationDependencyRecommendationsResponse
1521
1530
  * @throws OciError when an error occurs
1522
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ListApplicationDependencyRecommendations.ts.html |here} to see how to use ListApplicationDependencyRecommendations API.
1531
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ListApplicationDependencyRecommendations.ts.html |here} to see how to use ListApplicationDependencyRecommendations API.
1523
1532
  */
1524
1533
  listApplicationDependencyRecommendations(listApplicationDependencyRecommendationsRequest) {
1525
1534
  return __awaiter(this, void 0, void 0, function* () {
@@ -1589,7 +1598,7 @@ class ApplicationDependencyManagementClient {
1589
1598
  * @param ListApplicationDependencyVulnerabilitiesRequest
1590
1599
  * @return ListApplicationDependencyVulnerabilitiesResponse
1591
1600
  * @throws OciError when an error occurs
1592
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ListApplicationDependencyVulnerabilities.ts.html |here} to see how to use ListApplicationDependencyVulnerabilities API.
1601
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ListApplicationDependencyVulnerabilities.ts.html |here} to see how to use ListApplicationDependencyVulnerabilities API.
1593
1602
  */
1594
1603
  listApplicationDependencyVulnerabilities(listApplicationDependencyVulnerabilitiesRequest) {
1595
1604
  return __awaiter(this, void 0, void 0, function* () {
@@ -1667,7 +1676,7 @@ class ApplicationDependencyManagementClient {
1667
1676
  * @param ListKnowledgeBasesRequest
1668
1677
  * @return ListKnowledgeBasesResponse
1669
1678
  * @throws OciError when an error occurs
1670
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ListKnowledgeBases.ts.html |here} to see how to use ListKnowledgeBases API.
1679
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ListKnowledgeBases.ts.html |here} to see how to use ListKnowledgeBases API.
1671
1680
  */
1672
1681
  listKnowledgeBases(listKnowledgeBasesRequest) {
1673
1682
  return __awaiter(this, void 0, void 0, function* () {
@@ -1739,7 +1748,7 @@ class ApplicationDependencyManagementClient {
1739
1748
  * @param ListRemediationRecipesRequest
1740
1749
  * @return ListRemediationRecipesResponse
1741
1750
  * @throws OciError when an error occurs
1742
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ListRemediationRecipes.ts.html |here} to see how to use ListRemediationRecipes API.
1751
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ListRemediationRecipes.ts.html |here} to see how to use ListRemediationRecipes API.
1743
1752
  */
1744
1753
  listRemediationRecipes(listRemediationRecipesRequest) {
1745
1754
  return __awaiter(this, void 0, void 0, function* () {
@@ -1811,7 +1820,7 @@ class ApplicationDependencyManagementClient {
1811
1820
  * @param ListRemediationRunsRequest
1812
1821
  * @return ListRemediationRunsResponse
1813
1822
  * @throws OciError when an error occurs
1814
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ListRemediationRuns.ts.html |here} to see how to use ListRemediationRuns API.
1823
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ListRemediationRuns.ts.html |here} to see how to use ListRemediationRuns API.
1815
1824
  */
1816
1825
  listRemediationRuns(listRemediationRunsRequest) {
1817
1826
  return __awaiter(this, void 0, void 0, function* () {
@@ -1882,7 +1891,7 @@ class ApplicationDependencyManagementClient {
1882
1891
  * @param ListStagesRequest
1883
1892
  * @return ListStagesResponse
1884
1893
  * @throws OciError when an error occurs
1885
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ListStages.ts.html |here} to see how to use ListStages API.
1894
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ListStages.ts.html |here} to see how to use ListStages API.
1886
1895
  */
1887
1896
  listStages(listStagesRequest) {
1888
1897
  return __awaiter(this, void 0, void 0, function* () {
@@ -1954,7 +1963,7 @@ class ApplicationDependencyManagementClient {
1954
1963
  * @param ListVulnerabilityAuditsRequest
1955
1964
  * @return ListVulnerabilityAuditsResponse
1956
1965
  * @throws OciError when an error occurs
1957
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ListVulnerabilityAudits.ts.html |here} to see how to use ListVulnerabilityAudits API.
1966
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ListVulnerabilityAudits.ts.html |here} to see how to use ListVulnerabilityAudits API.
1958
1967
  */
1959
1968
  listVulnerabilityAudits(listVulnerabilityAuditsRequest) {
1960
1969
  return __awaiter(this, void 0, void 0, function* () {
@@ -2030,7 +2039,7 @@ class ApplicationDependencyManagementClient {
2030
2039
  * @param ListWorkRequestErrorsRequest
2031
2040
  * @return ListWorkRequestErrorsResponse
2032
2041
  * @throws OciError when an error occurs
2033
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2042
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2034
2043
  */
2035
2044
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
2036
2045
  return __awaiter(this, void 0, void 0, function* () {
@@ -2099,7 +2108,7 @@ class ApplicationDependencyManagementClient {
2099
2108
  * @param ListWorkRequestLogsRequest
2100
2109
  * @return ListWorkRequestLogsResponse
2101
2110
  * @throws OciError when an error occurs
2102
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2111
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2103
2112
  */
2104
2113
  listWorkRequestLogs(listWorkRequestLogsRequest) {
2105
2114
  return __awaiter(this, void 0, void 0, function* () {
@@ -2168,7 +2177,7 @@ class ApplicationDependencyManagementClient {
2168
2177
  * @param ListWorkRequestsRequest
2169
2178
  * @return ListWorkRequestsResponse
2170
2179
  * @throws OciError when an error occurs
2171
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2180
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2172
2181
  */
2173
2182
  listWorkRequests(listWorkRequestsRequest) {
2174
2183
  return __awaiter(this, void 0, void 0, function* () {
@@ -2238,7 +2247,7 @@ class ApplicationDependencyManagementClient {
2238
2247
  * @param UpdateKnowledgeBaseRequest
2239
2248
  * @return UpdateKnowledgeBaseResponse
2240
2249
  * @throws OciError when an error occurs
2241
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/UpdateKnowledgeBase.ts.html |here} to see how to use UpdateKnowledgeBase API.
2250
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/UpdateKnowledgeBase.ts.html |here} to see how to use UpdateKnowledgeBase API.
2242
2251
  */
2243
2252
  updateKnowledgeBase(updateKnowledgeBaseRequest) {
2244
2253
  return __awaiter(this, void 0, void 0, function* () {
@@ -2299,7 +2308,7 @@ class ApplicationDependencyManagementClient {
2299
2308
  * @param UpdateRemediationRecipeRequest
2300
2309
  * @return UpdateRemediationRecipeResponse
2301
2310
  * @throws OciError when an error occurs
2302
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/UpdateRemediationRecipe.ts.html |here} to see how to use UpdateRemediationRecipe API.
2311
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/UpdateRemediationRecipe.ts.html |here} to see how to use UpdateRemediationRecipe API.
2303
2312
  */
2304
2313
  updateRemediationRecipe(updateRemediationRecipeRequest) {
2305
2314
  return __awaiter(this, void 0, void 0, function* () {
@@ -2360,7 +2369,7 @@ class ApplicationDependencyManagementClient {
2360
2369
  * @param UpdateRemediationRunRequest
2361
2370
  * @return UpdateRemediationRunResponse
2362
2371
  * @throws OciError when an error occurs
2363
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/UpdateRemediationRun.ts.html |here} to see how to use UpdateRemediationRun API.
2372
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/UpdateRemediationRun.ts.html |here} to see how to use UpdateRemediationRun API.
2364
2373
  */
2365
2374
  updateRemediationRun(updateRemediationRunRequest) {
2366
2375
  return __awaiter(this, void 0, void 0, function* () {
@@ -2425,7 +2434,7 @@ class ApplicationDependencyManagementClient {
2425
2434
  * @param UpdateVulnerabilityAuditRequest
2426
2435
  * @return UpdateVulnerabilityAuditResponse
2427
2436
  * @throws OciError when an error occurs
2428
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/adm/UpdateVulnerabilityAudit.ts.html |here} to see how to use UpdateVulnerabilityAudit API.
2437
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/adm/UpdateVulnerabilityAudit.ts.html |here} to see how to use UpdateVulnerabilityAudit API.
2429
2438
  */
2430
2439
  updateVulnerabilityAudit(updateVulnerabilityAuditRequest) {
2431
2440
  return __awaiter(this, void 0, void 0, function* () {