oci-objectstorage 2.3.1 → 2.5.2

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 (63) hide show
  1. package/LICENSE.txt +6 -0
  2. package/lib/client.d.ts +220 -50
  3. package/lib/client.js +269 -55
  4. package/lib/client.js.map +1 -1
  5. package/lib/model/rename-object-details.d.ts +3 -1
  6. package/lib/model/rename-object-details.js.map +1 -1
  7. package/lib/request/abort-multipart-upload-request.d.ts +1 -1
  8. package/lib/request/cancel-work-request-request.d.ts +1 -1
  9. package/lib/request/commit-multipart-upload-request.d.ts +1 -1
  10. package/lib/request/copy-object-request.d.ts +7 -1
  11. package/lib/request/create-bucket-request.d.ts +1 -1
  12. package/lib/request/create-multipart-upload-request.d.ts +7 -1
  13. package/lib/request/create-preauthenticated-request-request.d.ts +1 -1
  14. package/lib/request/create-replication-policy-request.d.ts +1 -1
  15. package/lib/request/create-retention-rule-request.d.ts +1 -1
  16. package/lib/request/delete-bucket-request.d.ts +1 -1
  17. package/lib/request/delete-object-lifecycle-policy-request.d.ts +1 -1
  18. package/lib/request/delete-object-request.d.ts +1 -1
  19. package/lib/request/delete-preauthenticated-request-request.d.ts +1 -1
  20. package/lib/request/delete-replication-policy-request.d.ts +1 -1
  21. package/lib/request/delete-retention-rule-request.d.ts +1 -1
  22. package/lib/request/get-bucket-request.d.ts +4 -3
  23. package/lib/request/get-bucket-request.js.map +1 -1
  24. package/lib/request/get-namespace-metadata-request.d.ts +1 -1
  25. package/lib/request/get-namespace-request.d.ts +1 -1
  26. package/lib/request/get-object-lifecycle-policy-request.d.ts +1 -1
  27. package/lib/request/get-object-request.d.ts +4 -3
  28. package/lib/request/get-preauthenticated-request-request.d.ts +1 -1
  29. package/lib/request/get-replication-policy-request.d.ts +1 -1
  30. package/lib/request/get-retention-rule-request.d.ts +1 -1
  31. package/lib/request/get-work-request-request.d.ts +1 -1
  32. package/lib/request/head-bucket-request.d.ts +4 -3
  33. package/lib/request/head-object-request.d.ts +4 -3
  34. package/lib/request/list-buckets-request.d.ts +1 -1
  35. package/lib/request/list-multipart-upload-parts-request.d.ts +1 -1
  36. package/lib/request/list-multipart-uploads-request.d.ts +1 -1
  37. package/lib/request/list-object-versions-request.d.ts +1 -1
  38. package/lib/request/list-objects-request.d.ts +1 -1
  39. package/lib/request/list-preauthenticated-requests-request.d.ts +1 -1
  40. package/lib/request/list-replication-policies-request.d.ts +1 -1
  41. package/lib/request/list-replication-sources-request.d.ts +1 -1
  42. package/lib/request/list-retention-rules-request.d.ts +1 -1
  43. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  44. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  45. package/lib/request/list-work-requests-request.d.ts +1 -1
  46. package/lib/request/make-bucket-writable-request.d.ts +1 -1
  47. package/lib/request/put-object-lifecycle-policy-request.d.ts +1 -1
  48. package/lib/request/put-object-request.d.ts +7 -1
  49. package/lib/request/reencrypt-bucket-request.d.ts +1 -1
  50. package/lib/request/reencrypt-object-request.d.ts +1 -1
  51. package/lib/request/rename-object-request.d.ts +1 -1
  52. package/lib/request/restore-objects-request.d.ts +1 -1
  53. package/lib/request/update-bucket-request.d.ts +1 -1
  54. package/lib/request/update-namespace-metadata-request.d.ts +1 -1
  55. package/lib/request/update-object-storage-tier-request.d.ts +1 -1
  56. package/lib/request/update-retention-rule-request.d.ts +1 -1
  57. package/lib/request/upload-part-request.d.ts +7 -1
  58. package/lib/upload-manager/node-fs-blob.js +2 -1
  59. package/lib/upload-manager/node-fs-blob.js.map +1 -1
  60. package/lib/upload-manager/upload-manager.js +52 -10
  61. package/lib/upload-manager/upload-manager.js.map +1 -1
  62. package/lib/upload-manager/upload-options.d.ts +1 -0
  63. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -73,7 +73,7 @@ export declare class ObjectStorageClient {
73
73
  * @param AbortMultipartUploadRequest
74
74
  * @return AbortMultipartUploadResponse
75
75
  * @throws OciError when an error occurs
76
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/AbortMultipartUpload.ts.html |here} to see how to use AbortMultipartUpload API.
76
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/AbortMultipartUpload.ts.html |here} to see how to use AbortMultipartUpload API.
77
77
  */
78
78
  abortMultipartUpload(abortMultipartUploadRequest: requests.AbortMultipartUploadRequest): Promise<responses.AbortMultipartUploadResponse>;
79
79
  /**
@@ -82,7 +82,7 @@ export declare class ObjectStorageClient {
82
82
  * @param CancelWorkRequestRequest
83
83
  * @return CancelWorkRequestResponse
84
84
  * @throws OciError when an error occurs
85
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
85
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
86
86
  */
87
87
  cancelWorkRequest(cancelWorkRequestRequest: requests.CancelWorkRequestRequest): Promise<responses.CancelWorkRequestResponse>;
88
88
  /**
@@ -91,7 +91,7 @@ export declare class ObjectStorageClient {
91
91
  * @param CommitMultipartUploadRequest
92
92
  * @return CommitMultipartUploadResponse
93
93
  * @throws OciError when an error occurs
94
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/CommitMultipartUpload.ts.html |here} to see how to use CommitMultipartUpload API.
94
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/CommitMultipartUpload.ts.html |here} to see how to use CommitMultipartUpload API.
95
95
  */
96
96
  commitMultipartUpload(commitMultipartUploadRequest: requests.CommitMultipartUploadRequest): Promise<responses.CommitMultipartUploadResponse>;
97
97
  /**
@@ -100,7 +100,7 @@ export declare class ObjectStorageClient {
100
100
  * @param CopyObjectRequest
101
101
  * @return CopyObjectResponse
102
102
  * @throws OciError when an error occurs
103
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/CopyObject.ts.html |here} to see how to use CopyObject API.
103
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/CopyObject.ts.html |here} to see how to use CopyObject API.
104
104
  */
