oci-cloudbridge 2.77.0 → 2.77.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/lib/client.d.ts +80 -62
  2. package/lib/client.js +91 -58
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/add-agent-dependency-request.d.ts +1 -1
  5. package/lib/request/analyze-assets-request.d.ts +1 -1
  6. package/lib/request/cancel-work-request-request.d.ts +1 -1
  7. package/lib/request/change-agent-compartment-request.d.ts +1 -1
  8. package/lib/request/change-agent-dependency-compartment-request.d.ts +1 -1
  9. package/lib/request/change-asset-compartment-request.d.ts +1 -1
  10. package/lib/request/change-asset-source-compartment-request.d.ts +1 -1
  11. package/lib/request/change-asset-tags-request.d.ts +1 -1
  12. package/lib/request/change-discovery-schedule-compartment-request.d.ts +1 -1
  13. package/lib/request/change-environment-compartment-request.d.ts +1 -1
  14. package/lib/request/create-agent-dependency-request.d.ts +1 -1
  15. package/lib/request/create-agent-request.d.ts +1 -1
  16. package/lib/request/create-asset-request.d.ts +1 -1
  17. package/lib/request/create-asset-source-request.d.ts +1 -1
  18. package/lib/request/create-discovery-schedule-request.d.ts +1 -1
  19. package/lib/request/create-environment-request.d.ts +1 -1
  20. package/lib/request/create-inventory-request.d.ts +1 -1
  21. package/lib/request/delete-agent-dependency-request.d.ts +1 -1
  22. package/lib/request/delete-agent-request.d.ts +1 -1
  23. package/lib/request/delete-asset-request.d.ts +1 -1
  24. package/lib/request/delete-asset-source-request.d.ts +1 -1
  25. package/lib/request/delete-discovery-schedule-request.d.ts +1 -1
  26. package/lib/request/delete-environment-request.d.ts +1 -1
  27. package/lib/request/delete-inventory-request.d.ts +1 -1
  28. package/lib/request/get-agent-dependency-request.d.ts +1 -1
  29. package/lib/request/get-agent-request.d.ts +1 -1
  30. package/lib/request/get-asset-request.d.ts +1 -1
  31. package/lib/request/get-asset-source-request.d.ts +1 -1
  32. package/lib/request/get-discovery-schedule-request.d.ts +1 -1
  33. package/lib/request/get-environment-request.d.ts +1 -1
  34. package/lib/request/get-inventory-request.d.ts +1 -1
  35. package/lib/request/get-plugin-request.d.ts +1 -1
  36. package/lib/request/get-work-request-request.d.ts +1 -1
  37. package/lib/request/import-inventory-request.d.ts +1 -1
  38. package/lib/request/list-agent-dependencies-request.d.ts +1 -1
  39. package/lib/request/list-agents-request.d.ts +1 -1
  40. package/lib/request/list-appliance-images-request.d.ts +1 -1
  41. package/lib/request/list-asset-source-connections-request.d.ts +1 -1
  42. package/lib/request/list-asset-sources-request.d.ts +1 -1
  43. package/lib/request/list-assets-request.d.ts +1 -1
  44. package/lib/request/list-discovery-schedules-request.d.ts +1 -1
  45. package/lib/request/list-environments-request.d.ts +1 -1
  46. package/lib/request/list-historical-metrics-request.d.ts +1 -1
  47. package/lib/request/list-inventories-request.d.ts +1 -1
  48. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  49. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  50. package/lib/request/list-work-requests-request.d.ts +1 -1
  51. package/lib/request/refresh-asset-source-request.d.ts +1 -1
  52. package/lib/request/remove-agent-dependency-request.d.ts +1 -1
  53. package/lib/request/submit-historical-metrics-request.d.ts +1 -1
  54. package/lib/request/update-agent-dependency-request.d.ts +1 -1
  55. package/lib/request/update-agent-request.d.ts +1 -1
  56. package/lib/request/update-asset-request.d.ts +1 -1
  57. package/lib/request/update-asset-source-request.d.ts +1 -1
  58. package/lib/request/update-discovery-schedule-request.d.ts +1 -1
  59. package/lib/request/update-environment-request.d.ts +1 -1
  60. package/lib/request/update-inventory-request.d.ts +1 -1
  61. package/lib/request/update-plugin-request.d.ts +1 -1
  62. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -48,6 +48,7 @@ const discovery_waiter_1 = require("./discovery-waiter");
48
48
  const inventory_waiter_1 = require("./inventory-waiter");
49
49
  const ocbagentsvc_waiter_1 = require("./ocbagentsvc-waiter");
50
50
  const oci_common_1 = require("oci-common");
51
+ const Breaker = require("opossum");
51
52
  // ===============================================
52
53
  // This file is autogenerated - Please do not edit
53
54
  // ===============================================
@@ -184,13 +185,21 @@ class CommonClient {
184
185
  }
185
186
  throw Error("Waiters do not exist. Please create waiters.");
186
187
  }
