oci-objectstorage 2.77.0 → 2.78.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 +57 -51
  2. package/lib/client.js +59 -50
  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
@@ -49,6 +49,7 @@ const model = __importStar(require("./model"));
49
49
  const oci_common_1 = require("oci-common");
50
50
  const objectstorage_waiter_1 = require("./objectstorage-waiter");
51
51
  const oci_common_2 = require("oci-common");
52
+ const Breaker = require("opossum");
52
53
  // ===============================================
53
54
  // This file is autogenerated - Please do not edit
54
55
  // ===============================================
@@ -184,6 +185,14 @@ class ObjectStorageClient {
184
185
  }
185
186
  throw Error("Waiters do not exist. Please create waiters.");
186
187
  }
188
+ /**
189
+ * Shutdown the circuit breaker used by the client when it is no longer needed
190
+ */
191
+ shutdownCircuitBreaker() {
192
+ if (this._circuitBreaker) {
193
+ this._circuitBreaker.shutdown();
194
+ }
195
+ }
187
196
  /**
188
197
  * Aborts an in-progress multipart upload and deletes all parts that have been uploaded.
189
198
  *
@@ -191,7 +200,7 @@ class ObjectStorageClient {
191
200
  * @param AbortMultipartUploadRequest
192
201
  * @return AbortMultipartUploadResponse
193
202
  * @throws OciError when an error occurs
194
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/AbortMultipartUpload.ts.html |here} to see how to use AbortMultipartUpload API.
203
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/AbortMultipartUpload.ts.html |here} to see how to use AbortMultipartUpload API.
195
204
  */