105
105
  copyObject(copyObjectRequest: requests.CopyObjectRequest): Promise<responses.CopyObjectResponse>;
106
106
  /**
@@ -110,7 +110,7 @@ export declare class ObjectStorageClient {
110
110
  * @param CreateBucketRequest
111
111
  * @return CreateBucketResponse
112
112
  * @throws OciError when an error occurs
113
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/CreateBucket.ts.html |here} to see how to use CreateBucket API.
113
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/CreateBucket.ts.html |here} to see how to use CreateBucket API.
114
114
  */
115
115
  createBucket(createBucketRequest: requests.CreateBucketRequest): Promise<responses.CreateBucketResponse>;
116
116
  /**
@@ -119,7 +119,7 @@ export declare class ObjectStorageClient {
119
119
  * @param CreateMultipartUploadRequest
120
120
  * @return CreateMultipartUploadResponse
121
121
  * @throws OciError when an error occurs
122
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/CreateMultipartUpload.ts.html |here} to see how to use CreateMultipartUpload API.
122
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/CreateMultipartUpload.ts.html |here} to see how to use CreateMultipartUpload API.
123
123
  */
124
124
  createMultipartUpload(createMultipartUploadRequest: requests.CreateMultipartUploadRequest): Promise<responses.CreateMultipartUploadResponse>;
125
125
  /**
@@ -128,7 +128,7 @@ export declare class ObjectStorageClient {
128
128
  * @param CreatePreauthenticatedRequestRequest
129
129
  * @return CreatePreauthenticatedRequestResponse
130
130
  * @throws OciError when an error occurs
131
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/CreatePreauthenticatedRequest.ts.html |here} to see how to use CreatePreauthenticatedRequest API.
131
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/CreatePreauthenticatedRequest.ts.html |here} to see how to use CreatePreauthenticatedRequest API.
132
132
  */
133
133
  createPreauthenticatedRequest(createPreauthenticatedRequestRequest: requests.CreatePreauthenticatedRequestRequest): Promise<responses.CreatePreauthenticatedRequestResponse>;
134
134
  /**
@@ -137,7 +137,7 @@ export declare class ObjectStorageClient {
137
137
  * @param CreateReplicationPolicyRequest
138
138
  * @return CreateReplicationPolicyResponse
139
139
  * @throws OciError when an error occurs
140
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/CreateReplicationPolicy.ts.html |here} to see how to use CreateReplicationPolicy API.
140
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/CreateReplicationPolicy.ts.html |here} to see how to use CreateReplicationPolicy API.
141
141
  */
142
142
  createReplicationPolicy(createReplicationPolicyRequest: requests.CreateReplicationPolicyRequest): Promise<responses.CreateReplicationPolicyResponse>;
143
143
  /**
@@ -147,7 +147,7 @@ export declare class ObjectStorageClient {
147
147
  * @param CreateRetentionRuleRequest
148
148
  * @return CreateRetentionRuleResponse
149
149
  * @throws OciError when an error occurs
150
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/CreateRetentionRule.ts.html |here} to see how to use CreateRetentionRule API.
150
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/CreateRetentionRule.ts.html |here} to see how to use CreateRetentionRule API.
151
151
  */
152
152
  createRetentionRule(createRetentionRuleRequest: requests.CreateRetentionRuleRequest): Promise<responses.CreateRetentionRuleResponse>;
153
153
  /**
@@ -159,7 +159,7 @@ export declare class ObjectStorageClient {
159
159
  * @param DeleteBucketRequest
160
160
  * @return DeleteBucketResponse
161
161
  * @throws OciError when an error occurs
162
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/DeleteBucket.ts.html |here} to see how to use DeleteBucket API.
162
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/DeleteBucket.ts.html |here} to see how to use DeleteBucket API.
163
163
  */
164
164
  deleteBucket(deleteBucketRequest: requests.DeleteBucketRequest): Promise<responses.DeleteBucketResponse>;
165
165
  /**
@@ -168,7 +168,7 @@ export declare class ObjectStorageClient {
168
168
  * @param DeleteObjectRequest
169
169
  * @return DeleteObjectResponse
170
170
  * @throws OciError when an error occurs
171
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/DeleteObject.ts.html |here} to see how to use DeleteObject API.
171
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/DeleteObject.ts.html |here} to see how to use DeleteObject API.
172
172
  */
173
173
  deleteObject(deleteObjectRequest: requests.DeleteObjectRequest): Promise<responses.DeleteObjectResponse>;
174
174
  /**
@@ -177,7 +177,7 @@ export declare class ObjectStorageClient {
177
177
  * @param DeleteObjectLifecyclePolicyRequest
178
178
  * @return DeleteObjectLifecyclePolicyResponse
179
179
  * @throws OciError when an error occurs
180
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/DeleteObjectLifecyclePolicy.ts.html |here} to see how to use DeleteObjectLifecyclePolicy API.
180
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/DeleteObjectLifecyclePolicy.ts.html |here} to see how to use DeleteObjectLifecyclePolicy API.
181
181
  */
182
182
  deleteObjectLifecyclePolicy(deleteObjectLifecyclePolicyRequest: requests.DeleteObjectLifecyclePolicyRequest): Promise<responses.DeleteObjectLifecyclePolicyResponse>;
183
183
  /**
@@ -185,7 +185,7 @@ export declare class ObjectStorageClient {
185
185
  * @param DeletePreauthenticatedRequestRequest
186
186
  * @return DeletePreauthenticatedRequestResponse
187
187
  * @throws OciError when an error occurs
188
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/DeletePreauthenticatedRequest.ts.html |here} to see how to use DeletePreauthenticatedRequest API.
188
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/DeletePreauthenticatedRequest.ts.html |here} to see how to use DeletePreauthenticatedRequest API.
189
189
  */
190
190
  deletePreauthenticatedRequest(deletePreauthenticatedRequestRequest: requests.DeletePreauthenticatedRequestRequest): Promise<responses.DeletePreauthenticatedRequestResponse>;
191
191
  /**
@@ -194,7 +194,7 @@ export declare class ObjectStorageClient {
194
194
  * @param DeleteReplicationPolicyRequest
195
195
  * @return DeleteReplicationPolicyResponse
196
196
  * @throws OciError when an error occurs
197
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/DeleteReplicationPolicy.ts.html |here} to see how to use DeleteReplicationPolicy API.
197
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/DeleteReplicationPolicy.ts.html |here} to see how to use DeleteReplicationPolicy API.
198
198
  */