188
+ /**
189
+ * Shutdown the circuit breaker used by the client when it is no longer needed
190
+ */
191
+ shutdownCircuitBreaker() {
192
+ if (this._circuitBreaker) {
193
+ this._circuitBreaker.shutdown();
194
+ }
195
+ }
187
196
  /**
188
197
  * Cancels the work request with the given ID.
189
198
  * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
190
199
  * @param CancelWorkRequestRequest
191
200
  * @return CancelWorkRequestResponse
192
201
  * @throws OciError when an error occurs
193
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
202
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
194
203
  */
195
204
  cancelWorkRequest(cancelWorkRequestRequest) {
196
205
  return __awaiter(this, void 0, void 0, function* () {
@@ -245,7 +254,7 @@ class CommonClient {
245
254
  * @param GetWorkRequestRequest
246
255
  * @return GetWorkRequestResponse
247
256
  * @throws OciError when an error occurs
248
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
257
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
249
258
  */
250
259
  getWorkRequest(getWorkRequestRequest) {
251
260
  return __awaiter(this, void 0, void 0, function* () {
@@ -314,7 +323,7 @@ class CommonClient {
314
323
  * @param ListWorkRequestErrorsRequest
315
324
  * @return ListWorkRequestErrorsResponse
316
325
  * @throws OciError when an error occurs
317
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
326
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
318
327
  */
319
328
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
320
329
  return __awaiter(this, void 0, void 0, function* () {
@@ -383,7 +392,7 @@ class CommonClient {
383
392
  * @param ListWorkRequestLogsRequest
384
393
  * @return ListWorkRequestLogsResponse
385
394
  * @throws OciError when an error occurs
386
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
395
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
387
396
  */
388
397
  listWorkRequestLogs(listWorkRequestLogsRequest) {
389
398
  return __awaiter(this, void 0, void 0, function* () {
@@ -452,7 +461,7 @@ class CommonClient {
452
461
  * @param ListWorkRequestsRequest
453
462
  * @return ListWorkRequestsResponse
454
463
  * @throws OciError when an error occurs
455
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
464
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
456
465
  */
457
466
  listWorkRequests(listWorkRequestsRequest) {
458
467
  return __awaiter(this, void 0, void 0, function* () {
@@ -653,13 +662,21 @@ class DiscoveryClient {
653
662
  }
654
663
  throw Error("Waiters do not exist. Please create waiters.");
655
664
  }
665
+ /**
666
+ * Shutdown the circuit breaker used by the client when it is no longer needed
667
+ */
668
+ shutdownCircuitBreaker() {
669
+ if (this._circuitBreaker) {
670
+ this._circuitBreaker.shutdown();
671
+ }
672
+ }
656
673
  /**
657
674
  * Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource.
658
675
  * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
659
676
  * @param ChangeAssetSourceCompartmentRequest
660
677
  * @return ChangeAssetSourceCompartmentResponse
661
678
  * @throws OciError when an error occurs
662
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ChangeAssetSourceCompartment.ts.html |here} to see how to use ChangeAssetSourceCompartment API.
679
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ChangeAssetSourceCompartment.ts.html |here} to see how to use ChangeAssetSourceCompartment API.
663
680
  */
664
681
  changeAssetSourceCompartment(changeAssetSourceCompartmentRequest) {
665
682
  return __awaiter(this, void 0, void 0, function* () {
@@ -716,7 +733,7 @@ class DiscoveryClient {
716
733
  * @param ChangeDiscoveryScheduleCompartmentRequest
717
734
  * @return ChangeDiscoveryScheduleCompartmentResponse
718
735
  * @throws OciError when an error occurs
719
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ChangeDiscoveryScheduleCompartment.ts.html |here} to see how to use ChangeDiscoveryScheduleCompartment API.
736
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ChangeDiscoveryScheduleCompartment.ts.html |here} to see how to use ChangeDiscoveryScheduleCompartment API.
720
737
  */
721
738
  changeDiscoveryScheduleCompartment(changeDiscoveryScheduleCompartmentRequest) {
722
739
  return __awaiter(this, void 0, void 0, function* () {
@@ -774,7 +791,7 @@ class DiscoveryClient {
774
791
  * @param CreateAssetSourceRequest
775
792
  * @return CreateAssetSourceResponse
776
793
  * @throws OciError when an error occurs
777
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/CreateAssetSource.ts.html |here} to see how to use CreateAssetSource API.
794
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/CreateAssetSource.ts.html |here} to see how to use CreateAssetSource API.
778
795
  */
779
796
  createAssetSource(createAssetSourceRequest) {
780
797
  return __awaiter(this, void 0, void 0, function* () {
@@ -847,7 +864,7 @@ class DiscoveryClient {
847
864
  * @param CreateDiscoveryScheduleRequest
848
865
  * @return CreateDiscoveryScheduleResponse
849
866
  * @throws OciError when an error occurs
850
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/CreateDiscoverySchedule.ts.html |here} to see how to use CreateDiscoverySchedule API.
867
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/CreateDiscoverySchedule.ts.html |here} to see how to use CreateDiscoverySchedule API.
851
868
  */
852
869
  createDiscoverySchedule(createDiscoveryScheduleRequest) {
853
870
  return __awaiter(this, void 0, void 0, function* () {
@@ -910,7 +927,7 @@ class DiscoveryClient {
910
927
  * @param DeleteAssetSourceRequest
911
928
  * @return DeleteAssetSourceResponse
912
929
  * @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/cloudbridge/DeleteAssetSource.ts.html |here} to see how to use DeleteAssetSource API.
930
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/DeleteAssetSource.ts.html |here} to see how to use DeleteAssetSource API.
914
931
  */
915
932
  deleteAssetSource(deleteAssetSourceRequest) {
916
933
  return __awaiter(this, void 0, void 0, function* () {
@@ -970,7 +987,7 @@ class DiscoveryClient {
970
987
  * @param DeleteDiscoveryScheduleRequest
971
988
  * @return DeleteDiscoveryScheduleResponse
972
989
  * @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/cloudbridge/DeleteDiscoverySchedule.ts.html |here} to see how to use DeleteDiscoverySchedule API.
990
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/DeleteDiscoverySchedule.ts.html |here} to see how to use DeleteDiscoverySchedule API.
974
991
  */
975
992
  deleteDiscoverySchedule(deleteDiscoveryScheduleRequest) {
976
993
  return __awaiter(this, void 0, void 0, function* () {
@@ -1025,7 +1042,7 @@ class DiscoveryClient {
1025
1042
  * @param GetAssetSourceRequest
1026
1043
  * @return GetAssetSourceResponse
1027
1044
  * @throws OciError when an error occurs
1028
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/GetAssetSource.ts.html |here} to see how to use GetAssetSource API.
1045
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/GetAssetSource.ts.html |here} to see how to use GetAssetSource API.
1029
1046
  */
1030
1047
  getAssetSource(getAssetSourceRequest) {
1031
1048
  return __awaiter(this, void 0, void 0, function* () {
@@ -1088,7 +1105,7 @@ class DiscoveryClient {
1088
1105
  * @param GetDiscoveryScheduleRequest
1089
1106
  * @return GetDiscoveryScheduleResponse
1090
1107
  * @throws OciError when an error occurs
1091
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/GetDiscoverySchedule.ts.html |here} to see how to use GetDiscoverySchedule API.
1108
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/GetDiscoverySchedule.ts.html |here} to see how to use GetDiscoverySchedule API.
1092
1109
  */
1093
1110
  getDiscoverySchedule(getDiscoveryScheduleRequest) {
1094
1111
  return __awaiter(this, void 0, void 0, function* () {
@@ -1151,7 +1168,7 @@ class DiscoveryClient {
1151
1168
  * @param ListAssetSourceConnectionsRequest
1152
1169
  * @return ListAssetSourceConnectionsResponse
1153
1170
  * @throws OciError when an error occurs
1154
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ListAssetSourceConnections.ts.html |here} to see how to use ListAssetSourceConnections API.
1171
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ListAssetSourceConnections.ts.html |here} to see how to use ListAssetSourceConnections API.
1155
1172
  */
1156
1173
  listAssetSourceConnections(listAssetSourceConnectionsRequest) {
1157
1174
  return __awaiter(this, void 0, void 0, function* () {
@@ -1218,7 +1235,7 @@ class DiscoveryClient {
1218
1235
  * @param ListAssetSourcesRequest
1219
1236
  * @return ListAssetSourcesResponse
1220
1237
  * @throws OciError when an error occurs
1221
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ListAssetSources.ts.html |here} to see how to use ListAssetSources API.
1238
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ListAssetSources.ts.html |here} to see how to use ListAssetSources API.
1222
1239
  */
1223
1240
  listAssetSources(listAssetSourcesRequest) {
1224
1241
  return __awaiter(this, void 0, void 0, function* () {
@@ -1288,7 +1305,7 @@ class DiscoveryClient {
1288
1305
  * @param ListDiscoverySchedulesRequest
1289
1306
  * @return ListDiscoverySchedulesResponse
1290
1307
  * @throws OciError when an error occurs
1291
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ListDiscoverySchedules.ts.html |here} to see how to use ListDiscoverySchedules API.
1308
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ListDiscoverySchedules.ts.html |here} to see how to use ListDiscoverySchedules API.
1292
1309
  */
1293
1310
  listDiscoverySchedules(listDiscoverySchedulesRequest) {
1294
1311
  return __awaiter(this, void 0, void 0, function* () {
@@ -1358,7 +1375,7 @@ class DiscoveryClient {
1358
1375
  * @param RefreshAssetSourceRequest
1359
1376
  * @return RefreshAssetSourceResponse
1360
1377
  * @throws OciError when an error occurs
1361
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/RefreshAssetSource.ts.html |here} to see how to use RefreshAssetSource API.
1378
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/RefreshAssetSource.ts.html |here} to see how to use RefreshAssetSource API.
1362
1379
  */
1363
1380
  refreshAssetSource(refreshAssetSourceRequest) {
1364
1381
  return __awaiter(this, void 0, void 0, function* () {
@@ -1418,7 +1435,7 @@ class DiscoveryClient {
1418
1435
  * @param UpdateAssetSourceRequest
1419
1436
  * @return UpdateAssetSourceResponse
1420
1437
  * @throws OciError when an error occurs
1421
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/UpdateAssetSource.ts.html |here} to see how to use UpdateAssetSource API.
1438
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/UpdateAssetSource.ts.html |here} to see how to use UpdateAssetSource API.
1422
1439
  */
1423
1440
  updateAssetSource(updateAssetSourceRequest) {
1424
1441
  return __awaiter(this, void 0, void 0, function* () {
@@ -1479,7 +1496,7 @@ class DiscoveryClient {
1479
1496
  * @param UpdateDiscoveryScheduleRequest
1480
1497
  * @return UpdateDiscoveryScheduleResponse
1481
1498
  * @throws OciError when an error occurs
1482
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/UpdateDiscoverySchedule.ts.html |here} to see how to use UpdateDiscoverySchedule API.
1499
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/UpdateDiscoverySchedule.ts.html |here} to see how to use UpdateDiscoverySchedule API.
1483
1500
  */
1484
1501
  updateDiscoverySchedule(updateDiscoveryScheduleRequest) {
1485
1502
  return __awaiter(this, void 0, void 0, function* () {
@@ -1675,6 +1692,14 @@ class InventoryClient {
1675
1692
  }
1676
1693
  throw Error("Waiters do not exist. Please create waiters.");
1677
1694
  }
1695
+ /**
1696
+ * Shutdown the circuit breaker used by the client when it is no longer needed
1697
+ */
1698
+ shutdownCircuitBreaker() {
1699
+ if (this._circuitBreaker) {
1700
+ this._circuitBreaker.shutdown();
1701
+ }
1702
+ }
1678
1703
  /**
1679
1704
  * Returns an aggregation of assets. Aggregation groups are sorted by groupBy property.
1680
1705
  * Default sort order is ascending, but can be overridden by the sortOrder parameter.
@@ -1683,7 +1708,7 @@ class InventoryClient {
1683
1708
  * @param AnalyzeAssetsRequest
1684
1709
  * @return AnalyzeAssetsResponse
1685
1710
  * @throws OciError when an error occurs
1686
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/AnalyzeAssets.ts.html |here} to see how to use AnalyzeAssets API.
1711
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/AnalyzeAssets.ts.html |here} to see how to use AnalyzeAssets API.
1687
1712
  */
1688
1713
  analyzeAssets(analyzeAssetsRequest) {
1689
1714
  return __awaiter(this, void 0, void 0, function* () {
@@ -1756,7 +1781,7 @@ class InventoryClient {
1756
1781
  * @param ChangeAssetCompartmentRequest
1757
1782
  * @return ChangeAssetCompartmentResponse
1758
1783
  * @throws OciError when an error occurs
1759
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ChangeAssetCompartment.ts.html |here} to see how to use ChangeAssetCompartment API.
1784
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ChangeAssetCompartment.ts.html |here} to see how to use ChangeAssetCompartment API.
1760
1785
  */
1761
1786
  changeAssetCompartment(changeAssetCompartmentRequest) {
1762
1787
  return __awaiter(this, void 0, void 0, function* () {
@@ -1813,7 +1838,7 @@ class InventoryClient {
1813
1838
  * @param ChangeAssetTagsRequest
1814
1839
  * @return ChangeAssetTagsResponse
1815
1840
  * @throws OciError when an error occurs
1816
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ChangeAssetTags.ts.html |here} to see how to use ChangeAssetTags API.
1841
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ChangeAssetTags.ts.html |here} to see how to use ChangeAssetTags API.
1817
1842
  */
1818
1843
  changeAssetTags(changeAssetTagsRequest) {
1819
1844
  return __awaiter(this, void 0, void 0, function* () {
@@ -1879,7 +1904,7 @@ class InventoryClient {
1879
1904
  * @param CreateAssetRequest
1880
1905
  * @return CreateAssetResponse
1881
1906
  * @throws OciError when an error occurs
1882
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/CreateAsset.ts.html |here} to see how to use CreateAsset API.
1907
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/CreateAsset.ts.html |here} to see how to use CreateAsset API.
1883
1908
  */
1884
1909
  createAsset(createAssetRequest) {
1885
1910
  return __awaiter(this, void 0, void 0, function* () {
@@ -1942,7 +1967,7 @@ class InventoryClient {
1942
1967
  * @param CreateInventoryRequest
1943
1968
  * @return CreateInventoryResponse
1944
1969
  * @throws OciError when an error occurs
1945
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/CreateInventory.ts.html |here} to see how to use CreateInventory API.
1970
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/CreateInventory.ts.html |here} to see how to use CreateInventory API.
1946
1971
  */
1947
1972
  createInventory(createInventoryRequest) {
1948
1973
  return __awaiter(this, void 0, void 0, function* () {
@@ -2001,7 +2026,7 @@ class InventoryClient {
2001
2026
  * @param DeleteAssetRequest
2002
2027
  * @return DeleteAssetResponse
2003
2028
  * @throws OciError when an error occurs
2004
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/DeleteAsset.ts.html |here} to see how to use DeleteAsset API.
2029
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/DeleteAsset.ts.html |here} to see how to use DeleteAsset API.
2005
2030
  */
2006
2031
  deleteAsset(deleteAssetRequest) {
2007
2032
  return __awaiter(this, void 0, void 0, function* () {
@@ -2056,7 +2081,7 @@ class InventoryClient {
2056
2081
  * @param DeleteInventoryRequest
2057
2082
  * @return DeleteInventoryResponse
2058
2083
  * @throws OciError when an error occurs
2059
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/DeleteInventory.ts.html |here} to see how to use DeleteInventory API.
2084
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/DeleteInventory.ts.html |here} to see how to use DeleteInventory API.
2060
2085
  */
2061
2086
  deleteInventory(deleteInventoryRequest) {
2062
2087
  return __awaiter(this, void 0, void 0, function* () {
@@ -2116,7 +2141,7 @@ class InventoryClient {
2116
2141
  * @param GetAssetRequest
2117
2142
  * @return GetAssetResponse
2118
2143
  * @throws OciError when an error occurs
2119
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/GetAsset.ts.html |here} to see how to use GetAsset API.
2144
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/GetAsset.ts.html |here} to see how to use GetAsset API.
2120
2145
  */
2121
2146
  getAsset(getAssetRequest) {
2122
2147
  return __awaiter(this, void 0, void 0, function* () {
@@ -2179,7 +2204,7 @@ class InventoryClient {
2179
2204
  * @param GetInventoryRequest
2180
2205
  * @return GetInventoryResponse
2181
2206
  * @throws OciError when an error occurs
2182
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/GetInventory.ts.html |here} to see how to use GetInventory API.
2207
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/GetInventory.ts.html |here} to see how to use GetInventory API.
2183
2208
  */
2184
2209
  getInventory(getInventoryRequest) {
2185
2210
  return __awaiter(this, void 0, void 0, function* () {
@@ -2247,7 +2272,7 @@ class InventoryClient {
2247
2272
  * @param ImportInventoryRequest
2248
2273
  * @return ImportInventoryResponse
2249
2274
  * @throws OciError when an error occurs
2250
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ImportInventory.ts.html |here} to see how to use ImportInventory API.
2275
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ImportInventory.ts.html |here} to see how to use ImportInventory API.
2251
2276
  */
2252
2277
  importInventory(importInventoryRequest) {
2253
2278
  return __awaiter(this, void 0, void 0, function* () {
@@ -2309,7 +2334,7 @@ class InventoryClient {
2309
2334
  * @param ListAssetsRequest
2310
2335
  * @return ListAssetsResponse
2311
2336
  * @throws OciError when an error occurs
2312
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ListAssets.ts.html |here} to see how to use ListAssets API.
2337
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ListAssets.ts.html |here} to see how to use ListAssets API.
2313
2338
  */
2314
2339
  listAssets(listAssetsRequest) {
2315
2340
  return __awaiter(this, void 0, void 0, function* () {
@@ -2383,7 +2408,7 @@ class InventoryClient {
2383
2408
  * @param ListHistoricalMetricsRequest
2384
2409
  * @return ListHistoricalMetricsResponse
2385
2410
  * @throws OciError when an error occurs
2386
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ListHistoricalMetrics.ts.html |here} to see how to use ListHistoricalMetrics API.
2411
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ListHistoricalMetrics.ts.html |here} to see how to use ListHistoricalMetrics API.
2387
2412
  */
2388
2413
  listHistoricalMetrics(listHistoricalMetricsRequest) {
2389
2414
  return __awaiter(this, void 0, void 0, function* () {
@@ -2452,7 +2477,7 @@ class InventoryClient {
2452
2477
  * @param ListInventoriesRequest
2453
2478
  * @return ListInventoriesResponse
2454
2479
  * @throws OciError when an error occurs
2455
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ListInventories.ts.html |here} to see how to use ListInventories API.
2480
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ListInventories.ts.html |here} to see how to use ListInventories API.
2456
2481
  */
2457
2482
  listInventories(listInventoriesRequest) {
2458
2483
  return __awaiter(this, void 0, void 0, function* () {
@@ -2520,7 +2545,7 @@ class InventoryClient {
2520
2545
  * @param SubmitHistoricalMetricsRequest
2521
2546
  * @return SubmitHistoricalMetricsResponse
2522
2547
  * @throws OciError when an error occurs
2523
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/SubmitHistoricalMetrics.ts.html |here} to see how to use SubmitHistoricalMetrics API.
2548
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/SubmitHistoricalMetrics.ts.html |here} to see how to use SubmitHistoricalMetrics API.
2524
2549
  */
2525
2550
  submitHistoricalMetrics(submitHistoricalMetricsRequest) {
2526
2551
  return __awaiter(this, void 0, void 0, function* () {
@@ -2585,7 +2610,7 @@ class InventoryClient {
2585
2610
  * @param UpdateAssetRequest
2586
2611
  * @return UpdateAssetResponse
2587
2612
  * @throws OciError when an error occurs
2588
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/UpdateAsset.ts.html |here} to see how to use UpdateAsset API.
2613
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/UpdateAsset.ts.html |here} to see how to use UpdateAsset API.
2589
2614
  */
2590
2615
  updateAsset(updateAssetRequest) {
2591
2616
  return __awaiter(this, void 0, void 0, function* () {
@@ -2650,7 +2675,7 @@ class InventoryClient {
2650
2675
  * @param UpdateInventoryRequest
2651
2676
  * @return UpdateInventoryResponse
2652
2677
  * @throws OciError when an error occurs
2653
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/UpdateInventory.ts.html |here} to see how to use UpdateInventory API.
2678
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/UpdateInventory.ts.html |here} to see how to use UpdateInventory API.
2654
2679
  */
2655
2680
  updateInventory(updateInventoryRequest) {
2656
2681
  return __awaiter(this, void 0, void 0, function* () {
@@ -2846,13 +2871,21 @@ class OcbAgentSvcClient {
2846
2871
  }
2847
2872
  throw Error("Waiters do not exist. Please create waiters.");
2848
2873
  }
2874
+ /**
2875
+ * Shutdown the circuit breaker used by the client when it is no longer needed
2876
+ */
2877
+ shutdownCircuitBreaker() {
2878
+ if (this._circuitBreaker) {
2879
+ this._circuitBreaker.shutdown();
2880
+ }
2881
+ }
2849
2882
  /**
2850
2883
  * Add a dependency to the environment. When provided, If-Match is checked against ETag values of the resource.
2851
2884
  * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2852
2885
  * @param AddAgentDependencyRequest
2853
2886
  * @return AddAgentDependencyResponse
2854
2887
  * @throws OciError when an error occurs
2855
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/AddAgentDependency.ts.html |here} to see how to use AddAgentDependency API.
2888
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/AddAgentDependency.ts.html |here} to see how to use AddAgentDependency API.
2856
2889
  */
2857
2890
  addAgentDependency(addAgentDependencyRequest) {
2858
2891
  return __awaiter(this, void 0, void 0, function* () {
@@ -2918,7 +2951,7 @@ class OcbAgentSvcClient {
2918
2951
  * @param ChangeAgentCompartmentRequest
2919
2952
  * @return ChangeAgentCompartmentResponse
2920
2953
  * @throws OciError when an error occurs
2921
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
2954
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
2922
2955
  */
2923
2956
  changeAgentCompartment(changeAgentCompartmentRequest) {
2924
2957
  return __awaiter(this, void 0, void 0, function* () {
@@ -2980,7 +3013,7 @@ class OcbAgentSvcClient {
2980
3013
  * @param ChangeAgentDependencyCompartmentRequest
2981
3014
  * @return ChangeAgentDependencyCompartmentResponse
2982
3015
  * @throws OciError when an error occurs
2983
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ChangeAgentDependencyCompartment.ts.html |here} to see how to use ChangeAgentDependencyCompartment API.
3016
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ChangeAgentDependencyCompartment.ts.html |here} to see how to use ChangeAgentDependencyCompartment API.
2984
3017
  */
2985
3018
  changeAgentDependencyCompartment(changeAgentDependencyCompartmentRequest) {
2986
3019
  return __awaiter(this, void 0, void 0, function* () {
@@ -3037,7 +3070,7 @@ class OcbAgentSvcClient {
3037
3070
  * @param ChangeEnvironmentCompartmentRequest
3038
3071
  * @return ChangeEnvironmentCompartmentResponse
3039
3072
  * @throws OciError when an error occurs
3040
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ChangeEnvironmentCompartment.ts.html |here} to see how to use ChangeEnvironmentCompartment API.
3073
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ChangeEnvironmentCompartment.ts.html |here} to see how to use ChangeEnvironmentCompartment API.
3041
3074
  */
3042
3075
  changeEnvironmentCompartment(changeEnvironmentCompartmentRequest) {
3043
3076
  return __awaiter(this, void 0, void 0, function* () {
@@ -3100,7 +3133,7 @@ class OcbAgentSvcClient {
3100
3133
  * @param CreateAgentRequest
3101
3134
  * @return CreateAgentResponse
3102
3135
  * @throws OciError when an error occurs
3103
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/CreateAgent.ts.html |here} to see how to use CreateAgent API.
3136
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/CreateAgent.ts.html |here} to see how to use CreateAgent API.
3104
3137
  */
3105
3138
  createAgent(createAgentRequest) {
3106
3139
  return __awaiter(this, void 0, void 0, function* () {
@@ -3164,7 +3197,7 @@ class OcbAgentSvcClient {
3164
3197
  * @param CreateAgentDependencyRequest
3165
3198
  * @return CreateAgentDependencyResponse
3166
3199
  * @throws OciError when an error occurs
3167
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/CreateAgentDependency.ts.html |here} to see how to use CreateAgentDependency API.
3200
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/CreateAgentDependency.ts.html |here} to see how to use CreateAgentDependency API.
3168
3201
  */
3169
3202
  createAgentDependency(createAgentDependencyRequest) {
3170
3203
  return __awaiter(this, void 0, void 0, function* () {
@@ -3233,7 +3266,7 @@ class OcbAgentSvcClient {
3233
3266
  * @param CreateEnvironmentRequest
3234
3267
  * @return CreateEnvironmentResponse
3235
3268
  * @throws OciError when an error occurs
3236
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/CreateEnvironment.ts.html |here} to see how to use CreateEnvironment API.
3269
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/CreateEnvironment.ts.html |here} to see how to use CreateEnvironment API.
3237
3270
  */
3238
3271
  createEnvironment(createEnvironmentRequest) {
3239
3272
  return __awaiter(this, void 0, void 0, function* () {
@@ -3296,7 +3329,7 @@ class OcbAgentSvcClient {
3296
3329
  * @param DeleteAgentRequest
3297
3330
  * @return DeleteAgentResponse
3298
3331
  * @throws OciError when an error occurs
3299
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
3332
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
3300
3333
  */
3301
3334
  deleteAgent(deleteAgentRequest) {
3302
3335
  return __awaiter(this, void 0, void 0, function* () {
@@ -3352,7 +3385,7 @@ class OcbAgentSvcClient {
3352
3385
  * @param DeleteAgentDependencyRequest
3353
3386
  * @return DeleteAgentDependencyResponse
3354
3387
  * @throws OciError when an error occurs
3355
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/DeleteAgentDependency.ts.html |here} to see how to use DeleteAgentDependency API.
3388
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/DeleteAgentDependency.ts.html |here} to see how to use DeleteAgentDependency API.
3356
3389
  */
3357
3390
  deleteAgentDependency(deleteAgentDependencyRequest) {
3358
3391
  return __awaiter(this, void 0, void 0, function* () {
@@ -3407,7 +3440,7 @@ class OcbAgentSvcClient {
3407
3440
  * @param DeleteEnvironmentRequest
3408
3441
  * @return DeleteEnvironmentResponse
3409
3442
  * @throws OciError when an error occurs
3410
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/DeleteEnvironment.ts.html |here} to see how to use DeleteEnvironment API.
3443
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/DeleteEnvironment.ts.html |here} to see how to use DeleteEnvironment API.
3411
3444
  */
3412
3445
  deleteEnvironment(deleteEnvironmentRequest) {
3413
3446
  return __awaiter(this, void 0, void 0, function* () {
@@ -3462,7 +3495,7 @@ class OcbAgentSvcClient {
3462
3495
  * @param GetAgentRequest
3463
3496
  * @return GetAgentResponse
3464
3497
  * @throws OciError when an error occurs
3465
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/GetAgent.ts.html |here} to see how to use GetAgent API.
3498
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/GetAgent.ts.html |here} to see how to use GetAgent API.
3466
3499
  */
3467
3500
  getAgent(getAgentRequest) {
3468
3501
  return __awaiter(this, void 0, void 0, function* () {
@@ -3525,7 +3558,7 @@ class OcbAgentSvcClient {
3525
3558
  * @param GetAgentDependencyRequest
3526
3559
  * @return GetAgentDependencyResponse
3527
3560
  * @throws OciError when an error occurs
3528
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/GetAgentDependency.ts.html |here} to see how to use GetAgentDependency API.
3561
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/GetAgentDependency.ts.html |here} to see how to use GetAgentDependency API.
3529
3562
  */
3530
3563
  getAgentDependency(getAgentDependencyRequest) {
3531
3564
  return __awaiter(this, void 0, void 0, function* () {
@@ -3588,7 +3621,7 @@ class OcbAgentSvcClient {
3588
3621
  * @param GetEnvironmentRequest
3589
3622
  * @return GetEnvironmentResponse
3590
3623
  * @throws OciError when an error occurs
3591
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/GetEnvironment.ts.html |here} to see how to use GetEnvironment API.
3624
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/GetEnvironment.ts.html |here} to see how to use GetEnvironment API.
3592
3625
  */
3593
3626
  getEnvironment(getEnvironmentRequest) {
3594
3627
  return __awaiter(this, void 0, void 0, function* () {
@@ -3651,7 +3684,7 @@ class OcbAgentSvcClient {
3651
3684
  * @param GetPluginRequest
3652
3685
  * @return GetPluginResponse
3653
3686
  * @throws OciError when an error occurs
3654
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/GetPlugin.ts.html |here} to see how to use GetPlugin API.
3687
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/GetPlugin.ts.html |here} to see how to use GetPlugin API.
3655
3688
  */
3656
3689
  getPlugin(getPluginRequest) {
3657
3690
  return __awaiter(this, void 0, void 0, function* () {
@@ -3716,7 +3749,7 @@ class OcbAgentSvcClient {
3716
3749
  * @param ListAgentDependenciesRequest
3717
3750
  * @return ListAgentDependenciesResponse
3718
3751
  * @throws OciError when an error occurs
3719
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ListAgentDependencies.ts.html |here} to see how to use ListAgentDependencies API.
3752
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ListAgentDependencies.ts.html |here} to see how to use ListAgentDependencies API.
3720
3753
  */
3721
3754
  listAgentDependencies(listAgentDependenciesRequest) {
3722
3755
  return __awaiter(this, void 0, void 0, function* () {
@@ -3788,7 +3821,7 @@ class OcbAgentSvcClient {
3788
3821
  * @param ListAgentsRequest
3789
3822
  * @return ListAgentsResponse
3790
3823
  * @throws OciError when an error occurs
3791
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ListAgents.ts.html |here} to see how to use ListAgents API.
3824
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ListAgents.ts.html |here} to see how to use ListAgents API.
3792
3825
  */
3793
3826
  listAgents(listAgentsRequest) {
3794
3827
  return __awaiter(this, void 0, void 0, function* () {
@@ -3860,7 +3893,7 @@ class OcbAgentSvcClient {
3860
3893
  * @param ListApplianceImagesRequest
3861
3894
  * @return ListApplianceImagesResponse
3862
3895
  * @throws OciError when an error occurs
3863
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ListApplianceImages.ts.html |here} to see how to use ListApplianceImages API.
3896
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ListApplianceImages.ts.html |here} to see how to use ListApplianceImages API.
3864
3897
  */
3865
3898
  listApplianceImages(listApplianceImagesRequest) {
3866
3899
  return __awaiter(this, void 0, void 0, function* () {
@@ -3929,7 +3962,7 @@ class OcbAgentSvcClient {
3929
3962
  * @param ListEnvironmentsRequest
3930
3963
  * @return ListEnvironmentsResponse
3931
3964
  * @throws OciError when an error occurs
3932
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/ListEnvironments.ts.html |here} to see how to use ListEnvironments API.
3965
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/ListEnvironments.ts.html |here} to see how to use ListEnvironments API.
3933
3966
  */
3934
3967
  listEnvironments(listEnvironmentsRequest) {
3935
3968
  return __awaiter(this, void 0, void 0, function* () {
@@ -3999,7 +4032,7 @@ class OcbAgentSvcClient {
3999
4032
  * @param RemoveAgentDependencyRequest
4000
4033
  * @return RemoveAgentDependencyResponse
4001
4034
  * @throws OciError when an error occurs
4002
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/RemoveAgentDependency.ts.html |here} to see how to use RemoveAgentDependency API.
4035
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/RemoveAgentDependency.ts.html |here} to see how to use RemoveAgentDependency API.
4003
4036
  */
4004
4037
  removeAgentDependency(removeAgentDependencyRequest) {
4005
4038
  return __awaiter(this, void 0, void 0, function* () {
@@ -4065,7 +4098,7 @@ class OcbAgentSvcClient {
4065
4098
  * @param UpdateAgentRequest
4066
4099
  * @return UpdateAgentResponse
4067
4100
  * @throws OciError when an error occurs
4068
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
4101
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
4069
4102
  */
4070
4103
  updateAgent(updateAgentRequest) {
4071
4104
  return __awaiter(this, void 0, void 0, function* () {
@@ -4131,7 +4164,7 @@ class OcbAgentSvcClient {
4131
4164
  * @param UpdateAgentDependencyRequest
4132
4165
  * @return UpdateAgentDependencyResponse
4133
4166
  * @throws OciError when an error occurs
4134
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/UpdateAgentDependency.ts.html |here} to see how to use UpdateAgentDependency API.
4167
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/UpdateAgentDependency.ts.html |here} to see how to use UpdateAgentDependency API.
4135
4168
  */
4136
4169
  updateAgentDependency(updateAgentDependencyRequest) {
4137
4170
  return __awaiter(this, void 0, void 0, function* () {
@@ -4193,7 +4226,7 @@ class OcbAgentSvcClient {
4193
4226
  * @param UpdateEnvironmentRequest
4194
4227
  * @return UpdateEnvironmentResponse
4195
4228
  * @throws OciError when an error occurs
4196
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/UpdateEnvironment.ts.html |here} to see how to use UpdateEnvironment API.
4229
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/UpdateEnvironment.ts.html |here} to see how to use UpdateEnvironment API.
4197
4230
  */
4198
4231
  updateEnvironment(updateEnvironmentRequest) {
4199
4232
  return __awaiter(this, void 0, void 0, function* () {
@@ -4259,7 +4292,7 @@ class OcbAgentSvcClient {
4259
4292
  * @param UpdatePluginRequest
4260
4293
  * @return UpdatePluginResponse
4261
4294
  * @throws OciError when an error occurs
4262
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/cloudbridge/UpdatePlugin.ts.html |here} to see how to use UpdatePlugin API.
4295
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/cloudbridge/UpdatePlugin.ts.html |here} to see how to use UpdatePlugin API.
4263
4296
  */
4264
4297
  updatePlugin(updatePluginRequest) {
4265
4298
  return __awaiter(this, void 0, void 0, function* () {