oci-objectstorage 2.22.0 → 2.24.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 (54) hide show
  1. package/lib/client.d.ts +51 -50
  2. package/lib/client.js +56 -51
  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 +1 -1
  31. package/lib/request/list-multipart-upload-parts-request.d.ts +1 -1
  32. package/lib/request/list-multipart-uploads-request.d.ts +1 -1
  33. package/lib/request/list-object-versions-request.d.ts +1 -1
  34. package/lib/request/list-objects-request.d.ts +1 -1
  35. package/lib/request/list-preauthenticated-requests-request.d.ts +1 -1
  36. package/lib/request/list-replication-policies-request.d.ts +1 -1
  37. package/lib/request/list-replication-sources-request.d.ts +1 -1
  38. package/lib/request/list-retention-rules-request.d.ts +1 -1
  39. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  40. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  41. package/lib/request/list-work-requests-request.d.ts +1 -1
  42. package/lib/request/make-bucket-writable-request.d.ts +1 -1
  43. package/lib/request/put-object-lifecycle-policy-request.d.ts +1 -1
  44. package/lib/request/put-object-request.d.ts +1 -1
  45. package/lib/request/reencrypt-bucket-request.d.ts +1 -1
  46. package/lib/request/reencrypt-object-request.d.ts +1 -1
  47. package/lib/request/rename-object-request.d.ts +1 -1
  48. package/lib/request/restore-objects-request.d.ts +1 -1
  49. package/lib/request/update-bucket-request.d.ts +1 -1
  50. package/lib/request/update-namespace-metadata-request.d.ts +1 -1
  51. package/lib/request/update-object-storage-tier-request.d.ts +1 -1
  52. package/lib/request/update-retention-rule-request.d.ts +1 -1
  53. package/lib/request/upload-part-request.d.ts +1 -1
  54. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -63,6 +63,7 @@ class ObjectStorageClient {
63
63
  this["_endpoint"] = "";
64
64
  this["_defaultHeaders"] = {};
65
65
  this._circuitBreaker = null;
66
+ this._httpOptions = undefined;
66
67
  const requestSigner = params.authenticationDetailsProvider
67
68
  ? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
68
69
  : null;
@@ -71,6 +72,9 @@ class ObjectStorageClient {
71
72
  this._circuitBreaker = clientConfiguration.circuitBreaker
72
73
  ? clientConfiguration.circuitBreaker.circuit
73
74
  : null;
75
+ this._httpOptions = clientConfiguration.httpOptions
76
+ ? clientConfiguration.httpOptions
77
+ : undefined;
74
78
  }
75
79
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
76
80
  const specCircuitBreakerEnabled = true;
@@ -80,7 +84,8 @@ class ObjectStorageClient {
80
84
  this._circuitBreaker = new common.CircuitBreaker().circuit;
81
85
  }
82
86
  this._httpClient =
83
- params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
87
+ params.httpClient ||
88
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
84
89
  if (params.authenticationDetailsProvider &&
85
90
  common.isRegionProvider(params.authenticationDetailsProvider)) {
86
91
  const provider = params.authenticationDetailsProvider;
@@ -154,7 +159,7 @@ class ObjectStorageClient {
154
159
  * @param AbortMultipartUploadRequest
155
160
  * @return AbortMultipartUploadResponse
156
161
  * @throws OciError when an error occurs
157
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/AbortMultipartUpload.ts.html |here} to see how to use AbortMultipartUpload API.
162
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/AbortMultipartUpload.ts.html |here} to see how to use AbortMultipartUpload API.
158
163
  */
159
164
  abortMultipartUpload(abortMultipartUploadRequest) {
160
165
  return __awaiter(this, void 0, void 0, function* () {
@@ -216,7 +221,7 @@ class ObjectStorageClient {
216
221
  * @param CancelWorkRequestRequest
217
222
  * @return CancelWorkRequestResponse
218
223
  * @throws OciError when an error occurs
219
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
224
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
220
225
  */
221
226
  cancelWorkRequest(cancelWorkRequestRequest) {
222
227
  return __awaiter(this, void 0, void 0, function* () {
@@ -274,7 +279,7 @@ class ObjectStorageClient {
274
279
  * @param CommitMultipartUploadRequest
275
280
  * @return CommitMultipartUploadResponse
276
281
  * @throws OciError when an error occurs
277
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/CommitMultipartUpload.ts.html |here} to see how to use CommitMultipartUpload API.
282
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/CommitMultipartUpload.ts.html |here} to see how to use CommitMultipartUpload API.
278
283
  */
279
284
  commitMultipartUpload(commitMultipartUploadRequest) {
280
285
  return __awaiter(this, void 0, void 0, function* () {
@@ -362,7 +367,7 @@ class ObjectStorageClient {
362
367
  * @param CopyObjectRequest
363
368
  * @return CopyObjectResponse
364
369
  * @throws OciError when an error occurs
365
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/CopyObject.ts.html |here} to see how to use CopyObject API.
370
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/CopyObject.ts.html |here} to see how to use CopyObject API.
366
371
  */
367
372
  copyObject(copyObjectRequest) {
368
373
  return __awaiter(this, void 0, void 0, function* () {
@@ -435,7 +440,7 @@ class ObjectStorageClient {
435
440
  * @param CreateBucketRequest
436
441
  * @return CreateBucketResponse
437
442
  * @throws OciError when an error occurs
438
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/CreateBucket.ts.html |here} to see how to use CreateBucket API.
443
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/CreateBucket.ts.html |here} to see how to use CreateBucket API.
439
444
  */
440
445
  createBucket(createBucketRequest) {
441
446
  return __awaiter(this, void 0, void 0, function* () {
@@ -511,7 +516,7 @@ class ObjectStorageClient {
511
516
  * @param CreateMultipartUploadRequest
512
517
  * @return CreateMultipartUploadResponse
513
518
  * @throws OciError when an error occurs
514
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/CreateMultipartUpload.ts.html |here} to see how to use CreateMultipartUpload API.
519
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/CreateMultipartUpload.ts.html |here} to see how to use CreateMultipartUpload API.
515
520
  */
516
521
  createMultipartUpload(createMultipartUploadRequest) {
517
522
  return __awaiter(this, void 0, void 0, function* () {
@@ -586,7 +591,7 @@ class ObjectStorageClient {
586
591
  * @param CreatePreauthenticatedRequestRequest
587
592
  * @return CreatePreauthenticatedRequestResponse
588
593
  * @throws OciError when an error occurs
589
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/CreatePreauthenticatedRequest.ts.html |here} to see how to use CreatePreauthenticatedRequest API.
594
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/CreatePreauthenticatedRequest.ts.html |here} to see how to use CreatePreauthenticatedRequest API.
590
595
  */
591
596
  createPreauthenticatedRequest(createPreauthenticatedRequestRequest) {
592
597
  return __awaiter(this, void 0, void 0, function* () {
@@ -650,7 +655,7 @@ class ObjectStorageClient {
650
655
  * @param CreateReplicationPolicyRequest
651
656
  * @return CreateReplicationPolicyResponse
652
657
  * @throws OciError when an error occurs
653
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/CreateReplicationPolicy.ts.html |here} to see how to use CreateReplicationPolicy API.
658
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/CreateReplicationPolicy.ts.html |here} to see how to use CreateReplicationPolicy API.
654
659
  */
655
660
  createReplicationPolicy(createReplicationPolicyRequest) {
656
661
  return __awaiter(this, void 0, void 0, function* () {
@@ -715,7 +720,7 @@ class ObjectStorageClient {
715
720
  * @param CreateRetentionRuleRequest
716
721
  * @return CreateRetentionRuleResponse
717
722
  * @throws OciError when an error occurs
718
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/CreateRetentionRule.ts.html |here} to see how to use CreateRetentionRule API.
723
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/CreateRetentionRule.ts.html |here} to see how to use CreateRetentionRule API.
719
724
  */
720
725
  createRetentionRule(createRetentionRuleRequest) {
721
726
  return __awaiter(this, void 0, void 0, function* () {
@@ -787,7 +792,7 @@ class ObjectStorageClient {
787
792
  * @param DeleteBucketRequest
788
793
  * @return DeleteBucketResponse
789
794
  * @throws OciError when an error occurs
790
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/DeleteBucket.ts.html |here} to see how to use DeleteBucket API.
795
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/DeleteBucket.ts.html |here} to see how to use DeleteBucket API.
791
796
  */
792
797
  deleteBucket(deleteBucketRequest) {
793
798
  return __awaiter(this, void 0, void 0, function* () {
@@ -847,7 +852,7 @@ class ObjectStorageClient {
847
852
  * @param DeleteObjectRequest
848
853
  * @return DeleteObjectResponse
849
854
  * @throws OciError when an error occurs
850
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/DeleteObject.ts.html |here} to see how to use DeleteObject API.
855
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/DeleteObject.ts.html |here} to see how to use DeleteObject API.
851
856
  */
852
857
  deleteObject(deleteObjectRequest) {
853
858
  return __awaiter(this, void 0, void 0, function* () {
@@ -925,7 +930,7 @@ class ObjectStorageClient {
925
930
  * @param DeleteObjectLifecyclePolicyRequest
926
931
  * @return DeleteObjectLifecyclePolicyResponse
927
932
  * @throws OciError when an error occurs
928
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/DeleteObjectLifecyclePolicy.ts.html |here} to see how to use DeleteObjectLifecyclePolicy API.
933
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/DeleteObjectLifecyclePolicy.ts.html |here} to see how to use DeleteObjectLifecyclePolicy API.
929
934
  */
930
935
  deleteObjectLifecyclePolicy(deleteObjectLifecyclePolicyRequest) {
931
936
  return __awaiter(this, void 0, void 0, function* () {
@@ -984,7 +989,7 @@ class ObjectStorageClient {
984
989
  * @param DeletePreauthenticatedRequestRequest
985
990
  * @return DeletePreauthenticatedRequestResponse
986
991
  * @throws OciError when an error occurs
987
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/DeletePreauthenticatedRequest.ts.html |here} to see how to use DeletePreauthenticatedRequest API.
992
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/DeletePreauthenticatedRequest.ts.html |here} to see how to use DeletePreauthenticatedRequest API.
988
993
  */
989
994
  deletePreauthenticatedRequest(deletePreauthenticatedRequestRequest) {
990
995
  return __awaiter(this, void 0, void 0, function* () {
@@ -1044,7 +1049,7 @@ class ObjectStorageClient {
1044
1049
  * @param DeleteReplicationPolicyRequest
1045
1050
  * @return DeleteReplicationPolicyResponse
1046
1051
  * @throws OciError when an error occurs
1047
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/DeleteReplicationPolicy.ts.html |here} to see how to use DeleteReplicationPolicy API.
1052
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/DeleteReplicationPolicy.ts.html |here} to see how to use DeleteReplicationPolicy API.
1048
1053
  */
1049
1054
  deleteReplicationPolicy(deleteReplicationPolicyRequest) {
1050
1055
  return __awaiter(this, void 0, void 0, function* () {
@@ -1103,7 +1108,7 @@ class ObjectStorageClient {
1103
1108
  * @param DeleteRetentionRuleRequest
1104
1109
  * @return DeleteRetentionRuleResponse
1105
1110
  * @throws OciError when an error occurs
1106
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/DeleteRetentionRule.ts.html |here} to see how to use DeleteRetentionRule API.
1111
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/DeleteRetentionRule.ts.html |here} to see how to use DeleteRetentionRule API.
1107
1112
  */
1108
1113
  deleteRetentionRule(deleteRetentionRuleRequest) {
1109
1114
  return __awaiter(this, void 0, void 0, function* () {
@@ -1164,7 +1169,7 @@ class ObjectStorageClient {
1164
1169
  * @param GetBucketRequest
1165
1170
  * @return GetBucketResponse
1166
1171
  * @throws OciError when an error occurs
1167
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/GetBucket.ts.html |here} to see how to use GetBucket API.
1172
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/GetBucket.ts.html |here} to see how to use GetBucket API.
1168
1173
  */
1169
1174
  getBucket(getBucketRequest) {
1170
1175
  return __awaiter(this, void 0, void 0, function* () {
@@ -1242,7 +1247,7 @@ class ObjectStorageClient {
1242
1247
  * @param GetNamespaceRequest
1243
1248
  * @return GetNamespaceResponse
1244
1249
  * @throws OciError when an error occurs
1245
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/GetNamespace.ts.html |here} to see how to use GetNamespace API.
1250
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/GetNamespace.ts.html |here} to see how to use GetNamespace API.
1246
1251
  */
1247
1252
  getNamespace(getNamespaceRequest) {
1248
1253
  return __awaiter(this, void 0, void 0, function* () {
@@ -1299,7 +1304,7 @@ class ObjectStorageClient {
1299
1304
  * @param GetNamespaceMetadataRequest
1300
1305
  * @return GetNamespaceMetadataResponse
1301
1306
  * @throws OciError when an error occurs
1302
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/GetNamespaceMetadata.ts.html |here} to see how to use GetNamespaceMetadata API.
1307
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/GetNamespaceMetadata.ts.html |here} to see how to use GetNamespaceMetadata API.
1303
1308
  */
1304
1309
  getNamespaceMetadata(getNamespaceMetadataRequest) {
1305
1310
  return __awaiter(this, void 0, void 0, function* () {
@@ -1361,7 +1366,7 @@ class ObjectStorageClient {
1361
1366
  * @param GetObjectRequest
1362
1367
  * @return GetObjectResponse
1363
1368
  * @throws OciError when an error occurs
1364
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/GetObject.ts.html |here} to see how to use GetObject API.
1369
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/GetObject.ts.html |here} to see how to use GetObject API.
1365
1370
  */
1366
1371
  getObject(getObjectRequest) {
1367
1372
  return __awaiter(this, void 0, void 0, function* () {
@@ -1526,7 +1531,7 @@ class ObjectStorageClient {
1526
1531
  * @param GetObjectLifecyclePolicyRequest
1527
1532
  * @return GetObjectLifecyclePolicyResponse
1528
1533
  * @throws OciError when an error occurs
1529
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/GetObjectLifecyclePolicy.ts.html |here} to see how to use GetObjectLifecyclePolicy API.
1534
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/GetObjectLifecyclePolicy.ts.html |here} to see how to use GetObjectLifecyclePolicy API.
1530
1535
  */
1531
1536
  getObjectLifecyclePolicy(getObjectLifecyclePolicyRequest) {
1532
1537
  return __awaiter(this, void 0, void 0, function* () {
@@ -1593,7 +1598,7 @@ class ObjectStorageClient {
1593
1598
  * @param GetPreauthenticatedRequestRequest
1594
1599
  * @return GetPreauthenticatedRequestResponse
1595
1600
  * @throws OciError when an error occurs
1596
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/GetPreauthenticatedRequest.ts.html |here} to see how to use GetPreauthenticatedRequest API.
1601
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/GetPreauthenticatedRequest.ts.html |here} to see how to use GetPreauthenticatedRequest API.
1597
1602
  */
1598
1603
  getPreauthenticatedRequest(getPreauthenticatedRequestRequest) {
1599
1604
  return __awaiter(this, void 0, void 0, function* () {
@@ -1657,7 +1662,7 @@ class ObjectStorageClient {
1657
1662
  * @param GetReplicationPolicyRequest
1658
1663
  * @return GetReplicationPolicyResponse
1659
1664
  * @throws OciError when an error occurs
1660
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/GetReplicationPolicy.ts.html |here} to see how to use GetReplicationPolicy API.
1665
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/GetReplicationPolicy.ts.html |here} to see how to use GetReplicationPolicy API.
1661
1666
  */
1662
1667
  getReplicationPolicy(getReplicationPolicyRequest) {
1663
1668
  return __awaiter(this, void 0, void 0, function* () {
@@ -1720,7 +1725,7 @@ class ObjectStorageClient {
1720
1725
  * @param GetRetentionRuleRequest
1721
1726
  * @return GetRetentionRuleResponse
1722
1727
  * @throws OciError when an error occurs
1723
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/GetRetentionRule.ts.html |here} to see how to use GetRetentionRule API.
1728
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/GetRetentionRule.ts.html |here} to see how to use GetRetentionRule API.
1724
1729
  */
1725
1730
  getRetentionRule(getRetentionRuleRequest) {
1726
1731
  return __awaiter(this, void 0, void 0, function* () {
@@ -1793,7 +1798,7 @@ class ObjectStorageClient {
1793
1798
  * @param GetWorkRequestRequest
1794
1799
  * @return GetWorkRequestResponse
1795
1800
  * @throws OciError when an error occurs
1796
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1801
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1797
1802
  */
1798
1803
  getWorkRequest(getWorkRequestRequest) {
1799
1804
  return __awaiter(this, void 0, void 0, function* () {
@@ -1860,7 +1865,7 @@ class ObjectStorageClient {
1860
1865
  * @param HeadBucketRequest
1861
1866
  * @return HeadBucketResponse
1862
1867
  * @throws OciError when an error occurs
1863
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/HeadBucket.ts.html |here} to see how to use HeadBucket API.
1868
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/HeadBucket.ts.html |here} to see how to use HeadBucket API.
1864
1869
  */
1865
1870
  headBucket(headBucketRequest) {
1866
1871
  return __awaiter(this, void 0, void 0, function* () {
@@ -1926,7 +1931,7 @@ class ObjectStorageClient {
1926
1931
  * @param HeadObjectRequest
1927
1932
  * @return HeadObjectResponse
1928
1933
  * @throws OciError when an error occurs
1929
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/HeadObject.ts.html |here} to see how to use HeadObject API.
1934
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/HeadObject.ts.html |here} to see how to use HeadObject API.
1930
1935
  */
1931
1936
  headObject(headObjectRequest) {
1932
1937
  return __awaiter(this, void 0, void 0, function* () {
@@ -2079,7 +2084,7 @@ class ObjectStorageClient {
2079
2084
  * @param ListBucketsRequest
2080
2085
  * @return ListBucketsResponse
2081
2086
  * @throws OciError when an error occurs
2082
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ListBuckets.ts.html |here} to see how to use ListBuckets API.
2087
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ListBuckets.ts.html |here} to see how to use ListBuckets API.
2083
2088
  */
2084
2089
  listBuckets(listBucketsRequest) {
2085
2090
  return __awaiter(this, void 0, void 0, function* () {
@@ -2191,7 +2196,7 @@ class ObjectStorageClient {
2191
2196
  * @param ListMultipartUploadPartsRequest
2192
2197
  * @return ListMultipartUploadPartsResponse
2193
2198
  * @throws OciError when an error occurs
2194
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ListMultipartUploadParts.ts.html |here} to see how to use ListMultipartUploadParts API.
2199
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ListMultipartUploadParts.ts.html |here} to see how to use ListMultipartUploadParts API.
2195
2200
  */
2196
2201
  listMultipartUploadParts(listMultipartUploadPartsRequest) {
2197
2202
  return __awaiter(this, void 0, void 0, function* () {
@@ -2304,7 +2309,7 @@ class ObjectStorageClient {
2304
2309
  * @param ListMultipartUploadsRequest
2305
2310
  * @return ListMultipartUploadsResponse
2306
2311
  * @throws OciError when an error occurs
2307
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ListMultipartUploads.ts.html |here} to see how to use ListMultipartUploads API.
2312
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ListMultipartUploads.ts.html |here} to see how to use ListMultipartUploads API.
2308
2313
  */
2309
2314
  listMultipartUploads(listMultipartUploadsRequest) {
2310
2315
  return __awaiter(this, void 0, void 0, function* () {
@@ -2422,7 +2427,7 @@ class ObjectStorageClient {
2422
2427
  * @param ListObjectVersionsRequest
2423
2428
  * @return ListObjectVersionsResponse
2424
2429
  * @throws OciError when an error occurs
2425
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ListObjectVersions.ts.html |here} to see how to use ListObjectVersions API.
2430
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ListObjectVersions.ts.html |here} to see how to use ListObjectVersions API.
2426
2431
  */
2427
2432
  listObjectVersions(listObjectVersionsRequest) {
2428
2433
  return __awaiter(this, void 0, void 0, function* () {
@@ -2508,7 +2513,7 @@ class ObjectStorageClient {
2508
2513
  * @param ListObjectsRequest
2509
2514
  * @return ListObjectsResponse
2510
2515
  * @throws OciError when an error occurs
2511
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ListObjects.ts.html |here} to see how to use ListObjects API.
2516
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ListObjects.ts.html |here} to see how to use ListObjects API.
2512
2517
  */
2513
2518
  listObjects(listObjectsRequest) {
2514
2519
  return __awaiter(this, void 0, void 0, function* () {
@@ -2619,7 +2624,7 @@ class ObjectStorageClient {
2619
2624
  * @param ListPreauthenticatedRequestsRequest
2620
2625
  * @return ListPreauthenticatedRequestsResponse
2621
2626
  * @throws OciError when an error occurs
2622
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ListPreauthenticatedRequests.ts.html |here} to see how to use ListPreauthenticatedRequests API.
2627
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ListPreauthenticatedRequests.ts.html |here} to see how to use ListPreauthenticatedRequests API.
2623
2628
  */
2624
2629
  listPreauthenticatedRequests(listPreauthenticatedRequestsRequest) {
2625
2630
  return __awaiter(this, void 0, void 0, function* () {
@@ -2731,7 +2736,7 @@ class ObjectStorageClient {
2731
2736
  * @param ListReplicationPoliciesRequest
2732
2737
  * @return ListReplicationPoliciesResponse
2733
2738
  * @throws OciError when an error occurs
2734
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ListReplicationPolicies.ts.html |here} to see how to use ListReplicationPolicies API.
2739
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ListReplicationPolicies.ts.html |here} to see how to use ListReplicationPolicies API.
2735
2740
  */
2736
2741
  listReplicationPolicies(listReplicationPoliciesRequest) {
2737
2742
  return __awaiter(this, void 0, void 0, function* () {
@@ -2842,7 +2847,7 @@ class ObjectStorageClient {
2842
2847
  * @param ListReplicationSourcesRequest
2843
2848
  * @return ListReplicationSourcesResponse
2844
2849
  * @throws OciError when an error occurs
2845
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ListReplicationSources.ts.html |here} to see how to use ListReplicationSources API.
2850
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ListReplicationSources.ts.html |here} to see how to use ListReplicationSources API.
2846
2851
  */
2847
2852
  listReplicationSources(listReplicationSourcesRequest) {
2848
2853
  return __awaiter(this, void 0, void 0, function* () {
@@ -2954,7 +2959,7 @@ class ObjectStorageClient {
2954
2959
  * @param ListRetentionRulesRequest
2955
2960
  * @return ListRetentionRulesResponse
2956
2961
  * @throws OciError when an error occurs
2957
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ListRetentionRules.ts.html |here} to see how to use ListRetentionRules API.
2962
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ListRetentionRules.ts.html |here} to see how to use ListRetentionRules API.
2958
2963
  */
2959
2964
  listRetentionRules(listRetentionRulesRequest) {
2960
2965
  return __awaiter(this, void 0, void 0, function* () {
@@ -3022,7 +3027,7 @@ class ObjectStorageClient {
3022
3027
  * @param ListWorkRequestErrorsRequest
3023
3028
  * @return ListWorkRequestErrorsResponse
3024
3029
  * @throws OciError when an error occurs
3025
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
3030
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
3026
3031
  */
3027
3032
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
3028
3033
  return __awaiter(this, void 0, void 0, function* () {
@@ -3131,7 +3136,7 @@ class ObjectStorageClient {
3131
3136
  * @param ListWorkRequestLogsRequest
3132
3137
  * @return ListWorkRequestLogsResponse
3133
3138
  * @throws OciError when an error occurs
3134
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
3139
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
3135
3140
  */
3136
3141
  listWorkRequestLogs(listWorkRequestLogsRequest) {
3137
3142
  return __awaiter(this, void 0, void 0, function* () {
@@ -3241,7 +3246,7 @@ class ObjectStorageClient {
3241
3246
  * @param ListWorkRequestsRequest
3242
3247
  * @return ListWorkRequestsResponse
3243
3248
  * @throws OciError when an error occurs
3244
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3249
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3245
3250
  */
3246
3251
  listWorkRequests(listWorkRequestsRequest) {
3247
3252
  return __awaiter(this, void 0, void 0, function* () {
@@ -3353,7 +3358,7 @@ class ObjectStorageClient {
3353
3358
  * @param MakeBucketWritableRequest
3354
3359
  * @return MakeBucketWritableResponse
3355
3360
  * @throws OciError when an error occurs
3356
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/MakeBucketWritable.ts.html |here} to see how to use MakeBucketWritable API.
3361
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/MakeBucketWritable.ts.html |here} to see how to use MakeBucketWritable API.
3357
3362
  */
3358
3363
  makeBucketWritable(makeBucketWritableRequest) {
3359
3364
  return __awaiter(this, void 0, void 0, function* () {
@@ -3419,7 +3424,7 @@ class ObjectStorageClient {
3419
3424
  * @param PutObjectRequest
3420
3425
  * @return PutObjectResponse
3421
3426
  * @throws OciError when an error occurs
3422
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/PutObject.ts.html |here} to see how to use PutObject API.
3427
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/PutObject.ts.html |here} to see how to use PutObject API.
3423
3428
  */
3424
3429
  putObject(putObjectRequest) {
3425
3430
  return __awaiter(this, void 0, void 0, function* () {
@@ -3520,7 +3525,7 @@ class ObjectStorageClient {
3520
3525
  * @param PutObjectLifecyclePolicyRequest
3521
3526
  * @return PutObjectLifecyclePolicyResponse
3522
3527
  * @throws OciError when an error occurs
3523
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/PutObjectLifecyclePolicy.ts.html |here} to see how to use PutObjectLifecyclePolicy API.
3528
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/PutObjectLifecyclePolicy.ts.html |here} to see how to use PutObjectLifecyclePolicy API.
3524
3529
  */
3525
3530
  putObjectLifecyclePolicy(putObjectLifecyclePolicyRequest) {
3526
3531
  return __awaiter(this, void 0, void 0, function* () {
@@ -3605,7 +3610,7 @@ class ObjectStorageClient {
3605
3610
  * @param ReencryptBucketRequest
3606
3611
  * @return ReencryptBucketResponse
3607
3612
  * @throws OciError when an error occurs
3608
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ReencryptBucket.ts.html |here} to see how to use ReencryptBucket API.
3613
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ReencryptBucket.ts.html |here} to see how to use ReencryptBucket API.
3609
3614
  */
3610
3615
  reencryptBucket(reencryptBucketRequest) {
3611
3616
  return __awaiter(this, void 0, void 0, function* () {
@@ -3677,7 +3682,7 @@ class ObjectStorageClient {
3677
3682
  * @param ReencryptObjectRequest
3678
3683
  * @return ReencryptObjectResponse
3679
3684
  * @throws OciError when an error occurs
3680
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/ReencryptObject.ts.html |here} to see how to use ReencryptObject API.
3685
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/ReencryptObject.ts.html |here} to see how to use ReencryptObject API.
3681
3686
  */
3682
3687
  reencryptObject(reencryptObjectRequest) {
3683
3688
  return __awaiter(this, void 0, void 0, function* () {
@@ -3743,7 +3748,7 @@ class ObjectStorageClient {
3743
3748
  * @param RenameObjectRequest
3744
3749
  * @return RenameObjectResponse
3745
3750
  * @throws OciError when an error occurs
3746
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/RenameObject.ts.html |here} to see how to use RenameObject API.
3751
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/RenameObject.ts.html |here} to see how to use RenameObject API.
3747
3752
  */
3748
3753
  renameObject(renameObjectRequest) {
3749
3754
  return __awaiter(this, void 0, void 0, function* () {
@@ -3819,7 +3824,7 @@ class ObjectStorageClient {
3819
3824
  * @param RestoreObjectsRequest
3820
3825
  * @return RestoreObjectsResponse
3821
3826
  * @throws OciError when an error occurs
3822
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/RestoreObjects.ts.html |here} to see how to use RestoreObjects API.
3827
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/RestoreObjects.ts.html |here} to see how to use RestoreObjects API.
3823
3828
  */
3824
3829
  restoreObjects(restoreObjectsRequest) {
3825
3830
  return __awaiter(this, void 0, void 0, function* () {
@@ -3883,7 +3888,7 @@ class ObjectStorageClient {
3883
3888
  * @param UpdateBucketRequest
3884
3889
  * @return UpdateBucketResponse
3885
3890
  * @throws OciError when an error occurs
3886
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/UpdateBucket.ts.html |here} to see how to use UpdateBucket API.
3891
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/UpdateBucket.ts.html |here} to see how to use UpdateBucket API.
3887
3892
  */
3888
3893
  updateBucket(updateBucketRequest) {
3889
3894
  return __awaiter(this, void 0, void 0, function* () {
@@ -3959,7 +3964,7 @@ class ObjectStorageClient {
3959
3964
  * @param UpdateNamespaceMetadataRequest
3960
3965
  * @return UpdateNamespaceMetadataResponse
3961
3966
  * @throws OciError when an error occurs
3962
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/UpdateNamespaceMetadata.ts.html |here} to see how to use UpdateNamespaceMetadata API.
3967
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/UpdateNamespaceMetadata.ts.html |here} to see how to use UpdateNamespaceMetadata API.
3963
3968
  */
3964
3969
  updateNamespaceMetadata(updateNamespaceMetadataRequest) {
3965
3970
  return __awaiter(this, void 0, void 0, function* () {
@@ -4022,7 +4027,7 @@ class ObjectStorageClient {
4022
4027
  * @param UpdateObjectStorageTierRequest
4023
4028
  * @return UpdateObjectStorageTierResponse
4024
4029
  * @throws OciError when an error occurs
4025
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/UpdateObjectStorageTier.ts.html |here} to see how to use UpdateObjectStorageTier API.
4030
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/UpdateObjectStorageTier.ts.html |here} to see how to use UpdateObjectStorageTier API.
4026
4031
  */
4027
4032
  updateObjectStorageTier(updateObjectStorageTierRequest) {
4028
4033
  return __awaiter(this, void 0, void 0, function* () {
@@ -4082,7 +4087,7 @@ class ObjectStorageClient {
4082
4087
  * @param UpdateRetentionRuleRequest
4083
4088
  * @return UpdateRetentionRuleResponse
4084
4089
  * @throws OciError when an error occurs
4085
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/UpdateRetentionRule.ts.html |here} to see how to use UpdateRetentionRule API.
4090
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/UpdateRetentionRule.ts.html |here} to see how to use UpdateRetentionRule API.
4086
4091
  */
4087
4092
  updateRetentionRule(updateRetentionRuleRequest) {
4088
4093
  return __awaiter(this, void 0, void 0, function* () {
@@ -4153,7 +4158,7 @@ class ObjectStorageClient {
4153
4158
  * @param UploadPartRequest
4154
4159
  * @return UploadPartResponse
4155
4160
  * @throws OciError when an error occurs
4156
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/objectstorage/UploadPart.ts.html |here} to see how to use UploadPart API.
4161
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/objectstorage/UploadPart.ts.html |here} to see how to use UploadPart API.
4157
4162
  */
4158
4163
  uploadPart(uploadPartRequest) {
4159
4164
  return __awaiter(this, void 0, void 0, function* () {