199
199
  deleteReplicationPolicy(deleteReplicationPolicyRequest: requests.DeleteReplicationPolicyRequest): Promise<responses.DeleteReplicationPolicyResponse>;
200
200
  /**
@@ -202,7 +202,7 @@ export declare class ObjectStorageClient {
202
202
  * @param DeleteRetentionRuleRequest
203
203
  * @return DeleteRetentionRuleResponse
204
204
  * @throws OciError when an error occurs
205
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/DeleteRetentionRule.ts.html |here} to see how to use DeleteRetentionRule API.
205
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/DeleteRetentionRule.ts.html |here} to see how to use DeleteRetentionRule API.
206
206
  */
207
207
  deleteRetentionRule(deleteRetentionRuleRequest: requests.DeleteRetentionRuleRequest): Promise<responses.DeleteRetentionRuleResponse>;
208
208
  /**
@@ -211,7 +211,7 @@ export declare class ObjectStorageClient {
211
211
  * @param GetBucketRequest
212
212
  * @return GetBucketResponse
213
213
  * @throws OciError when an error occurs
214
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/GetBucket.ts.html |here} to see how to use GetBucket API.
214
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/GetBucket.ts.html |here} to see how to use GetBucket API.
215
215
  */
216
216
  getBucket(getBucketRequest: requests.GetBucketRequest): Promise<responses.GetBucketResponse>;
217
217
  /**
@@ -226,7 +226,7 @@ export declare class ObjectStorageClient {
226
226
  * @param GetNamespaceRequest
227
227
  * @return GetNamespaceResponse
228
228
  * @throws OciError when an error occurs
229
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/GetNamespace.ts.html |here} to see how to use GetNamespace API.
229
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/GetNamespace.ts.html |here} to see how to use GetNamespace API.
230
230
  */
231
231
  getNamespace(getNamespaceRequest: requests.GetNamespaceRequest): Promise<responses.GetNamespaceResponse>;
232
232
  /**
@@ -241,7 +241,7 @@ export declare class ObjectStorageClient {
241
241
  * @param GetNamespaceMetadataRequest
242
242
  * @return GetNamespaceMetadataResponse
243
243
  * @throws OciError when an error occurs
244
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/GetNamespaceMetadata.ts.html |here} to see how to use GetNamespaceMetadata API.
244
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/GetNamespaceMetadata.ts.html |here} to see how to use GetNamespaceMetadata API.
245
245
  */
246
246
  getNamespaceMetadata(getNamespaceMetadataRequest: requests.GetNamespaceMetadataRequest): Promise<responses.GetNamespaceMetadataResponse>;
247
247
  /**
@@ -250,7 +250,7 @@ export declare class ObjectStorageClient {
250
250
  * @param GetObjectRequest
251
251
  * @return GetObjectResponse
252
252
  * @throws OciError when an error occurs
253
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/GetObject.ts.html |here} to see how to use GetObject API.
253
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/GetObject.ts.html |here} to see how to use GetObject API.
254
254
  */
255
255
  getObject(getObjectRequest: requests.GetObjectRequest): Promise<responses.GetObjectResponse>;
256
256
  /**
@@ -259,7 +259,7 @@ export declare class ObjectStorageClient {
259
259
  * @param GetObjectLifecyclePolicyRequest
260
260
  * @return GetObjectLifecyclePolicyResponse
261
261
  * @throws OciError when an error occurs
262
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/GetObjectLifecyclePolicy.ts.html |here} to see how to use GetObjectLifecyclePolicy API.
262
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/GetObjectLifecyclePolicy.ts.html |here} to see how to use GetObjectLifecyclePolicy API.
263
263
  */
264
264
  getObjectLifecyclePolicy(getObjectLifecyclePolicyRequest: requests.GetObjectLifecyclePolicyRequest): Promise<responses.GetObjectLifecyclePolicyResponse>;
265
265
  /**
@@ -267,7 +267,7 @@ export declare class ObjectStorageClient {
267
267
  * @param GetPreauthenticatedRequestRequest
268
268
  * @return GetPreauthenticatedRequestResponse
269
269
  * @throws OciError when an error occurs
270
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/GetPreauthenticatedRequest.ts.html |here} to see how to use GetPreauthenticatedRequest API.
270
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/GetPreauthenticatedRequest.ts.html |here} to see how to use GetPreauthenticatedRequest API.
271
271
  */
272
272
  getPreauthenticatedRequest(getPreauthenticatedRequestRequest: requests.GetPreauthenticatedRequestRequest): Promise<responses.GetPreauthenticatedRequestResponse>;
273
273
  /**
@@ -276,7 +276,7 @@ export declare class ObjectStorageClient {
276
276
  * @param GetReplicationPolicyRequest
277
277
  * @return GetReplicationPolicyResponse
278
278
  * @throws OciError when an error occurs
279
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/GetReplicationPolicy.ts.html |here} to see how to use GetReplicationPolicy API.
279
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/GetReplicationPolicy.ts.html |here} to see how to use GetReplicationPolicy API.
280
280
  */
281
281
  getReplicationPolicy(getReplicationPolicyRequest: requests.GetReplicationPolicyRequest): Promise<responses.GetReplicationPolicyResponse>;
282
282
  /**
@@ -284,7 +284,7 @@ export declare class ObjectStorageClient {
284
284
  * @param GetRetentionRuleRequest
285
285
  * @return GetRetentionRuleResponse
286
286
  * @throws OciError when an error occurs
287
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/GetRetentionRule.ts.html |here} to see how to use GetRetentionRule API.
287
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/GetRetentionRule.ts.html |here} to see how to use GetRetentionRule API.
288
288
  */
289
289
  getRetentionRule(getRetentionRuleRequest: requests.GetRetentionRuleRequest): Promise<responses.GetRetentionRuleResponse>;
290
290
  /**
@@ -292,7 +292,7 @@ export declare class ObjectStorageClient {
292
292
  * @param GetWorkRequestRequest
293
293
  * @return GetWorkRequestResponse
294
294
  * @throws OciError when an error occurs
295
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
295
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
296
296
  */
297
297
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
298
298
  /**
@@ -301,7 +301,7 @@ export declare class ObjectStorageClient {
301
301
  * @param HeadBucketRequest
302
302
  * @return HeadBucketResponse
303
303
  * @throws OciError when an error occurs
304
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/HeadBucket.ts.html |here} to see how to use HeadBucket API.
304
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/HeadBucket.ts.html |here} to see how to use HeadBucket API.
305
305
  */