196
205
  abortMultipartUpload(abortMultipartUploadRequest) {
197
206
  return __awaiter(this, void 0, void 0, function* () {
@@ -262,7 +271,7 @@ class ObjectStorageClient {
262
271
  * @param CancelWorkRequestRequest
263
272
  * @return CancelWorkRequestResponse
264
273
  * @throws OciError when an error occurs
265
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
274
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
266
275
  */
267
276
  cancelWorkRequest(cancelWorkRequestRequest) {
268
277
  return __awaiter(this, void 0, void 0, function* () {
@@ -324,7 +333,7 @@ class ObjectStorageClient {
324
333
  * @param CommitMultipartUploadRequest
325
334
  * @return CommitMultipartUploadResponse
326
335
  * @throws OciError when an error occurs
327
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/CommitMultipartUpload.ts.html |here} to see how to use CommitMultipartUpload API.
336
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/CommitMultipartUpload.ts.html |here} to see how to use CommitMultipartUpload API.
328
337
  */
329
338
  commitMultipartUpload(commitMultipartUploadRequest) {
330
339
  return __awaiter(this, void 0, void 0, function* () {
@@ -421,7 +430,7 @@ class ObjectStorageClient {
421
430
  * @param CopyObjectRequest
422
431
  * @return CopyObjectResponse
423
432
  * @throws OciError when an error occurs
424
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/CopyObject.ts.html |here} to see how to use CopyObject API.
433
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/CopyObject.ts.html |here} to see how to use CopyObject API.
425
434
  */
426
435
  copyObject(copyObjectRequest) {
427
436
  return __awaiter(this, void 0, void 0, function* () {
@@ -498,7 +507,7 @@ class ObjectStorageClient {
498
507
  * @param CreateBucketRequest
499
508
  * @return CreateBucketResponse
500
509
  * @throws OciError when an error occurs
501
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/CreateBucket.ts.html |here} to see how to use CreateBucket API.
510
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/CreateBucket.ts.html |here} to see how to use CreateBucket API.
502
511
  */
503
512
  createBucket(createBucketRequest) {
504
513
  return __awaiter(this, void 0, void 0, function* () {
@@ -578,7 +587,7 @@ class ObjectStorageClient {
578
587
  * @param CreateMultipartUploadRequest
579
588
  * @return CreateMultipartUploadResponse
580
589
  * @throws OciError when an error occurs
581
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/CreateMultipartUpload.ts.html |here} to see how to use CreateMultipartUpload API.
590
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/CreateMultipartUpload.ts.html |here} to see how to use CreateMultipartUpload API.
582
591
  */
583
592
  createMultipartUpload(createMultipartUploadRequest) {
584
593
  return __awaiter(this, void 0, void 0, function* () {
@@ -657,7 +666,7 @@ class ObjectStorageClient {
657
666
  * @param CreatePreauthenticatedRequestRequest
658
667
  * @return CreatePreauthenticatedRequestResponse
659
668
  * @throws OciError when an error occurs
660
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/CreatePreauthenticatedRequest.ts.html |here} to see how to use CreatePreauthenticatedRequest API.
669
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/CreatePreauthenticatedRequest.ts.html |here} to see how to use CreatePreauthenticatedRequest API.
661
670
  */
662
671
  createPreauthenticatedRequest(createPreauthenticatedRequestRequest) {
663
672
  return __awaiter(this, void 0, void 0, function* () {
@@ -725,7 +734,7 @@ class ObjectStorageClient {
725
734
  * @param CreateReplicationPolicyRequest
726
735
  * @return CreateReplicationPolicyResponse
727
736
  * @throws OciError when an error occurs
728
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/CreateReplicationPolicy.ts.html |here} to see how to use CreateReplicationPolicy API.
737
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/CreateReplicationPolicy.ts.html |here} to see how to use CreateReplicationPolicy API.
729
738
  */
730
739
  createReplicationPolicy(createReplicationPolicyRequest) {
731
740
  return __awaiter(this, void 0, void 0, function* () {
@@ -794,7 +803,7 @@ class ObjectStorageClient {
794
803
  * @param CreateRetentionRuleRequest
795
804
  * @return CreateRetentionRuleResponse
796
805
  * @throws OciError when an error occurs
797
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/CreateRetentionRule.ts.html |here} to see how to use CreateRetentionRule API.
806
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/CreateRetentionRule.ts.html |here} to see how to use CreateRetentionRule API.
798
807
  */
799
808
  createRetentionRule(createRetentionRuleRequest) {
800
809
  return __awaiter(this, void 0, void 0, function* () {
@@ -870,7 +879,7 @@ class ObjectStorageClient {
870
879
  * @param DeleteBucketRequest
871
880
  * @return DeleteBucketResponse
872
881
  * @throws OciError when an error occurs
873
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/DeleteBucket.ts.html |here} to see how to use DeleteBucket API.
882
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/DeleteBucket.ts.html |here} to see how to use DeleteBucket API.
874
883
  */
875
884
  deleteBucket(deleteBucketRequest) {
876
885
  return __awaiter(this, void 0, void 0, function* () {
@@ -934,7 +943,7 @@ class ObjectStorageClient {
934
943
  * @param DeleteObjectRequest
935
944
  * @return DeleteObjectResponse
936
945
  * @throws OciError when an error occurs
937
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/DeleteObject.ts.html |here} to see how to use DeleteObject API.
946
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/DeleteObject.ts.html |here} to see how to use DeleteObject API.
938
947
  */
939
948
  deleteObject(deleteObjectRequest) {
940
949
  return __awaiter(this, void 0, void 0, function* () {
@@ -1016,7 +1025,7 @@ class ObjectStorageClient {
1016
1025
  * @param DeleteObjectLifecyclePolicyRequest
1017
1026
  * @return DeleteObjectLifecyclePolicyResponse
1018
1027
  * @throws OciError when an error occurs
1019
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/DeleteObjectLifecyclePolicy.ts.html |here} to see how to use DeleteObjectLifecyclePolicy API.
1028
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/DeleteObjectLifecyclePolicy.ts.html |here} to see how to use DeleteObjectLifecyclePolicy API.
1020
1029
  */
1021
1030
  deleteObjectLifecyclePolicy(deleteObjectLifecyclePolicyRequest) {
1022
1031
  return __awaiter(this, void 0, void 0, function* () {
@@ -1079,7 +1088,7 @@ class ObjectStorageClient {
1079
1088
  * @param DeletePreauthenticatedRequestRequest
1080
1089
  * @return DeletePreauthenticatedRequestResponse
1081
1090
  * @throws OciError when an error occurs
1082
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/DeletePreauthenticatedRequest.ts.html |here} to see how to use DeletePreauthenticatedRequest API.
1091
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/DeletePreauthenticatedRequest.ts.html |here} to see how to use DeletePreauthenticatedRequest API.
1083
1092
  */
1084
1093
  deletePreauthenticatedRequest(deletePreauthenticatedRequestRequest) {
1085
1094
  return __awaiter(this, void 0, void 0, function* () {
@@ -1143,7 +1152,7 @@ class ObjectStorageClient {
1143
1152
  * @param DeleteReplicationPolicyRequest
1144
1153
  * @return DeleteReplicationPolicyResponse
1145
1154
  * @throws OciError when an error occurs
1146
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/DeleteReplicationPolicy.ts.html |here} to see how to use DeleteReplicationPolicy API.
1155
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/DeleteReplicationPolicy.ts.html |here} to see how to use DeleteReplicationPolicy API.
1147
1156
  */
1148
1157
  deleteReplicationPolicy(deleteReplicationPolicyRequest) {
1149
1158
  return __awaiter(this, void 0, void 0, function* () {
@@ -1206,7 +1215,7 @@ class ObjectStorageClient {
1206
1215
  * @param DeleteRetentionRuleRequest
1207
1216
  * @return DeleteRetentionRuleResponse
1208
1217
  * @throws OciError when an error occurs
1209
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/DeleteRetentionRule.ts.html |here} to see how to use DeleteRetentionRule API.
1218
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/DeleteRetentionRule.ts.html |here} to see how to use DeleteRetentionRule API.
1210
1219
  */
1211
1220
  deleteRetentionRule(deleteRetentionRuleRequest) {
1212
1221
  return __awaiter(this, void 0, void 0, function* () {
@@ -1271,7 +1280,7 @@ class ObjectStorageClient {
1271
1280
  * @param GetBucketRequest
1272
1281
  * @return GetBucketResponse
1273
1282
  * @throws OciError when an error occurs
1274
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/GetBucket.ts.html |here} to see how to use GetBucket API.
1283
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/GetBucket.ts.html |here} to see how to use GetBucket API.
1275
1284
  */
1276
1285
  getBucket(getBucketRequest) {
1277
1286
  return __awaiter(this, void 0, void 0, function* () {
@@ -1353,7 +1362,7 @@ class ObjectStorageClient {
1353
1362
  * @param GetNamespaceRequest
1354
1363
  * @return GetNamespaceResponse
1355
1364
  * @throws OciError when an error occurs
1356
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/GetNamespace.ts.html |here} to see how to use GetNamespace API.
1365
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/GetNamespace.ts.html |here} to see how to use GetNamespace API.
1357
1366
  */
1358
1367
  getNamespace(getNamespaceRequest) {
1359
1368
  return __awaiter(this, void 0, void 0, function* () {
@@ -1414,7 +1423,7 @@ class ObjectStorageClient {
1414
1423
  * @param GetNamespaceMetadataRequest
1415
1424
  * @return GetNamespaceMetadataResponse
1416
1425
  * @throws OciError when an error occurs
1417
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/GetNamespaceMetadata.ts.html |here} to see how to use GetNamespaceMetadata API.
1426
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/GetNamespaceMetadata.ts.html |here} to see how to use GetNamespaceMetadata API.
1418
1427
  */
1419
1428
  getNamespaceMetadata(getNamespaceMetadataRequest) {
1420
1429
  return __awaiter(this, void 0, void 0, function* () {
@@ -1480,7 +1489,7 @@ class ObjectStorageClient {
1480
1489
  * @param GetObjectRequest
1481
1490
  * @return GetObjectResponse
1482
1491
  * @throws OciError when an error occurs
1483
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/GetObject.ts.html |here} to see how to use GetObject API.
1492
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/GetObject.ts.html |here} to see how to use GetObject API.
1484
1493
  */
1485
1494
  getObject(getObjectRequest) {
1486
1495
  return __awaiter(this, void 0, void 0, function* () {
@@ -1649,7 +1658,7 @@ class ObjectStorageClient {
1649
1658
  * @param GetObjectLifecyclePolicyRequest
1650
1659
  * @return GetObjectLifecyclePolicyResponse
1651
1660
  * @throws OciError when an error occurs
1652
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/GetObjectLifecyclePolicy.ts.html |here} to see how to use GetObjectLifecyclePolicy API.
1661
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/GetObjectLifecyclePolicy.ts.html |here} to see how to use GetObjectLifecyclePolicy API.
1653
1662
  */
1654
1663
  getObjectLifecyclePolicy(getObjectLifecyclePolicyRequest) {
1655
1664
  return __awaiter(this, void 0, void 0, function* () {
@@ -1720,7 +1729,7 @@ class ObjectStorageClient {
1720
1729
  * @param GetPreauthenticatedRequestRequest
1721
1730
  * @return GetPreauthenticatedRequestResponse
1722
1731
  * @throws OciError when an error occurs
1723
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/GetPreauthenticatedRequest.ts.html |here} to see how to use GetPreauthenticatedRequest API.
1732
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/GetPreauthenticatedRequest.ts.html |here} to see how to use GetPreauthenticatedRequest API.
1724
1733
  */
1725
1734
  getPreauthenticatedRequest(getPreauthenticatedRequestRequest) {
1726
1735
  return __awaiter(this, void 0, void 0, function* () {
@@ -1788,7 +1797,7 @@ class ObjectStorageClient {
1788
1797
  * @param GetReplicationPolicyRequest
1789
1798
  * @return GetReplicationPolicyResponse
1790
1799
  * @throws OciError when an error occurs
1791
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/GetReplicationPolicy.ts.html |here} to see how to use GetReplicationPolicy API.
1800
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/GetReplicationPolicy.ts.html |here} to see how to use GetReplicationPolicy API.
1792
1801
  */
1793
1802
  getReplicationPolicy(getReplicationPolicyRequest) {
1794
1803
  return __awaiter(this, void 0, void 0, function* () {
@@ -1855,7 +1864,7 @@ class ObjectStorageClient {
1855
1864
  * @param GetRetentionRuleRequest
1856
1865
  * @return GetRetentionRuleResponse
1857
1866
  * @throws OciError when an error occurs
1858
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/GetRetentionRule.ts.html |here} to see how to use GetRetentionRule API.
1867
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/GetRetentionRule.ts.html |here} to see how to use GetRetentionRule API.
1859
1868
  */
1860
1869
  getRetentionRule(getRetentionRuleRequest) {
1861
1870
  return __awaiter(this, void 0, void 0, function* () {
@@ -1932,7 +1941,7 @@ class ObjectStorageClient {
1932
1941
  * @param GetWorkRequestRequest
1933
1942
  * @return GetWorkRequestResponse
1934
1943
  * @throws OciError when an error occurs
1935
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1944
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1936
1945
  */
1937
1946
  getWorkRequest(getWorkRequestRequest) {
1938
1947
  return __awaiter(this, void 0, void 0, function* () {
@@ -2003,7 +2012,7 @@ class ObjectStorageClient {
2003
2012
  * @param HeadBucketRequest
2004
2013
  * @return HeadBucketResponse
2005
2014
  * @throws OciError when an error occurs
2006
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/HeadBucket.ts.html |here} to see how to use HeadBucket API.
2015
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/HeadBucket.ts.html |here} to see how to use HeadBucket API.
2007
2016
  */
2008
2017
  headBucket(headBucketRequest) {
2009
2018
  return __awaiter(this, void 0, void 0, function* () {
@@ -2073,7 +2082,7 @@ class ObjectStorageClient {
2073
2082
  * @param HeadObjectRequest
2074
2083
  * @return HeadObjectResponse
2075
2084
  * @throws OciError when an error occurs
2076
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/HeadObject.ts.html |here} to see how to use HeadObject API.
2085
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/HeadObject.ts.html |here} to see how to use HeadObject API.
2077
2086
  */
2078
2087
  headObject(headObjectRequest) {
2079
2088
  return __awaiter(this, void 0, void 0, function* () {
@@ -2230,7 +2239,7 @@ class ObjectStorageClient {
2230
2239
  * @param ListBucketsRequest
2231
2240
  * @return ListBucketsResponse
2232
2241
  * @throws OciError when an error occurs
2233
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ListBuckets.ts.html |here} to see how to use ListBuckets API.
2242
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ListBuckets.ts.html |here} to see how to use ListBuckets API.
2234
2243
  */
2235
2244
  listBuckets(listBucketsRequest) {
2236
2245
  return __awaiter(this, void 0, void 0, function* () {
@@ -2346,7 +2355,7 @@ class ObjectStorageClient {
2346
2355
  * @param ListMultipartUploadPartsRequest
2347
2356
  * @return ListMultipartUploadPartsResponse
2348
2357
  * @throws OciError when an error occurs
2349
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ListMultipartUploadParts.ts.html |here} to see how to use ListMultipartUploadParts API.
2358
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ListMultipartUploadParts.ts.html |here} to see how to use ListMultipartUploadParts API.
2350
2359
  */
2351
2360
  listMultipartUploadParts(listMultipartUploadPartsRequest) {
2352
2361
  return __awaiter(this, void 0, void 0, function* () {
@@ -2468,7 +2477,7 @@ class ObjectStorageClient {
2468
2477
  * @param ListMultipartUploadsRequest
2469
2478
  * @return ListMultipartUploadsResponse
2470
2479
  * @throws OciError when an error occurs
2471
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ListMultipartUploads.ts.html |here} to see how to use ListMultipartUploads API.
2480
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ListMultipartUploads.ts.html |here} to see how to use ListMultipartUploads API.
2472
2481
  */
2473
2482
  listMultipartUploads(listMultipartUploadsRequest) {
2474
2483
  return __awaiter(this, void 0, void 0, function* () {
@@ -2590,7 +2599,7 @@ class ObjectStorageClient {
2590
2599
  * @param ListObjectVersionsRequest
2591
2600
  * @return ListObjectVersionsResponse
2592
2601
  * @throws OciError when an error occurs
2593
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ListObjectVersions.ts.html |here} to see how to use ListObjectVersions API.
2602
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ListObjectVersions.ts.html |here} to see how to use ListObjectVersions API.
2594
2603
  */
2595
2604
  listObjectVersions(listObjectVersionsRequest) {
2596
2605
  return __awaiter(this, void 0, void 0, function* () {
@@ -2680,7 +2689,7 @@ class ObjectStorageClient {
2680
2689
  * @param ListObjectsRequest
2681
2690
  * @return ListObjectsResponse
2682
2691
  * @throws OciError when an error occurs
2683
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ListObjects.ts.html |here} to see how to use ListObjects API.
2692
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ListObjects.ts.html |here} to see how to use ListObjects API.
2684
2693
  */
2685
2694
  listObjects(listObjectsRequest) {
2686
2695
  return __awaiter(this, void 0, void 0, function* () {
@@ -2795,7 +2804,7 @@ class ObjectStorageClient {
2795
2804
  * @param ListPreauthenticatedRequestsRequest
2796
2805
  * @return ListPreauthenticatedRequestsResponse
2797
2806
  * @throws OciError when an error occurs
2798
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ListPreauthenticatedRequests.ts.html |here} to see how to use ListPreauthenticatedRequests API.
2807
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ListPreauthenticatedRequests.ts.html |here} to see how to use ListPreauthenticatedRequests API.
2799
2808
  */
2800
2809
  listPreauthenticatedRequests(listPreauthenticatedRequestsRequest) {
2801
2810
  return __awaiter(this, void 0, void 0, function* () {
@@ -2911,7 +2920,7 @@ class ObjectStorageClient {
2911
2920
  * @param ListReplicationPoliciesRequest
2912
2921
  * @return ListReplicationPoliciesResponse
2913
2922
  * @throws OciError when an error occurs
2914
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ListReplicationPolicies.ts.html |here} to see how to use ListReplicationPolicies API.
2923
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ListReplicationPolicies.ts.html |here} to see how to use ListReplicationPolicies API.
2915
2924
  */
2916
2925
  listReplicationPolicies(listReplicationPoliciesRequest) {
2917
2926
  return __awaiter(this, void 0, void 0, function* () {
@@ -3026,7 +3035,7 @@ class ObjectStorageClient {
3026
3035
  * @param ListReplicationSourcesRequest
3027
3036
  * @return ListReplicationSourcesResponse
3028
3037
  * @throws OciError when an error occurs
3029
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ListReplicationSources.ts.html |here} to see how to use ListReplicationSources API.
3038
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ListReplicationSources.ts.html |here} to see how to use ListReplicationSources API.
3030
3039
  */
3031
3040
  listReplicationSources(listReplicationSourcesRequest) {
3032
3041
  return __awaiter(this, void 0, void 0, function* () {
@@ -3142,7 +3151,7 @@ class ObjectStorageClient {
3142
3151
  * @param ListRetentionRulesRequest
3143
3152
  * @return ListRetentionRulesResponse
3144
3153
  * @throws OciError when an error occurs
3145
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ListRetentionRules.ts.html |here} to see how to use ListRetentionRules API.
3154
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ListRetentionRules.ts.html |here} to see how to use ListRetentionRules API.
3146
3155
  */
3147
3156
  listRetentionRules(listRetentionRulesRequest) {
3148
3157
  return __awaiter(this, void 0, void 0, function* () {
@@ -3214,7 +3223,7 @@ class ObjectStorageClient {
3214
3223
  * @param ListWorkRequestErrorsRequest
3215
3224
  * @return ListWorkRequestErrorsResponse
3216
3225
  * @throws OciError when an error occurs
3217
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
3226
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
3218
3227
  */
3219
3228
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
3220
3229
  return __awaiter(this, void 0, void 0, function* () {
@@ -3327,7 +3336,7 @@ class ObjectStorageClient {
3327
3336
  * @param ListWorkRequestLogsRequest
3328
3337
  * @return ListWorkRequestLogsResponse
3329
3338
  * @throws OciError when an error occurs
3330
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
3339
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
3331
3340
  */
3332
3341
  listWorkRequestLogs(listWorkRequestLogsRequest) {
3333
3342
  return __awaiter(this, void 0, void 0, function* () {
@@ -3441,7 +3450,7 @@ class ObjectStorageClient {
3441
3450
  * @param ListWorkRequestsRequest
3442
3451
  * @return ListWorkRequestsResponse
3443
3452
  * @throws OciError when an error occurs
3444
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3453
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3445
3454
  */
3446
3455
  listWorkRequests(listWorkRequestsRequest) {
3447
3456
  return __awaiter(this, void 0, void 0, function* () {
@@ -3557,7 +3566,7 @@ class ObjectStorageClient {
3557
3566
  * @param MakeBucketWritableRequest
3558
3567
  * @return MakeBucketWritableResponse
3559
3568
  * @throws OciError when an error occurs
3560
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/MakeBucketWritable.ts.html |here} to see how to use MakeBucketWritable API.
3569
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/MakeBucketWritable.ts.html |here} to see how to use MakeBucketWritable API.
3561
3570
  */
3562
3571
  makeBucketWritable(makeBucketWritableRequest) {
3563
3572
  return __awaiter(this, void 0, void 0, function* () {
@@ -3627,7 +3636,7 @@ class ObjectStorageClient {
3627
3636
  * @param PutObjectRequest
3628
3637
  * @return PutObjectResponse
3629
3638
  * @throws OciError when an error occurs
3630
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/PutObject.ts.html |here} to see how to use PutObject API.
3639
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/PutObject.ts.html |here} to see how to use PutObject API.
3631
3640
  */
3632
3641
  putObject(putObjectRequest) {
3633
3642
  return __awaiter(this, void 0, void 0, function* () {
@@ -3732,7 +3741,7 @@ class ObjectStorageClient {
3732
3741
  * @param PutObjectLifecyclePolicyRequest
3733
3742
  * @return PutObjectLifecyclePolicyResponse
3734
3743
  * @throws OciError when an error occurs
3735
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/PutObjectLifecyclePolicy.ts.html |here} to see how to use PutObjectLifecyclePolicy API.
3744
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/PutObjectLifecyclePolicy.ts.html |here} to see how to use PutObjectLifecyclePolicy API.
3736
3745
  */
3737
3746
  putObjectLifecyclePolicy(putObjectLifecyclePolicyRequest) {
3738
3747
  return __awaiter(this, void 0, void 0, function* () {
@@ -3821,7 +3830,7 @@ class ObjectStorageClient {
3821
3830
  * @param ReencryptBucketRequest
3822
3831
  * @return ReencryptBucketResponse
3823
3832
  * @throws OciError when an error occurs
3824
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ReencryptBucket.ts.html |here} to see how to use ReencryptBucket API.
3833
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ReencryptBucket.ts.html |here} to see how to use ReencryptBucket API.
3825
3834
  */
3826
3835
  reencryptBucket(reencryptBucketRequest) {
3827
3836
  return __awaiter(this, void 0, void 0, function* () {
@@ -3897,7 +3906,7 @@ class ObjectStorageClient {
3897
3906
  * @param ReencryptObjectRequest
3898
3907
  * @return ReencryptObjectResponse
3899
3908
  * @throws OciError when an error occurs
3900
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/ReencryptObject.ts.html |here} to see how to use ReencryptObject API.
3909
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/ReencryptObject.ts.html |here} to see how to use ReencryptObject API.
3901
3910
  */
3902
3911
  reencryptObject(reencryptObjectRequest) {
3903
3912
  return __awaiter(this, void 0, void 0, function* () {
@@ -3967,7 +3976,7 @@ class ObjectStorageClient {
3967
3976
  * @param RenameObjectRequest
3968
3977
  * @return RenameObjectResponse
3969
3978
  * @throws OciError when an error occurs
3970
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/RenameObject.ts.html |here} to see how to use RenameObject API.
3979
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/RenameObject.ts.html |here} to see how to use RenameObject API.
3971
3980
  */
3972
3981
  renameObject(renameObjectRequest) {
3973
3982
  return __awaiter(this, void 0, void 0, function* () {
@@ -4047,7 +4056,7 @@ class ObjectStorageClient {
4047
4056
  * @param RestoreObjectsRequest
4048
4057
  * @return RestoreObjectsResponse
4049
4058
  * @throws OciError when an error occurs
4050
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/RestoreObjects.ts.html |here} to see how to use RestoreObjects API.
4059
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/RestoreObjects.ts.html |here} to see how to use RestoreObjects API.
4051
4060
  */
4052
4061
  restoreObjects(restoreObjectsRequest) {
4053
4062
  return __awaiter(this, void 0, void 0, function* () {
@@ -4115,7 +4124,7 @@ class ObjectStorageClient {
4115
4124
  * @param UpdateBucketRequest
4116
4125
  * @return UpdateBucketResponse
4117
4126
  * @throws OciError when an error occurs
4118
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/UpdateBucket.ts.html |here} to see how to use UpdateBucket API.
4127
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/UpdateBucket.ts.html |here} to see how to use UpdateBucket API.
4119
4128
  */
4120
4129
  updateBucket(updateBucketRequest) {
4121
4130
  return __awaiter(this, void 0, void 0, function* () {
@@ -4195,7 +4204,7 @@ class ObjectStorageClient {
4195
4204
  * @param UpdateNamespaceMetadataRequest
4196
4205
  * @return UpdateNamespaceMetadataResponse
4197
4206
  * @throws OciError when an error occurs
4198
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/UpdateNamespaceMetadata.ts.html |here} to see how to use UpdateNamespaceMetadata API.
4207
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/UpdateNamespaceMetadata.ts.html |here} to see how to use UpdateNamespaceMetadata API.
4199
4208
  */
4200
4209
  updateNamespaceMetadata(updateNamespaceMetadataRequest) {
4201
4210
  return __awaiter(this, void 0, void 0, function* () {
@@ -4262,7 +4271,7 @@ class ObjectStorageClient {
4262
4271
  * @param UpdateObjectStorageTierRequest
4263
4272
  * @return UpdateObjectStorageTierResponse
4264
4273
  * @throws OciError when an error occurs
4265
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/UpdateObjectStorageTier.ts.html |here} to see how to use UpdateObjectStorageTier API.
4274
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/UpdateObjectStorageTier.ts.html |here} to see how to use UpdateObjectStorageTier API.
4266
4275
  */
4267
4276
  updateObjectStorageTier(updateObjectStorageTierRequest) {
4268
4277
  return __awaiter(this, void 0, void 0, function* () {
@@ -4326,7 +4335,7 @@ class ObjectStorageClient {
4326
4335
  * @param UpdateRetentionRuleRequest
4327
4336
  * @return UpdateRetentionRuleResponse
4328
4337
  * @throws OciError when an error occurs
4329
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/UpdateRetentionRule.ts.html |here} to see how to use UpdateRetentionRule API.
4338
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/UpdateRetentionRule.ts.html |here} to see how to use UpdateRetentionRule API.
4330
4339
  */
4331
4340
  updateRetentionRule(updateRetentionRuleRequest) {
4332
4341
  return __awaiter(this, void 0, void 0, function* () {
@@ -4401,7 +4410,7 @@ class ObjectStorageClient {
4401
4410
  * @param UploadPartRequest
4402
4411
  * @return UploadPartResponse
4403
4412
  * @throws OciError when an error occurs
4404
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/objectstorage/UploadPart.ts.html |here} to see how to use UploadPart API.
4413
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/objectstorage/UploadPart.ts.html |here} to see how to use UploadPart API.
4405
4414
  */
4406
4415
  uploadPart(uploadPartRequest) {
4407
4416
  return __awaiter(this, void 0, void 0, function* () {