oci-cloudbridge 2.67.0 → 2.68.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 +62 -58
  2. package/lib/client.js +78 -62
  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
@@ -64,6 +64,7 @@ class CommonClient {
64
64
  this["_defaultHeaders"] = {};
65
65
  this._circuitBreaker = null;
66
66
  this._httpOptions = undefined;
67
+ this._bodyDuplexMode = undefined;
67
68
  this.targetService = "Common";
68
69
  this._regionId = "";
69
70
  this._lastSetRegionOrRegionId = "";
@@ -78,6 +79,9 @@ class CommonClient {
78
79
  this._httpOptions = clientConfiguration.httpOptions
79
80
  ? clientConfiguration.httpOptions
80
81
  : undefined;
82
+ this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
83
+ ? clientConfiguration.bodyDuplexMode
84
+ : undefined;
81
85
  }
82
86
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
83
87
  const specCircuitBreakerEnabled = true;
@@ -88,7 +92,7 @@ class CommonClient {
88
92
  }
89
93
  this._httpClient =
90
94
  params.httpClient ||
91
- new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
95
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
92
96
  if (params.authenticationDetailsProvider &&
93
97
  common.isRegionProvider(params.authenticationDetailsProvider)) {
94
98
  const provider = params.authenticationDetailsProvider;
@@ -182,7 +186,7 @@ class CommonClient {
182
186
  * @param CancelWorkRequestRequest
183
187
  * @return CancelWorkRequestResponse
184
188
  * @throws OciError when an error occurs
185
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
189
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
186
190
  */
187
191
  cancelWorkRequest(cancelWorkRequestRequest) {
188
192
  return __awaiter(this, void 0, void 0, function* () {
@@ -237,7 +241,7 @@ class CommonClient {
237
241
  * @param GetWorkRequestRequest
238
242
  * @return GetWorkRequestResponse
239
243
  * @throws OciError when an error occurs
240
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
244
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
241
245
  */
242
246
  getWorkRequest(getWorkRequestRequest) {
243
247
  return __awaiter(this, void 0, void 0, function* () {
@@ -306,7 +310,7 @@ class CommonClient {
306
310
  * @param ListWorkRequestErrorsRequest
307
311
  * @return ListWorkRequestErrorsResponse
308
312
  * @throws OciError when an error occurs
309
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
313
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
310
314
  */
311
315
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
312
316
  return __awaiter(this, void 0, void 0, function* () {
@@ -375,7 +379,7 @@ class CommonClient {
375
379
  * @param ListWorkRequestLogsRequest
376
380
  * @return ListWorkRequestLogsResponse
377
381
  * @throws OciError when an error occurs
378
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
382
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
379
383
  */
380
384
  listWorkRequestLogs(listWorkRequestLogsRequest) {
381
385
  return __awaiter(this, void 0, void 0, function* () {
@@ -444,7 +448,7 @@ class CommonClient {
444
448
  * @param ListWorkRequestsRequest
445
449
  * @return ListWorkRequestsResponse
446
450
  * @throws OciError when an error occurs
447
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
451
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
448
452
  */
449
453
  listWorkRequests(listWorkRequestsRequest) {
450
454
  return __awaiter(this, void 0, void 0, function* () {
@@ -525,6 +529,7 @@ class DiscoveryClient {
525
529
  this["_defaultHeaders"] = {};
526
530
  this._circuitBreaker = null;
527
531
  this._httpOptions = undefined;
532
+ this._bodyDuplexMode = undefined;
528
533
  this.targetService = "Discovery";
529
534
  this._regionId = "";
530
535
  this._lastSetRegionOrRegionId = "";
@@ -539,6 +544,9 @@ class DiscoveryClient {
539
544
  this._httpOptions = clientConfiguration.httpOptions
540
545
  ? clientConfiguration.httpOptions
541
546
  : undefined;
547
+ this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
548
+ ? clientConfiguration.bodyDuplexMode
549
+ : undefined;
542
550
  }
543
551
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
544
552
  const specCircuitBreakerEnabled = true;
@@ -549,7 +557,7 @@ class DiscoveryClient {
549
557
  }
550
558
  this._httpClient =
551
559
  params.httpClient ||
552
- new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
560
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
553
561
  if (params.authenticationDetailsProvider &&
554
562
  common.isRegionProvider(params.authenticationDetailsProvider)) {
555
563
  const provider = params.authenticationDetailsProvider;
@@ -643,7 +651,7 @@ class DiscoveryClient {
643
651
  * @param ChangeAssetSourceCompartmentRequest
644
652
  * @return ChangeAssetSourceCompartmentResponse
645
653
  * @throws OciError when an error occurs
646
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ChangeAssetSourceCompartment.ts.html |here} to see how to use ChangeAssetSourceCompartment API.
654
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ChangeAssetSourceCompartment.ts.html |here} to see how to use ChangeAssetSourceCompartment API.
647
655
  */
648
656
  changeAssetSourceCompartment(changeAssetSourceCompartmentRequest) {
649
657
  return __awaiter(this, void 0, void 0, function* () {
@@ -700,7 +708,7 @@ class DiscoveryClient {
700
708
  * @param ChangeDiscoveryScheduleCompartmentRequest
701
709
  * @return ChangeDiscoveryScheduleCompartmentResponse
702
710
  * @throws OciError when an error occurs
703
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ChangeDiscoveryScheduleCompartment.ts.html |here} to see how to use ChangeDiscoveryScheduleCompartment API.
711
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ChangeDiscoveryScheduleCompartment.ts.html |here} to see how to use ChangeDiscoveryScheduleCompartment API.
704
712
  */
705
713
  changeDiscoveryScheduleCompartment(changeDiscoveryScheduleCompartmentRequest) {
706
714
  return __awaiter(this, void 0, void 0, function* () {
@@ -758,7 +766,7 @@ class DiscoveryClient {
758
766
  * @param CreateAssetSourceRequest
759
767
  * @return CreateAssetSourceResponse
760
768
  * @throws OciError when an error occurs
761
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/CreateAssetSource.ts.html |here} to see how to use CreateAssetSource API.
769
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/CreateAssetSource.ts.html |here} to see how to use CreateAssetSource API.
762
770
  */
763
771
  createAssetSource(createAssetSourceRequest) {
764
772
  return __awaiter(this, void 0, void 0, function* () {
@@ -831,7 +839,7 @@ class DiscoveryClient {
831
839
  * @param CreateDiscoveryScheduleRequest
832
840
  * @return CreateDiscoveryScheduleResponse
833
841
  * @throws OciError when an error occurs
834
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/CreateDiscoverySchedule.ts.html |here} to see how to use CreateDiscoverySchedule API.
842
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/CreateDiscoverySchedule.ts.html |here} to see how to use CreateDiscoverySchedule API.
835
843
  */
836
844
  createDiscoverySchedule(createDiscoveryScheduleRequest) {
837
845
  return __awaiter(this, void 0, void 0, function* () {
@@ -894,7 +902,7 @@ class DiscoveryClient {
894
902
  * @param DeleteAssetSourceRequest
895
903
  * @return DeleteAssetSourceResponse
896
904
  * @throws OciError when an error occurs
897
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/DeleteAssetSource.ts.html |here} to see how to use DeleteAssetSource API.
905
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/DeleteAssetSource.ts.html |here} to see how to use DeleteAssetSource API.
898
906
  */
899
907
  deleteAssetSource(deleteAssetSourceRequest) {
900
908
  return __awaiter(this, void 0, void 0, function* () {
@@ -954,7 +962,7 @@ class DiscoveryClient {
954
962
  * @param DeleteDiscoveryScheduleRequest
955
963
  * @return DeleteDiscoveryScheduleResponse
956
964
  * @throws OciError when an error occurs
957
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/DeleteDiscoverySchedule.ts.html |here} to see how to use DeleteDiscoverySchedule API.
965
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/DeleteDiscoverySchedule.ts.html |here} to see how to use DeleteDiscoverySchedule API.
958
966
  */
959
967
  deleteDiscoverySchedule(deleteDiscoveryScheduleRequest) {
960
968
  return __awaiter(this, void 0, void 0, function* () {
@@ -1009,7 +1017,7 @@ class DiscoveryClient {
1009
1017
  * @param GetAssetSourceRequest
1010
1018
  * @return GetAssetSourceResponse
1011
1019
  * @throws OciError when an error occurs
1012
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/GetAssetSource.ts.html |here} to see how to use GetAssetSource API.
1020
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/GetAssetSource.ts.html |here} to see how to use GetAssetSource API.
1013
1021
  */
1014
1022
  getAssetSource(getAssetSourceRequest) {
1015
1023
  return __awaiter(this, void 0, void 0, function* () {
@@ -1072,7 +1080,7 @@ class DiscoveryClient {
1072
1080
  * @param GetDiscoveryScheduleRequest
1073
1081
  * @return GetDiscoveryScheduleResponse
1074
1082
  * @throws OciError when an error occurs
1075
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/GetDiscoverySchedule.ts.html |here} to see how to use GetDiscoverySchedule API.
1083
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/GetDiscoverySchedule.ts.html |here} to see how to use GetDiscoverySchedule API.
1076
1084
  */
1077
1085
  getDiscoverySchedule(getDiscoveryScheduleRequest) {
1078
1086
  return __awaiter(this, void 0, void 0, function* () {
@@ -1135,7 +1143,7 @@ class DiscoveryClient {
1135
1143
  * @param ListAssetSourceConnectionsRequest
1136
1144
  * @return ListAssetSourceConnectionsResponse
1137
1145
  * @throws OciError when an error occurs
1138
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ListAssetSourceConnections.ts.html |here} to see how to use ListAssetSourceConnections API.
1146
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ListAssetSourceConnections.ts.html |here} to see how to use ListAssetSourceConnections API.
1139
1147
  */
1140
1148
  listAssetSourceConnections(listAssetSourceConnectionsRequest) {
1141
1149
  return __awaiter(this, void 0, void 0, function* () {
@@ -1202,7 +1210,7 @@ class DiscoveryClient {
1202
1210
  * @param ListAssetSourcesRequest
1203
1211
  * @return ListAssetSourcesResponse
1204
1212
  * @throws OciError when an error occurs
1205
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ListAssetSources.ts.html |here} to see how to use ListAssetSources API.
1213
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ListAssetSources.ts.html |here} to see how to use ListAssetSources API.
1206
1214
  */
1207
1215
  listAssetSources(listAssetSourcesRequest) {
1208
1216
  return __awaiter(this, void 0, void 0, function* () {
@@ -1272,7 +1280,7 @@ class DiscoveryClient {
1272
1280
  * @param ListDiscoverySchedulesRequest
1273
1281
  * @return ListDiscoverySchedulesResponse
1274
1282
  * @throws OciError when an error occurs
1275
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ListDiscoverySchedules.ts.html |here} to see how to use ListDiscoverySchedules API.
1283
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ListDiscoverySchedules.ts.html |here} to see how to use ListDiscoverySchedules API.
1276
1284
  */
1277
1285
  listDiscoverySchedules(listDiscoverySchedulesRequest) {
1278
1286
  return __awaiter(this, void 0, void 0, function* () {
@@ -1342,7 +1350,7 @@ class DiscoveryClient {
1342
1350
  * @param RefreshAssetSourceRequest
1343
1351
  * @return RefreshAssetSourceResponse
1344
1352
  * @throws OciError when an error occurs
1345
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/RefreshAssetSource.ts.html |here} to see how to use RefreshAssetSource API.
1353
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/RefreshAssetSource.ts.html |here} to see how to use RefreshAssetSource API.
1346
1354
  */
1347
1355
  refreshAssetSource(refreshAssetSourceRequest) {
1348
1356
  return __awaiter(this, void 0, void 0, function* () {
@@ -1402,7 +1410,7 @@ class DiscoveryClient {
1402
1410
  * @param UpdateAssetSourceRequest
1403
1411
  * @return UpdateAssetSourceResponse
1404
1412
  * @throws OciError when an error occurs
1405
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/UpdateAssetSource.ts.html |here} to see how to use UpdateAssetSource API.
1413
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/UpdateAssetSource.ts.html |here} to see how to use UpdateAssetSource API.
1406
1414
  */
1407
1415
  updateAssetSource(updateAssetSourceRequest) {
1408
1416
  return __awaiter(this, void 0, void 0, function* () {
@@ -1463,7 +1471,7 @@ class DiscoveryClient {
1463
1471
  * @param UpdateDiscoveryScheduleRequest
1464
1472
  * @return UpdateDiscoveryScheduleResponse
1465
1473
  * @throws OciError when an error occurs
1466
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/UpdateDiscoverySchedule.ts.html |here} to see how to use UpdateDiscoverySchedule API.
1474
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/UpdateDiscoverySchedule.ts.html |here} to see how to use UpdateDiscoverySchedule API.
1467
1475
  */
1468
1476
  updateDiscoverySchedule(updateDiscoveryScheduleRequest) {
1469
1477
  return __awaiter(this, void 0, void 0, function* () {
@@ -1539,6 +1547,7 @@ class InventoryClient {
1539
1547
  this["_defaultHeaders"] = {};
1540
1548
  this._circuitBreaker = null;
1541
1549
  this._httpOptions = undefined;
1550
+ this._bodyDuplexMode = undefined;
1542
1551
  this.targetService = "Inventory";
1543
1552
  this._regionId = "";
1544
1553
  this._lastSetRegionOrRegionId = "";
@@ -1553,6 +1562,9 @@ class InventoryClient {
1553
1562
  this._httpOptions = clientConfiguration.httpOptions
1554
1563
  ? clientConfiguration.httpOptions
1555
1564
  : undefined;
1565
+ this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
1566
+ ? clientConfiguration.bodyDuplexMode
1567
+ : undefined;
1556
1568
  }
1557
1569
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
1558
1570
  const specCircuitBreakerEnabled = true;
@@ -1563,7 +1575,7 @@ class InventoryClient {
1563
1575
  }
1564
1576
  this._httpClient =
1565
1577
  params.httpClient ||
1566
- new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
1578
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
1567
1579
  if (params.authenticationDetailsProvider &&
1568
1580
  common.isRegionProvider(params.authenticationDetailsProvider)) {
1569
1581
  const provider = params.authenticationDetailsProvider;
@@ -1659,7 +1671,7 @@ class InventoryClient {
1659
1671
  * @param AnalyzeAssetsRequest
1660
1672
  * @return AnalyzeAssetsResponse
1661
1673
  * @throws OciError when an error occurs
1662
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/AnalyzeAssets.ts.html |here} to see how to use AnalyzeAssets API.
1674
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/AnalyzeAssets.ts.html |here} to see how to use AnalyzeAssets API.
1663
1675
  */
1664
1676
  analyzeAssets(analyzeAssetsRequest) {
1665
1677
  return __awaiter(this, void 0, void 0, function* () {
@@ -1732,7 +1744,7 @@ class InventoryClient {
1732
1744
  * @param ChangeAssetCompartmentRequest
1733
1745
  * @return ChangeAssetCompartmentResponse
1734
1746
  * @throws OciError when an error occurs
1735
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ChangeAssetCompartment.ts.html |here} to see how to use ChangeAssetCompartment API.
1747
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ChangeAssetCompartment.ts.html |here} to see how to use ChangeAssetCompartment API.
1736
1748
  */
1737
1749
  changeAssetCompartment(changeAssetCompartmentRequest) {
1738
1750
  return __awaiter(this, void 0, void 0, function* () {
@@ -1789,7 +1801,7 @@ class InventoryClient {
1789
1801
  * @param ChangeAssetTagsRequest
1790
1802
  * @return ChangeAssetTagsResponse
1791
1803
  * @throws OciError when an error occurs
1792
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ChangeAssetTags.ts.html |here} to see how to use ChangeAssetTags API.
1804
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ChangeAssetTags.ts.html |here} to see how to use ChangeAssetTags API.
1793
1805
  */
1794
1806
  changeAssetTags(changeAssetTagsRequest) {
1795
1807
  return __awaiter(this, void 0, void 0, function* () {
@@ -1855,7 +1867,7 @@ class InventoryClient {
1855
1867
  * @param CreateAssetRequest
1856
1868
  * @return CreateAssetResponse
1857
1869
  * @throws OciError when an error occurs
1858
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/CreateAsset.ts.html |here} to see how to use CreateAsset API.
1870
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/CreateAsset.ts.html |here} to see how to use CreateAsset API.
1859
1871
  */
1860
1872
  createAsset(createAssetRequest) {
1861
1873
  return __awaiter(this, void 0, void 0, function* () {
@@ -1918,7 +1930,7 @@ class InventoryClient {
1918
1930
  * @param CreateInventoryRequest
1919
1931
  * @return CreateInventoryResponse
1920
1932
  * @throws OciError when an error occurs
1921
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/CreateInventory.ts.html |here} to see how to use CreateInventory API.
1933
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/CreateInventory.ts.html |here} to see how to use CreateInventory API.
1922
1934
  */
1923
1935
  createInventory(createInventoryRequest) {
1924
1936
  return __awaiter(this, void 0, void 0, function* () {
@@ -1977,7 +1989,7 @@ class InventoryClient {
1977
1989
  * @param DeleteAssetRequest
1978
1990
  * @return DeleteAssetResponse
1979
1991
  * @throws OciError when an error occurs
1980
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/DeleteAsset.ts.html |here} to see how to use DeleteAsset API.
1992
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/DeleteAsset.ts.html |here} to see how to use DeleteAsset API.
1981
1993
  */
1982
1994
  deleteAsset(deleteAssetRequest) {
1983
1995
  return __awaiter(this, void 0, void 0, function* () {
@@ -2032,7 +2044,7 @@ class InventoryClient {
2032
2044
  * @param DeleteInventoryRequest
2033
2045
  * @return DeleteInventoryResponse
2034
2046
  * @throws OciError when an error occurs
2035
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/DeleteInventory.ts.html |here} to see how to use DeleteInventory API.
2047
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/DeleteInventory.ts.html |here} to see how to use DeleteInventory API.
2036
2048
  */
2037
2049
  deleteInventory(deleteInventoryRequest) {
2038
2050
  return __awaiter(this, void 0, void 0, function* () {
@@ -2092,7 +2104,7 @@ class InventoryClient {
2092
2104
  * @param GetAssetRequest
2093
2105
  * @return GetAssetResponse
2094
2106
  * @throws OciError when an error occurs
2095
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/GetAsset.ts.html |here} to see how to use GetAsset API.
2107
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/GetAsset.ts.html |here} to see how to use GetAsset API.
2096
2108
  */
2097
2109
  getAsset(getAssetRequest) {
2098
2110
  return __awaiter(this, void 0, void 0, function* () {
@@ -2155,7 +2167,7 @@ class InventoryClient {
2155
2167
  * @param GetInventoryRequest
2156
2168
  * @return GetInventoryResponse
2157
2169
  * @throws OciError when an error occurs
2158
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/GetInventory.ts.html |here} to see how to use GetInventory API.
2170
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/GetInventory.ts.html |here} to see how to use GetInventory API.
2159
2171
  */
2160
2172
  getInventory(getInventoryRequest) {
2161
2173
  return __awaiter(this, void 0, void 0, function* () {
@@ -2223,7 +2235,7 @@ class InventoryClient {
2223
2235
  * @param ImportInventoryRequest
2224
2236
  * @return ImportInventoryResponse
2225
2237
  * @throws OciError when an error occurs
2226
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ImportInventory.ts.html |here} to see how to use ImportInventory API.
2238
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ImportInventory.ts.html |here} to see how to use ImportInventory API.
2227
2239
  */
2228
2240
  importInventory(importInventoryRequest) {
2229
2241
  return __awaiter(this, void 0, void 0, function* () {
@@ -2285,7 +2297,7 @@ class InventoryClient {
2285
2297
  * @param ListAssetsRequest
2286
2298
  * @return ListAssetsResponse
2287
2299
  * @throws OciError when an error occurs
2288
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ListAssets.ts.html |here} to see how to use ListAssets API.
2300
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ListAssets.ts.html |here} to see how to use ListAssets API.
2289
2301
  */
2290
2302
  listAssets(listAssetsRequest) {
2291
2303
  return __awaiter(this, void 0, void 0, function* () {
@@ -2359,7 +2371,7 @@ class InventoryClient {
2359
2371
  * @param ListHistoricalMetricsRequest
2360
2372
  * @return ListHistoricalMetricsResponse
2361
2373
  * @throws OciError when an error occurs
2362
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ListHistoricalMetrics.ts.html |here} to see how to use ListHistoricalMetrics API.
2374
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ListHistoricalMetrics.ts.html |here} to see how to use ListHistoricalMetrics API.
2363
2375
  */
2364
2376
  listHistoricalMetrics(listHistoricalMetricsRequest) {
2365
2377
  return __awaiter(this, void 0, void 0, function* () {
@@ -2428,7 +2440,7 @@ class InventoryClient {
2428
2440
  * @param ListInventoriesRequest
2429
2441
  * @return ListInventoriesResponse
2430
2442
  * @throws OciError when an error occurs
2431
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ListInventories.ts.html |here} to see how to use ListInventories API.
2443
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ListInventories.ts.html |here} to see how to use ListInventories API.
2432
2444
  */
2433
2445
  listInventories(listInventoriesRequest) {
2434
2446
  return __awaiter(this, void 0, void 0, function* () {
@@ -2496,7 +2508,7 @@ class InventoryClient {
2496
2508
  * @param SubmitHistoricalMetricsRequest
2497
2509
  * @return SubmitHistoricalMetricsResponse
2498
2510
  * @throws OciError when an error occurs
2499
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/SubmitHistoricalMetrics.ts.html |here} to see how to use SubmitHistoricalMetrics API.
2511
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/SubmitHistoricalMetrics.ts.html |here} to see how to use SubmitHistoricalMetrics API.
2500
2512
  */
2501
2513
  submitHistoricalMetrics(submitHistoricalMetricsRequest) {
2502
2514
  return __awaiter(this, void 0, void 0, function* () {
@@ -2561,7 +2573,7 @@ class InventoryClient {
2561
2573
  * @param UpdateAssetRequest
2562
2574
  * @return UpdateAssetResponse
2563
2575
  * @throws OciError when an error occurs
2564
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/UpdateAsset.ts.html |here} to see how to use UpdateAsset API.
2576
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/UpdateAsset.ts.html |here} to see how to use UpdateAsset API.
2565
2577
  */
2566
2578
  updateAsset(updateAssetRequest) {
2567
2579
  return __awaiter(this, void 0, void 0, function* () {
@@ -2626,7 +2638,7 @@ class InventoryClient {
2626
2638
  * @param UpdateInventoryRequest
2627
2639
  * @return UpdateInventoryResponse
2628
2640
  * @throws OciError when an error occurs
2629
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/UpdateInventory.ts.html |here} to see how to use UpdateInventory API.
2641
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/UpdateInventory.ts.html |here} to see how to use UpdateInventory API.
2630
2642
  */
2631
2643
  updateInventory(updateInventoryRequest) {
2632
2644
  return __awaiter(this, void 0, void 0, function* () {
@@ -2702,6 +2714,7 @@ class OcbAgentSvcClient {
2702
2714
  this["_defaultHeaders"] = {};
2703
2715
  this._circuitBreaker = null;
2704
2716
  this._httpOptions = undefined;
2717
+ this._bodyDuplexMode = undefined;
2705
2718
  this.targetService = "OcbAgentSvc";
2706
2719
  this._regionId = "";
2707
2720
  this._lastSetRegionOrRegionId = "";
@@ -2716,6 +2729,9 @@ class OcbAgentSvcClient {
2716
2729
  this._httpOptions = clientConfiguration.httpOptions
2717
2730
  ? clientConfiguration.httpOptions
2718
2731
  : undefined;
2732
+ this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
2733
+ ? clientConfiguration.bodyDuplexMode
2734
+ : undefined;
2719
2735
  }
2720
2736
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
2721
2737
  const specCircuitBreakerEnabled = true;
@@ -2726,7 +2742,7 @@ class OcbAgentSvcClient {
2726
2742
  }
2727
2743
  this._httpClient =
2728
2744
  params.httpClient ||
2729
- new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
2745
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
2730
2746
  if (params.authenticationDetailsProvider &&
2731
2747
  common.isRegionProvider(params.authenticationDetailsProvider)) {
2732
2748
  const provider = params.authenticationDetailsProvider;
@@ -2820,7 +2836,7 @@ class OcbAgentSvcClient {
2820
2836
  * @param AddAgentDependencyRequest
2821
2837
  * @return AddAgentDependencyResponse
2822
2838
  * @throws OciError when an error occurs
2823
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/AddAgentDependency.ts.html |here} to see how to use AddAgentDependency API.
2839
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/AddAgentDependency.ts.html |here} to see how to use AddAgentDependency API.
2824
2840
  */
2825
2841
  addAgentDependency(addAgentDependencyRequest) {
2826
2842
  return __awaiter(this, void 0, void 0, function* () {
@@ -2886,7 +2902,7 @@ class OcbAgentSvcClient {
2886
2902
  * @param ChangeAgentCompartmentRequest
2887
2903
  * @return ChangeAgentCompartmentResponse
2888
2904
  * @throws OciError when an error occurs
2889
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
2905
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
2890
2906
  */
2891
2907
  changeAgentCompartment(changeAgentCompartmentRequest) {
2892
2908
  return __awaiter(this, void 0, void 0, function* () {
@@ -2948,7 +2964,7 @@ class OcbAgentSvcClient {
2948
2964
  * @param ChangeAgentDependencyCompartmentRequest
2949
2965
  * @return ChangeAgentDependencyCompartmentResponse
2950
2966
  * @throws OciError when an error occurs
2951
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ChangeAgentDependencyCompartment.ts.html |here} to see how to use ChangeAgentDependencyCompartment API.
2967
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ChangeAgentDependencyCompartment.ts.html |here} to see how to use ChangeAgentDependencyCompartment API.
2952
2968
  */
2953
2969
  changeAgentDependencyCompartment(changeAgentDependencyCompartmentRequest) {
2954
2970
  return __awaiter(this, void 0, void 0, function* () {
@@ -3005,7 +3021,7 @@ class OcbAgentSvcClient {
3005
3021
  * @param ChangeEnvironmentCompartmentRequest
3006
3022
  * @return ChangeEnvironmentCompartmentResponse
3007
3023
  * @throws OciError when an error occurs
3008
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ChangeEnvironmentCompartment.ts.html |here} to see how to use ChangeEnvironmentCompartment API.
3024
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ChangeEnvironmentCompartment.ts.html |here} to see how to use ChangeEnvironmentCompartment API.
3009
3025
  */
3010
3026
  changeEnvironmentCompartment(changeEnvironmentCompartmentRequest) {
3011
3027
  return __awaiter(this, void 0, void 0, function* () {
@@ -3068,7 +3084,7 @@ class OcbAgentSvcClient {
3068
3084
  * @param CreateAgentRequest
3069
3085
  * @return CreateAgentResponse
3070
3086
  * @throws OciError when an error occurs
3071
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/CreateAgent.ts.html |here} to see how to use CreateAgent API.
3087
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/CreateAgent.ts.html |here} to see how to use CreateAgent API.
3072
3088
  */
3073
3089
  createAgent(createAgentRequest) {
3074
3090
  return __awaiter(this, void 0, void 0, function* () {
@@ -3132,7 +3148,7 @@ class OcbAgentSvcClient {
3132
3148
  * @param CreateAgentDependencyRequest
3133
3149
  * @return CreateAgentDependencyResponse
3134
3150
  * @throws OciError when an error occurs
3135
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/CreateAgentDependency.ts.html |here} to see how to use CreateAgentDependency API.
3151
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/CreateAgentDependency.ts.html |here} to see how to use CreateAgentDependency API.
3136
3152
  */
3137
3153
  createAgentDependency(createAgentDependencyRequest) {
3138
3154
  return __awaiter(this, void 0, void 0, function* () {
@@ -3201,7 +3217,7 @@ class OcbAgentSvcClient {
3201
3217
  * @param CreateEnvironmentRequest
3202
3218
  * @return CreateEnvironmentResponse
3203
3219
  * @throws OciError when an error occurs
3204
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/CreateEnvironment.ts.html |here} to see how to use CreateEnvironment API.
3220
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/CreateEnvironment.ts.html |here} to see how to use CreateEnvironment API.
3205
3221
  */
3206
3222
  createEnvironment(createEnvironmentRequest) {
3207
3223
  return __awaiter(this, void 0, void 0, function* () {
@@ -3264,7 +3280,7 @@ class OcbAgentSvcClient {
3264
3280
  * @param DeleteAgentRequest
3265
3281
  * @return DeleteAgentResponse
3266
3282
  * @throws OciError when an error occurs
3267
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
3283
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
3268
3284
  */
3269
3285
  deleteAgent(deleteAgentRequest) {
3270
3286
  return __awaiter(this, void 0, void 0, function* () {
@@ -3320,7 +3336,7 @@ class OcbAgentSvcClient {
3320
3336
  * @param DeleteAgentDependencyRequest
3321
3337
  * @return DeleteAgentDependencyResponse
3322
3338
  * @throws OciError when an error occurs
3323
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/DeleteAgentDependency.ts.html |here} to see how to use DeleteAgentDependency API.
3339
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/DeleteAgentDependency.ts.html |here} to see how to use DeleteAgentDependency API.
3324
3340
  */
3325
3341
  deleteAgentDependency(deleteAgentDependencyRequest) {
3326
3342
  return __awaiter(this, void 0, void 0, function* () {
@@ -3375,7 +3391,7 @@ class OcbAgentSvcClient {
3375
3391
  * @param DeleteEnvironmentRequest
3376
3392
  * @return DeleteEnvironmentResponse
3377
3393
  * @throws OciError when an error occurs
3378
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/DeleteEnvironment.ts.html |here} to see how to use DeleteEnvironment API.
3394
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/DeleteEnvironment.ts.html |here} to see how to use DeleteEnvironment API.
3379
3395
  */
3380
3396
  deleteEnvironment(deleteEnvironmentRequest) {
3381
3397
  return __awaiter(this, void 0, void 0, function* () {
@@ -3430,7 +3446,7 @@ class OcbAgentSvcClient {
3430
3446
  * @param GetAgentRequest
3431
3447
  * @return GetAgentResponse
3432
3448
  * @throws OciError when an error occurs
3433
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/GetAgent.ts.html |here} to see how to use GetAgent API.
3449
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/GetAgent.ts.html |here} to see how to use GetAgent API.
3434
3450
  */
3435
3451
  getAgent(getAgentRequest) {
3436
3452
  return __awaiter(this, void 0, void 0, function* () {
@@ -3493,7 +3509,7 @@ class OcbAgentSvcClient {
3493
3509
  * @param GetAgentDependencyRequest
3494
3510
  * @return GetAgentDependencyResponse
3495
3511
  * @throws OciError when an error occurs
3496
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/GetAgentDependency.ts.html |here} to see how to use GetAgentDependency API.
3512
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/GetAgentDependency.ts.html |here} to see how to use GetAgentDependency API.
3497
3513
  */
3498
3514
  getAgentDependency(getAgentDependencyRequest) {
3499
3515
  return __awaiter(this, void 0, void 0, function* () {
@@ -3556,7 +3572,7 @@ class OcbAgentSvcClient {
3556
3572
  * @param GetEnvironmentRequest
3557
3573
  * @return GetEnvironmentResponse
3558
3574
  * @throws OciError when an error occurs
3559
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/GetEnvironment.ts.html |here} to see how to use GetEnvironment API.
3575
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/GetEnvironment.ts.html |here} to see how to use GetEnvironment API.
3560
3576
  */
3561
3577
  getEnvironment(getEnvironmentRequest) {
3562
3578
  return __awaiter(this, void 0, void 0, function* () {
@@ -3619,7 +3635,7 @@ class OcbAgentSvcClient {
3619
3635
  * @param GetPluginRequest
3620
3636
  * @return GetPluginResponse
3621
3637
  * @throws OciError when an error occurs
3622
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/GetPlugin.ts.html |here} to see how to use GetPlugin API.
3638
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/GetPlugin.ts.html |here} to see how to use GetPlugin API.
3623
3639
  */
3624
3640
  getPlugin(getPluginRequest) {
3625
3641
  return __awaiter(this, void 0, void 0, function* () {
@@ -3684,7 +3700,7 @@ class OcbAgentSvcClient {
3684
3700
  * @param ListAgentDependenciesRequest
3685
3701
  * @return ListAgentDependenciesResponse
3686
3702
  * @throws OciError when an error occurs
3687
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ListAgentDependencies.ts.html |here} to see how to use ListAgentDependencies API.
3703
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ListAgentDependencies.ts.html |here} to see how to use ListAgentDependencies API.
3688
3704
  */
3689
3705
  listAgentDependencies(listAgentDependenciesRequest) {
3690
3706
  return __awaiter(this, void 0, void 0, function* () {
@@ -3756,7 +3772,7 @@ class OcbAgentSvcClient {
3756
3772
  * @param ListAgentsRequest
3757
3773
  * @return ListAgentsResponse
3758
3774
  * @throws OciError when an error occurs
3759
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ListAgents.ts.html |here} to see how to use ListAgents API.
3775
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ListAgents.ts.html |here} to see how to use ListAgents API.
3760
3776
  */
3761
3777
  listAgents(listAgentsRequest) {
3762
3778
  return __awaiter(this, void 0, void 0, function* () {
@@ -3828,7 +3844,7 @@ class OcbAgentSvcClient {
3828
3844
  * @param ListApplianceImagesRequest
3829
3845
  * @return ListApplianceImagesResponse
3830
3846
  * @throws OciError when an error occurs
3831
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ListApplianceImages.ts.html |here} to see how to use ListApplianceImages API.
3847
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ListApplianceImages.ts.html |here} to see how to use ListApplianceImages API.
3832
3848
  */
3833
3849
  listApplianceImages(listApplianceImagesRequest) {
3834
3850
  return __awaiter(this, void 0, void 0, function* () {
@@ -3897,7 +3913,7 @@ class OcbAgentSvcClient {
3897
3913
  * @param ListEnvironmentsRequest
3898
3914
  * @return ListEnvironmentsResponse
3899
3915
  * @throws OciError when an error occurs
3900
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/ListEnvironments.ts.html |here} to see how to use ListEnvironments API.
3916
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/ListEnvironments.ts.html |here} to see how to use ListEnvironments API.
3901
3917
  */
3902
3918
  listEnvironments(listEnvironmentsRequest) {
3903
3919
  return __awaiter(this, void 0, void 0, function* () {
@@ -3967,7 +3983,7 @@ class OcbAgentSvcClient {
3967
3983
  * @param RemoveAgentDependencyRequest
3968
3984
  * @return RemoveAgentDependencyResponse
3969
3985
  * @throws OciError when an error occurs
3970
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/RemoveAgentDependency.ts.html |here} to see how to use RemoveAgentDependency API.
3986
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/RemoveAgentDependency.ts.html |here} to see how to use RemoveAgentDependency API.
3971
3987
  */
3972
3988
  removeAgentDependency(removeAgentDependencyRequest) {
3973
3989
  return __awaiter(this, void 0, void 0, function* () {
@@ -4033,7 +4049,7 @@ class OcbAgentSvcClient {
4033
4049
  * @param UpdateAgentRequest
4034
4050
  * @return UpdateAgentResponse
4035
4051
  * @throws OciError when an error occurs
4036
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
4052
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
4037
4053
  */
4038
4054
  updateAgent(updateAgentRequest) {
4039
4055
  return __awaiter(this, void 0, void 0, function* () {
@@ -4099,7 +4115,7 @@ class OcbAgentSvcClient {
4099
4115
  * @param UpdateAgentDependencyRequest
4100
4116
  * @return UpdateAgentDependencyResponse
4101
4117
  * @throws OciError when an error occurs
4102
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/UpdateAgentDependency.ts.html |here} to see how to use UpdateAgentDependency API.
4118
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/UpdateAgentDependency.ts.html |here} to see how to use UpdateAgentDependency API.
4103
4119
  */
4104
4120
  updateAgentDependency(updateAgentDependencyRequest) {
4105
4121
  return __awaiter(this, void 0, void 0, function* () {
@@ -4161,7 +4177,7 @@ class OcbAgentSvcClient {
4161
4177
  * @param UpdateEnvironmentRequest
4162
4178
  * @return UpdateEnvironmentResponse
4163
4179
  * @throws OciError when an error occurs
4164
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/UpdateEnvironment.ts.html |here} to see how to use UpdateEnvironment API.
4180
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/UpdateEnvironment.ts.html |here} to see how to use UpdateEnvironment API.
4165
4181
  */
4166
4182
  updateEnvironment(updateEnvironmentRequest) {
4167
4183
  return __awaiter(this, void 0, void 0, function* () {
@@ -4227,7 +4243,7 @@ class OcbAgentSvcClient {
4227
4243
  * @param UpdatePluginRequest
4228
4244
  * @return UpdatePluginResponse
4229
4245
  * @throws OciError when an error occurs
4230
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/cloudbridge/UpdatePlugin.ts.html |here} to see how to use UpdatePlugin API.
4246
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/cloudbridge/UpdatePlugin.ts.html |here} to see how to use UpdatePlugin API.
4231
4247
  */
4232
4248
  updatePlugin(updatePluginRequest) {
4233
4249
  return __awaiter(this, void 0, void 0, function* () {