306
306
  headBucket(headBucketRequest: requests.HeadBucketRequest): Promise<responses.HeadBucketResponse>;
307
307
  /**
@@ -310,7 +310,7 @@ export declare class ObjectStorageClient {
310
310
  * @param HeadObjectRequest
311
311
  * @return HeadObjectResponse
312
312
  * @throws OciError when an error occurs
313
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/HeadObject.ts.html |here} to see how to use HeadObject API.
313
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/HeadObject.ts.html |here} to see how to use HeadObject API.
314
314
  */
315
315
  headObject(headObjectRequest: requests.HeadObjectRequest): Promise<responses.HeadObjectResponse>;
316
316
  /**
@@ -327,10 +327,11 @@ export declare class ObjectStorageClient {
327
327
  * @param ListBucketsRequest
328
328
  * @return ListBucketsResponse
329
329
  * @throws OciError when an error occurs
330
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ListBuckets.ts.html |here} to see how to use ListBuckets API.
330
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ListBuckets.ts.html |here} to see how to use ListBuckets API.
331
331
  */
332
332
  listBuckets(listBucketsRequest: requests.ListBucketsRequest): Promise<responses.ListBucketsResponse>;
333
333
  /**
334
+ * NOTE: This function is deprecated in favor of listBucketsRecordIterator function.
334
335
  * Creates a new async iterator which will iterate over the models.BucketSummary objects
335
336
  * contained in responses from the listBuckets operation. This iterator will fetch more data from the
336
337
  * server as needed.
@@ -339,22 +340,39 @@ export declare class ObjectStorageClient {
339
340
  */
340
341
  listAllBuckets(request: requests.ListBucketsRequest): AsyncIterableIterator<model.BucketSummary>;
341
342
  /**
343
+ * NOTE: This function is deprecated in favor of listBucketsResponseIterator function.
342
344
  * Creates a new async iterator which will iterate over the responses received from the listBuckets operation. This iterator
343
345
  * will fetch more data from the server as needed.
344
346
  *
345
347
  * @param request a request which can be sent to the service operation
346
348
  */
347
349
  listAllBucketsResponses(request: requests.ListBucketsRequest): AsyncIterableIterator<responses.ListBucketsResponse>;
350
+ /**
351
+ * Creates a new async iterator which will iterate over the models.BucketSummary objects
352
+ * contained in responses from the listBuckets operation. This iterator will fetch more data from the
353
+ * server as needed.
354
+ *
355
+ * @param request a request which can be sent to the service operation
356
+ */
357
+ listBucketsRecordIterator(request: requests.ListBucketsRequest): AsyncIterableIterator<model.BucketSummary>;
358
+ /**
359
+ * Creates a new async iterator which will iterate over the responses received from the listBuckets operation. This iterator
360
+ * will fetch more data from the server as needed.
361
+ *
362
+ * @param request a request which can be sent to the service operation
363
+ */
364
+ listBucketsResponseIterator(request: requests.ListBucketsRequest): AsyncIterableIterator<responses.ListBucketsResponse>;
348
365
  /**
349
366
  * Lists the parts of an in-progress multipart upload.
350
367
  *
351
368
  * @param ListMultipartUploadPartsRequest
352
369
  * @return ListMultipartUploadPartsResponse
353
370
  * @throws OciError when an error occurs
354
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ListMultipartUploadParts.ts.html |here} to see how to use ListMultipartUploadParts API.
371
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ListMultipartUploadParts.ts.html |here} to see how to use ListMultipartUploadParts API.
355
372
  */
356
373
  listMultipartUploadParts(listMultipartUploadPartsRequest: requests.ListMultipartUploadPartsRequest): Promise<responses.ListMultipartUploadPartsResponse>;
357
374
  /**
375
+ * NOTE: This function is deprecated in favor of listMultipartUploadPartsRecordIterator function.
358
376
  * Creates a new async iterator which will iterate over the models.MultipartUploadPartSummary objects
359
377
  * contained in responses from the listMultipartUploadParts operation. This iterator will fetch more data from the
360
378
  * server as needed.
@@ -363,22 +381,39 @@ export declare class ObjectStorageClient {
363
381
  */
364
382
  listAllMultipartUploadParts(request: requests.ListMultipartUploadPartsRequest): AsyncIterableIterator<model.MultipartUploadPartSummary>;
365
383
  /**
384
+ * NOTE: This function is deprecated in favor of listMultipartUploadPartsResponseIterator function.
366
385
  * Creates a new async iterator which will iterate over the responses received from the listMultipartUploadParts operation. This iterator
367
386
  * will fetch more data from the server as needed.
368
387
  *
369
388
  * @param request a request which can be sent to the service operation
370
389
  */
371
390
  listAllMultipartUploadPartsResponses(request: requests.ListMultipartUploadPartsRequest): AsyncIterableIterator<responses.ListMultipartUploadPartsResponse>;
391
+ /**
392
+ * Creates a new async iterator which will iterate over the models.MultipartUploadPartSummary objects
393
+ * contained in responses from the listMultipartUploadParts operation. This iterator will fetch more data from the
394
+ * server as needed.
395
+ *
396
+ * @param request a request which can be sent to the service operation
397
+ */
398
+ listMultipartUploadPartsRecordIterator(request: requests.ListMultipartUploadPartsRequest): AsyncIterableIterator<model.MultipartUploadPartSummary>;
399
+ /**
400
+ * Creates a new async iterator which will iterate over the responses received from the listMultipartUploadParts operation. This iterator
401
+ * will fetch more data from the server as needed.
402
+ *
403
+ * @param request a request which can be sent to the service operation
404
+ */
405
+ listMultipartUploadPartsResponseIterator(request: requests.ListMultipartUploadPartsRequest): AsyncIterableIterator<responses.ListMultipartUploadPartsResponse>;
372
406
  /**
373
407
  * Lists all of the in-progress multipart uploads for the given bucket in the given Object Storage namespace.
374
408
  *
375
409
  * @param ListMultipartUploadsRequest
376
410
  * @return ListMultipartUploadsResponse
377
411
  * @throws OciError when an error occurs
378
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ListMultipartUploads.ts.html |here} to see how to use ListMultipartUploads API.
412
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ListMultipartUploads.ts.html |here} to see how to use ListMultipartUploads API.
379
413
  */
380
414
  listMultipartUploads(listMultipartUploadsRequest: requests.ListMultipartUploadsRequest): Promise<responses.ListMultipartUploadsResponse>;
