oci-mysql 2.67.0 → 2.68.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 (59) hide show
  1. package/lib/client.d.ts +61 -55
  2. package/lib/client.js +85 -61
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/add-analytics-cluster-request.d.ts +1 -1
  5. package/lib/request/add-heat-wave-cluster-request.d.ts +1 -1
  6. package/lib/request/change-backup-compartment-request.d.ts +1 -1
  7. package/lib/request/create-backup-request.d.ts +1 -1
  8. package/lib/request/create-channel-request.d.ts +1 -1
  9. package/lib/request/create-configuration-request.d.ts +1 -1
  10. package/lib/request/create-db-system-request.d.ts +1 -1
  11. package/lib/request/create-replica-request.d.ts +1 -1
  12. package/lib/request/delete-analytics-cluster-request.d.ts +1 -1
  13. package/lib/request/delete-backup-request.d.ts +1 -1
  14. package/lib/request/delete-channel-request.d.ts +1 -1
  15. package/lib/request/delete-configuration-request.d.ts +1 -1
  16. package/lib/request/delete-db-system-request.d.ts +1 -1
  17. package/lib/request/delete-heat-wave-cluster-request.d.ts +1 -1
  18. package/lib/request/delete-replica-request.d.ts +1 -1
  19. package/lib/request/generate-analytics-cluster-memory-estimate-request.d.ts +1 -1
  20. package/lib/request/generate-heat-wave-cluster-memory-estimate-request.d.ts +1 -1
  21. package/lib/request/get-analytics-cluster-memory-estimate-request.d.ts +1 -1
  22. package/lib/request/get-analytics-cluster-request.d.ts +1 -1
  23. package/lib/request/get-backup-request.d.ts +1 -1
  24. package/lib/request/get-channel-request.d.ts +1 -1
  25. package/lib/request/get-configuration-request.d.ts +1 -1
  26. package/lib/request/get-db-system-request.d.ts +1 -1
  27. package/lib/request/get-heat-wave-cluster-memory-estimate-request.d.ts +1 -1
  28. package/lib/request/get-heat-wave-cluster-request.d.ts +1 -1
  29. package/lib/request/get-replica-request.d.ts +1 -1
  30. package/lib/request/get-work-request-request.d.ts +1 -1
  31. package/lib/request/list-backups-request.d.ts +1 -1
  32. package/lib/request/list-channels-request.d.ts +1 -1
  33. package/lib/request/list-configurations-request.d.ts +1 -1
  34. package/lib/request/list-db-systems-request.d.ts +1 -1
  35. package/lib/request/list-replicas-request.d.ts +1 -1
  36. package/lib/request/list-shapes-request.d.ts +1 -1
  37. package/lib/request/list-versions-request.d.ts +1 -1
  38. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  39. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  40. package/lib/request/list-work-requests-request.d.ts +1 -1
  41. package/lib/request/reset-channel-request.d.ts +1 -1
  42. package/lib/request/restart-analytics-cluster-request.d.ts +1 -1
  43. package/lib/request/restart-db-system-request.d.ts +1 -1
  44. package/lib/request/restart-heat-wave-cluster-request.d.ts +1 -1
  45. package/lib/request/resume-channel-request.d.ts +1 -1
  46. package/lib/request/start-analytics-cluster-request.d.ts +1 -1
  47. package/lib/request/start-db-system-request.d.ts +1 -1
  48. package/lib/request/start-heat-wave-cluster-request.d.ts +1 -1
  49. package/lib/request/stop-analytics-cluster-request.d.ts +1 -1
  50. package/lib/request/stop-db-system-request.d.ts +1 -1
  51. package/lib/request/stop-heat-wave-cluster-request.d.ts +1 -1
  52. package/lib/request/update-analytics-cluster-request.d.ts +1 -1
  53. package/lib/request/update-backup-request.d.ts +1 -1
  54. package/lib/request/update-channel-request.d.ts +1 -1
  55. package/lib/request/update-configuration-request.d.ts +1 -1
  56. package/lib/request/update-db-system-request.d.ts +1 -1
  57. package/lib/request/update-heat-wave-cluster-request.d.ts +1 -1
  58. package/lib/request/update-replica-request.d.ts +1 -1
  59. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -67,6 +67,7 @@ class ChannelsClient {
67
67
  this["_defaultHeaders"] = {};
68
68
  this._circuitBreaker = null;
69
69
  this._httpOptions = undefined;
70
+ this._bodyDuplexMode = undefined;
70
71
  this.targetService = "Channels";
71
72
  this._regionId = "";
72
73
  this._lastSetRegionOrRegionId = "";
@@ -81,6 +82,9 @@ class ChannelsClient {
81
82
  this._httpOptions = clientConfiguration.httpOptions
82
83
  ? clientConfiguration.httpOptions
83
84
  : undefined;
85
+ this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
86
+ ? clientConfiguration.bodyDuplexMode
87
+ : undefined;
84
88
  }
85
89
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
86
90
  const specCircuitBreakerEnabled = true;
@@ -91,7 +95,7 @@ class ChannelsClient {
91
95
  }
92
96
  this._httpClient =
93
97
  params.httpClient ||
94
- new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
98
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
95
99
  if (params.authenticationDetailsProvider &&
96
100
  common.isRegionProvider(params.authenticationDetailsProvider)) {
97
101
  const provider = params.authenticationDetailsProvider;
@@ -186,7 +190,7 @@ class ChannelsClient {
186
190
  * @param CreateChannelRequest
187
191
  * @return CreateChannelResponse
188
192
  * @throws OciError when an error occurs
189
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/CreateChannel.ts.html |here} to see how to use CreateChannel API.
193
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/CreateChannel.ts.html |here} to see how to use CreateChannel API.
190
194
  */
191
195
  createChannel(createChannelRequest) {
192
196
  return __awaiter(this, void 0, void 0, function* () {
@@ -254,7 +258,7 @@ class ChannelsClient {
254
258
  * @param DeleteChannelRequest
255
259
  * @return DeleteChannelResponse
256
260
  * @throws OciError when an error occurs
257
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannel API.
261
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannel API.
258
262
  */
259
263
  deleteChannel(deleteChannelRequest) {
260
264
  return __awaiter(this, void 0, void 0, function* () {
@@ -317,7 +321,7 @@ class ChannelsClient {
317
321
  * @param GetChannelRequest
318
322
  * @return GetChannelResponse
319
323
  * @throws OciError when an error occurs
320
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/GetChannel.ts.html |here} to see how to use GetChannel API.
324
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/GetChannel.ts.html |here} to see how to use GetChannel API.
321
325
  */
322
326
  getChannel(getChannelRequest) {
323
327
  return __awaiter(this, void 0, void 0, function* () {
@@ -381,7 +385,7 @@ class ChannelsClient {
381
385
  * @param ListChannelsRequest
382
386
  * @return ListChannelsResponse
383
387
  * @throws OciError when an error occurs
384
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/ListChannels.ts.html |here} to see how to use ListChannels API.
388
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/ListChannels.ts.html |here} to see how to use ListChannels API.
385
389
  */
386
390
  listChannels(listChannelsRequest) {
387
391
  return __awaiter(this, void 0, void 0, function* () {
@@ -495,7 +499,7 @@ class ChannelsClient {
495
499
  * @param ResetChannelRequest
496
500
  * @return ResetChannelResponse
497
501
  * @throws OciError when an error occurs
498
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/ResetChannel.ts.html |here} to see how to use ResetChannel API.
502
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/ResetChannel.ts.html |here} to see how to use ResetChannel API.
499
503
  */
500
504
  resetChannel(resetChannelRequest) {
501
505
  return __awaiter(this, void 0, void 0, function* () {
@@ -559,7 +563,7 @@ class ChannelsClient {
559
563
  * @param ResumeChannelRequest
560
564
  * @return ResumeChannelResponse
561
565
  * @throws OciError when an error occurs
562
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/ResumeChannel.ts.html |here} to see how to use ResumeChannel API.
566
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/ResumeChannel.ts.html |here} to see how to use ResumeChannel API.
563
567
  */
564
568
  resumeChannel(resumeChannelRequest) {
565
569
  return __awaiter(this, void 0, void 0, function* () {
@@ -624,7 +628,7 @@ class ChannelsClient {
624
628
  * @param UpdateChannelRequest
625
629
  * @return UpdateChannelResponse
626
630
  * @throws OciError when an error occurs
627
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/UpdateChannel.ts.html |here} to see how to use UpdateChannel API.
631
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/UpdateChannel.ts.html |here} to see how to use UpdateChannel API.
628
632
  */
629
633
  updateChannel(updateChannelRequest) {
630
634
  return __awaiter(this, void 0, void 0, function* () {
@@ -697,6 +701,7 @@ class DbBackupsClient {
697
701
  this["_defaultHeaders"] = {};
698
702
  this._circuitBreaker = null;
699
703
  this._httpOptions = undefined;
704
+ this._bodyDuplexMode = undefined;
700
705
  this.targetService = "DbBackups";
701
706
  this._regionId = "";
702
707
  this._lastSetRegionOrRegionId = "";
@@ -711,6 +716,9 @@ class DbBackupsClient {
711
716
  this._httpOptions = clientConfiguration.httpOptions
712
717
  ? clientConfiguration.httpOptions
713
718
  : undefined;
719
+ this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
720
+ ? clientConfiguration.bodyDuplexMode
721
+ : undefined;
714
722
  }
715
723
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
716
724
  const specCircuitBreakerEnabled = true;
@@ -721,7 +729,7 @@ class DbBackupsClient {
721
729
  }
722
730
  this._httpClient =
723
731
  params.httpClient ||
724
- new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
732
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
725
733
  if (params.authenticationDetailsProvider &&
726
734
  common.isRegionProvider(params.authenticationDetailsProvider)) {
727
735
  const provider = params.authenticationDetailsProvider;
@@ -817,7 +825,7 @@ class DbBackupsClient {
817
825
  * @param ChangeBackupCompartmentRequest
818
826
  * @return ChangeBackupCompartmentResponse
819
827
  * @throws OciError when an error occurs
820
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/ChangeBackupCompartment.ts.html |here} to see how to use ChangeBackupCompartment API.
828
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/ChangeBackupCompartment.ts.html |here} to see how to use ChangeBackupCompartment API.
821
829
  */
822
830
  changeBackupCompartment(changeBackupCompartmentRequest) {
823
831
  return __awaiter(this, void 0, void 0, function* () {
@@ -880,7 +888,7 @@ class DbBackupsClient {
880
888
  * @param CreateBackupRequest
881
889
  * @return CreateBackupResponse
882
890
  * @throws OciError when an error occurs
883
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/CreateBackup.ts.html |here} to see how to use CreateBackup API.
891
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/CreateBackup.ts.html |here} to see how to use CreateBackup API.
884
892
  */
885
893
  createBackup(createBackupRequest) {
886
894
  return __awaiter(this, void 0, void 0, function* () {
@@ -949,7 +957,7 @@ class DbBackupsClient {
949
957
  * @param DeleteBackupRequest
950
958
  * @return DeleteBackupResponse
951
959
  * @throws OciError when an error occurs
952
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/DeleteBackup.ts.html |here} to see how to use DeleteBackup API.
960
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/DeleteBackup.ts.html |here} to see how to use DeleteBackup API.
953
961
  */
954
962
  deleteBackup(deleteBackupRequest) {
955
963
  return __awaiter(this, void 0, void 0, function* () {
@@ -1009,7 +1017,7 @@ class DbBackupsClient {
1009
1017
  * @param GetBackupRequest
1010
1018
  * @return GetBackupResponse
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/mysql/GetBackup.ts.html |here} to see how to use GetBackup API.
1020
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/GetBackup.ts.html |here} to see how to use GetBackup API.
1013
1021
  */
1014
1022
  getBackup(getBackupRequest) {
1015
1023
  return __awaiter(this, void 0, void 0, function* () {
@@ -1074,7 +1082,7 @@ class DbBackupsClient {
1074
1082
  * @param ListBackupsRequest
1075
1083
  * @return ListBackupsResponse
1076
1084
  * @throws OciError when an error occurs
1077
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/ListBackups.ts.html |here} to see how to use ListBackups API.
1085
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/ListBackups.ts.html |here} to see how to use ListBackups API.
1078
1086
  */
1079
1087
  listBackups(listBackupsRequest) {
1080
1088
  return __awaiter(this, void 0, void 0, function* () {
@@ -1186,7 +1194,7 @@ class DbBackupsClient {
1186
1194
  * @param UpdateBackupRequest
1187
1195
  * @return UpdateBackupResponse
1188
1196
  * @throws OciError when an error occurs
1189
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/UpdateBackup.ts.html |here} to see how to use UpdateBackup API.
1197
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/UpdateBackup.ts.html |here} to see how to use UpdateBackup API.
1190
1198
  */
1191
1199
  updateBackup(updateBackupRequest) {
1192
1200
  return __awaiter(this, void 0, void 0, function* () {
@@ -1262,6 +1270,7 @@ class DbSystemClient {
1262
1270
  this["_defaultHeaders"] = {};
1263
1271
  this._circuitBreaker = null;
1264
1272
  this._httpOptions = undefined;
1273
+ this._bodyDuplexMode = undefined;
1265
1274
  this.targetService = "DbSystem";
1266
1275
  this._regionId = "";
1267
1276
  this._lastSetRegionOrRegionId = "";
@@ -1276,6 +1285,9 @@ class DbSystemClient {
1276
1285
  this._httpOptions = clientConfiguration.httpOptions
1277
1286
  ? clientConfiguration.httpOptions
1278
1287
  : undefined;
1288
+ this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
1289
+ ? clientConfiguration.bodyDuplexMode
1290
+ : undefined;
1279
1291
  }
1280
1292
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
1281
1293
  const specCircuitBreakerEnabled = true;
@@ -1286,7 +1298,7 @@ class DbSystemClient {
1286
1298
  }
1287
1299
  this._httpClient =
1288
1300
  params.httpClient ||
1289
- new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
1301
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
1290
1302
  if (params.authenticationDetailsProvider &&
1291
1303
  common.isRegionProvider(params.authenticationDetailsProvider)) {
1292
1304
  const provider = params.authenticationDetailsProvider;
@@ -1382,7 +1394,7 @@ class DbSystemClient {
1382
1394
  * @param AddAnalyticsClusterRequest
1383
1395
  * @return AddAnalyticsClusterResponse
1384
1396
  * @throws OciError when an error occurs
1385
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/AddAnalyticsCluster.ts.html |here} to see how to use AddAnalyticsCluster API.
1397
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/AddAnalyticsCluster.ts.html |here} to see how to use AddAnalyticsCluster API.
1386
1398
  */
1387
1399
  addAnalyticsCluster(addAnalyticsClusterRequest) {
1388
1400
  return __awaiter(this, void 0, void 0, function* () {
@@ -1454,7 +1466,7 @@ class DbSystemClient {
1454
1466
  * @param AddHeatWaveClusterRequest
1455
1467
  * @return AddHeatWaveClusterResponse
1456
1468
  * @throws OciError when an error occurs
1457
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/AddHeatWaveCluster.ts.html |here} to see how to use AddHeatWaveCluster API.
1469
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/AddHeatWaveCluster.ts.html |here} to see how to use AddHeatWaveCluster API.
1458
1470
  */
1459
1471
  addHeatWaveCluster(addHeatWaveClusterRequest) {
1460
1472
  return __awaiter(this, void 0, void 0, function* () {
@@ -1526,7 +1538,7 @@ class DbSystemClient {
1526
1538
  * @param CreateDbSystemRequest
1527
1539
  * @return CreateDbSystemResponse
1528
1540
  * @throws OciError when an error occurs
1529
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/CreateDbSystem.ts.html |here} to see how to use CreateDbSystem API.
1541
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/CreateDbSystem.ts.html |here} to see how to use CreateDbSystem API.
1530
1542
  */
1531
1543
  createDbSystem(createDbSystemRequest) {
1532
1544
  return __awaiter(this, void 0, void 0, function* () {
@@ -1602,7 +1614,7 @@ class DbSystemClient {
1602
1614
  * @param DeleteAnalyticsClusterRequest
1603
1615
  * @return DeleteAnalyticsClusterResponse
1604
1616
  * @throws OciError when an error occurs
1605
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/DeleteAnalyticsCluster.ts.html |here} to see how to use DeleteAnalyticsCluster API.
1617
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/DeleteAnalyticsCluster.ts.html |here} to see how to use DeleteAnalyticsCluster API.
1606
1618
  */
1607
1619
  deleteAnalyticsCluster(deleteAnalyticsClusterRequest) {
1608
1620
  return __awaiter(this, void 0, void 0, function* () {
@@ -1664,7 +1676,7 @@ class DbSystemClient {
1664
1676
  * @param DeleteDbSystemRequest
1665
1677
  * @return DeleteDbSystemResponse
1666
1678
  * @throws OciError when an error occurs
1667
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystem API.
1679
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystem API.
1668
1680
  */
1669
1681
  deleteDbSystem(deleteDbSystemRequest) {
1670
1682
  return __awaiter(this, void 0, void 0, function* () {
@@ -1726,7 +1738,7 @@ class DbSystemClient {
1726
1738
  * @param DeleteHeatWaveClusterRequest
1727
1739
  * @return DeleteHeatWaveClusterResponse
1728
1740
  * @throws OciError when an error occurs
1729
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveCluster API.
1741
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveCluster API.
1730
1742
  */
1731
1743
  deleteHeatWaveCluster(deleteHeatWaveClusterRequest) {
1732
1744
  return __awaiter(this, void 0, void 0, function* () {
@@ -1788,7 +1800,7 @@ class DbSystemClient {
1788
1800
  * @param GenerateAnalyticsClusterMemoryEstimateRequest
1789
1801
  * @return GenerateAnalyticsClusterMemoryEstimateResponse
1790
1802
  * @throws OciError when an error occurs
1791
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/GenerateAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GenerateAnalyticsClusterMemoryEstimate API.
1803
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/GenerateAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GenerateAnalyticsClusterMemoryEstimate API.
1792
1804
  */
1793
1805
  generateAnalyticsClusterMemoryEstimate(generateAnalyticsClusterMemoryEstimateRequest) {
1794
1806
  return __awaiter(this, void 0, void 0, function* () {
@@ -1853,7 +1865,7 @@ class DbSystemClient {
1853
1865
  * @param GenerateHeatWaveClusterMemoryEstimateRequest
1854
1866
  * @return GenerateHeatWaveClusterMemoryEstimateResponse
1855
1867
  * @throws OciError when an error occurs
1856
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimate API.
1868
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimate API.
1857
1869
  */
1858
1870
  generateHeatWaveClusterMemoryEstimate(generateHeatWaveClusterMemoryEstimateRequest) {
1859
1871
  return __awaiter(this, void 0, void 0, function* () {
@@ -1919,7 +1931,7 @@ class DbSystemClient {
1919
1931
  * @param GetAnalyticsClusterRequest
1920
1932
  * @return GetAnalyticsClusterResponse
1921
1933
  * @throws OciError when an error occurs
1922
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/GetAnalyticsCluster.ts.html |here} to see how to use GetAnalyticsCluster API.
1934
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/GetAnalyticsCluster.ts.html |here} to see how to use GetAnalyticsCluster API.
1923
1935
  */
1924
1936
  getAnalyticsCluster(getAnalyticsClusterRequest) {
1925
1937
  return __awaiter(this, void 0, void 0, function* () {
@@ -1986,7 +1998,7 @@ class DbSystemClient {
1986
1998
  * @param GetAnalyticsClusterMemoryEstimateRequest
1987
1999
  * @return GetAnalyticsClusterMemoryEstimateResponse
1988
2000
  * @throws OciError when an error occurs
1989
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/GetAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GetAnalyticsClusterMemoryEstimate API.
2001
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/GetAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GetAnalyticsClusterMemoryEstimate API.
1990
2002
  */
1991
2003
  getAnalyticsClusterMemoryEstimate(getAnalyticsClusterMemoryEstimateRequest) {
1992
2004
  return __awaiter(this, void 0, void 0, function* () {
@@ -2044,7 +2056,7 @@ class DbSystemClient {
2044
2056
  * @param GetDbSystemRequest
2045
2057
  * @return GetDbSystemResponse
2046
2058
  * @throws OciError when an error occurs
2047
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystem API.
2059
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystem API.
2048
2060
  */
2049
2061
  getDbSystem(getDbSystemRequest) {
2050
2062
  return __awaiter(this, void 0, void 0, function* () {
@@ -2108,7 +2120,7 @@ class DbSystemClient {
2108
2120
  * @param GetHeatWaveClusterRequest
2109
2121
  * @return GetHeatWaveClusterResponse
2110
2122
  * @throws OciError when an error occurs
2111
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveCluster API.
2123
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveCluster API.
2112
2124
  */
2113
2125
  getHeatWaveCluster(getHeatWaveClusterRequest) {
2114
2126
  return __awaiter(this, void 0, void 0, function* () {
@@ -2174,7 +2186,7 @@ class DbSystemClient {
2174
2186
  * @param GetHeatWaveClusterMemoryEstimateRequest
2175
2187
  * @return GetHeatWaveClusterMemoryEstimateResponse
2176
2188
  * @throws OciError when an error occurs
2177
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimate API.
2189
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimate API.
2178
2190
  */
2179
2191
  getHeatWaveClusterMemoryEstimate(getHeatWaveClusterMemoryEstimateRequest) {
2180
2192
  return __awaiter(this, void 0, void 0, function* () {
@@ -2234,7 +2246,7 @@ class DbSystemClient {
2234
2246
  * @param ListDbSystemsRequest
2235
2247
  * @return ListDbSystemsResponse
2236
2248
  * @throws OciError when an error occurs
2237
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystems API.
2249
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystems API.
2238
2250
  */
2239
2251
  listDbSystems(listDbSystemsRequest) {
2240
2252
  return __awaiter(this, void 0, void 0, function* () {
@@ -2350,7 +2362,7 @@ class DbSystemClient {
2350
2362
  * @param RestartAnalyticsClusterRequest
2351
2363
  * @return RestartAnalyticsClusterResponse
2352
2364
  * @throws OciError when an error occurs
2353
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/RestartAnalyticsCluster.ts.html |here} to see how to use RestartAnalyticsCluster API.
2365
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/RestartAnalyticsCluster.ts.html |here} to see how to use RestartAnalyticsCluster API.
2354
2366
  */
2355
2367
  restartAnalyticsCluster(restartAnalyticsClusterRequest) {
2356
2368
  return __awaiter(this, void 0, void 0, function* () {
@@ -2411,7 +2423,7 @@ class DbSystemClient {
2411
2423
  * @param RestartDbSystemRequest
2412
2424
  * @return RestartDbSystemResponse
2413
2425
  * @throws OciError when an error occurs
2414
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystem API.
2426
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystem API.
2415
2427
  */
2416
2428
  restartDbSystem(restartDbSystemRequest) {
2417
2429
  return __awaiter(this, void 0, void 0, function* () {
@@ -2473,7 +2485,7 @@ class DbSystemClient {
2473
2485
  * @param RestartHeatWaveClusterRequest
2474
2486
  * @return RestartHeatWaveClusterResponse
2475
2487
  * @throws OciError when an error occurs
2476
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveCluster API.
2488
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveCluster API.
2477
2489
  */
2478
2490
  restartHeatWaveCluster(restartHeatWaveClusterRequest) {
2479
2491
  return __awaiter(this, void 0, void 0, function* () {
@@ -2536,7 +2548,7 @@ class DbSystemClient {
2536
2548
  * @param StartAnalyticsClusterRequest
2537
2549
  * @return StartAnalyticsClusterResponse
2538
2550
  * @throws OciError when an error occurs
2539
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/StartAnalyticsCluster.ts.html |here} to see how to use StartAnalyticsCluster API.
2551
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/StartAnalyticsCluster.ts.html |here} to see how to use StartAnalyticsCluster API.
2540
2552
  */
2541
2553
  startAnalyticsCluster(startAnalyticsClusterRequest) {
2542
2554
  return __awaiter(this, void 0, void 0, function* () {
@@ -2597,7 +2609,7 @@ class DbSystemClient {
2597
2609
  * @param StartDbSystemRequest
2598
2610
  * @return StartDbSystemResponse
2599
2611
  * @throws OciError when an error occurs
2600
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/StartDbSystem.ts.html |here} to see how to use StartDbSystem API.
2612
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/StartDbSystem.ts.html |here} to see how to use StartDbSystem API.
2601
2613
  */
2602
2614
  startDbSystem(startDbSystemRequest) {
2603
2615
  return __awaiter(this, void 0, void 0, function* () {
@@ -2658,7 +2670,7 @@ class DbSystemClient {
2658
2670
  * @param StartHeatWaveClusterRequest
2659
2671
  * @return StartHeatWaveClusterResponse
2660
2672
  * @throws OciError when an error occurs
2661
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/StartHeatWaveCluster.ts.html |here} to see how to use StartHeatWaveCluster API.
2673
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/StartHeatWaveCluster.ts.html |here} to see how to use StartHeatWaveCluster API.
2662
2674
  */
2663
2675
  startHeatWaveCluster(startHeatWaveClusterRequest) {
2664
2676
  return __awaiter(this, void 0, void 0, function* () {
@@ -2721,7 +2733,7 @@ class DbSystemClient {
2721
2733
  * @param StopAnalyticsClusterRequest
2722
2734
  * @return StopAnalyticsClusterResponse
2723
2735
  * @throws OciError when an error occurs
2724
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/StopAnalyticsCluster.ts.html |here} to see how to use StopAnalyticsCluster API.
2736
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/StopAnalyticsCluster.ts.html |here} to see how to use StopAnalyticsCluster API.
2725
2737
  */
2726
2738
  stopAnalyticsCluster(stopAnalyticsClusterRequest) {
2727
2739
  return __awaiter(this, void 0, void 0, function* () {
@@ -2785,7 +2797,7 @@ class DbSystemClient {
2785
2797
  * @param StopDbSystemRequest
2786
2798
  * @return StopDbSystemResponse
2787
2799
  * @throws OciError when an error occurs
2788
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/StopDbSystem.ts.html |here} to see how to use StopDbSystem API.
2800
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/StopDbSystem.ts.html |here} to see how to use StopDbSystem API.
2789
2801
  */
2790
2802
  stopDbSystem(stopDbSystemRequest) {
2791
2803
  return __awaiter(this, void 0, void 0, function* () {
@@ -2847,7 +2859,7 @@ class DbSystemClient {
2847
2859
  * @param StopHeatWaveClusterRequest
2848
2860
  * @return StopHeatWaveClusterResponse
2849
2861
  * @throws OciError when an error occurs
2850
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/StopHeatWaveCluster.ts.html |here} to see how to use StopHeatWaveCluster API.
2862
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/StopHeatWaveCluster.ts.html |here} to see how to use StopHeatWaveCluster API.
2851
2863
  */
2852
2864
  stopHeatWaveCluster(stopHeatWaveClusterRequest) {
2853
2865
  return __awaiter(this, void 0, void 0, function* () {
@@ -2910,7 +2922,7 @@ class DbSystemClient {
2910
2922
  * @param UpdateAnalyticsClusterRequest
2911
2923
  * @return UpdateAnalyticsClusterResponse
2912
2924
  * @throws OciError when an error occurs
2913
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/UpdateAnalyticsCluster.ts.html |here} to see how to use UpdateAnalyticsCluster API.
2925
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/UpdateAnalyticsCluster.ts.html |here} to see how to use UpdateAnalyticsCluster API.
2914
2926
  */
2915
2927
  updateAnalyticsCluster(updateAnalyticsClusterRequest) {
2916
2928
  return __awaiter(this, void 0, void 0, function* () {
@@ -2979,7 +2991,7 @@ class DbSystemClient {
2979
2991
  * @param UpdateDbSystemRequest
2980
2992
  * @return UpdateDbSystemResponse
2981
2993
  * @throws OciError when an error occurs
2982
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/UpdateDbSystem.ts.html |here} to see how to use UpdateDbSystem API.
2994
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/UpdateDbSystem.ts.html |here} to see how to use UpdateDbSystem API.
2983
2995
  */
2984
2996
  updateDbSystem(updateDbSystemRequest) {
2985
2997
  return __awaiter(this, void 0, void 0, function* () {
@@ -3041,7 +3053,7 @@ class DbSystemClient {
3041
3053
  * @param UpdateHeatWaveClusterRequest
3042
3054
  * @return UpdateHeatWaveClusterResponse
3043
3055
  * @throws OciError when an error occurs
3044
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/UpdateHeatWaveCluster.ts.html |here} to see how to use UpdateHeatWaveCluster API.
3056
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/UpdateHeatWaveCluster.ts.html |here} to see how to use UpdateHeatWaveCluster API.
3045
3057
  */
3046
3058
  updateHeatWaveCluster(updateHeatWaveClusterRequest) {
3047
3059
  return __awaiter(this, void 0, void 0, function* () {
@@ -3113,6 +3125,7 @@ class MysqlaasClient {
3113
3125
  this["_defaultHeaders"] = {};
3114
3126
  this._circuitBreaker = null;
3115
3127
  this._httpOptions = undefined;
3128
+ this._bodyDuplexMode = undefined;
3116
3129
  this.targetService = "Mysqlaas";
3117
3130
  this._regionId = "";
3118
3131
  this._lastSetRegionOrRegionId = "";
@@ -3127,6 +3140,9 @@ class MysqlaasClient {
3127
3140
  this._httpOptions = clientConfiguration.httpOptions
3128
3141
  ? clientConfiguration.httpOptions
3129
3142
  : undefined;
3143
+ this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
3144
+ ? clientConfiguration.bodyDuplexMode
3145
+ : undefined;
3130
3146
  }
3131
3147
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
3132
3148
  const specCircuitBreakerEnabled = true;
@@ -3137,7 +3153,7 @@ class MysqlaasClient {
3137
3153
  }
3138
3154
  this._httpClient =
3139
3155
  params.httpClient ||
3140
- new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
3156
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
3141
3157
  if (params.authenticationDetailsProvider &&
3142
3158
  common.isRegionProvider(params.authenticationDetailsProvider)) {
3143
3159
  const provider = params.authenticationDetailsProvider;
@@ -3231,7 +3247,7 @@ class MysqlaasClient {
3231
3247
  * @param CreateConfigurationRequest
3232
3248
  * @return CreateConfigurationResponse
3233
3249
  * @throws OciError when an error occurs
3234
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/CreateConfiguration.ts.html |here} to see how to use CreateConfiguration API.
3250
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/CreateConfiguration.ts.html |here} to see how to use CreateConfiguration API.
3235
3251
  */
3236
3252
  createConfiguration(createConfigurationRequest) {
3237
3253
  return __awaiter(this, void 0, void 0, function* () {
@@ -3306,7 +3322,7 @@ class MysqlaasClient {
3306
3322
  * @param DeleteConfigurationRequest
3307
3323
  * @return DeleteConfigurationResponse
3308
3324
  * @throws OciError when an error occurs
3309
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfiguration API.
3325
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfiguration API.
3310
3326
  */
3311
3327
  deleteConfiguration(deleteConfigurationRequest) {
3312
3328
  return __awaiter(this, void 0, void 0, function* () {
@@ -3362,7 +3378,7 @@ class MysqlaasClient {
3362
3378
  * @param GetConfigurationRequest
3363
3379
  * @return GetConfigurationResponse
3364
3380
  * @throws OciError when an error occurs
3365
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/GetConfiguration.ts.html |here} to see how to use GetConfiguration API.
3381
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/GetConfiguration.ts.html |here} to see how to use GetConfiguration API.
3366
3382
  */
3367
3383
  getConfiguration(getConfigurationRequest) {
3368
3384
  return __awaiter(this, void 0, void 0, function* () {
@@ -3434,7 +3450,7 @@ class MysqlaasClient {
3434
3450
  * @param ListConfigurationsRequest
3435
3451
  * @return ListConfigurationsResponse
3436
3452
  * @throws OciError when an error occurs
3437
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurations API.
3453
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurations API.
3438
3454
  */
3439
3455
  listConfigurations(listConfigurationsRequest) {
3440
3456
  return __awaiter(this, void 0, void 0, function* () {
@@ -3550,7 +3566,7 @@ class MysqlaasClient {
3550
3566
  * @param ListShapesRequest
3551
3567
  * @return ListShapesResponse
3552
3568
  * @throws OciError when an error occurs
3553
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/ListShapes.ts.html |here} to see how to use ListShapes API.
3569
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/ListShapes.ts.html |here} to see how to use ListShapes API.
3554
3570
  */
3555
3571
  listShapes(listShapesRequest) {
3556
3572
  return __awaiter(this, void 0, void 0, function* () {
@@ -3614,7 +3630,7 @@ class MysqlaasClient {
3614
3630
  * @param ListVersionsRequest
3615
3631
  * @return ListVersionsResponse
3616
3632
  * @throws OciError when an error occurs
3617
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/ListVersions.ts.html |here} to see how to use ListVersions API.
3633
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/ListVersions.ts.html |here} to see how to use ListVersions API.
3618
3634
  */
3619
3635
  listVersions(listVersionsRequest) {
3620
3636
  return __awaiter(this, void 0, void 0, function* () {
@@ -3672,7 +3688,7 @@ class MysqlaasClient {
3672
3688
  * @param UpdateConfigurationRequest
3673
3689
  * @return UpdateConfigurationResponse
3674
3690
  * @throws OciError when an error occurs
3675
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/UpdateConfiguration.ts.html |here} to see how to use UpdateConfiguration API.
3691
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/UpdateConfiguration.ts.html |here} to see how to use UpdateConfiguration API.
3676
3692
  */
3677
3693
  updateConfiguration(updateConfigurationRequest) {
3678
3694
  return __awaiter(this, void 0, void 0, function* () {
@@ -3748,6 +3764,7 @@ class ReplicasClient {
3748
3764
  this["_defaultHeaders"] = {};
3749
3765
  this._circuitBreaker = null;
3750
3766
  this._httpOptions = undefined;
3767
+ this._bodyDuplexMode = undefined;
3751
3768
  this.targetService = "Replicas";
3752
3769
  this._regionId = "";
3753
3770
  this._lastSetRegionOrRegionId = "";
@@ -3762,6 +3779,9 @@ class ReplicasClient {
3762
3779
  this._httpOptions = clientConfiguration.httpOptions
3763
3780
  ? clientConfiguration.httpOptions
3764
3781
  : undefined;
3782
+ this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
3783
+ ? clientConfiguration.bodyDuplexMode
3784
+ : undefined;
3765
3785
  }
3766
3786
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
3767
3787
  const specCircuitBreakerEnabled = true;
@@ -3772,7 +3792,7 @@ class ReplicasClient {
3772
3792
  }
3773
3793
  this._httpClient =
3774
3794
  params.httpClient ||
3775
- new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
3795
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
3776
3796
  if (params.authenticationDetailsProvider &&
3777
3797
  common.isRegionProvider(params.authenticationDetailsProvider)) {
3778
3798
  const provider = params.authenticationDetailsProvider;
@@ -3866,7 +3886,7 @@ class ReplicasClient {
3866
3886
  * @param CreateReplicaRequest
3867
3887
  * @return CreateReplicaResponse
3868
3888
  * @throws OciError when an error occurs
3869
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/CreateReplica.ts.html |here} to see how to use CreateReplica API.
3889
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/CreateReplica.ts.html |here} to see how to use CreateReplica API.
3870
3890
  */
3871
3891
  createReplica(createReplicaRequest) {
3872
3892
  return __awaiter(this, void 0, void 0, function* () {
@@ -3939,7 +3959,7 @@ class ReplicasClient {
3939
3959
  * @param DeleteReplicaRequest
3940
3960
  * @return DeleteReplicaResponse
3941
3961
  * @throws OciError when an error occurs
3942
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/DeleteReplica.ts.html |here} to see how to use DeleteReplica API.
3962
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/DeleteReplica.ts.html |here} to see how to use DeleteReplica API.
3943
3963
  */
3944
3964
  deleteReplica(deleteReplicaRequest) {
3945
3965
  return __awaiter(this, void 0, void 0, function* () {
@@ -3999,7 +4019,7 @@ class ReplicasClient {
3999
4019
  * @param GetReplicaRequest
4000
4020
  * @return GetReplicaResponse
4001
4021
  * @throws OciError when an error occurs
4002
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/GetReplica.ts.html |here} to see how to use GetReplica API.
4022
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/GetReplica.ts.html |here} to see how to use GetReplica API.
4003
4023
  */
4004
4024
  getReplica(getReplicaRequest) {
4005
4025
  return __awaiter(this, void 0, void 0, function* () {
@@ -4063,7 +4083,7 @@ class ReplicasClient {
4063
4083
  * @param ListReplicasRequest
4064
4084
  * @return ListReplicasResponse
4065
4085
  * @throws OciError when an error occurs
4066
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/ListReplicas.ts.html |here} to see how to use ListReplicas API.
4086
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/ListReplicas.ts.html |here} to see how to use ListReplicas API.
4067
4087
  */
4068
4088
  listReplicas(listReplicasRequest) {
4069
4089
  return __awaiter(this, void 0, void 0, function* () {
@@ -4174,7 +4194,7 @@ class ReplicasClient {
4174
4194
  * @param UpdateReplicaRequest
4175
4195
  * @return UpdateReplicaResponse
4176
4196
  * @throws OciError when an error occurs
4177
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/UpdateReplica.ts.html |here} to see how to use UpdateReplica API.
4197
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/UpdateReplica.ts.html |here} to see how to use UpdateReplica API.
4178
4198
  */
4179
4199
  updateReplica(updateReplicaRequest) {
4180
4200
  return __awaiter(this, void 0, void 0, function* () {
@@ -4246,6 +4266,7 @@ class WorkRequestsClient {
4246
4266
  this["_defaultHeaders"] = {};
4247
4267
  this._circuitBreaker = null;
4248
4268
  this._httpOptions = undefined;
4269
+ this._bodyDuplexMode = undefined;
4249
4270
  this.targetService = "WorkRequests";
4250
4271
  this._regionId = "";
4251
4272
  this._lastSetRegionOrRegionId = "";
@@ -4260,6 +4281,9 @@ class WorkRequestsClient {
4260
4281
  this._httpOptions = clientConfiguration.httpOptions
4261
4282
  ? clientConfiguration.httpOptions
4262
4283
  : undefined;
4284
+ this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
4285
+ ? clientConfiguration.bodyDuplexMode
4286
+ : undefined;
4263
4287
  }
4264
4288
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
4265
4289
  const specCircuitBreakerEnabled = true;
@@ -4270,7 +4294,7 @@ class WorkRequestsClient {
4270
4294
  }
4271
4295
  this._httpClient =
4272
4296
  params.httpClient ||
4273
- new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
4297
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
4274
4298
  if (params.authenticationDetailsProvider &&
4275
4299
  common.isRegionProvider(params.authenticationDetailsProvider)) {
4276
4300
  const provider = params.authenticationDetailsProvider;
@@ -4364,7 +4388,7 @@ class WorkRequestsClient {
4364
4388
  * @param GetWorkRequestRequest
4365
4389
  * @return GetWorkRequestResponse
4366
4390
  * @throws OciError when an error occurs
4367
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
4391
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
4368
4392
  */
4369
4393
  getWorkRequest(getWorkRequestRequest) {
4370
4394
  return __awaiter(this, void 0, void 0, function* () {
@@ -4434,7 +4458,7 @@ class WorkRequestsClient {
4434
4458
  * @param ListWorkRequestErrorsRequest
4435
4459
  * @return ListWorkRequestErrorsResponse
4436
4460
  * @throws OciError when an error occurs
4437
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
4461
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
4438
4462
  */
4439
4463
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
4440
4464
  return __awaiter(this, void 0, void 0, function* () {
@@ -4541,7 +4565,7 @@ class WorkRequestsClient {
4541
4565
  * @param ListWorkRequestLogsRequest
4542
4566
  * @return ListWorkRequestLogsResponse
4543
4567
  * @throws OciError when an error occurs
4544
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
4568
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
4545
4569
  */
4546
4570
  listWorkRequestLogs(listWorkRequestLogsRequest) {
4547
4571
  return __awaiter(this, void 0, void 0, function* () {
@@ -4648,7 +4672,7 @@ class WorkRequestsClient {
4648
4672
  * @param ListWorkRequestsRequest
4649
4673
  * @return ListWorkRequestsResponse
4650
4674
  * @throws OciError when an error occurs
4651
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.67.0/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
4675
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
4652
4676
  */
4653
4677
  listWorkRequests(listWorkRequestsRequest) {
4654
4678
  return __awaiter(this, void 0, void 0, function* () {