oci-objectstorage 2.11.1 → 2.12.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 (55) hide show
  1. package/lib/client.d.ts +118 -112
  2. package/lib/client.js +168 -162
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/abort-multipart-upload-request.d.ts +1 -1
  5. package/lib/request/cancel-work-request-request.d.ts +1 -1
  6. package/lib/request/commit-multipart-upload-request.d.ts +1 -1
  7. package/lib/request/copy-object-request.d.ts +1 -1
  8. package/lib/request/create-bucket-request.d.ts +1 -1
  9. package/lib/request/create-multipart-upload-request.d.ts +1 -1
  10. package/lib/request/create-preauthenticated-request-request.d.ts +1 -1
  11. package/lib/request/create-replication-policy-request.d.ts +1 -1
  12. package/lib/request/create-retention-rule-request.d.ts +1 -1
  13. package/lib/request/delete-bucket-request.d.ts +1 -1
  14. package/lib/request/delete-object-lifecycle-policy-request.d.ts +1 -1
  15. package/lib/request/delete-object-request.d.ts +1 -1
  16. package/lib/request/delete-preauthenticated-request-request.d.ts +1 -1
  17. package/lib/request/delete-replication-policy-request.d.ts +1 -1
  18. package/lib/request/delete-retention-rule-request.d.ts +1 -1
  19. package/lib/request/get-bucket-request.d.ts +1 -1
  20. package/lib/request/get-namespace-metadata-request.d.ts +1 -1
  21. package/lib/request/get-namespace-request.d.ts +1 -1
  22. package/lib/request/get-object-lifecycle-policy-request.d.ts +1 -1
  23. package/lib/request/get-object-request.d.ts +1 -1
  24. package/lib/request/get-preauthenticated-request-request.d.ts +1 -1
  25. package/lib/request/get-replication-policy-request.d.ts +1 -1
  26. package/lib/request/get-retention-rule-request.d.ts +1 -1
  27. package/lib/request/get-work-request-request.d.ts +1 -1
  28. package/lib/request/head-bucket-request.d.ts +1 -1
  29. package/lib/request/head-object-request.d.ts +1 -1
  30. package/lib/request/list-buckets-request.d.ts +2 -3
  31. package/lib/request/list-buckets-request.js.map +1 -1
  32. package/lib/request/list-multipart-upload-parts-request.d.ts +1 -1
  33. package/lib/request/list-multipart-uploads-request.d.ts +1 -1
  34. package/lib/request/list-object-versions-request.d.ts +1 -1
  35. package/lib/request/list-objects-request.d.ts +1 -1
  36. package/lib/request/list-preauthenticated-requests-request.d.ts +1 -1
  37. package/lib/request/list-replication-policies-request.d.ts +1 -1
  38. package/lib/request/list-replication-sources-request.d.ts +1 -1
  39. package/lib/request/list-retention-rules-request.d.ts +1 -1
  40. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  41. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  42. package/lib/request/list-work-requests-request.d.ts +1 -1
  43. package/lib/request/make-bucket-writable-request.d.ts +1 -1
  44. package/lib/request/put-object-lifecycle-policy-request.d.ts +1 -1
  45. package/lib/request/put-object-request.d.ts +5 -2
  46. package/lib/request/reencrypt-bucket-request.d.ts +1 -1
  47. package/lib/request/reencrypt-object-request.d.ts +1 -1
  48. package/lib/request/rename-object-request.d.ts +1 -1
  49. package/lib/request/restore-objects-request.d.ts +1 -1
  50. package/lib/request/update-bucket-request.d.ts +1 -1
  51. package/lib/request/update-namespace-metadata-request.d.ts +1 -1
  52. package/lib/request/update-object-storage-tier-request.d.ts +1 -1
  53. package/lib/request/update-retention-rule-request.d.ts +1 -1
  54. package/lib/request/upload-part-request.d.ts +5 -2
  55. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -150,11 +150,11 @@ class ObjectStorageClient {
150
150
  /**
151
151
  * Aborts an in-progress multipart upload and deletes all parts that have been uploaded.
152
152
  *
153
- * This operation does not retry by default if the user has not defined a retry configuration.
153
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
154
154
  * @param AbortMultipartUploadRequest
155
155
  * @return AbortMultipartUploadResponse
156
156
  * @throws OciError when an error occurs
157
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/AbortMultipartUpload.ts.html |here} to see how to use AbortMultipartUpload API.
157
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/AbortMultipartUpload.ts.html |here} to see how to use AbortMultipartUpload API.
158
158
  */
159
159
  abortMultipartUpload(abortMultipartUploadRequest) {
160
160
  return __awaiter(this, void 0, void 0, function* () {
@@ -172,7 +172,7 @@ class ObjectStorageClient {
172
172
  "Content-Type": common.Constants.APPLICATION_JSON,
173
173
  "opc-client-request-id": abortMultipartUploadRequest.opcClientRequestId
174
174
  };
175
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
175
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
176
176
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, abortMultipartUploadRequest.retryConfiguration, specRetryConfiguration);
177
177
  if (this.logger)
178
178
  retrier.logger = this.logger;
@@ -212,11 +212,11 @@ class ObjectStorageClient {
212
212
  /**
213
213
  * Cancels a work request.
214
214
  *
215
- * This operation does not retry by default if the user has not defined a retry configuration.
215
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
216
216
  * @param CancelWorkRequestRequest
217
217
  * @return CancelWorkRequestResponse
218
218
  * @throws OciError when an error occurs
219
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
219
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
220
220
  */
221
221
  cancelWorkRequest(cancelWorkRequestRequest) {
222
222
  return __awaiter(this, void 0, void 0, function* () {
@@ -230,7 +230,7 @@ class ObjectStorageClient {
230
230
  "Content-Type": common.Constants.APPLICATION_JSON,
231
231
  "opc-client-request-id": cancelWorkRequestRequest.opcClientRequestId
232
232
  };
233
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
233
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
234
234
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, cancelWorkRequestRequest.retryConfiguration, specRetryConfiguration);
235
235
  if (this.logger)
236
236
  retrier.logger = this.logger;
@@ -270,11 +270,11 @@ class ObjectStorageClient {
270
270
  /**
271
271
  * Commits a multipart upload, which involves checking part numbers and entity tags (ETags) of the parts, to create an aggregate object.
272
272
  *
273
- * This operation does not retry by default if the user has not defined a retry configuration.
273
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
274
274
  * @param CommitMultipartUploadRequest
275
275
  * @return CommitMultipartUploadResponse
276
276
  * @throws OciError when an error occurs
277
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/CommitMultipartUpload.ts.html |here} to see how to use CommitMultipartUpload API.
277
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/CommitMultipartUpload.ts.html |here} to see how to use CommitMultipartUpload API.
278
278
  */
279
279
  commitMultipartUpload(commitMultipartUploadRequest) {
280
280
  return __awaiter(this, void 0, void 0, function* () {
@@ -294,7 +294,7 @@ class ObjectStorageClient {
294
294
  "if-none-match": commitMultipartUploadRequest.ifNoneMatch,
295
295
  "opc-client-request-id": commitMultipartUploadRequest.opcClientRequestId
296
296
  };
297
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
297
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
298
298
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, commitMultipartUploadRequest.retryConfiguration, specRetryConfiguration);
299
299
  if (this.logger)
300
300
  retrier.logger = this.logger;
@@ -353,14 +353,17 @@ class ObjectStorageClient {
353
353
  });
354
354
  }
355
355
  /**
356
- * Creates a request to copy an object within a region or to another region.
357
- *
358
- * This operation does not retry by default if the user has not defined a retry configuration.
359
- * @param CopyObjectRequest
360
- * @return CopyObjectResponse
361
- * @throws OciError when an error occurs
362
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/CopyObject.ts.html |here} to see how to use CopyObject API.
363
- */
356
+ * Creates a request to copy an object within a region or to another region.
357
+ * <p>
358
+ See [Object Names](https://docs.cloud.oracle.com/Content/Object/Tasks/managingobjects.htm#namerequirements)
359
+ * for object naming requirements.
360
+ *
361
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
362
+ * @param CopyObjectRequest
363
+ * @return CopyObjectResponse
364
+ * @throws OciError when an error occurs
365
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/CopyObject.ts.html |here} to see how to use CopyObject API.
366
+ */
364
367
  copyObject(copyObjectRequest) {
365
368
  return __awaiter(this, void 0, void 0, function* () {
366
369
  if (this.logger)
@@ -381,7 +384,7 @@ class ObjectStorageClient {
381
384
  "opc-source-sse-customer-key-sha256": copyObjectRequest.opcSourceSseCustomerKeySha256,
382
385
  "opc-sse-kms-key-id": copyObjectRequest.opcSseKmsKeyId
383
386
  };
384
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
387
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
385
388
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, copyObjectRequest.retryConfiguration, specRetryConfiguration);
386
389
  if (this.logger)
387
390
  retrier.logger = this.logger;
@@ -428,11 +431,11 @@ class ObjectStorageClient {
428
431
  * Creates a bucket in the given namespace with a bucket name and optional user-defined metadata. Avoid entering
429
432
  * confidential information in bucket names.
430
433
  *
431
- * This operation does not retry by default if the user has not defined a retry configuration.
434
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
432
435
  * @param CreateBucketRequest
433
436
  * @return CreateBucketResponse
434
437
  * @throws OciError when an error occurs
435
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/CreateBucket.ts.html |here} to see how to use CreateBucket API.
438
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/CreateBucket.ts.html |here} to see how to use CreateBucket API.
436
439
  */
437
440
  createBucket(createBucketRequest) {
438
441
  return __awaiter(this, void 0, void 0, function* () {
@@ -446,7 +449,7 @@ class ObjectStorageClient {
446
449
  "Content-Type": common.Constants.APPLICATION_JSON,
447
450
  "opc-client-request-id": createBucketRequest.opcClientRequestId
448
451
  };
449
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
452
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
450
453
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createBucketRequest.retryConfiguration, specRetryConfiguration);
451
454
  if (this.logger)
452
455
  retrier.logger = this.logger;
@@ -499,14 +502,17 @@ class ObjectStorageClient {
499
502
  });
500
503
  }
501
504
  /**
502
- * Starts a new multipart upload to a specific object in the given bucket in the given namespace.
503
- *
504
- * This operation does not retry by default if the user has not defined a retry configuration.
505
- * @param CreateMultipartUploadRequest
506
- * @return CreateMultipartUploadResponse
507
- * @throws OciError when an error occurs
508
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/CreateMultipartUpload.ts.html |here} to see how to use CreateMultipartUpload API.
509
- */
505
+ * Starts a new multipart upload to a specific object in the given bucket in the given namespace.
506
+ * <p>
507
+ See [Object Names](https://docs.cloud.oracle.com/Content/Object/Tasks/managingobjects.htm#namerequirements)
508
+ * for object naming requirements.
509
+ *
510
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
511
+ * @param CreateMultipartUploadRequest
512
+ * @return CreateMultipartUploadResponse
513
+ * @throws OciError when an error occurs
514
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/CreateMultipartUpload.ts.html |here} to see how to use CreateMultipartUpload API.
515
+ */
510
516
  createMultipartUpload(createMultipartUploadRequest) {
511
517
  return __awaiter(this, void 0, void 0, function* () {
512
518
  if (this.logger)
@@ -526,7 +532,7 @@ class ObjectStorageClient {
526
532
  "opc-sse-customer-key-sha256": createMultipartUploadRequest.opcSseCustomerKeySha256,
527
533
  "opc-sse-kms-key-id": createMultipartUploadRequest.opcSseKmsKeyId
528
534
  };
529
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
535
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
530
536
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createMultipartUploadRequest.retryConfiguration, specRetryConfiguration);
531
537
  if (this.logger)
532
538
  retrier.logger = this.logger;
@@ -576,11 +582,11 @@ class ObjectStorageClient {
576
582
  /**
577
583
  * Creates a pre-authenticated request specific to the bucket.
578
584
  *
579
- * This operation does not retry by default if the user has not defined a retry configuration.
585
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
580
586
  * @param CreatePreauthenticatedRequestRequest
581
587
  * @return CreatePreauthenticatedRequestResponse
582
588
  * @throws OciError when an error occurs
583
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/CreatePreauthenticatedRequest.ts.html |here} to see how to use CreatePreauthenticatedRequest API.
589
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/CreatePreauthenticatedRequest.ts.html |here} to see how to use CreatePreauthenticatedRequest API.
584
590
  */
585
591
  createPreauthenticatedRequest(createPreauthenticatedRequestRequest) {
586
592
  return __awaiter(this, void 0, void 0, function* () {
@@ -595,7 +601,7 @@ class ObjectStorageClient {
595
601
  "Content-Type": common.Constants.APPLICATION_JSON,
596
602
  "opc-client-request-id": createPreauthenticatedRequestRequest.opcClientRequestId
597
603
  };
598
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
604
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
599
605
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createPreauthenticatedRequestRequest.retryConfiguration, specRetryConfiguration);
600
606
  if (this.logger)
601
607
  retrier.logger = this.logger;
@@ -640,11 +646,11 @@ class ObjectStorageClient {
640
646
  /**
641
647
  * Creates a replication policy for the specified bucket.
642
648
  *
643
- * This operation does not retry by default if the user has not defined a retry configuration.
649
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
644
650
  * @param CreateReplicationPolicyRequest
645
651
  * @return CreateReplicationPolicyResponse
646
652
  * @throws OciError when an error occurs
647
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/CreateReplicationPolicy.ts.html |here} to see how to use CreateReplicationPolicy API.
653
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/CreateReplicationPolicy.ts.html |here} to see how to use CreateReplicationPolicy API.
648
654
  */
649
655
  createReplicationPolicy(createReplicationPolicyRequest) {
650
656
  return __awaiter(this, void 0, void 0, function* () {
@@ -659,7 +665,7 @@ class ObjectStorageClient {
659
665
  "Content-Type": common.Constants.APPLICATION_JSON,
660
666
  "opc-client-request-id": createReplicationPolicyRequest.opcClientRequestId
661
667
  };
662
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
668
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
663
669
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createReplicationPolicyRequest.retryConfiguration, specRetryConfiguration);
664
670
  if (this.logger)
665
671
  retrier.logger = this.logger;
@@ -705,11 +711,11 @@ class ObjectStorageClient {
705
711
  * Creates a new retention rule in the specified bucket. The new rule will take effect typically within 30 seconds.
706
712
  * Note that a maximum of 100 rules are supported on a bucket.
707
713
  *
708
- * This operation does not retry by default if the user has not defined a retry configuration.
714
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
709
715
  * @param CreateRetentionRuleRequest
710
716
  * @return CreateRetentionRuleResponse
711
717
  * @throws OciError when an error occurs
712
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/CreateRetentionRule.ts.html |here} to see how to use CreateRetentionRule API.
718
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/CreateRetentionRule.ts.html |here} to see how to use CreateRetentionRule API.
713
719
  */
714
720
  createRetentionRule(createRetentionRuleRequest) {
715
721
  return __awaiter(this, void 0, void 0, function* () {
@@ -724,7 +730,7 @@ class ObjectStorageClient {
724
730
  "Content-Type": common.Constants.APPLICATION_JSON,
725
731
  "opc-client-request-id": createRetentionRuleRequest.opcClientRequestId
726
732
  };
727
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
733
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
728
734
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createRetentionRuleRequest.retryConfiguration, specRetryConfiguration);
729
735
  if (this.logger)
730
736
  retrier.logger = this.logger;
@@ -777,11 +783,11 @@ class ObjectStorageClient {
777
783
  * you cannot delete a bucket that has a multipart upload in progress or a pre-authenticated
778
784
  * request associated with that bucket.
779
785
  *
780
- * This operation does not retry by default if the user has not defined a retry configuration.
786
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
781
787
  * @param DeleteBucketRequest
782
788
  * @return DeleteBucketResponse
783
789
  * @throws OciError when an error occurs
784
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/DeleteBucket.ts.html |here} to see how to use DeleteBucket API.
790
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/DeleteBucket.ts.html |here} to see how to use DeleteBucket API.
785
791
  */
786
792
  deleteBucket(deleteBucketRequest) {
787
793
  return __awaiter(this, void 0, void 0, function* () {
@@ -797,7 +803,7 @@ class ObjectStorageClient {
797
803
  "if-match": deleteBucketRequest.ifMatch,
798
804
  "opc-client-request-id": deleteBucketRequest.opcClientRequestId
799
805
  };
800
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
806
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
801
807
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteBucketRequest.retryConfiguration, specRetryConfiguration);
802
808
  if (this.logger)
803
809
  retrier.logger = this.logger;
@@ -837,11 +843,11 @@ class ObjectStorageClient {
837
843
  /**
838
844
  * Deletes an object.
839
845
  *
840
- * This operation does not retry by default if the user has not defined a retry configuration.
846
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
841
847
  * @param DeleteObjectRequest
842
848
  * @return DeleteObjectResponse
843
849
  * @throws OciError when an error occurs
844
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/DeleteObject.ts.html |here} to see how to use DeleteObject API.
850
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/DeleteObject.ts.html |here} to see how to use DeleteObject API.
845
851
  */
846
852
  deleteObject(deleteObjectRequest) {
847
853
  return __awaiter(this, void 0, void 0, function* () {
@@ -860,7 +866,7 @@ class ObjectStorageClient {
860
866
  "if-match": deleteObjectRequest.ifMatch,
861
867
  "opc-client-request-id": deleteObjectRequest.opcClientRequestId
862
868
  };
863
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
869
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
864
870
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteObjectRequest.retryConfiguration, specRetryConfiguration);
865
871
  if (this.logger)
866
872
  retrier.logger = this.logger;
@@ -915,11 +921,11 @@ class ObjectStorageClient {
915
921
  /**
916
922
  * Deletes the object lifecycle policy for the bucket.
917
923
  *
918
- * This operation does not retry by default if the user has not defined a retry configuration.
924
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
919
925
  * @param DeleteObjectLifecyclePolicyRequest
920
926
  * @return DeleteObjectLifecyclePolicyResponse
921
927
  * @throws OciError when an error occurs
922
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/DeleteObjectLifecyclePolicy.ts.html |here} to see how to use DeleteObjectLifecyclePolicy API.
928
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/DeleteObjectLifecyclePolicy.ts.html |here} to see how to use DeleteObjectLifecyclePolicy API.
923
929
  */
924
930
  deleteObjectLifecyclePolicy(deleteObjectLifecyclePolicyRequest) {
925
931
  return __awaiter(this, void 0, void 0, function* () {
@@ -935,7 +941,7 @@ class ObjectStorageClient {
935
941
  "opc-client-request-id": deleteObjectLifecyclePolicyRequest.opcClientRequestId,
936
942
  "if-match": deleteObjectLifecyclePolicyRequest.ifMatch
937
943
  };
938
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
944
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
939
945
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteObjectLifecyclePolicyRequest.retryConfiguration, specRetryConfiguration);
940
946
  if (this.logger)
941
947
  retrier.logger = this.logger;
@@ -974,11 +980,11 @@ class ObjectStorageClient {
974
980
  }
975
981
  /**
976
982
  * Deletes the pre-authenticated request for the bucket.
977
- * This operation does not retry by default if the user has not defined a retry configuration.
983
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
978
984
  * @param DeletePreauthenticatedRequestRequest
979
985
  * @return DeletePreauthenticatedRequestResponse
980
986
  * @throws OciError when an error occurs
981
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/DeletePreauthenticatedRequest.ts.html |here} to see how to use DeletePreauthenticatedRequest API.
987
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/DeletePreauthenticatedRequest.ts.html |here} to see how to use DeletePreauthenticatedRequest API.
982
988
  */
983
989
  deletePreauthenticatedRequest(deletePreauthenticatedRequestRequest) {
984
990
  return __awaiter(this, void 0, void 0, function* () {
@@ -994,7 +1000,7 @@ class ObjectStorageClient {
994
1000
  "Content-Type": common.Constants.APPLICATION_JSON,
995
1001
  "opc-client-request-id": deletePreauthenticatedRequestRequest.opcClientRequestId
996
1002
  };
997
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1003
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
998
1004
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deletePreauthenticatedRequestRequest.retryConfiguration, specRetryConfiguration);
999
1005
  if (this.logger)
1000
1006
  retrier.logger = this.logger;
@@ -1034,11 +1040,11 @@ class ObjectStorageClient {
1034
1040
  /**
1035
1041
  * Deletes the replication policy associated with the source bucket.
1036
1042
  *
1037
- * This operation does not retry by default if the user has not defined a retry configuration.
1043
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1038
1044
  * @param DeleteReplicationPolicyRequest
1039
1045
  * @return DeleteReplicationPolicyResponse
1040
1046
  * @throws OciError when an error occurs
1041
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/DeleteReplicationPolicy.ts.html |here} to see how to use DeleteReplicationPolicy API.
1047
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/DeleteReplicationPolicy.ts.html |here} to see how to use DeleteReplicationPolicy API.
1042
1048
  */
1043
1049
  deleteReplicationPolicy(deleteReplicationPolicyRequest) {
1044
1050
  return __awaiter(this, void 0, void 0, function* () {
@@ -1054,7 +1060,7 @@ class ObjectStorageClient {
1054
1060
  "Content-Type": common.Constants.APPLICATION_JSON,
1055
1061
  "opc-client-request-id": deleteReplicationPolicyRequest.opcClientRequestId
1056
1062
  };
1057
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1063
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1058
1064
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteReplicationPolicyRequest.retryConfiguration, specRetryConfiguration);
1059
1065
  if (this.logger)
1060
1066
  retrier.logger = this.logger;
@@ -1093,11 +1099,11 @@ class ObjectStorageClient {
1093
1099
  }
1094
1100
  /**
1095
1101
  * Deletes the specified rule. The deletion takes effect typically within 30 seconds.
1096
- * This operation does not retry by default if the user has not defined a retry configuration.
1102
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1097
1103
  * @param DeleteRetentionRuleRequest
1098
1104
  * @return DeleteRetentionRuleResponse
1099
1105
  * @throws OciError when an error occurs
1100
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/DeleteRetentionRule.ts.html |here} to see how to use DeleteRetentionRule API.
1106
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/DeleteRetentionRule.ts.html |here} to see how to use DeleteRetentionRule API.
1101
1107
  */
1102
1108
  deleteRetentionRule(deleteRetentionRuleRequest) {
1103
1109
  return __awaiter(this, void 0, void 0, function* () {
@@ -1114,7 +1120,7 @@ class ObjectStorageClient {
1114
1120
  "if-match": deleteRetentionRuleRequest.ifMatch,
1115
1121
  "opc-client-request-id": deleteRetentionRuleRequest.opcClientRequestId
1116
1122
  };
1117
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1123
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1118
1124
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteRetentionRuleRequest.retryConfiguration, specRetryConfiguration);
1119
1125
  if (this.logger)
1120
1126
  retrier.logger = this.logger;
@@ -1154,11 +1160,11 @@ class ObjectStorageClient {
1154
1160
  /**
1155
1161
  * Gets the current representation of the given bucket in the given Object Storage namespace.
1156
1162
  *
1157
- * This operation does not retry by default if the user has not defined a retry configuration.
1163
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1158
1164
  * @param GetBucketRequest
1159
1165
  * @return GetBucketResponse
1160
1166
  * @throws OciError when an error occurs
1161
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/GetBucket.ts.html |here} to see how to use GetBucket API.
1167
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/GetBucket.ts.html |here} to see how to use GetBucket API.
1162
1168
  */
1163
1169
  getBucket(getBucketRequest) {
1164
1170
  return __awaiter(this, void 0, void 0, function* () {
@@ -1177,7 +1183,7 @@ class ObjectStorageClient {
1177
1183
  "if-none-match": getBucketRequest.ifNoneMatch,
1178
1184
  "opc-client-request-id": getBucketRequest.opcClientRequestId
1179
1185
  };
1180
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1186
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1181
1187
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBucketRequest.retryConfiguration, specRetryConfiguration);
1182
1188
  if (this.logger)
1183
1189
  retrier.logger = this.logger;
@@ -1232,11 +1238,11 @@ class ObjectStorageClient {
1232
1238
  * If an optional compartmentId query parameter is provided, GetNamespace returns the namespace name of the corresponding
1233
1239
  * tenancy, provided the user has access to it.
1234
1240
  *
1235
- * This operation does not retry by default if the user has not defined a retry configuration.
1241
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1236
1242
  * @param GetNamespaceRequest
1237
1243
  * @return GetNamespaceResponse
1238
1244
  * @throws OciError when an error occurs
1239
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/GetNamespace.ts.html |here} to see how to use GetNamespace API.
1245
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/GetNamespace.ts.html |here} to see how to use GetNamespace API.
1240
1246
  */
1241
1247
  getNamespace(getNamespaceRequest) {
1242
1248
  return __awaiter(this, void 0, void 0, function* () {
@@ -1250,7 +1256,7 @@ class ObjectStorageClient {
1250
1256
  "Content-Type": common.Constants.APPLICATION_JSON,
1251
1257
  "opc-client-request-id": getNamespaceRequest.opcClientRequestId
1252
1258
  };
1253
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1259
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1254
1260
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getNamespaceRequest.retryConfiguration, specRetryConfiguration);
1255
1261
  if (this.logger)
1256
1262
  retrier.logger = this.logger;
@@ -1289,11 +1295,11 @@ class ObjectStorageClient {
1289
1295
  * to give users access, see
1290
1296
  * [Getting Started with Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
1291
1297
  *
1292
- * This operation does not retry by default if the user has not defined a retry configuration.
1298
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1293
1299
  * @param GetNamespaceMetadataRequest
1294
1300
  * @return GetNamespaceMetadataResponse
1295
1301
  * @throws OciError when an error occurs
1296
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/GetNamespaceMetadata.ts.html |here} to see how to use GetNamespaceMetadata API.
1302
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/GetNamespaceMetadata.ts.html |here} to see how to use GetNamespaceMetadata API.
1297
1303
  */
1298
1304
  getNamespaceMetadata(getNamespaceMetadataRequest) {
1299
1305
  return __awaiter(this, void 0, void 0, function* () {
@@ -1307,7 +1313,7 @@ class ObjectStorageClient {
1307
1313
  "Content-Type": common.Constants.APPLICATION_JSON,
1308
1314
  "opc-client-request-id": getNamespaceMetadataRequest.opcClientRequestId
1309
1315
  };
1310
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1316
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1311
1317
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getNamespaceMetadataRequest.retryConfiguration, specRetryConfiguration);
1312
1318
  if (this.logger)
1313
1319
  retrier.logger = this.logger;
@@ -1351,11 +1357,11 @@ class ObjectStorageClient {
1351
1357
  /**
1352
1358
  * Gets the metadata and body of an object.
1353
1359
  *
1354
- * This operation does not retry by default if the user has not defined a retry configuration.
1360
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1355
1361
  * @param GetObjectRequest
1356
1362
  * @return GetObjectResponse
1357
1363
  * @throws OciError when an error occurs
1358
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/GetObject.ts.html |here} to see how to use GetObject API.
1364
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/GetObject.ts.html |here} to see how to use GetObject API.
1359
1365
  */
1360
1366
  getObject(getObjectRequest) {
1361
1367
  return __awaiter(this, void 0, void 0, function* () {
@@ -1385,7 +1391,7 @@ class ObjectStorageClient {
1385
1391
  "opc-sse-customer-key": getObjectRequest.opcSseCustomerKey,
1386
1392
  "opc-sse-customer-key-sha256": getObjectRequest.opcSseCustomerKeySha256
1387
1393
  };
1388
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1394
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1389
1395
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getObjectRequest.retryConfiguration, specRetryConfiguration);
1390
1396
  if (this.logger)
1391
1397
  retrier.logger = this.logger;
@@ -1516,11 +1522,11 @@ class ObjectStorageClient {
1516
1522
  /**
1517
1523
  * Gets the object lifecycle policy for the bucket.
1518
1524
  *
1519
- * This operation does not retry by default if the user has not defined a retry configuration.
1525
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1520
1526
  * @param GetObjectLifecyclePolicyRequest
1521
1527
  * @return GetObjectLifecyclePolicyResponse
1522
1528
  * @throws OciError when an error occurs
1523
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/GetObjectLifecyclePolicy.ts.html |here} to see how to use GetObjectLifecyclePolicy API.
1529
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/GetObjectLifecyclePolicy.ts.html |here} to see how to use GetObjectLifecyclePolicy API.
1524
1530
  */
1525
1531
  getObjectLifecyclePolicy(getObjectLifecyclePolicyRequest) {
1526
1532
  return __awaiter(this, void 0, void 0, function* () {
@@ -1535,7 +1541,7 @@ class ObjectStorageClient {
1535
1541
  "Content-Type": common.Constants.APPLICATION_JSON,
1536
1542
  "opc-client-request-id": getObjectLifecyclePolicyRequest.opcClientRequestId
1537
1543
  };
1538
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1544
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1539
1545
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getObjectLifecyclePolicyRequest.retryConfiguration, specRetryConfiguration);
1540
1546
  if (this.logger)
1541
1547
  retrier.logger = this.logger;
@@ -1583,11 +1589,11 @@ class ObjectStorageClient {
1583
1589
  }
1584
1590
  /**
1585
1591
  * Gets the pre-authenticated request for the bucket.
1586
- * This operation does not retry by default if the user has not defined a retry configuration.
1592
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1587
1593
  * @param GetPreauthenticatedRequestRequest
1588
1594
  * @return GetPreauthenticatedRequestResponse
1589
1595
  * @throws OciError when an error occurs
1590
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/GetPreauthenticatedRequest.ts.html |here} to see how to use GetPreauthenticatedRequest API.
1596
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/GetPreauthenticatedRequest.ts.html |here} to see how to use GetPreauthenticatedRequest API.
1591
1597
  */
1592
1598
  getPreauthenticatedRequest(getPreauthenticatedRequestRequest) {
1593
1599
  return __awaiter(this, void 0, void 0, function* () {
@@ -1603,7 +1609,7 @@ class ObjectStorageClient {
1603
1609
  "Content-Type": common.Constants.APPLICATION_JSON,
1604
1610
  "opc-client-request-id": getPreauthenticatedRequestRequest.opcClientRequestId
1605
1611
  };
1606
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1612
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1607
1613
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getPreauthenticatedRequestRequest.retryConfiguration, specRetryConfiguration);
1608
1614
  if (this.logger)
1609
1615
  retrier.logger = this.logger;
@@ -1647,11 +1653,11 @@ class ObjectStorageClient {
1647
1653
  /**
1648
1654
  * Get the replication policy.
1649
1655
  *
1650
- * This operation does not retry by default if the user has not defined a retry configuration.
1656
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1651
1657
  * @param GetReplicationPolicyRequest
1652
1658
  * @return GetReplicationPolicyResponse
1653
1659
  * @throws OciError when an error occurs
1654
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/GetReplicationPolicy.ts.html |here} to see how to use GetReplicationPolicy API.
1660
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/GetReplicationPolicy.ts.html |here} to see how to use GetReplicationPolicy API.
1655
1661
  */
1656
1662
  getReplicationPolicy(getReplicationPolicyRequest) {
1657
1663
  return __awaiter(this, void 0, void 0, function* () {
@@ -1667,7 +1673,7 @@ class ObjectStorageClient {
1667
1673
  "Content-Type": common.Constants.APPLICATION_JSON,
1668
1674
  "opc-client-request-id": getReplicationPolicyRequest.opcClientRequestId
1669
1675
  };
1670
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1676
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1671
1677
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getReplicationPolicyRequest.retryConfiguration, specRetryConfiguration);
1672
1678
  if (this.logger)
1673
1679
  retrier.logger = this.logger;
@@ -1710,11 +1716,11 @@ class ObjectStorageClient {
1710
1716
  }
1711
1717
  /**
1712
1718
  * Get the specified retention rule.
1713
- * This operation does not retry by default if the user has not defined a retry configuration.
1719
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1714
1720
  * @param GetRetentionRuleRequest
1715
1721
  * @return GetRetentionRuleResponse
1716
1722
  * @throws OciError when an error occurs
1717
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/GetRetentionRule.ts.html |here} to see how to use GetRetentionRule API.
1723
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/GetRetentionRule.ts.html |here} to see how to use GetRetentionRule API.
1718
1724
  */
1719
1725
  getRetentionRule(getRetentionRuleRequest) {
1720
1726
  return __awaiter(this, void 0, void 0, function* () {
@@ -1730,7 +1736,7 @@ class ObjectStorageClient {
1730
1736
  "Content-Type": common.Constants.APPLICATION_JSON,
1731
1737
  "opc-client-request-id": getRetentionRuleRequest.opcClientRequestId
1732
1738
  };
1733
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1739
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1734
1740
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getRetentionRuleRequest.retryConfiguration, specRetryConfiguration);
1735
1741
  if (this.logger)
1736
1742
  retrier.logger = this.logger;
@@ -1783,11 +1789,11 @@ class ObjectStorageClient {
1783
1789
  }
1784
1790
  /**
1785
1791
  * Gets the status of the work request for the given ID.
1786
- * This operation does not retry by default if the user has not defined a retry configuration.
1792
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1787
1793
  * @param GetWorkRequestRequest
1788
1794
  * @return GetWorkRequestResponse
1789
1795
  * @throws OciError when an error occurs
1790
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1796
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1791
1797
  */
1792
1798
  getWorkRequest(getWorkRequestRequest) {
1793
1799
  return __awaiter(this, void 0, void 0, function* () {
@@ -1801,7 +1807,7 @@ class ObjectStorageClient {
1801
1807
  "Content-Type": common.Constants.APPLICATION_JSON,
1802
1808
  "opc-client-request-id": getWorkRequestRequest.opcClientRequestId
1803
1809
  };
1804
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1810
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1805
1811
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
1806
1812
  if (this.logger)
1807
1813
  retrier.logger = this.logger;
@@ -1850,11 +1856,11 @@ class ObjectStorageClient {
1850
1856
  /**
1851
1857
  * Efficiently checks to see if a bucket exists and gets the current entity tag (ETag) for the bucket.
1852
1858
  *
1853
- * This operation does not retry by default if the user has not defined a retry configuration.
1859
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1854
1860
  * @param HeadBucketRequest
1855
1861
  * @return HeadBucketResponse
1856
1862
  * @throws OciError when an error occurs
1857
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/HeadBucket.ts.html |here} to see how to use HeadBucket API.
1863
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/HeadBucket.ts.html |here} to see how to use HeadBucket API.
1858
1864
  */
1859
1865
  headBucket(headBucketRequest) {
1860
1866
  return __awaiter(this, void 0, void 0, function* () {
@@ -1871,7 +1877,7 @@ class ObjectStorageClient {
1871
1877
  "if-none-match": headBucketRequest.ifNoneMatch,
1872
1878
  "opc-client-request-id": headBucketRequest.opcClientRequestId
1873
1879
  };
1874
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1880
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1875
1881
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, headBucketRequest.retryConfiguration, specRetryConfiguration);
1876
1882
  if (this.logger)
1877
1883
  retrier.logger = this.logger;
@@ -1916,11 +1922,11 @@ class ObjectStorageClient {
1916
1922
  /**
1917
1923
  * Gets the user-defined metadata and entity tag (ETag) for an object.
1918
1924
  *
1919
- * This operation does not retry by default if the user has not defined a retry configuration.
1925
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1920
1926
  * @param HeadObjectRequest
1921
1927
  * @return HeadObjectResponse
1922
1928
  * @throws OciError when an error occurs
1923
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/HeadObject.ts.html |here} to see how to use HeadObject API.
1929
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/HeadObject.ts.html |here} to see how to use HeadObject API.
1924
1930
  */
1925
1931
  headObject(headObjectRequest) {
1926
1932
  return __awaiter(this, void 0, void 0, function* () {
@@ -1943,7 +1949,7 @@ class ObjectStorageClient {
1943
1949
  "opc-sse-customer-key": headObjectRequest.opcSseCustomerKey,
1944
1950
  "opc-sse-customer-key-sha256": headObjectRequest.opcSseCustomerKeySha256
1945
1951
  };
1946
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1952
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1947
1953
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, headObjectRequest.retryConfiguration, specRetryConfiguration);
1948
1954
  if (this.logger)
1949
1955
  retrier.logger = this.logger;
@@ -2069,11 +2075,11 @@ class ObjectStorageClient {
2069
2075
  * talk to an administrator. If you are an administrator who needs to write policies to give users access, see
2070
2076
  * [Getting Started with Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
2071
2077
  *
2072
- * This operation does not retry by default if the user has not defined a retry configuration.
2078
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2073
2079
  * @param ListBucketsRequest
2074
2080
  * @return ListBucketsResponse
2075
2081
  * @throws OciError when an error occurs
2076
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ListBuckets.ts.html |here} to see how to use ListBuckets API.
2082
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ListBuckets.ts.html |here} to see how to use ListBuckets API.
2077
2083
  */
2078
2084
  listBuckets(listBucketsRequest) {
2079
2085
  return __awaiter(this, void 0, void 0, function* () {
@@ -2092,7 +2098,7 @@ class ObjectStorageClient {
2092
2098
  "Content-Type": common.Constants.APPLICATION_JSON,
2093
2099
  "opc-client-request-id": listBucketsRequest.opcClientRequestId
2094
2100
  };
2095
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2101
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2096
2102
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listBucketsRequest.retryConfiguration, specRetryConfiguration);
2097
2103
  if (this.logger)
2098
2104
  retrier.logger = this.logger;
@@ -2181,11 +2187,11 @@ class ObjectStorageClient {
2181
2187
  /**
2182
2188
  * Lists the parts of an in-progress multipart upload.
2183
2189
  *
2184
- * This operation does not retry by default if the user has not defined a retry configuration.
2190
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2185
2191
  * @param ListMultipartUploadPartsRequest
2186
2192
  * @return ListMultipartUploadPartsResponse
2187
2193
  * @throws OciError when an error occurs
2188
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ListMultipartUploadParts.ts.html |here} to see how to use ListMultipartUploadParts API.
2194
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ListMultipartUploadParts.ts.html |here} to see how to use ListMultipartUploadParts API.
2189
2195
  */
2190
2196
  listMultipartUploadParts(listMultipartUploadPartsRequest) {
2191
2197
  return __awaiter(this, void 0, void 0, function* () {
@@ -2205,7 +2211,7 @@ class ObjectStorageClient {
2205
2211
  "Content-Type": common.Constants.APPLICATION_JSON,
2206
2212
  "opc-client-request-id": listMultipartUploadPartsRequest.opcClientRequestId
2207
2213
  };
2208
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2214
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2209
2215
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listMultipartUploadPartsRequest.retryConfiguration, specRetryConfiguration);
2210
2216
  if (this.logger)
2211
2217
  retrier.logger = this.logger;
@@ -2294,11 +2300,11 @@ class ObjectStorageClient {
2294
2300
  /**
2295
2301
  * Lists all of the in-progress multipart uploads for the given bucket in the given Object Storage namespace.
2296
2302
  *
2297
- * This operation does not retry by default if the user has not defined a retry configuration.
2303
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2298
2304
  * @param ListMultipartUploadsRequest
2299
2305
  * @return ListMultipartUploadsResponse
2300
2306
  * @throws OciError when an error occurs
2301
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ListMultipartUploads.ts.html |here} to see how to use ListMultipartUploads API.
2307
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ListMultipartUploads.ts.html |here} to see how to use ListMultipartUploads API.
2302
2308
  */
2303
2309
  listMultipartUploads(listMultipartUploadsRequest) {
2304
2310
  return __awaiter(this, void 0, void 0, function* () {
@@ -2316,7 +2322,7 @@ class ObjectStorageClient {
2316
2322
  "Content-Type": common.Constants.APPLICATION_JSON,
2317
2323
  "opc-client-request-id": listMultipartUploadsRequest.opcClientRequestId
2318
2324
  };
2319
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2325
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2320
2326
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listMultipartUploadsRequest.retryConfiguration, specRetryConfiguration);
2321
2327
  if (this.logger)
2322
2328
  retrier.logger = this.logger;
@@ -2412,11 +2418,11 @@ class ObjectStorageClient {
2412
2418
  * talk to an administrator. If you are an administrator who needs to write policies to give users access, see
2413
2419
  * [Getting Started with Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
2414
2420
  *
2415
- * This operation does not retry by default if the user has not defined a retry configuration.
2421
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2416
2422
  * @param ListObjectVersionsRequest
2417
2423
  * @return ListObjectVersionsResponse
2418
2424
  * @throws OciError when an error occurs
2419
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ListObjectVersions.ts.html |here} to see how to use ListObjectVersions API.
2425
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ListObjectVersions.ts.html |here} to see how to use ListObjectVersions API.
2420
2426
  */
2421
2427
  listObjectVersions(listObjectVersionsRequest) {
2422
2428
  return __awaiter(this, void 0, void 0, function* () {
@@ -2440,7 +2446,7 @@ class ObjectStorageClient {
2440
2446
  "Content-Type": common.Constants.APPLICATION_JSON,
2441
2447
  "opc-client-request-id": listObjectVersionsRequest.opcClientRequestId
2442
2448
  };
2443
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2449
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2444
2450
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listObjectVersionsRequest.retryConfiguration, specRetryConfiguration);
2445
2451
  if (this.logger)
2446
2452
  retrier.logger = this.logger;
@@ -2498,11 +2504,11 @@ class ObjectStorageClient {
2498
2504
  * talk to an administrator. If you are an administrator who needs to write policies to give users access, see
2499
2505
  * [Getting Started with Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
2500
2506
  *
2501
- * This operation does not retry by default if the user has not defined a retry configuration.
2507
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2502
2508
  * @param ListObjectsRequest
2503
2509
  * @return ListObjectsResponse
2504
2510
  * @throws OciError when an error occurs
2505
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ListObjects.ts.html |here} to see how to use ListObjects API.
2511
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ListObjects.ts.html |here} to see how to use ListObjects API.
2506
2512
  */
2507
2513
  listObjects(listObjectsRequest) {
2508
2514
  return __awaiter(this, void 0, void 0, function* () {
@@ -2525,7 +2531,7 @@ class ObjectStorageClient {
2525
2531
  "Content-Type": common.Constants.APPLICATION_JSON,
2526
2532
  "opc-client-request-id": listObjectsRequest.opcClientRequestId
2527
2533
  };
2528
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2534
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2529
2535
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listObjectsRequest.retryConfiguration, specRetryConfiguration);
2530
2536
  if (this.logger)
2531
2537
  retrier.logger = this.logger;
@@ -2609,11 +2615,11 @@ class ObjectStorageClient {
2609
2615
  /**
2610
2616
  * Lists pre-authenticated requests for the bucket.
2611
2617
  *
2612
- * This operation does not retry by default if the user has not defined a retry configuration.
2618
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2613
2619
  * @param ListPreauthenticatedRequestsRequest
2614
2620
  * @return ListPreauthenticatedRequestsResponse
2615
2621
  * @throws OciError when an error occurs
2616
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ListPreauthenticatedRequests.ts.html |here} to see how to use ListPreauthenticatedRequests API.
2622
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ListPreauthenticatedRequests.ts.html |here} to see how to use ListPreauthenticatedRequests API.
2617
2623
  */
2618
2624
  listPreauthenticatedRequests(listPreauthenticatedRequestsRequest) {
2619
2625
  return __awaiter(this, void 0, void 0, function* () {
@@ -2632,7 +2638,7 @@ class ObjectStorageClient {
2632
2638
  "Content-Type": common.Constants.APPLICATION_JSON,
2633
2639
  "opc-client-request-id": listPreauthenticatedRequestsRequest.opcClientRequestId
2634
2640
  };
2635
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2641
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2636
2642
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPreauthenticatedRequestsRequest.retryConfiguration, specRetryConfiguration);
2637
2643
  if (this.logger)
2638
2644
  retrier.logger = this.logger;
@@ -2721,11 +2727,11 @@ class ObjectStorageClient {
2721
2727
  /**
2722
2728
  * List the replication policies associated with a bucket.
2723
2729
  *
2724
- * This operation does not retry by default if the user has not defined a retry configuration.
2730
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2725
2731
  * @param ListReplicationPoliciesRequest
2726
2732
  * @return ListReplicationPoliciesResponse
2727
2733
  * @throws OciError when an error occurs
2728
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ListReplicationPolicies.ts.html |here} to see how to use ListReplicationPolicies API.
2734
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ListReplicationPolicies.ts.html |here} to see how to use ListReplicationPolicies API.
2729
2735
  */
2730
2736
  listReplicationPolicies(listReplicationPoliciesRequest) {
2731
2737
  return __awaiter(this, void 0, void 0, function* () {
@@ -2743,7 +2749,7 @@ class ObjectStorageClient {
2743
2749
  "Content-Type": common.Constants.APPLICATION_JSON,
2744
2750
  "opc-client-request-id": listReplicationPoliciesRequest.opcClientRequestId
2745
2751
  };
2746
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2752
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2747
2753
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listReplicationPoliciesRequest.retryConfiguration, specRetryConfiguration);
2748
2754
  if (this.logger)
2749
2755
  retrier.logger = this.logger;
@@ -2832,11 +2838,11 @@ class ObjectStorageClient {
2832
2838
  /**
2833
2839
  * List the replication sources of a destination bucket.
2834
2840
  *
2835
- * This operation does not retry by default if the user has not defined a retry configuration.
2841
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2836
2842
  * @param ListReplicationSourcesRequest
2837
2843
  * @return ListReplicationSourcesResponse
2838
2844
  * @throws OciError when an error occurs
2839
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ListReplicationSources.ts.html |here} to see how to use ListReplicationSources API.
2845
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ListReplicationSources.ts.html |here} to see how to use ListReplicationSources API.
2840
2846
  */
2841
2847
  listReplicationSources(listReplicationSourcesRequest) {
2842
2848
  return __awaiter(this, void 0, void 0, function* () {
@@ -2854,7 +2860,7 @@ class ObjectStorageClient {
2854
2860
  "Content-Type": common.Constants.APPLICATION_JSON,
2855
2861
  "opc-client-request-id": listReplicationSourcesRequest.opcClientRequestId
2856
2862
  };
2857
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2863
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2858
2864
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listReplicationSourcesRequest.retryConfiguration, specRetryConfiguration);
2859
2865
  if (this.logger)
2860
2866
  retrier.logger = this.logger;
@@ -2944,11 +2950,11 @@ class ObjectStorageClient {
2944
2950
  * List the retention rules for a bucket. The retention rules are sorted based on creation time,
2945
2951
  * with the most recently created retention rule returned first.
2946
2952
  *
2947
- * This operation does not retry by default if the user has not defined a retry configuration.
2953
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2948
2954
  * @param ListRetentionRulesRequest
2949
2955
  * @return ListRetentionRulesResponse
2950
2956
  * @throws OciError when an error occurs
2951
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ListRetentionRules.ts.html |here} to see how to use ListRetentionRules API.
2957
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ListRetentionRules.ts.html |here} to see how to use ListRetentionRules API.
2952
2958
  */
2953
2959
  listRetentionRules(listRetentionRulesRequest) {
2954
2960
  return __awaiter(this, void 0, void 0, function* () {
@@ -2964,7 +2970,7 @@ class ObjectStorageClient {
2964
2970
  let headerParams = {
2965
2971
  "Content-Type": common.Constants.APPLICATION_JSON
2966
2972
  };
2967
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2973
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2968
2974
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRetentionRulesRequest.retryConfiguration, specRetryConfiguration);
2969
2975
  if (this.logger)
2970
2976
  retrier.logger = this.logger;
@@ -3012,11 +3018,11 @@ class ObjectStorageClient {
3012
3018
  }
3013
3019
  /**
3014
3020
  * Lists the errors of the work request with the given ID.
3015
- * This operation does not retry by default if the user has not defined a retry configuration.
3021
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3016
3022
  * @param ListWorkRequestErrorsRequest
3017
3023
  * @return ListWorkRequestErrorsResponse
3018
3024
  * @throws OciError when an error occurs
3019
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
3025
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
3020
3026
  */
3021
3027
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
3022
3028
  return __awaiter(this, void 0, void 0, function* () {
@@ -3033,7 +3039,7 @@ class ObjectStorageClient {
3033
3039
  "Content-Type": common.Constants.APPLICATION_JSON,
3034
3040
  "opc-client-request-id": listWorkRequestErrorsRequest.opcClientRequestId
3035
3041
  };
3036
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3042
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3037
3043
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestErrorsRequest.retryConfiguration, specRetryConfiguration);
3038
3044
  if (this.logger)
3039
3045
  retrier.logger = this.logger;
@@ -3121,11 +3127,11 @@ class ObjectStorageClient {
3121
3127
  }
3122
3128
  /**
3123
3129
  * Lists the logs of the work request with the given ID.
3124
- * This operation does not retry by default if the user has not defined a retry configuration.
3130
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3125
3131
  * @param ListWorkRequestLogsRequest
3126
3132
  * @return ListWorkRequestLogsResponse
3127
3133
  * @throws OciError when an error occurs
3128
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
3134
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
3129
3135
  */
3130
3136
  listWorkRequestLogs(listWorkRequestLogsRequest) {
3131
3137
  return __awaiter(this, void 0, void 0, function* () {
@@ -3142,7 +3148,7 @@ class ObjectStorageClient {
3142
3148
  "Content-Type": common.Constants.APPLICATION_JSON,
3143
3149
  "opc-client-request-id": listWorkRequestLogsRequest.opcClientRequestId
3144
3150
  };
3145
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3151
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3146
3152
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestLogsRequest.retryConfiguration, specRetryConfiguration);
3147
3153
  if (this.logger)
3148
3154
  retrier.logger = this.logger;
@@ -3231,11 +3237,11 @@ class ObjectStorageClient {
3231
3237
  /**
3232
3238
  * Lists the work requests in a compartment.
3233
3239
  *
3234
- * This operation does not retry by default if the user has not defined a retry configuration.
3240
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3235
3241
  * @param ListWorkRequestsRequest
3236
3242
  * @return ListWorkRequestsResponse
3237
3243
  * @throws OciError when an error occurs
3238
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3244
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3239
3245
  */
3240
3246
  listWorkRequests(listWorkRequestsRequest) {
3241
3247
  return __awaiter(this, void 0, void 0, function* () {
@@ -3251,7 +3257,7 @@ class ObjectStorageClient {
3251
3257
  "Content-Type": common.Constants.APPLICATION_JSON,
3252
3258
  "opc-client-request-id": listWorkRequestsRequest.opcClientRequestId
3253
3259
  };
3254
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3260
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3255
3261
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
3256
3262
  if (this.logger)
3257
3263
  retrier.logger = this.logger;
@@ -3343,11 +3349,11 @@ class ObjectStorageClient {
3343
3349
  * automatically from the source bucket. MakeBucketWritable removes the replication policy. This bucket is no
3344
3350
  * longer the target for replication and is now writable, allowing users to make changes to bucket contents.
3345
3351
  *
3346
- * This operation does not retry by default if the user has not defined a retry configuration.
3352
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3347
3353
  * @param MakeBucketWritableRequest
3348
3354
  * @return MakeBucketWritableResponse
3349
3355
  * @throws OciError when an error occurs
3350
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/MakeBucketWritable.ts.html |here} to see how to use MakeBucketWritable API.
3356
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/MakeBucketWritable.ts.html |here} to see how to use MakeBucketWritable API.
3351
3357
  */
3352
3358
  makeBucketWritable(makeBucketWritableRequest) {
3353
3359
  return __awaiter(this, void 0, void 0, function* () {
@@ -3362,7 +3368,7 @@ class ObjectStorageClient {
3362
3368
  "Content-Type": common.Constants.APPLICATION_JSON,
3363
3369
  "opc-client-request-id": makeBucketWritableRequest.opcClientRequestId
3364
3370
  };
3365
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3371
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3366
3372
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, makeBucketWritableRequest.retryConfiguration, specRetryConfiguration);
3367
3373
  if (this.logger)
3368
3374
  retrier.logger = this.logger;
@@ -3409,11 +3415,11 @@ class ObjectStorageClient {
3409
3415
  See [Special Instructions for Object Storage PUT](https://docs.cloud.oracle.com/Content/API/Concepts/signingrequests.htm#ObjectStoragePut)
3410
3416
  * for request signature requirements.
3411
3417
  *
3412
- * This operation does not retry by default if the user has not defined a retry configuration.
3418
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3413
3419
  * @param PutObjectRequest
3414
3420
  * @return PutObjectResponse
3415
3421
  * @throws OciError when an error occurs
3416
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/PutObject.ts.html |here} to see how to use PutObject API.
3422
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/PutObject.ts.html |here} to see how to use PutObject API.
3417
3423
  */
3418
3424
  putObject(putObjectRequest) {
3419
3425
  return __awaiter(this, void 0, void 0, function* () {
@@ -3448,7 +3454,7 @@ class ObjectStorageClient {
3448
3454
  Object.assign(headerParams, { ["opc-meta-" + key]: value });
3449
3455
  });
3450
3456
  }
3451
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3457
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3452
3458
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, putObjectRequest.retryConfiguration, specRetryConfiguration);
3453
3459
  if (this.logger)
3454
3460
  retrier.logger = this.logger;
@@ -3510,11 +3516,11 @@ class ObjectStorageClient {
3510
3516
  /**
3511
3517
  * Creates or replaces the object lifecycle policy for the bucket.
3512
3518
  *
3513
- * This operation does not retry by default if the user has not defined a retry configuration.
3519
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3514
3520
  * @param PutObjectLifecyclePolicyRequest
3515
3521
  * @return PutObjectLifecyclePolicyResponse
3516
3522
  * @throws OciError when an error occurs
3517
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/PutObjectLifecyclePolicy.ts.html |here} to see how to use PutObjectLifecyclePolicy API.
3523
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/PutObjectLifecyclePolicy.ts.html |here} to see how to use PutObjectLifecyclePolicy API.
3518
3524
  */
3519
3525
  putObjectLifecyclePolicy(putObjectLifecyclePolicyRequest) {
3520
3526
  return __awaiter(this, void 0, void 0, function* () {
@@ -3531,7 +3537,7 @@ class ObjectStorageClient {
3531
3537
  "if-match": putObjectLifecyclePolicyRequest.ifMatch,
3532
3538
  "if-none-match": putObjectLifecyclePolicyRequest.ifNoneMatch
3533
3539
  };
3534
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3540
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3535
3541
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, putObjectLifecyclePolicyRequest.retryConfiguration, specRetryConfiguration);
3536
3542
  if (this.logger)
3537
3543
  retrier.logger = this.logger;
@@ -3595,11 +3601,11 @@ class ObjectStorageClient {
3595
3601
  * of the work request task.
3596
3602
  * All the versions of objects will be re-encrypted whether versioning is enabled or suspended at the bucket.
3597
3603
  *
3598
- * This operation does not retry by default if the user has not defined a retry configuration.
3604
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3599
3605
  * @param ReencryptBucketRequest
3600
3606
  * @return ReencryptBucketResponse
3601
3607
  * @throws OciError when an error occurs
3602
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ReencryptBucket.ts.html |here} to see how to use ReencryptBucket API.
3608
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ReencryptBucket.ts.html |here} to see how to use ReencryptBucket API.
3603
3609
  */
3604
3610
  reencryptBucket(reencryptBucketRequest) {
3605
3611
  return __awaiter(this, void 0, void 0, function* () {
@@ -3614,7 +3620,7 @@ class ObjectStorageClient {
3614
3620
  "Content-Type": common.Constants.APPLICATION_JSON,
3615
3621
  "opc-client-request-id": reencryptBucketRequest.opcClientRequestId
3616
3622
  };
3617
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3623
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3618
3624
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, reencryptBucketRequest.retryConfiguration, specRetryConfiguration);
3619
3625
  if (this.logger)
3620
3626
  retrier.logger = this.logger;
@@ -3667,11 +3673,11 @@ class ObjectStorageClient {
3667
3673
  * <p>
3668
3674
  - You can encrypt an object using your own encryption key. The key you supply is known as a customer-provided encryption key (SSE-C).
3669
3675
  *
3670
- * This operation does not retry by default if the user has not defined a retry configuration.
3676
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3671
3677
  * @param ReencryptObjectRequest
3672
3678
  * @return ReencryptObjectResponse
3673
3679
  * @throws OciError when an error occurs
3674
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/ReencryptObject.ts.html |here} to see how to use ReencryptObject API.
3680
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/ReencryptObject.ts.html |here} to see how to use ReencryptObject API.
3675
3681
  */
3676
3682
  reencryptObject(reencryptObjectRequest) {
3677
3683
  return __awaiter(this, void 0, void 0, function* () {
@@ -3689,7 +3695,7 @@ class ObjectStorageClient {
3689
3695
  "Content-Type": common.Constants.APPLICATION_JSON,
3690
3696
  "opc-client-request-id": reencryptObjectRequest.opcClientRequestId
3691
3697
  };
3692
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3698
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3693
3699
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, reencryptObjectRequest.retryConfiguration, specRetryConfiguration);
3694
3700
  if (this.logger)
3695
3701
  retrier.logger = this.logger;
@@ -3733,11 +3739,11 @@ class ObjectStorageClient {
3733
3739
  See [Object Names](https://docs.cloud.oracle.com/Content/Object/Tasks/managingobjects.htm#namerequirements)
3734
3740
  * for object naming requirements.
3735
3741
  *
3736
- * This operation does not retry by default if the user has not defined a retry configuration.
3742
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3737
3743
  * @param RenameObjectRequest
3738
3744
  * @return RenameObjectResponse
3739
3745
  * @throws OciError when an error occurs
3740
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/RenameObject.ts.html |here} to see how to use RenameObject API.
3746
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/RenameObject.ts.html |here} to see how to use RenameObject API.
3741
3747
  */
3742
3748
  renameObject(renameObjectRequest) {
3743
3749
  return __awaiter(this, void 0, void 0, function* () {
@@ -3752,7 +3758,7 @@ class ObjectStorageClient {
3752
3758
  "Content-Type": common.Constants.APPLICATION_JSON,
3753
3759
  "opc-client-request-id": renameObjectRequest.opcClientRequestId
3754
3760
  };
3755
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3761
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3756
3762
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, renameObjectRequest.retryConfiguration, specRetryConfiguration);
3757
3763
  if (this.logger)
3758
3764
  retrier.logger = this.logger;
@@ -3809,11 +3815,11 @@ class ObjectStorageClient {
3809
3815
  * Restores one or more objects specified by the objectName parameter.
3810
3816
  * By default objects will be restored for 24 hours. Duration can be configured using the hours parameter.
3811
3817
  *
3812
- * This operation does not retry by default if the user has not defined a retry configuration.
3818
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3813
3819
  * @param RestoreObjectsRequest
3814
3820
  * @return RestoreObjectsResponse
3815
3821
  * @throws OciError when an error occurs
3816
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/RestoreObjects.ts.html |here} to see how to use RestoreObjects API.
3822
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/RestoreObjects.ts.html |here} to see how to use RestoreObjects API.
3817
3823
  */
3818
3824
  restoreObjects(restoreObjectsRequest) {
3819
3825
  return __awaiter(this, void 0, void 0, function* () {
@@ -3828,7 +3834,7 @@ class ObjectStorageClient {
3828
3834
  "Content-Type": common.Constants.APPLICATION_JSON,
3829
3835
  "opc-client-request-id": restoreObjectsRequest.opcClientRequestId
3830
3836
  };
3831
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3837
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3832
3838
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, restoreObjectsRequest.retryConfiguration, specRetryConfiguration);
3833
3839
  if (this.logger)
3834
3840
  retrier.logger = this.logger;
@@ -3873,11 +3879,11 @@ class ObjectStorageClient {
3873
3879
  * of the compartment that you want to move the bucket to. For more information about moving resources between compartments,
3874
3880
  * see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
3875
3881
  *
3876
- * This operation does not retry by default if the user has not defined a retry configuration.
3882
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3877
3883
  * @param UpdateBucketRequest
3878
3884
  * @return UpdateBucketResponse
3879
3885
  * @throws OciError when an error occurs
3880
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/UpdateBucket.ts.html |here} to see how to use UpdateBucket API.
3886
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/UpdateBucket.ts.html |here} to see how to use UpdateBucket API.
3881
3887
  */
3882
3888
  updateBucket(updateBucketRequest) {
3883
3889
  return __awaiter(this, void 0, void 0, function* () {
@@ -3893,7 +3899,7 @@ class ObjectStorageClient {
3893
3899
  "if-match": updateBucketRequest.ifMatch,
3894
3900
  "opc-client-request-id": updateBucketRequest.opcClientRequestId
3895
3901
  };
3896
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3902
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3897
3903
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateBucketRequest.retryConfiguration, specRetryConfiguration);
3898
3904
  if (this.logger)
3899
3905
  retrier.logger = this.logger;
@@ -3949,11 +3955,11 @@ class ObjectStorageClient {
3949
3955
  * buckets will be modified. A user must have OBJECTSTORAGE_NAMESPACE_UPDATE permission to make changes to the default
3950
3956
  * compartments for Amazon S3 and Swift.
3951
3957
  *
3952
- * This operation does not retry by default if the user has not defined a retry configuration.
3958
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3953
3959
  * @param UpdateNamespaceMetadataRequest
3954
3960
  * @return UpdateNamespaceMetadataResponse
3955
3961
  * @throws OciError when an error occurs
3956
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/UpdateNamespaceMetadata.ts.html |here} to see how to use UpdateNamespaceMetadata API.
3962
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/UpdateNamespaceMetadata.ts.html |here} to see how to use UpdateNamespaceMetadata API.
3957
3963
  */
3958
3964
  updateNamespaceMetadata(updateNamespaceMetadataRequest) {
3959
3965
  return __awaiter(this, void 0, void 0, function* () {
@@ -3967,7 +3973,7 @@ class ObjectStorageClient {
3967
3973
  "Content-Type": common.Constants.APPLICATION_JSON,
3968
3974
  "opc-client-request-id": updateNamespaceMetadataRequest.opcClientRequestId
3969
3975
  };
3970
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3976
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3971
3977
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateNamespaceMetadataRequest.retryConfiguration, specRetryConfiguration);
3972
3978
  if (this.logger)
3973
3979
  retrier.logger = this.logger;
@@ -4012,11 +4018,11 @@ class ObjectStorageClient {
4012
4018
  /**
4013
4019
  * Changes the storage tier of the object specified by the objectName parameter.
4014
4020
  *
4015
- * This operation does not retry by default if the user has not defined a retry configuration.
4021
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
4016
4022
  * @param UpdateObjectStorageTierRequest
4017
4023
  * @return UpdateObjectStorageTierResponse
4018
4024
  * @throws OciError when an error occurs
4019
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/UpdateObjectStorageTier.ts.html |here} to see how to use UpdateObjectStorageTier API.
4025
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/UpdateObjectStorageTier.ts.html |here} to see how to use UpdateObjectStorageTier API.
4020
4026
  */
4021
4027
  updateObjectStorageTier(updateObjectStorageTierRequest) {
4022
4028
  return __awaiter(this, void 0, void 0, function* () {
@@ -4031,7 +4037,7 @@ class ObjectStorageClient {
4031
4037
  "Content-Type": common.Constants.APPLICATION_JSON,
4032
4038
  "opc-client-request-id": updateObjectStorageTierRequest.opcClientRequestId
4033
4039
  };
4034
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
4040
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
4035
4041
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateObjectStorageTierRequest.retryConfiguration, specRetryConfiguration);
4036
4042
  if (this.logger)
4037
4043
  retrier.logger = this.logger;
@@ -4072,11 +4078,11 @@ class ObjectStorageClient {
4072
4078
  /**
4073
4079
  * Updates the specified retention rule. Rule changes take effect typically within 30 seconds.
4074
4080
  *
4075
- * This operation does not retry by default if the user has not defined a retry configuration.
4081
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
4076
4082
  * @param UpdateRetentionRuleRequest
4077
4083
  * @return UpdateRetentionRuleResponse
4078
4084
  * @throws OciError when an error occurs
4079
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/UpdateRetentionRule.ts.html |here} to see how to use UpdateRetentionRule API.
4085
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/UpdateRetentionRule.ts.html |here} to see how to use UpdateRetentionRule API.
4080
4086
  */
4081
4087
  updateRetentionRule(updateRetentionRuleRequest) {
4082
4088
  return __awaiter(this, void 0, void 0, function* () {
@@ -4093,7 +4099,7 @@ class ObjectStorageClient {
4093
4099
  "if-match": updateRetentionRuleRequest.ifMatch,
4094
4100
  "opc-client-request-id": updateRetentionRuleRequest.opcClientRequestId
4095
4101
  };
4096
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
4102
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
4097
4103
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateRetentionRuleRequest.retryConfiguration, specRetryConfiguration);
4098
4104
  if (this.logger)
4099
4105
  retrier.logger = this.logger;
@@ -4143,11 +4149,11 @@ class ObjectStorageClient {
4143
4149
  /**
4144
4150
  * Uploads a single part of a multipart upload.
4145
4151
  *
4146
- * This operation does not retry by default if the user has not defined a retry configuration.
4152
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
4147
4153
  * @param UploadPartRequest
4148
4154
  * @return UploadPartResponse
4149
4155
  * @throws OciError when an error occurs
4150
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.11.1/objectstorage/UploadPart.ts.html |here} to see how to use UploadPart API.
4156
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.12.0/objectstorage/UploadPart.ts.html |here} to see how to use UploadPart API.
4151
4157
  */
4152
4158
  uploadPart(uploadPartRequest) {
4153
4159
  return __awaiter(this, void 0, void 0, function* () {
@@ -4174,7 +4180,7 @@ class ObjectStorageClient {
4174
4180
  "opc-sse-customer-key-sha256": uploadPartRequest.opcSseCustomerKeySha256,
4175
4181
  "opc-sse-kms-key-id": uploadPartRequest.opcSseKmsKeyId
4176
4182
  };
4177
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
4183
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
4178
4184
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, uploadPartRequest.retryConfiguration, specRetryConfiguration);
4179
4185
  if (this.logger)
4180
4186
  retrier.logger = this.logger;