381
415
  /**
416
+ * NOTE: This function is deprecated in favor of listMultipartUploadsRecordIterator function.
382
417
  * Creates a new async iterator which will iterate over the models.MultipartUpload objects
383
418
  * contained in responses from the listMultipartUploads operation. This iterator will fetch more data from the
384
419
  * server as needed.
@@ -387,12 +422,28 @@ export declare class ObjectStorageClient {
387
422
  */
388
423
  listAllMultipartUploads(request: requests.ListMultipartUploadsRequest): AsyncIterableIterator<model.MultipartUpload>;
389
424
  /**
425
+ * NOTE: This function is deprecated in favor of listMultipartUploadsResponseIterator function.
390
426
  * Creates a new async iterator which will iterate over the responses received from the listMultipartUploads operation. This iterator
391
427
  * will fetch more data from the server as needed.
392
428
  *
393
429
  * @param request a request which can be sent to the service operation
394
430
  */
395
431
  listAllMultipartUploadsResponses(request: requests.ListMultipartUploadsRequest): AsyncIterableIterator<responses.ListMultipartUploadsResponse>;
432
+ /**
433
+ * Creates a new async iterator which will iterate over the models.MultipartUpload objects
434
+ * contained in responses from the listMultipartUploads operation. This iterator will fetch more data from the
435
+ * server as needed.
436
+ *
437
+ * @param request a request which can be sent to the service operation
438
+ */
439
+ listMultipartUploadsRecordIterator(request: requests.ListMultipartUploadsRequest): AsyncIterableIterator<model.MultipartUpload>;
440
+ /**
441
+ * Creates a new async iterator which will iterate over the responses received from the listMultipartUploads operation. This iterator
442
+ * will fetch more data from the server as needed.
443
+ *
444
+ * @param request a request which can be sent to the service operation
445
+ */
446
+ listMultipartUploadsResponseIterator(request: requests.ListMultipartUploadsRequest): AsyncIterableIterator<responses.ListMultipartUploadsResponse>;
396
447
  /**
397
448
  * Lists the object versions in a bucket.
398
449
  * <p>
@@ -406,7 +457,7 @@ export declare class ObjectStorageClient {
406
457
  * @param ListObjectVersionsRequest
407
458
  * @return ListObjectVersionsResponse
408
459
  * @throws OciError when an error occurs
409
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ListObjectVersions.ts.html |here} to see how to use ListObjectVersions API.
460
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ListObjectVersions.ts.html |here} to see how to use ListObjectVersions API.
410
461
  */
411
462
  listObjectVersions(listObjectVersionsRequest: requests.ListObjectVersionsRequest): Promise<responses.ListObjectVersionsResponse>;
412
463
  /**
@@ -424,10 +475,11 @@ export declare class ObjectStorageClient {
424
475
  * @param ListObjectsRequest
425
476
  * @return ListObjectsResponse
426
477
  * @throws OciError when an error occurs
427
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ListObjects.ts.html |here} to see how to use ListObjects API.
478
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ListObjects.ts.html |here} to see how to use ListObjects API.
428
479
  */
429
480
  listObjects(listObjectsRequest: requests.ListObjectsRequest): Promise<responses.ListObjectsResponse>;
430
481
  /**
482
+ * NOTE: This function is deprecated in favor of listObjectsRecordIterator function.
431
483
  * Creates a new async iterator which will iterate over the models.ObjectSummary objects
432
484
  * contained in responses from the listObjects operation. This iterator will fetch more data from the
433
485
  * server as needed.
@@ -436,22 +488,39 @@ export declare class ObjectStorageClient {
436
488
  */
437
489
  listAllObjects(request: requests.ListObjectsRequest): AsyncIterableIterator<model.ObjectSummary>;
438
490
  /**
491
+ * NOTE: This function is deprecated in favor of listObjectsResponseIterator function.
439
492
  * Creates a new async iterator which will iterate over the responses received from the listObjects operation. This iterator
440
493
  * will fetch more data from the server as needed.
441
494
  *
442
495
  * @param request a request which can be sent to the service operation
443
496
  */
444
497
  listAllObjectsResponses(request: requests.ListObjectsRequest): AsyncIterableIterator<responses.ListObjectsResponse>;
498
+ /**
499
+ * Creates a new async iterator which will iterate over the models.ObjectSummary objects
500
+ * contained in responses from the listObjects operation. This iterator will fetch more data from the
501
+ * server as needed.
502
+ *
503
+ * @param request a request which can be sent to the service operation
504
+ */
505
+ listObjectsRecordIterator(request: requests.ListObjectsRequest): AsyncIterableIterator<model.ObjectSummary>;
506
+ /**
507
+ * Creates a new async iterator which will iterate over the responses received from the listObjects operation. This iterator
508
+ * will fetch more data from the server as needed.
509
+ *
510
+ * @param request a request which can be sent to the service operation
511
+ */
512
+ listObjectsResponseIterator(request: requests.ListObjectsRequest): AsyncIterableIterator<responses.ListObjectsResponse>;
445
513
  /**
446
514
  * Lists pre-authenticated requests for the bucket.
447
515
  *
448
516
  * @param ListPreauthenticatedRequestsRequest
449
517
  * @return ListPreauthenticatedRequestsResponse
450
518
  * @throws OciError when an error occurs
451
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ListPreauthenticatedRequests.ts.html |here} to see how to use ListPreauthenticatedRequests API.
519
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ListPreauthenticatedRequests.ts.html |here} to see how to use ListPreauthenticatedRequests API.
452
520
  */
453
521
  listPreauthenticatedRequests(listPreauthenticatedRequestsRequest: requests.ListPreauthenticatedRequestsRequest): Promise<responses.ListPreauthenticatedRequestsResponse>;
454
522
  /**
523
+ * NOTE: This function is deprecated in favor of listPreauthenticatedRequestsRecordIterator function.
455
524
  * Creates a new async iterator which will iterate over the models.PreauthenticatedRequestSummary objects
456
525
  * contained in responses from the listPreauthenticatedRequests operation. This iterator will fetch more data from the
457
526
  * server as needed.
@@ -460,22 +529,39 @@ export declare class ObjectStorageClient {
460
529
  */
461
530
  listAllPreauthenticatedRequests(request: requests.ListPreauthenticatedRequestsRequest): AsyncIterableIterator<model.PreauthenticatedRequestSummary>;
462
531
  /**
532
+ * NOTE: This function is deprecated in favor of listPreauthenticatedRequestsResponseIterator function.
463
533
  * Creates a new async iterator which will iterate over the responses received from the listPreauthenticatedRequests operation. This iterator
464
534
  * will fetch more data from the server as needed.
465
535
  *
466
536
  * @param request a request which can be sent to the service operation
467
537
  */
