oci-cloudbridge 2.84.0 → 2.85.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 (62) hide show
  1. package/lib/client.d.ts +74 -58
  2. package/lib/client.js +82 -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
@@ -193,13 +193,19 @@ class CommonClient {
193
193
  this._circuitBreaker.shutdown();
194
194
  }
195
195
  }
196
+ /**
197
+ * Close the client once it is no longer needed
198
+ */
199
+ close() {
200
+ this.shutdownCircuitBreaker();
201
+ }
196
202
  /**
197
203
  * Cancels the work request with the given ID.
198
204
  * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
199
205
  * @param CancelWorkRequestRequest
200
206
  * @return CancelWorkRequestResponse
201
207
  * @throws OciError when an error occurs
202
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
208
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
203
209
  */
204
210
  cancelWorkRequest(cancelWorkRequestRequest) {
205
211
  return __awaiter(this, void 0, void 0, function* () {
@@ -254,7 +260,7 @@ class CommonClient {
254
260
  * @param GetWorkRequestRequest
255
261
  * @return GetWorkRequestResponse
256
262
  * @throws OciError when an error occurs
257
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
263
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
258
264
  */
259
265
  getWorkRequest(getWorkRequestRequest) {
260
266
  return __awaiter(this, void 0, void 0, function* () {
@@ -323,7 +329,7 @@ class CommonClient {
323
329
  * @param ListWorkRequestErrorsRequest
324
330
  * @return ListWorkRequestErrorsResponse
325
331
  * @throws OciError when an error occurs
326
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
332
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
327
333
  */
328
334
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
329
335
  return __awaiter(this, void 0, void 0, function* () {
@@ -392,7 +398,7 @@ class CommonClient {
392
398
  * @param ListWorkRequestLogsRequest
393
399
  * @return ListWorkRequestLogsResponse
394
400
  * @throws OciError when an error occurs
395
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
401
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
396
402
  */
397
403
  listWorkRequestLogs(listWorkRequestLogsRequest) {
398
404
  return __awaiter(this, void 0, void 0, function* () {
@@ -461,7 +467,7 @@ class CommonClient {
461
467
  * @param ListWorkRequestsRequest
462
468
  * @return ListWorkRequestsResponse
463
469
  * @throws OciError when an error occurs
464
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
470
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
465
471
  */
466
472
  listWorkRequests(listWorkRequestsRequest) {
467
473
  return __awaiter(this, void 0, void 0, function* () {
@@ -670,13 +676,19 @@ class DiscoveryClient {
670
676
  this._circuitBreaker.shutdown();
671
677
  }
672
678
  }
679
+ /**
680
+ * Close the client once it is no longer needed
681
+ */
682
+ close() {
683
+ this.shutdownCircuitBreaker();
684
+ }
673
685
  /**
674
686
  * Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource.
675
687
  * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
676
688
  * @param ChangeAssetSourceCompartmentRequest
677
689
  * @return ChangeAssetSourceCompartmentResponse
678
690
  * @throws OciError when an error occurs
679
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ChangeAssetSourceCompartment.ts.html |here} to see how to use ChangeAssetSourceCompartment API.
691
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ChangeAssetSourceCompartment.ts.html |here} to see how to use ChangeAssetSourceCompartment API.
680
692
  */
681
693
  changeAssetSourceCompartment(changeAssetSourceCompartmentRequest) {
682
694
  return __awaiter(this, void 0, void 0, function* () {
@@ -733,7 +745,7 @@ class DiscoveryClient {
733
745
  * @param ChangeDiscoveryScheduleCompartmentRequest
734
746
  * @return ChangeDiscoveryScheduleCompartmentResponse
735
747
  * @throws OciError when an error occurs
736
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ChangeDiscoveryScheduleCompartment.ts.html |here} to see how to use ChangeDiscoveryScheduleCompartment API.
748
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ChangeDiscoveryScheduleCompartment.ts.html |here} to see how to use ChangeDiscoveryScheduleCompartment API.
737
749
  */
738
750
  changeDiscoveryScheduleCompartment(changeDiscoveryScheduleCompartmentRequest) {
739
751
  return __awaiter(this, void 0, void 0, function* () {
@@ -791,7 +803,7 @@ class DiscoveryClient {
791
803
  * @param CreateAssetSourceRequest
792
804
  * @return CreateAssetSourceResponse
793
805
  * @throws OciError when an error occurs
794
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/CreateAssetSource.ts.html |here} to see how to use CreateAssetSource API.
806
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/CreateAssetSource.ts.html |here} to see how to use CreateAssetSource API.
795
807
  */
796
808
  createAssetSource(createAssetSourceRequest) {
797
809
  return __awaiter(this, void 0, void 0, function* () {
@@ -864,7 +876,7 @@ class DiscoveryClient {
864
876
  * @param CreateDiscoveryScheduleRequest
865
877
  * @return CreateDiscoveryScheduleResponse
866
878
  * @throws OciError when an error occurs
867
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/CreateDiscoverySchedule.ts.html |here} to see how to use CreateDiscoverySchedule API.
879
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/CreateDiscoverySchedule.ts.html |here} to see how to use CreateDiscoverySchedule API.
868
880
  */
869
881
  createDiscoverySchedule(createDiscoveryScheduleRequest) {
870
882
  return __awaiter(this, void 0, void 0, function* () {
@@ -927,7 +939,7 @@ class DiscoveryClient {
927
939
  * @param DeleteAssetSourceRequest
928
940
  * @return DeleteAssetSourceResponse
929
941
  * @throws OciError when an error occurs
930
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/DeleteAssetSource.ts.html |here} to see how to use DeleteAssetSource API.
942
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/DeleteAssetSource.ts.html |here} to see how to use DeleteAssetSource API.
931
943
  */
932
944
  deleteAssetSource(deleteAssetSourceRequest) {
933
945
  return __awaiter(this, void 0, void 0, function* () {
@@ -987,7 +999,7 @@ class DiscoveryClient {
987
999
  * @param DeleteDiscoveryScheduleRequest
988
1000
  * @return DeleteDiscoveryScheduleResponse
989
1001
  * @throws OciError when an error occurs
990
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/DeleteDiscoverySchedule.ts.html |here} to see how to use DeleteDiscoverySchedule API.
1002
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/DeleteDiscoverySchedule.ts.html |here} to see how to use DeleteDiscoverySchedule API.
991
1003
  */
992
1004
  deleteDiscoverySchedule(deleteDiscoveryScheduleRequest) {
993
1005
  return __awaiter(this, void 0, void 0, function* () {
@@ -1042,7 +1054,7 @@ class DiscoveryClient {
1042
1054
  * @param GetAssetSourceRequest
1043
1055
  * @return GetAssetSourceResponse
1044
1056
  * @throws OciError when an error occurs
1045
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/GetAssetSource.ts.html |here} to see how to use GetAssetSource API.
1057
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/GetAssetSource.ts.html |here} to see how to use GetAssetSource API.
1046
1058
  */
1047
1059
  getAssetSource(getAssetSourceRequest) {
1048
1060
  return __awaiter(this, void 0, void 0, function* () {
@@ -1105,7 +1117,7 @@ class DiscoveryClient {
1105
1117
  * @param GetDiscoveryScheduleRequest
1106
1118
  * @return GetDiscoveryScheduleResponse
1107
1119
  * @throws OciError when an error occurs
1108
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/GetDiscoverySchedule.ts.html |here} to see how to use GetDiscoverySchedule API.
1120
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/GetDiscoverySchedule.ts.html |here} to see how to use GetDiscoverySchedule API.
1109
1121
  */
1110
1122
  getDiscoverySchedule(getDiscoveryScheduleRequest) {
1111
1123
  return __awaiter(this, void 0, void 0, function* () {
@@ -1168,7 +1180,7 @@ class DiscoveryClient {
1168
1180
  * @param ListAssetSourceConnectionsRequest
1169
1181
  * @return ListAssetSourceConnectionsResponse
1170
1182
  * @throws OciError when an error occurs
1171
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ListAssetSourceConnections.ts.html |here} to see how to use ListAssetSourceConnections API.
1183
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ListAssetSourceConnections.ts.html |here} to see how to use ListAssetSourceConnections API.
1172
1184
  */
1173
1185
  listAssetSourceConnections(listAssetSourceConnectionsRequest) {
1174
1186
  return __awaiter(this, void 0, void 0, function* () {
@@ -1235,7 +1247,7 @@ class DiscoveryClient {
1235
1247
  * @param ListAssetSourcesRequest
1236
1248
  * @return ListAssetSourcesResponse
1237
1249
  * @throws OciError when an error occurs
1238
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ListAssetSources.ts.html |here} to see how to use ListAssetSources API.
1250
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ListAssetSources.ts.html |here} to see how to use ListAssetSources API.
1239
1251
  */
1240
1252
  listAssetSources(listAssetSourcesRequest) {
1241
1253
  return __awaiter(this, void 0, void 0, function* () {
@@ -1305,7 +1317,7 @@ class DiscoveryClient {
1305
1317
  * @param ListDiscoverySchedulesRequest
1306
1318
  * @return ListDiscoverySchedulesResponse
1307
1319
  * @throws OciError when an error occurs
1308
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ListDiscoverySchedules.ts.html |here} to see how to use ListDiscoverySchedules API.
1320
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ListDiscoverySchedules.ts.html |here} to see how to use ListDiscoverySchedules API.
1309
1321
  */
1310
1322
  listDiscoverySchedules(listDiscoverySchedulesRequest) {
1311
1323
  return __awaiter(this, void 0, void 0, function* () {
@@ -1375,7 +1387,7 @@ class DiscoveryClient {
1375
1387
  * @param RefreshAssetSourceRequest
1376
1388
  * @return RefreshAssetSourceResponse
1377
1389
  * @throws OciError when an error occurs
1378
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/RefreshAssetSource.ts.html |here} to see how to use RefreshAssetSource API.
1390
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/RefreshAssetSource.ts.html |here} to see how to use RefreshAssetSource API.
1379
1391
  */
1380
1392
  refreshAssetSource(refreshAssetSourceRequest) {
1381
1393
  return __awaiter(this, void 0, void 0, function* () {
@@ -1435,7 +1447,7 @@ class DiscoveryClient {
1435
1447
  * @param UpdateAssetSourceRequest
1436
1448
  * @return UpdateAssetSourceResponse
1437
1449
  * @throws OciError when an error occurs
1438
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/UpdateAssetSource.ts.html |here} to see how to use UpdateAssetSource API.
1450
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/UpdateAssetSource.ts.html |here} to see how to use UpdateAssetSource API.
1439
1451
  */
1440
1452
  updateAssetSource(updateAssetSourceRequest) {
1441
1453
  return __awaiter(this, void 0, void 0, function* () {
@@ -1496,7 +1508,7 @@ class DiscoveryClient {
1496
1508
  * @param UpdateDiscoveryScheduleRequest
1497
1509
  * @return UpdateDiscoveryScheduleResponse
1498
1510
  * @throws OciError when an error occurs
1499
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/UpdateDiscoverySchedule.ts.html |here} to see how to use UpdateDiscoverySchedule API.
1511
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/UpdateDiscoverySchedule.ts.html |here} to see how to use UpdateDiscoverySchedule API.
1500
1512
  */
1501
1513
  updateDiscoverySchedule(updateDiscoveryScheduleRequest) {
1502
1514
  return __awaiter(this, void 0, void 0, function* () {
@@ -1700,6 +1712,12 @@ class InventoryClient {
1700
1712
  this._circuitBreaker.shutdown();
1701
1713
  }
1702
1714
  }
1715
+ /**
1716
+ * Close the client once it is no longer needed
1717
+ */
1718
+ close() {
1719
+ this.shutdownCircuitBreaker();
1720
+ }
1703
1721
  /**
1704
1722
  * Returns an aggregation of assets. Aggregation groups are sorted by groupBy property.
1705
1723
  * Default sort order is ascending, but can be overridden by the sortOrder parameter.
@@ -1708,7 +1726,7 @@ class InventoryClient {
1708
1726
  * @param AnalyzeAssetsRequest
1709
1727
  * @return AnalyzeAssetsResponse
1710
1728
  * @throws OciError when an error occurs
1711
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/AnalyzeAssets.ts.html |here} to see how to use AnalyzeAssets API.
1729
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/AnalyzeAssets.ts.html |here} to see how to use AnalyzeAssets API.
1712
1730
  */
1713
1731
  analyzeAssets(analyzeAssetsRequest) {
1714
1732
  return __awaiter(this, void 0, void 0, function* () {
@@ -1781,7 +1799,7 @@ class InventoryClient {
1781
1799
  * @param ChangeAssetCompartmentRequest
1782
1800
  * @return ChangeAssetCompartmentResponse
1783
1801
  * @throws OciError when an error occurs
1784
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ChangeAssetCompartment.ts.html |here} to see how to use ChangeAssetCompartment API.
1802
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ChangeAssetCompartment.ts.html |here} to see how to use ChangeAssetCompartment API.
1785
1803
  */
1786
1804
  changeAssetCompartment(changeAssetCompartmentRequest) {
1787
1805
  return __awaiter(this, void 0, void 0, function* () {
@@ -1838,7 +1856,7 @@ class InventoryClient {
1838
1856
  * @param ChangeAssetTagsRequest
1839
1857
  * @return ChangeAssetTagsResponse
1840
1858
  * @throws OciError when an error occurs
1841
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ChangeAssetTags.ts.html |here} to see how to use ChangeAssetTags API.
1859
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ChangeAssetTags.ts.html |here} to see how to use ChangeAssetTags API.
1842
1860
  */
1843
1861
  changeAssetTags(changeAssetTagsRequest) {
1844
1862
  return __awaiter(this, void 0, void 0, function* () {
@@ -1904,7 +1922,7 @@ class InventoryClient {
1904
1922
  * @param CreateAssetRequest
1905
1923
  * @return CreateAssetResponse
1906
1924
  * @throws OciError when an error occurs
1907
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/CreateAsset.ts.html |here} to see how to use CreateAsset API.
1925
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/CreateAsset.ts.html |here} to see how to use CreateAsset API.
1908
1926
  */
1909
1927
  createAsset(createAssetRequest) {
1910
1928
  return __awaiter(this, void 0, void 0, function* () {
@@ -1967,7 +1985,7 @@ class InventoryClient {
1967
1985
  * @param CreateInventoryRequest
1968
1986
  * @return CreateInventoryResponse
1969
1987
  * @throws OciError when an error occurs
1970
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/CreateInventory.ts.html |here} to see how to use CreateInventory API.
1988
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/CreateInventory.ts.html |here} to see how to use CreateInventory API.
1971
1989
  */
1972
1990
  createInventory(createInventoryRequest) {
1973
1991
  return __awaiter(this, void 0, void 0, function* () {
@@ -2026,7 +2044,7 @@ class InventoryClient {
2026
2044
  * @param DeleteAssetRequest
2027
2045
  * @return DeleteAssetResponse
2028
2046
  * @throws OciError when an error occurs
2029
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/DeleteAsset.ts.html |here} to see how to use DeleteAsset API.
2047
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/DeleteAsset.ts.html |here} to see how to use DeleteAsset API.
2030
2048
  */
2031
2049
  deleteAsset(deleteAssetRequest) {
2032
2050
  return __awaiter(this, void 0, void 0, function* () {
@@ -2081,7 +2099,7 @@ class InventoryClient {
2081
2099
  * @param DeleteInventoryRequest
2082
2100
  * @return DeleteInventoryResponse
2083
2101
  * @throws OciError when an error occurs
2084
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/DeleteInventory.ts.html |here} to see how to use DeleteInventory API.
2102
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/DeleteInventory.ts.html |here} to see how to use DeleteInventory API.
2085
2103
  */
2086
2104
  deleteInventory(deleteInventoryRequest) {
2087
2105
  return __awaiter(this, void 0, void 0, function* () {
@@ -2141,7 +2159,7 @@ class InventoryClient {
2141
2159
  * @param GetAssetRequest
2142
2160
  * @return GetAssetResponse
2143
2161
  * @throws OciError when an error occurs
2144
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/GetAsset.ts.html |here} to see how to use GetAsset API.
2162
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/GetAsset.ts.html |here} to see how to use GetAsset API.
2145
2163
  */
2146
2164
  getAsset(getAssetRequest) {
2147
2165
  return __awaiter(this, void 0, void 0, function* () {
@@ -2204,7 +2222,7 @@ class InventoryClient {
2204
2222
  * @param GetInventoryRequest
2205
2223
  * @return GetInventoryResponse
2206
2224
  * @throws OciError when an error occurs
2207
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/GetInventory.ts.html |here} to see how to use GetInventory API.
2225
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/GetInventory.ts.html |here} to see how to use GetInventory API.
2208
2226
  */
2209
2227
  getInventory(getInventoryRequest) {
2210
2228
  return __awaiter(this, void 0, void 0, function* () {
@@ -2272,7 +2290,7 @@ class InventoryClient {
2272
2290
  * @param ImportInventoryRequest
2273
2291
  * @return ImportInventoryResponse
2274
2292
  * @throws OciError when an error occurs
2275
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ImportInventory.ts.html |here} to see how to use ImportInventory API.
2293
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ImportInventory.ts.html |here} to see how to use ImportInventory API.
2276
2294
  */
2277
2295
  importInventory(importInventoryRequest) {
2278
2296
  return __awaiter(this, void 0, void 0, function* () {
@@ -2334,7 +2352,7 @@ class InventoryClient {
2334
2352
  * @param ListAssetsRequest
2335
2353
  * @return ListAssetsResponse
2336
2354
  * @throws OciError when an error occurs
2337
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ListAssets.ts.html |here} to see how to use ListAssets API.
2355
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ListAssets.ts.html |here} to see how to use ListAssets API.
2338
2356
  */
2339
2357
  listAssets(listAssetsRequest) {
2340
2358
  return __awaiter(this, void 0, void 0, function* () {
@@ -2408,7 +2426,7 @@ class InventoryClient {
2408
2426
  * @param ListHistoricalMetricsRequest
2409
2427
  * @return ListHistoricalMetricsResponse
2410
2428
  * @throws OciError when an error occurs
2411
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ListHistoricalMetrics.ts.html |here} to see how to use ListHistoricalMetrics API.
2429
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ListHistoricalMetrics.ts.html |here} to see how to use ListHistoricalMetrics API.
2412
2430
  */
2413
2431
  listHistoricalMetrics(listHistoricalMetricsRequest) {
2414
2432
  return __awaiter(this, void 0, void 0, function* () {
@@ -2477,7 +2495,7 @@ class InventoryClient {
2477
2495
  * @param ListInventoriesRequest
2478
2496
  * @return ListInventoriesResponse
2479
2497
  * @throws OciError when an error occurs
2480
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ListInventories.ts.html |here} to see how to use ListInventories API.
2498
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ListInventories.ts.html |here} to see how to use ListInventories API.
2481
2499
  */
2482
2500
  listInventories(listInventoriesRequest) {
2483
2501
  return __awaiter(this, void 0, void 0, function* () {
@@ -2545,7 +2563,7 @@ class InventoryClient {
2545
2563
  * @param SubmitHistoricalMetricsRequest
2546
2564
  * @return SubmitHistoricalMetricsResponse
2547
2565
  * @throws OciError when an error occurs
2548
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/SubmitHistoricalMetrics.ts.html |here} to see how to use SubmitHistoricalMetrics API.
2566
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/SubmitHistoricalMetrics.ts.html |here} to see how to use SubmitHistoricalMetrics API.
2549
2567
  */
2550
2568
  submitHistoricalMetrics(submitHistoricalMetricsRequest) {
2551
2569
  return __awaiter(this, void 0, void 0, function* () {
@@ -2610,7 +2628,7 @@ class InventoryClient {
2610
2628
  * @param UpdateAssetRequest
2611
2629
  * @return UpdateAssetResponse
2612
2630
  * @throws OciError when an error occurs
2613
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/UpdateAsset.ts.html |here} to see how to use UpdateAsset API.
2631
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/UpdateAsset.ts.html |here} to see how to use UpdateAsset API.
2614
2632
  */
2615
2633
  updateAsset(updateAssetRequest) {
2616
2634
  return __awaiter(this, void 0, void 0, function* () {
@@ -2675,7 +2693,7 @@ class InventoryClient {
2675
2693
  * @param UpdateInventoryRequest
2676
2694
  * @return UpdateInventoryResponse
2677
2695
  * @throws OciError when an error occurs
2678
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/UpdateInventory.ts.html |here} to see how to use UpdateInventory API.
2696
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/UpdateInventory.ts.html |here} to see how to use UpdateInventory API.
2679
2697
  */
2680
2698
  updateInventory(updateInventoryRequest) {
2681
2699
  return __awaiter(this, void 0, void 0, function* () {
@@ -2879,13 +2897,19 @@ class OcbAgentSvcClient {
2879
2897
  this._circuitBreaker.shutdown();
2880
2898
  }
2881
2899
  }
2900
+ /**
2901
+ * Close the client once it is no longer needed
2902
+ */
2903
+ close() {
2904
+ this.shutdownCircuitBreaker();
2905
+ }
2882
2906
  /**
2883
2907
  * Add a dependency to the environment. When provided, If-Match is checked against ETag values of the resource.
2884
2908
  * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2885
2909
  * @param AddAgentDependencyRequest
2886
2910
  * @return AddAgentDependencyResponse
2887
2911
  * @throws OciError when an error occurs
2888
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/AddAgentDependency.ts.html |here} to see how to use AddAgentDependency API.
2912
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/AddAgentDependency.ts.html |here} to see how to use AddAgentDependency API.
2889
2913
  */
2890
2914
  addAgentDependency(addAgentDependencyRequest) {
2891
2915
  return __awaiter(this, void 0, void 0, function* () {
@@ -2951,7 +2975,7 @@ class OcbAgentSvcClient {
2951
2975
  * @param ChangeAgentCompartmentRequest
2952
2976
  * @return ChangeAgentCompartmentResponse
2953
2977
  * @throws OciError when an error occurs
2954
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
2978
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
2955
2979
  */
2956
2980
  changeAgentCompartment(changeAgentCompartmentRequest) {
2957
2981
  return __awaiter(this, void 0, void 0, function* () {
@@ -3013,7 +3037,7 @@ class OcbAgentSvcClient {
3013
3037
  * @param ChangeAgentDependencyCompartmentRequest
3014
3038
  * @return ChangeAgentDependencyCompartmentResponse
3015
3039
  * @throws OciError when an error occurs
3016
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ChangeAgentDependencyCompartment.ts.html |here} to see how to use ChangeAgentDependencyCompartment API.
3040
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ChangeAgentDependencyCompartment.ts.html |here} to see how to use ChangeAgentDependencyCompartment API.
3017
3041
  */
3018
3042
  changeAgentDependencyCompartment(changeAgentDependencyCompartmentRequest) {
3019
3043
  return __awaiter(this, void 0, void 0, function* () {
@@ -3070,7 +3094,7 @@ class OcbAgentSvcClient {
3070
3094
  * @param ChangeEnvironmentCompartmentRequest
3071
3095
  * @return ChangeEnvironmentCompartmentResponse
3072
3096
  * @throws OciError when an error occurs
3073
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ChangeEnvironmentCompartment.ts.html |here} to see how to use ChangeEnvironmentCompartment API.
3097
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ChangeEnvironmentCompartment.ts.html |here} to see how to use ChangeEnvironmentCompartment API.
3074
3098
  */
3075
3099
  changeEnvironmentCompartment(changeEnvironmentCompartmentRequest) {
3076
3100
  return __awaiter(this, void 0, void 0, function* () {
@@ -3133,7 +3157,7 @@ class OcbAgentSvcClient {
3133
3157
  * @param CreateAgentRequest
3134
3158
  * @return CreateAgentResponse
3135
3159
  * @throws OciError when an error occurs
3136
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/CreateAgent.ts.html |here} to see how to use CreateAgent API.
3160
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/CreateAgent.ts.html |here} to see how to use CreateAgent API.
3137
3161
  */
3138
3162
  createAgent(createAgentRequest) {
3139
3163
  return __awaiter(this, void 0, void 0, function* () {
@@ -3197,7 +3221,7 @@ class OcbAgentSvcClient {
3197
3221
  * @param CreateAgentDependencyRequest
3198
3222
  * @return CreateAgentDependencyResponse
3199
3223
  * @throws OciError when an error occurs
3200
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/CreateAgentDependency.ts.html |here} to see how to use CreateAgentDependency API.
3224
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/CreateAgentDependency.ts.html |here} to see how to use CreateAgentDependency API.
3201
3225
  */
3202
3226
  createAgentDependency(createAgentDependencyRequest) {
3203
3227
  return __awaiter(this, void 0, void 0, function* () {
@@ -3266,7 +3290,7 @@ class OcbAgentSvcClient {
3266
3290
  * @param CreateEnvironmentRequest
3267
3291
  * @return CreateEnvironmentResponse
3268
3292
  * @throws OciError when an error occurs
3269
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/CreateEnvironment.ts.html |here} to see how to use CreateEnvironment API.
3293
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/CreateEnvironment.ts.html |here} to see how to use CreateEnvironment API.
3270
3294
  */
3271
3295
  createEnvironment(createEnvironmentRequest) {
3272
3296
  return __awaiter(this, void 0, void 0, function* () {
@@ -3329,7 +3353,7 @@ class OcbAgentSvcClient {
3329
3353
  * @param DeleteAgentRequest
3330
3354
  * @return DeleteAgentResponse
3331
3355
  * @throws OciError when an error occurs
3332
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
3356
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
3333
3357
  */
3334
3358
  deleteAgent(deleteAgentRequest) {
3335
3359
  return __awaiter(this, void 0, void 0, function* () {
@@ -3385,7 +3409,7 @@ class OcbAgentSvcClient {
3385
3409
  * @param DeleteAgentDependencyRequest
3386
3410
  * @return DeleteAgentDependencyResponse
3387
3411
  * @throws OciError when an error occurs
3388
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/DeleteAgentDependency.ts.html |here} to see how to use DeleteAgentDependency API.
3412
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/DeleteAgentDependency.ts.html |here} to see how to use DeleteAgentDependency API.
3389
3413
  */
3390
3414
  deleteAgentDependency(deleteAgentDependencyRequest) {
3391
3415
  return __awaiter(this, void 0, void 0, function* () {
@@ -3440,7 +3464,7 @@ class OcbAgentSvcClient {
3440
3464
  * @param DeleteEnvironmentRequest
3441
3465
  * @return DeleteEnvironmentResponse
3442
3466
  * @throws OciError when an error occurs
3443
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/DeleteEnvironment.ts.html |here} to see how to use DeleteEnvironment API.
3467
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/DeleteEnvironment.ts.html |here} to see how to use DeleteEnvironment API.
3444
3468
  */
3445
3469
  deleteEnvironment(deleteEnvironmentRequest) {
3446
3470
  return __awaiter(this, void 0, void 0, function* () {
@@ -3495,7 +3519,7 @@ class OcbAgentSvcClient {
3495
3519
  * @param GetAgentRequest
3496
3520
  * @return GetAgentResponse
3497
3521
  * @throws OciError when an error occurs
3498
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/GetAgent.ts.html |here} to see how to use GetAgent API.
3522
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/GetAgent.ts.html |here} to see how to use GetAgent API.
3499
3523
  */
3500
3524
  getAgent(getAgentRequest) {
3501
3525
  return __awaiter(this, void 0, void 0, function* () {
@@ -3558,7 +3582,7 @@ class OcbAgentSvcClient {
3558
3582
  * @param GetAgentDependencyRequest
3559
3583
  * @return GetAgentDependencyResponse
3560
3584
  * @throws OciError when an error occurs
3561
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/GetAgentDependency.ts.html |here} to see how to use GetAgentDependency API.
3585
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/GetAgentDependency.ts.html |here} to see how to use GetAgentDependency API.
3562
3586
  */
3563
3587
  getAgentDependency(getAgentDependencyRequest) {
3564
3588
  return __awaiter(this, void 0, void 0, function* () {
@@ -3621,7 +3645,7 @@ class OcbAgentSvcClient {
3621
3645
  * @param GetEnvironmentRequest
3622
3646
  * @return GetEnvironmentResponse
3623
3647
  * @throws OciError when an error occurs
3624
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/GetEnvironment.ts.html |here} to see how to use GetEnvironment API.
3648
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/GetEnvironment.ts.html |here} to see how to use GetEnvironment API.
3625
3649
  */
3626
3650
  getEnvironment(getEnvironmentRequest) {
3627
3651
  return __awaiter(this, void 0, void 0, function* () {
@@ -3684,7 +3708,7 @@ class OcbAgentSvcClient {
3684
3708
  * @param GetPluginRequest
3685
3709
  * @return GetPluginResponse
3686
3710
  * @throws OciError when an error occurs
3687
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/GetPlugin.ts.html |here} to see how to use GetPlugin API.
3711
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/GetPlugin.ts.html |here} to see how to use GetPlugin API.
3688
3712
  */
3689
3713
  getPlugin(getPluginRequest) {
3690
3714
  return __awaiter(this, void 0, void 0, function* () {
@@ -3749,7 +3773,7 @@ class OcbAgentSvcClient {
3749
3773
  * @param ListAgentDependenciesRequest
3750
3774
  * @return ListAgentDependenciesResponse
3751
3775
  * @throws OciError when an error occurs
3752
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ListAgentDependencies.ts.html |here} to see how to use ListAgentDependencies API.
3776
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ListAgentDependencies.ts.html |here} to see how to use ListAgentDependencies API.
3753
3777
  */
3754
3778
  listAgentDependencies(listAgentDependenciesRequest) {
3755
3779
  return __awaiter(this, void 0, void 0, function* () {
@@ -3821,7 +3845,7 @@ class OcbAgentSvcClient {
3821
3845
  * @param ListAgentsRequest
3822
3846
  * @return ListAgentsResponse
3823
3847
  * @throws OciError when an error occurs
3824
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ListAgents.ts.html |here} to see how to use ListAgents API.
3848
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ListAgents.ts.html |here} to see how to use ListAgents API.
3825
3849
  */
3826
3850
  listAgents(listAgentsRequest) {
3827
3851
  return __awaiter(this, void 0, void 0, function* () {
@@ -3893,7 +3917,7 @@ class OcbAgentSvcClient {
3893
3917
  * @param ListApplianceImagesRequest
3894
3918
  * @return ListApplianceImagesResponse
3895
3919
  * @throws OciError when an error occurs
3896
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ListApplianceImages.ts.html |here} to see how to use ListApplianceImages API.
3920
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ListApplianceImages.ts.html |here} to see how to use ListApplianceImages API.
3897
3921
  */
3898
3922
  listApplianceImages(listApplianceImagesRequest) {
3899
3923
  return __awaiter(this, void 0, void 0, function* () {
@@ -3962,7 +3986,7 @@ class OcbAgentSvcClient {
3962
3986
  * @param ListEnvironmentsRequest
3963
3987
  * @return ListEnvironmentsResponse
3964
3988
  * @throws OciError when an error occurs
3965
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/ListEnvironments.ts.html |here} to see how to use ListEnvironments API.
3989
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/ListEnvironments.ts.html |here} to see how to use ListEnvironments API.
3966
3990
  */
3967
3991
  listEnvironments(listEnvironmentsRequest) {
3968
3992
  return __awaiter(this, void 0, void 0, function* () {
@@ -4032,7 +4056,7 @@ class OcbAgentSvcClient {
4032
4056
  * @param RemoveAgentDependencyRequest
4033
4057
  * @return RemoveAgentDependencyResponse
4034
4058
  * @throws OciError when an error occurs
4035
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/RemoveAgentDependency.ts.html |here} to see how to use RemoveAgentDependency API.
4059
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/RemoveAgentDependency.ts.html |here} to see how to use RemoveAgentDependency API.
4036
4060
  */
4037
4061
  removeAgentDependency(removeAgentDependencyRequest) {
4038
4062
  return __awaiter(this, void 0, void 0, function* () {
@@ -4098,7 +4122,7 @@ class OcbAgentSvcClient {
4098
4122
  * @param UpdateAgentRequest
4099
4123
  * @return UpdateAgentResponse
4100
4124
  * @throws OciError when an error occurs
4101
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
4125
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
4102
4126
  */
4103
4127
  updateAgent(updateAgentRequest) {
4104
4128
  return __awaiter(this, void 0, void 0, function* () {
@@ -4164,7 +4188,7 @@ class OcbAgentSvcClient {
4164
4188
  * @param UpdateAgentDependencyRequest
4165
4189
  * @return UpdateAgentDependencyResponse
4166
4190
  * @throws OciError when an error occurs
4167
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/UpdateAgentDependency.ts.html |here} to see how to use UpdateAgentDependency API.
4191
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/UpdateAgentDependency.ts.html |here} to see how to use UpdateAgentDependency API.
4168
4192
  */
4169
4193
  updateAgentDependency(updateAgentDependencyRequest) {
4170
4194
  return __awaiter(this, void 0, void 0, function* () {
@@ -4226,7 +4250,7 @@ class OcbAgentSvcClient {
4226
4250
  * @param UpdateEnvironmentRequest
4227
4251
  * @return UpdateEnvironmentResponse
4228
4252
  * @throws OciError when an error occurs
4229
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/UpdateEnvironment.ts.html |here} to see how to use UpdateEnvironment API.
4253
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/UpdateEnvironment.ts.html |here} to see how to use UpdateEnvironment API.
4230
4254
  */
4231
4255
  updateEnvironment(updateEnvironmentRequest) {
4232
4256
  return __awaiter(this, void 0, void 0, function* () {
@@ -4292,7 +4316,7 @@ class OcbAgentSvcClient {
4292
4316
  * @param UpdatePluginRequest
4293
4317
  * @return UpdatePluginResponse
4294
4318
  * @throws OciError when an error occurs
4295
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/cloudbridge/UpdatePlugin.ts.html |here} to see how to use UpdatePlugin API.
4319
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/cloudbridge/UpdatePlugin.ts.html |here} to see how to use UpdatePlugin API.
4296
4320
  */
4297
4321
  updatePlugin(updatePluginRequest) {
4298
4322
  return __awaiter(this, void 0, void 0, function* () {