468
538
  listAllPreauthenticatedRequestsResponses(request: requests.ListPreauthenticatedRequestsRequest): AsyncIterableIterator<responses.ListPreauthenticatedRequestsResponse>;
539
+ /**
540
+ * Creates a new async iterator which will iterate over the models.PreauthenticatedRequestSummary objects
541
+ * contained in responses from the listPreauthenticatedRequests operation. This iterator will fetch more data from the
542
+ * server as needed.
543
+ *
544
+ * @param request a request which can be sent to the service operation
545
+ */
546
+ listPreauthenticatedRequestsRecordIterator(request: requests.ListPreauthenticatedRequestsRequest): AsyncIterableIterator<model.PreauthenticatedRequestSummary>;
547
+ /**
548
+ * Creates a new async iterator which will iterate over the responses received from the listPreauthenticatedRequests operation. This iterator
549
+ * will fetch more data from the server as needed.
550
+ *
551
+ * @param request a request which can be sent to the service operation
552
+ */
553
+ listPreauthenticatedRequestsResponseIterator(request: requests.ListPreauthenticatedRequestsRequest): AsyncIterableIterator<responses.ListPreauthenticatedRequestsResponse>;
469
554
  /**
470
555
  * List the replication policies associated with a bucket.
471
556
  *
472
557
  * @param ListReplicationPoliciesRequest
473
558
  * @return ListReplicationPoliciesResponse
474
559
  * @throws OciError when an error occurs
475
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ListReplicationPolicies.ts.html |here} to see how to use ListReplicationPolicies API.
560
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ListReplicationPolicies.ts.html |here} to see how to use ListReplicationPolicies API.
476
561
  */
477
562
  listReplicationPolicies(listReplicationPoliciesRequest: requests.ListReplicationPoliciesRequest): Promise<responses.ListReplicationPoliciesResponse>;
478
563
  /**
564
+ * NOTE: This function is deprecated in favor of listReplicationPoliciesRecordIterator function.
479
565
  * Creates a new async iterator which will iterate over the models.ReplicationPolicySummary objects
480
566
  * contained in responses from the listReplicationPolicies operation. This iterator will fetch more data from the
481
567
  * server as needed.
@@ -484,22 +570,39 @@ export declare class ObjectStorageClient {
484
570
  */
485
571
  listAllReplicationPolicies(request: requests.ListReplicationPoliciesRequest): AsyncIterableIterator<model.ReplicationPolicySummary>;
486
572
  /**
573
+ * NOTE: This function is deprecated in favor of listReplicationPoliciesResponseIterator function.
487
574
  * Creates a new async iterator which will iterate over the responses received from the listReplicationPolicies operation. This iterator
488
575
  * will fetch more data from the server as needed.
489
576
  *
490
577
  * @param request a request which can be sent to the service operation
491
578
  */
492
579
  listAllReplicationPoliciesResponses(request: requests.ListReplicationPoliciesRequest): AsyncIterableIterator<responses.ListReplicationPoliciesResponse>;
580
+ /**
581
+ * Creates a new async iterator which will iterate over the models.ReplicationPolicySummary objects
582
+ * contained in responses from the listReplicationPolicies operation. This iterator will fetch more data from the
583
+ * server as needed.
584
+ *
585
+ * @param request a request which can be sent to the service operation
586
+ */
587
+ listReplicationPoliciesRecordIterator(request: requests.ListReplicationPoliciesRequest): AsyncIterableIterator<model.ReplicationPolicySummary>;
588
+ /**
589
+ * Creates a new async iterator which will iterate over the responses received from the listReplicationPolicies operation. This iterator
590
+ * will fetch more data from the server as needed.
591
+ *
592
+ * @param request a request which can be sent to the service operation
593
+ */
594
+ listReplicationPoliciesResponseIterator(request: requests.ListReplicationPoliciesRequest): AsyncIterableIterator<responses.ListReplicationPoliciesResponse>;
493
595
  /**
494
596
  * List the replication sources of a destination bucket.
495
597
  *
496
598
  * @param ListReplicationSourcesRequest
497
599
  * @return ListReplicationSourcesResponse
498
600
  * @throws OciError when an error occurs
499
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ListReplicationSources.ts.html |here} to see how to use ListReplicationSources API.
601
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ListReplicationSources.ts.html |here} to see how to use ListReplicationSources API.
500
602
  */
501
603
  listReplicationSources(listReplicationSourcesRequest: requests.ListReplicationSourcesRequest): Promise<responses.ListReplicationSourcesResponse>;
502
604
  /**
605
+ * NOTE: This function is deprecated in favor of listReplicationSourcesRecordIterator function.
503
606
  * Creates a new async iterator which will iterate over the models.ReplicationSource objects
504
607
  * contained in responses from the listReplicationSources operation. This iterator will fetch more data from the
505
608
  * server as needed.
@@ -508,12 +611,28 @@ export declare class ObjectStorageClient {
508
611
  */
509
612
  listAllReplicationSources(request: requests.ListReplicationSourcesRequest): AsyncIterableIterator<model.ReplicationSource>;
510
613
  /**
614
+ * NOTE: This function is deprecated in favor of listReplicationSourcesResponseIterator function.
511
615
  * Creates a new async iterator which will iterate over the responses received from the listReplicationSources operation. This iterator
512
616
  * will fetch more data from the server as needed.
513
617
  *
514
618
  * @param request a request which can be sent to the service operation
515
619
  */
516
620
  listAllReplicationSourcesResponses(request: requests.ListReplicationSourcesRequest): AsyncIterableIterator<responses.ListReplicationSourcesResponse>;
621
+ /**
622
+ * Creates a new async iterator which will iterate over the models.ReplicationSource objects
623
+ * contained in responses from the listReplicationSources operation. This iterator will fetch more data from the
624
+ * server as needed.
625
+ *
626
+ * @param request a request which can be sent to the service operation
627
+ */
628
+ listReplicationSourcesRecordIterator(request: requests.ListReplicationSourcesRequest): AsyncIterableIterator<model.ReplicationSource>;
629
+ /**
630
+ * Creates a new async iterator which will iterate over the responses received from the listReplicationSources operation. This iterator
631
+ * will fetch more data from the server as needed.
632
+ *
633
+ * @param request a request which can be sent to the service operation
634
+ */
635
+ listReplicationSourcesResponseIterator(request: requests.ListReplicationSourcesRequest): AsyncIterableIterator<responses.ListReplicationSourcesResponse>;
517
636
  /**
518
637
  * List the retention rules for a bucket. The retention rules are sorted based on creation time,
519
638
  * with the most recently created retention rule returned first.
@@ -521,7 +640,7 @@ export declare class ObjectStorageClient {
521
640
  * @param ListRetentionRulesRequest
522
641
  * @return ListRetentionRulesResponse
523
642
  * @throws OciError when an error occurs
524
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ListRetentionRules.ts.html |here} to see how to use ListRetentionRules API.
643
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ListRetentionRules.ts.html |here} to see how to use ListRetentionRules API.
525
644
  */
526
645
  listRetentionRules(listRetentionRulesRequest: requests.ListRetentionRulesRequest): Promise<responses.ListRetentionRulesResponse>;
527
646
  /**
@@ -529,10 +648,11 @@ export declare class ObjectStorageClient {
529
648
  * @param ListWorkRequestErrorsRequest
530
649
  * @return ListWorkRequestErrorsResponse
531
650
  * @throws OciError when an error occurs
532
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
651
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
533
652
  */
534
653
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
535
654
  /**
655
+ * NOTE: This function is deprecated in favor of listWorkRequestErrorsRecordIterator function.
536
656
  * Creates a new async iterator which will iterate over the models.WorkRequestError objects
537
657
  * contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
538
658
  * server as needed.
@@ -541,21 +661,38 @@ export declare class ObjectStorageClient {
541
661
  */
542
662
  listAllWorkRequestErrors(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<model.WorkRequestError>;
543
663
  /**
664
+ * NOTE: This function is deprecated in favor of listWorkRequestErrorsResponseIterator function.
544
665
  * Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
545
666
  * will fetch more data from the server as needed.
546
667
  *
547
668
  * @param request a request which can be sent to the service operation
548
669
  */
549
670
  listAllWorkRequestErrorsResponses(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse>;
671
+ /**
672
+ * Creates a new async iterator which will iterate over the models.WorkRequestError objects
673
+ * contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
674
+ * server as needed.
675
+ *
676
+ * @param request a request which can be sent to the service operation
677
+ */
678
+ listWorkRequestErrorsRecordIterator(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<model.WorkRequestError>;
679
+ /**
680
+ * Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
681
+ * will fetch more data from the server as needed.
682
+ *
683
+ * @param request a request which can be sent to the service operation
684
+ */
685
+ listWorkRequestErrorsResponseIterator(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse>;
550
686
  /**
551
687
  * Lists the logs of the work request with the given ID.
552
688
  * @param ListWorkRequestLogsRequest
553
689
  * @return ListWorkRequestLogsResponse
554
690
  * @throws OciError when an error occurs
555
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
691
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
556
692
  */
557
693
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
558
694
  /**
695
+ * NOTE: This function is deprecated in favor of listWorkRequestLogsRecordIterator function.
559
696
  * Creates a new async iterator which will iterate over the models.WorkRequestLogEntry objects
560
697
  * contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
561
698
  * server as needed.
@@ -564,22 +701,39 @@ export declare class ObjectStorageClient {
564
701
  */
565
702
  listAllWorkRequestLogs(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<model.WorkRequestLogEntry>;
566
703
  /**
704
+ * NOTE: This function is deprecated in favor of listWorkRequestLogsResponseIterator function.
567
705
  * Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
568
706
  * will fetch more data from the server as needed.
569
707
  *
570
708
  * @param request a request which can be sent to the service operation
571
709
  */
572
710
  listAllWorkRequestLogsResponses(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<responses.ListWorkRequestLogsResponse>;
711
+ /**
712
+ * Creates a new async iterator which will iterate over the models.WorkRequestLogEntry objects
713
+ * contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
714
+ * server as needed.
715
+ *
716
+ * @param request a request which can be sent to the service operation
717
+ */
718
+ listWorkRequestLogsRecordIterator(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<model.WorkRequestLogEntry>;
719
+ /**
720
+ * Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
721
+ * will fetch more data from the server as needed.
722
+ *
723
+ * @param request a request which can be sent to the service operation
724
+ */
725
+ listWorkRequestLogsResponseIterator(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<responses.ListWorkRequestLogsResponse>;
573
726
  /**
574
727
  * Lists the work requests in a compartment.
575
728
  *
576
729
  * @param ListWorkRequestsRequest
577
730
  * @return ListWorkRequestsResponse
578
731
  * @throws OciError when an error occurs
579
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
732
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
580
733
  */
581
734
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
582
735
  /**
736
+ * NOTE: This function is deprecated in favor of listWorkRequestsRecordIterator function.
583
737
  * Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
584
738
  * contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
585
739
  * server as needed.
@@ -588,12 +742,28 @@ export declare class ObjectStorageClient {
588
742
  */
589
743
  listAllWorkRequests(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequestSummary>;
590
744
  /**
745
+ * NOTE: This function is deprecated in favor of listWorkRequestsResponseIterator function.
591
746
  * Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
592
747
  * will fetch more data from the server as needed.
593
748
  *
594
749
  * @param request a request which can be sent to the service operation
595
750
  */
596
751
  listAllWorkRequestsResponses(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
752
+ /**
753
+ * Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
754
+ * contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
755
+ * server as needed.
756
+ *
757
+ * @param request a request which can be sent to the service operation
758
+ */
759
+ listWorkRequestsRecordIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequestSummary>;
760
+ /**
761
+ * Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
762
+ * will fetch more data from the server as needed.
763
+ *
764
+ * @param request a request which can be sent to the service operation
765
+ */
766
+ listWorkRequestsResponseIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
597
767
  /**
598
768
  * Stops replication to the destination bucket and removes the replication policy. When the replication
599
769
  * policy was created, this destination bucket became read-only except for new and changed objects replicated
@@ -603,7 +773,7 @@ export declare class ObjectStorageClient {
603
773
  * @param MakeBucketWritableRequest
604
774
  * @return MakeBucketWritableResponse
605
775
  * @throws OciError when an error occurs
606
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/MakeBucketWritable.ts.html |here} to see how to use MakeBucketWritable API.
776
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/MakeBucketWritable.ts.html |here} to see how to use MakeBucketWritable API.
607
777
  */
608
778
  makeBucketWritable(makeBucketWritableRequest: requests.MakeBucketWritableRequest): Promise<responses.MakeBucketWritableResponse>;
609
779
  /**
@@ -619,7 +789,7 @@ export declare class ObjectStorageClient {
619
789
  * @param PutObjectRequest
620
790
  * @return PutObjectResponse
621
791
  * @throws OciError when an error occurs
622
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/PutObject.ts.html |here} to see how to use PutObject API.
792
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/PutObject.ts.html |here} to see how to use PutObject API.
623
793
  */
624
794
  putObject(putObjectRequest: requests.PutObjectRequest): Promise<responses.PutObjectResponse>;
625
795
  /**
@@ -628,7 +798,7 @@ export declare class ObjectStorageClient {
628
798
  * @param PutObjectLifecyclePolicyRequest
629
799
  * @return PutObjectLifecyclePolicyResponse
630
800
  * @throws OciError when an error occurs
631
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/PutObjectLifecyclePolicy.ts.html |here} to see how to use PutObjectLifecyclePolicy API.
801
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/PutObjectLifecyclePolicy.ts.html |here} to see how to use PutObjectLifecyclePolicy API.
632
802
  */
633
803
  putObjectLifecyclePolicy(putObjectLifecyclePolicyRequest: requests.PutObjectLifecyclePolicyRequest): Promise<responses.PutObjectLifecyclePolicyResponse>;
634
804
  /**
@@ -651,7 +821,7 @@ export declare class ObjectStorageClient {
651
821
  * @param ReencryptBucketRequest
652
822
  * @return ReencryptBucketResponse
653
823
  * @throws OciError when an error occurs
654
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ReencryptBucket.ts.html |here} to see how to use ReencryptBucket API.
824
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ReencryptBucket.ts.html |here} to see how to use ReencryptBucket API.
655
825
  */
656
826
  reencryptBucket(reencryptBucketRequest: requests.ReencryptBucketRequest): Promise<responses.ReencryptBucketResponse>;
657
827
  /**
@@ -668,7 +838,7 @@ export declare class ObjectStorageClient {
668
838
  * @param ReencryptObjectRequest
669
839
  * @return ReencryptObjectResponse
670
840
  * @throws OciError when an error occurs
671
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/ReencryptObject.ts.html |here} to see how to use ReencryptObject API.
841
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/ReencryptObject.ts.html |here} to see how to use ReencryptObject API.
672
842
  */
673
843
  reencryptObject(reencryptObjectRequest: requests.ReencryptObjectRequest): Promise<responses.ReencryptObjectResponse>;
674
844
  /**
@@ -680,7 +850,7 @@ export declare class ObjectStorageClient {
680
850
  * @param RenameObjectRequest
681
851
  * @return RenameObjectResponse
682
852
  * @throws OciError when an error occurs
683
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/RenameObject.ts.html |here} to see how to use RenameObject API.
853
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/RenameObject.ts.html |here} to see how to use RenameObject API.
684
854
  */
685
855
  renameObject(renameObjectRequest: requests.RenameObjectRequest): Promise<responses.RenameObjectResponse>;
686
856
  /**
@@ -690,7 +860,7 @@ export declare class ObjectStorageClient {
690
860
  * @param RestoreObjectsRequest
691
861
  * @return RestoreObjectsResponse
692
862
  * @throws OciError when an error occurs
693
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/RestoreObjects.ts.html |here} to see how to use RestoreObjects API.
863
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/RestoreObjects.ts.html |here} to see how to use RestoreObjects API.
694
864
  */
695
865
  restoreObjects(restoreObjectsRequest: requests.RestoreObjectsRequest): Promise<responses.RestoreObjectsResponse>;
696
866
  /**
@@ -703,7 +873,7 @@ export declare class ObjectStorageClient {
703
873
  * @param UpdateBucketRequest
704
874
  * @return UpdateBucketResponse
705
875
  * @throws OciError when an error occurs
706
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/UpdateBucket.ts.html |here} to see how to use UpdateBucket API.
876
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/UpdateBucket.ts.html |here} to see how to use UpdateBucket API.
707
877
  */
708
878
  updateBucket(updateBucketRequest: requests.UpdateBucketRequest): Promise<responses.UpdateBucketResponse>;
709
879
  /**
@@ -718,7 +888,7 @@ export declare class ObjectStorageClient {
718
888
  * @param UpdateNamespaceMetadataRequest
719
889
  * @return UpdateNamespaceMetadataResponse
720
890
  * @throws OciError when an error occurs
721
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/UpdateNamespaceMetadata.ts.html |here} to see how to use UpdateNamespaceMetadata API.
891
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/UpdateNamespaceMetadata.ts.html |here} to see how to use UpdateNamespaceMetadata API.
722
892
  */
723
893
  updateNamespaceMetadata(updateNamespaceMetadataRequest: requests.UpdateNamespaceMetadataRequest): Promise<responses.UpdateNamespaceMetadataResponse>;
724
894
  /**
@@ -727,7 +897,7 @@ export declare class ObjectStorageClient {
727
897
  * @param UpdateObjectStorageTierRequest
728
898
  * @return UpdateObjectStorageTierResponse
729
899
  * @throws OciError when an error occurs
730
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/UpdateObjectStorageTier.ts.html |here} to see how to use UpdateObjectStorageTier API.
900
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/UpdateObjectStorageTier.ts.html |here} to see how to use UpdateObjectStorageTier API.
731
901
  */
732
902
  updateObjectStorageTier(updateObjectStorageTierRequest: requests.UpdateObjectStorageTierRequest): Promise<responses.UpdateObjectStorageTierResponse>;
733
903
  /**
@@ -736,7 +906,7 @@ export declare class ObjectStorageClient {
736
906
  * @param UpdateRetentionRuleRequest
737
907
  * @return UpdateRetentionRuleResponse
738
908
  * @throws OciError when an error occurs
739
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/UpdateRetentionRule.ts.html |here} to see how to use UpdateRetentionRule API.
909
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/UpdateRetentionRule.ts.html |here} to see how to use UpdateRetentionRule API.
740
910
  */
741
911
  updateRetentionRule(updateRetentionRuleRequest: requests.UpdateRetentionRuleRequest): Promise<responses.UpdateRetentionRuleResponse>;
742
912
  /**
@@ -745,7 +915,7 @@ export declare class ObjectStorageClient {
745
915
  * @param UploadPartRequest
746
916
  * @return UploadPartResponse
747
917
  * @throws OciError when an error occurs
748
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.3.1/objectstorage/UploadPart.ts.html |here} to see how to use UploadPart API.
918
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/objectstorage/UploadPart.ts.html |here} to see how to use UploadPart API.
749
919
  */
750
920
  uploadPart(uploadPartRequest: requests.UploadPartRequest): Promise<responses.UploadPartResponse>;
751
921
  }