oci-objectstorage 2.5.2 → 2.8.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 (57) hide show
  1. package/lib/client.d.ts +103 -50
  2. package/lib/client.js +210 -100
  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/lib/upload-manager/upload-manager.d.ts +1 -0
  55. package/lib/upload-manager/upload-manager.js +3 -2
  56. package/lib/upload-manager/upload-manager.js.map +1 -1
  57. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -20,6 +20,9 @@ import * as responses from "./response";
20
20
  import { ObjectStorageWaiter } from "./objectstorage-waiter";
21
21
  export declare enum ObjectStorageApiKeys {
22
22
  }
23
+ /**
24
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
25
+ */
23
26
  export declare class ObjectStorageClient {
24
27
  protected static serviceEndpointTemplate: string;
25
28
  protected "_endpoint": string;
@@ -70,84 +73,93 @@ export declare class ObjectStorageClient {
70
73
  /**
71
74
  * Aborts an in-progress multipart upload and deletes all parts that have been uploaded.
72
75
  *
76
+ * This operation does not retry by default if the user has not defined a retry configuration.
73
77
  * @param AbortMultipartUploadRequest
74
78
  * @return AbortMultipartUploadResponse
75
79
  * @throws OciError when an error occurs
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.
80
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/AbortMultipartUpload.ts.html |here} to see how to use AbortMultipartUpload API.
77
81
  */
78
82
  abortMultipartUpload(abortMultipartUploadRequest: requests.AbortMultipartUploadRequest): Promise<responses.AbortMultipartUploadResponse>;
79
83
  /**
80
84
  * Cancels a work request.
81
85
  *
86
+ * This operation does not retry by default if the user has not defined a retry configuration.
82
87
  * @param CancelWorkRequestRequest
83
88
  * @return CancelWorkRequestResponse
84
89
  * @throws OciError when an error occurs
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.
90
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
86
91
  */
87
92
  cancelWorkRequest(cancelWorkRequestRequest: requests.CancelWorkRequestRequest): Promise<responses.CancelWorkRequestResponse>;
88
93
  /**
89
94
  * Commits a multipart upload, which involves checking part numbers and entity tags (ETags) of the parts, to create an aggregate object.
90
95
  *
96
+ * This operation does not retry by default if the user has not defined a retry configuration.
91
97
  * @param CommitMultipartUploadRequest
92
98
  * @return CommitMultipartUploadResponse
93
99
  * @throws OciError when an error occurs
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.
100
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/CommitMultipartUpload.ts.html |here} to see how to use CommitMultipartUpload API.
95
101
  */
96
102
  commitMultipartUpload(commitMultipartUploadRequest: requests.CommitMultipartUploadRequest): Promise<responses.CommitMultipartUploadResponse>;
97
103
  /**
98
104
  * Creates a request to copy an object within a region or to another region.
99
105
  *
106
+ * This operation does not retry by default if the user has not defined a retry configuration.
100
107
  * @param CopyObjectRequest
101
108
  * @return CopyObjectResponse
102
109
  * @throws OciError when an error occurs
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.
110
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/CopyObject.ts.html |here} to see how to use CopyObject API.
104
111
  */
105
112
  copyObject(copyObjectRequest: requests.CopyObjectRequest): Promise<responses.CopyObjectResponse>;
106
113
  /**
107
114
  * Creates a bucket in the given namespace with a bucket name and optional user-defined metadata. Avoid entering
108
115
  * confidential information in bucket names.
109
116
  *
117
+ * This operation does not retry by default if the user has not defined a retry configuration.
110
118
  * @param CreateBucketRequest
111
119
  * @return CreateBucketResponse
112
120
  * @throws OciError when an error occurs
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.
121
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/CreateBucket.ts.html |here} to see how to use CreateBucket API.
114
122
  */
115
123
  createBucket(createBucketRequest: requests.CreateBucketRequest): Promise<responses.CreateBucketResponse>;
116
124
  /**
117
125
  * Starts a new multipart upload to a specific object in the given bucket in the given namespace.
118
126
  *
127
+ * This operation does not retry by default if the user has not defined a retry configuration.
119
128
  * @param CreateMultipartUploadRequest
120
129
  * @return CreateMultipartUploadResponse
121
130
  * @throws OciError when an error occurs
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.
131
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/CreateMultipartUpload.ts.html |here} to see how to use CreateMultipartUpload API.
123
132
  */
124
133
  createMultipartUpload(createMultipartUploadRequest: requests.CreateMultipartUploadRequest): Promise<responses.CreateMultipartUploadResponse>;
125
134
  /**
126
135
  * Creates a pre-authenticated request specific to the bucket.
127
136
  *
137
+ * This operation does not retry by default if the user has not defined a retry configuration.
128
138
  * @param CreatePreauthenticatedRequestRequest
129
139
  * @return CreatePreauthenticatedRequestResponse
130
140
  * @throws OciError when an error occurs
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.
141
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/CreatePreauthenticatedRequest.ts.html |here} to see how to use CreatePreauthenticatedRequest API.
132
142
  */
133
143
  createPreauthenticatedRequest(createPreauthenticatedRequestRequest: requests.CreatePreauthenticatedRequestRequest): Promise<responses.CreatePreauthenticatedRequestResponse>;
134
144
  /**
135
145
  * Creates a replication policy for the specified bucket.
136
146
  *
147
+ * This operation does not retry by default if the user has not defined a retry configuration.
137
148
  * @param CreateReplicationPolicyRequest
138
149
  * @return CreateReplicationPolicyResponse
139
150
  * @throws OciError when an error occurs
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.
151
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/CreateReplicationPolicy.ts.html |here} to see how to use CreateReplicationPolicy API.
141
152
  */
142
153
  createReplicationPolicy(createReplicationPolicyRequest: requests.CreateReplicationPolicyRequest): Promise<responses.CreateReplicationPolicyResponse>;
143
154
  /**
144
155
  * Creates a new retention rule in the specified bucket. The new rule will take effect typically within 30 seconds.
145
156
  * Note that a maximum of 100 rules are supported on a bucket.
146
157
  *
158
+ * This operation does not retry by default if the user has not defined a retry configuration.
147
159
  * @param CreateRetentionRuleRequest
148
160
  * @return CreateRetentionRuleResponse
149
161
  * @throws OciError when an error occurs
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.
162
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/CreateRetentionRule.ts.html |here} to see how to use CreateRetentionRule API.
151
163
  */
152
164
  createRetentionRule(createRetentionRuleRequest: requests.CreateRetentionRuleRequest): Promise<responses.CreateRetentionRuleResponse>;
153
165
  /**
@@ -156,62 +168,69 @@ export declare class ObjectStorageClient {
156
168
  * you cannot delete a bucket that has a multipart upload in progress or a pre-authenticated
157
169
  * request associated with that bucket.
158
170
  *
171
+ * This operation does not retry by default if the user has not defined a retry configuration.
159
172
  * @param DeleteBucketRequest
160
173
  * @return DeleteBucketResponse
161
174
  * @throws OciError when an error occurs
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.
175
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/DeleteBucket.ts.html |here} to see how to use DeleteBucket API.
163
176
  */
164
177
  deleteBucket(deleteBucketRequest: requests.DeleteBucketRequest): Promise<responses.DeleteBucketResponse>;
165
178
  /**
166
179
  * Deletes an object.
167
180
  *
181
+ * This operation does not retry by default if the user has not defined a retry configuration.
168
182
  * @param DeleteObjectRequest
169
183
  * @return DeleteObjectResponse
170
184
  * @throws OciError when an error occurs
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.
185
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/DeleteObject.ts.html |here} to see how to use DeleteObject API.
172
186
  */
173
187
  deleteObject(deleteObjectRequest: requests.DeleteObjectRequest): Promise<responses.DeleteObjectResponse>;
174
188
  /**
175
189
  * Deletes the object lifecycle policy for the bucket.
176
190
  *
191
+ * This operation does not retry by default if the user has not defined a retry configuration.
177
192
  * @param DeleteObjectLifecyclePolicyRequest
178
193
  * @return DeleteObjectLifecyclePolicyResponse
179
194
  * @throws OciError when an error occurs
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.
195
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/DeleteObjectLifecyclePolicy.ts.html |here} to see how to use DeleteObjectLifecyclePolicy API.
181
196
  */
182
197
  deleteObjectLifecyclePolicy(deleteObjectLifecyclePolicyRequest: requests.DeleteObjectLifecyclePolicyRequest): Promise<responses.DeleteObjectLifecyclePolicyResponse>;
183
198
  /**
184
199
  * Deletes the pre-authenticated request for the bucket.
200
+ * This operation does not retry by default if the user has not defined a retry configuration.
185
201
  * @param DeletePreauthenticatedRequestRequest
186
202
  * @return DeletePreauthenticatedRequestResponse
187
203
  * @throws OciError when an error occurs
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.
204
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/DeletePreauthenticatedRequest.ts.html |here} to see how to use DeletePreauthenticatedRequest API.
189
205
  */
190
206
  deletePreauthenticatedRequest(deletePreauthenticatedRequestRequest: requests.DeletePreauthenticatedRequestRequest): Promise<responses.DeletePreauthenticatedRequestResponse>;
191
207
  /**
192
208
  * Deletes the replication policy associated with the source bucket.
193
209
  *
210
+ * This operation does not retry by default if the user has not defined a retry configuration.
194
211
  * @param DeleteReplicationPolicyRequest
195
212
  * @return DeleteReplicationPolicyResponse
196
213
  * @throws OciError when an error occurs
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.
214
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/DeleteReplicationPolicy.ts.html |here} to see how to use DeleteReplicationPolicy API.
198
215
  */
199
216
  deleteReplicationPolicy(deleteReplicationPolicyRequest: requests.DeleteReplicationPolicyRequest): Promise<responses.DeleteReplicationPolicyResponse>;
200
217
  /**
201
218
  * Deletes the specified rule. The deletion takes effect typically within 30 seconds.
219
+ * This operation does not retry by default if the user has not defined a retry configuration.
202
220
  * @param DeleteRetentionRuleRequest
203
221
  * @return DeleteRetentionRuleResponse
204
222
  * @throws OciError when an error occurs
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.
223
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/DeleteRetentionRule.ts.html |here} to see how to use DeleteRetentionRule API.
206
224
  */
207
225
  deleteRetentionRule(deleteRetentionRuleRequest: requests.DeleteRetentionRuleRequest): Promise<responses.DeleteRetentionRuleResponse>;
208
226
  /**
209
227
  * Gets the current representation of the given bucket in the given Object Storage namespace.
210
228
  *
229
+ * This operation does not retry by default if the user has not defined a retry configuration.
211
230
  * @param GetBucketRequest
212
231
  * @return GetBucketResponse
213
232
  * @throws OciError when an error occurs
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.
233
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/GetBucket.ts.html |here} to see how to use GetBucket API.
215
234
  */
216
235
  getBucket(getBucketRequest: requests.GetBucketRequest): Promise<responses.GetBucketResponse>;
217
236
  /**
@@ -223,10 +242,11 @@ export declare class ObjectStorageClient {
223
242
  * If an optional compartmentId query parameter is provided, GetNamespace returns the namespace name of the corresponding
224
243
  * tenancy, provided the user has access to it.
225
244
  *
245
+ * This operation does not retry by default if the user has not defined a retry configuration.
226
246
  * @param GetNamespaceRequest
227
247
  * @return GetNamespaceResponse
228
248
  * @throws OciError when an error occurs
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.
249
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/GetNamespace.ts.html |here} to see how to use GetNamespace API.
230
250
  */
231
251
  getNamespace(getNamespaceRequest: requests.GetNamespaceRequest): Promise<responses.GetNamespaceResponse>;
232
252
  /**
@@ -238,79 +258,88 @@ export declare class ObjectStorageClient {
238
258
  * to give users access, see
239
259
  * [Getting Started with Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
240
260
  *
261
+ * This operation does not retry by default if the user has not defined a retry configuration.
241
262
  * @param GetNamespaceMetadataRequest
242
263
  * @return GetNamespaceMetadataResponse
243
264
  * @throws OciError when an error occurs
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.
265
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/GetNamespaceMetadata.ts.html |here} to see how to use GetNamespaceMetadata API.
245
266
  */
246
267
  getNamespaceMetadata(getNamespaceMetadataRequest: requests.GetNamespaceMetadataRequest): Promise<responses.GetNamespaceMetadataResponse>;
247
268
  /**
248
269
  * Gets the metadata and body of an object.
249
270
  *
271
+ * This operation does not retry by default if the user has not defined a retry configuration.
250
272
  * @param GetObjectRequest
251
273
  * @return GetObjectResponse
252
274
  * @throws OciError when an error occurs
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.
275
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/GetObject.ts.html |here} to see how to use GetObject API.
254
276
  */
255
277
  getObject(getObjectRequest: requests.GetObjectRequest): Promise<responses.GetObjectResponse>;
256
278
  /**
257
279
  * Gets the object lifecycle policy for the bucket.
258
280
  *
281
+ * This operation does not retry by default if the user has not defined a retry configuration.
259
282
  * @param GetObjectLifecyclePolicyRequest
260
283
  * @return GetObjectLifecyclePolicyResponse
261
284
  * @throws OciError when an error occurs
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.
285
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/GetObjectLifecyclePolicy.ts.html |here} to see how to use GetObjectLifecyclePolicy API.
263
286
  */
264
287
  getObjectLifecyclePolicy(getObjectLifecyclePolicyRequest: requests.GetObjectLifecyclePolicyRequest): Promise<responses.GetObjectLifecyclePolicyResponse>;
265
288
  /**
266
289
  * Gets the pre-authenticated request for the bucket.
290
+ * This operation does not retry by default if the user has not defined a retry configuration.
267
291
  * @param GetPreauthenticatedRequestRequest
268
292
  * @return GetPreauthenticatedRequestResponse
269
293
  * @throws OciError when an error occurs
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.
294
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/GetPreauthenticatedRequest.ts.html |here} to see how to use GetPreauthenticatedRequest API.
271
295
  */
272
296
  getPreauthenticatedRequest(getPreauthenticatedRequestRequest: requests.GetPreauthenticatedRequestRequest): Promise<responses.GetPreauthenticatedRequestResponse>;
273
297
  /**
274
298
  * Get the replication policy.
275
299
  *
300
+ * This operation does not retry by default if the user has not defined a retry configuration.
276
301
  * @param GetReplicationPolicyRequest
277
302
  * @return GetReplicationPolicyResponse
278
303
  * @throws OciError when an error occurs
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.
304
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/GetReplicationPolicy.ts.html |here} to see how to use GetReplicationPolicy API.
280
305
  */
281
306
  getReplicationPolicy(getReplicationPolicyRequest: requests.GetReplicationPolicyRequest): Promise<responses.GetReplicationPolicyResponse>;
282
307
  /**
283
308
  * Get the specified retention rule.
309
+ * This operation does not retry by default if the user has not defined a retry configuration.
284
310
  * @param GetRetentionRuleRequest
285
311
  * @return GetRetentionRuleResponse
286
312
  * @throws OciError when an error occurs
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.
313
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/GetRetentionRule.ts.html |here} to see how to use GetRetentionRule API.
288
314
  */
289
315
  getRetentionRule(getRetentionRuleRequest: requests.GetRetentionRuleRequest): Promise<responses.GetRetentionRuleResponse>;
290
316
  /**
291
317
  * Gets the status of the work request for the given ID.
318
+ * This operation does not retry by default if the user has not defined a retry configuration.
292
319
  * @param GetWorkRequestRequest
293
320
  * @return GetWorkRequestResponse
294
321
  * @throws OciError when an error occurs
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.
322
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
296
323
  */
297
324
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
298
325
  /**
299
326
  * Efficiently checks to see if a bucket exists and gets the current entity tag (ETag) for the bucket.
300
327
  *
328
+ * This operation does not retry by default if the user has not defined a retry configuration.
301
329
  * @param HeadBucketRequest
302
330
  * @return HeadBucketResponse
303
331
  * @throws OciError when an error occurs
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.
332
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/HeadBucket.ts.html |here} to see how to use HeadBucket API.
305
333
  */
306
334
  headBucket(headBucketRequest: requests.HeadBucketRequest): Promise<responses.HeadBucketResponse>;
307
335
  /**
308
336
  * Gets the user-defined metadata and entity tag (ETag) for an object.
309
337
  *
338
+ * This operation does not retry by default if the user has not defined a retry configuration.
310
339
  * @param HeadObjectRequest
311
340
  * @return HeadObjectResponse
312
341
  * @throws OciError when an error occurs
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.
342
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/HeadObject.ts.html |here} to see how to use HeadObject API.
314
343
  */
315
344
  headObject(headObjectRequest: requests.HeadObjectRequest): Promise<responses.HeadObjectResponse>;
316
345
  /**
@@ -324,10 +353,11 @@ export declare class ObjectStorageClient {
324
353
  * talk to an administrator. If you are an administrator who needs to write policies to give users access, see
325
354
  * [Getting Started with Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
326
355
  *
356
+ * This operation does not retry by default if the user has not defined a retry configuration.
327
357
  * @param ListBucketsRequest
328
358
  * @return ListBucketsResponse
329
359
  * @throws OciError when an error occurs
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.
360
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ListBuckets.ts.html |here} to see how to use ListBuckets API.
331
361
  */
332
362
  listBuckets(listBucketsRequest: requests.ListBucketsRequest): Promise<responses.ListBucketsResponse>;
333
363
  /**
@@ -365,10 +395,11 @@ export declare class ObjectStorageClient {
365
395
  /**
366
396
  * Lists the parts of an in-progress multipart upload.
367
397
  *
398
+ * This operation does not retry by default if the user has not defined a retry configuration.
368
399
  * @param ListMultipartUploadPartsRequest
369
400
  * @return ListMultipartUploadPartsResponse
370
401
  * @throws OciError when an error occurs
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.
402
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ListMultipartUploadParts.ts.html |here} to see how to use ListMultipartUploadParts API.
372
403
  */
373
404
  listMultipartUploadParts(listMultipartUploadPartsRequest: requests.ListMultipartUploadPartsRequest): Promise<responses.ListMultipartUploadPartsResponse>;
374
405
  /**
@@ -406,10 +437,11 @@ export declare class ObjectStorageClient {
406
437
  /**
407
438
  * Lists all of the in-progress multipart uploads for the given bucket in the given Object Storage namespace.
408
439
  *
440
+ * This operation does not retry by default if the user has not defined a retry configuration.
409
441
  * @param ListMultipartUploadsRequest
410
442
  * @return ListMultipartUploadsResponse
411
443
  * @throws OciError when an error occurs
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.
444
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ListMultipartUploads.ts.html |here} to see how to use ListMultipartUploads API.
413
445
  */
414
446
  listMultipartUploads(listMultipartUploadsRequest: requests.ListMultipartUploadsRequest): Promise<responses.ListMultipartUploadsResponse>;
415
447
  /**
@@ -454,10 +486,11 @@ export declare class ObjectStorageClient {
454
486
  * talk to an administrator. If you are an administrator who needs to write policies to give users access, see
455
487
  * [Getting Started with Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
456
488
  *
489
+ * This operation does not retry by default if the user has not defined a retry configuration.
457
490
  * @param ListObjectVersionsRequest
458
491
  * @return ListObjectVersionsResponse
459
492
  * @throws OciError when an error occurs
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.
493
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ListObjectVersions.ts.html |here} to see how to use ListObjectVersions API.
461
494
  */
462
495
  listObjectVersions(listObjectVersionsRequest: requests.ListObjectVersionsRequest): Promise<responses.ListObjectVersionsResponse>;
463
496
  /**
@@ -472,10 +505,11 @@ export declare class ObjectStorageClient {
472
505
  * talk to an administrator. If you are an administrator who needs to write policies to give users access, see
473
506
  * [Getting Started with Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
474
507
  *
508
+ * This operation does not retry by default if the user has not defined a retry configuration.
475
509
  * @param ListObjectsRequest
476
510
  * @return ListObjectsResponse
477
511
  * @throws OciError when an error occurs
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.
512
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ListObjects.ts.html |here} to see how to use ListObjects API.
479
513
  */
480
514
  listObjects(listObjectsRequest: requests.ListObjectsRequest): Promise<responses.ListObjectsResponse>;
481
515
  /**
@@ -513,10 +547,11 @@ export declare class ObjectStorageClient {
513
547
  /**
514
548
  * Lists pre-authenticated requests for the bucket.
515
549
  *
550
+ * This operation does not retry by default if the user has not defined a retry configuration.
516
551
  * @param ListPreauthenticatedRequestsRequest
517
552
  * @return ListPreauthenticatedRequestsResponse
518
553
  * @throws OciError when an error occurs
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.
554
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ListPreauthenticatedRequests.ts.html |here} to see how to use ListPreauthenticatedRequests API.
520
555
  */
521
556
  listPreauthenticatedRequests(listPreauthenticatedRequestsRequest: requests.ListPreauthenticatedRequestsRequest): Promise<responses.ListPreauthenticatedRequestsResponse>;
522
557
  /**
@@ -554,10 +589,11 @@ export declare class ObjectStorageClient {
554
589
  /**
555
590
  * List the replication policies associated with a bucket.
556
591
  *
592
+ * This operation does not retry by default if the user has not defined a retry configuration.
557
593
  * @param ListReplicationPoliciesRequest
558
594
  * @return ListReplicationPoliciesResponse
559
595
  * @throws OciError when an error occurs
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.
596
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ListReplicationPolicies.ts.html |here} to see how to use ListReplicationPolicies API.
561
597
  */
562
598
  listReplicationPolicies(listReplicationPoliciesRequest: requests.ListReplicationPoliciesRequest): Promise<responses.ListReplicationPoliciesResponse>;
563
599
  /**
@@ -595,10 +631,11 @@ export declare class ObjectStorageClient {
595
631
  /**
596
632
  * List the replication sources of a destination bucket.
597
633
  *
634
+ * This operation does not retry by default if the user has not defined a retry configuration.
598
635
  * @param ListReplicationSourcesRequest
599
636
  * @return ListReplicationSourcesResponse
600
637
  * @throws OciError when an error occurs
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.
638
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ListReplicationSources.ts.html |here} to see how to use ListReplicationSources API.
602
639
  */
603
640
  listReplicationSources(listReplicationSourcesRequest: requests.ListReplicationSourcesRequest): Promise<responses.ListReplicationSourcesResponse>;
604
641
  /**
@@ -637,18 +674,20 @@ export declare class ObjectStorageClient {
637
674
  * List the retention rules for a bucket. The retention rules are sorted based on creation time,
638
675
  * with the most recently created retention rule returned first.
639
676
  *
677
+ * This operation does not retry by default if the user has not defined a retry configuration.
640
678
  * @param ListRetentionRulesRequest
641
679
  * @return ListRetentionRulesResponse
642
680
  * @throws OciError when an error occurs
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.
681
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ListRetentionRules.ts.html |here} to see how to use ListRetentionRules API.
644
682
  */
645
683
  listRetentionRules(listRetentionRulesRequest: requests.ListRetentionRulesRequest): Promise<responses.ListRetentionRulesResponse>;
646
684
  /**
647
685
  * Lists the errors of the work request with the given ID.
686
+ * This operation does not retry by default if the user has not defined a retry configuration.
648
687
  * @param ListWorkRequestErrorsRequest
649
688
  * @return ListWorkRequestErrorsResponse
650
689
  * @throws OciError when an error occurs
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.
690
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
652
691
  */
653
692
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
654
693
  /**
@@ -685,10 +724,11 @@ export declare class ObjectStorageClient {
685
724
  listWorkRequestErrorsResponseIterator(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse>;
686
725
  /**
687
726
  * Lists the logs of the work request with the given ID.
727
+ * This operation does not retry by default if the user has not defined a retry configuration.
688
728
  * @param ListWorkRequestLogsRequest
689
729
  * @return ListWorkRequestLogsResponse
690
730
  * @throws OciError when an error occurs
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.
731
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
692
732
  */
693
733
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
694
734
  /**
@@ -726,10 +766,11 @@ export declare class ObjectStorageClient {
726
766
  /**
727
767
  * Lists the work requests in a compartment.
728
768
  *
769
+ * This operation does not retry by default if the user has not defined a retry configuration.
729
770
  * @param ListWorkRequestsRequest
730
771
  * @return ListWorkRequestsResponse
731
772
  * @throws OciError when an error occurs
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.
773
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
733
774
  */
734
775
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
735
776
  /**
@@ -770,10 +811,11 @@ export declare class ObjectStorageClient {
770
811
  * automatically from the source bucket. MakeBucketWritable removes the replication policy. This bucket is no
771
812
  * longer the target for replication and is now writable, allowing users to make changes to bucket contents.
772
813
  *
814
+ * This operation does not retry by default if the user has not defined a retry configuration.
773
815
  * @param MakeBucketWritableRequest
774
816
  * @return MakeBucketWritableResponse
775
817
  * @throws OciError when an error occurs
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.
818
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/MakeBucketWritable.ts.html |here} to see how to use MakeBucketWritable API.
777
819
  */
778
820
  makeBucketWritable(makeBucketWritableRequest: requests.MakeBucketWritableRequest): Promise<responses.MakeBucketWritableResponse>;
779
821
  /**
@@ -786,19 +828,21 @@ export declare class ObjectStorageClient {
786
828
  See [Special Instructions for Object Storage PUT](https://docs.cloud.oracle.com/Content/API/Concepts/signingrequests.htm#ObjectStoragePut)
787
829
  * for request signature requirements.
788
830
  *
831
+ * This operation does not retry by default if the user has not defined a retry configuration.
789
832
  * @param PutObjectRequest
790
833
  * @return PutObjectResponse
791
834
  * @throws OciError when an error occurs
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.
835
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/PutObject.ts.html |here} to see how to use PutObject API.
793
836
  */
794
837
  putObject(putObjectRequest: requests.PutObjectRequest): Promise<responses.PutObjectResponse>;
795
838
  /**
796
839
  * Creates or replaces the object lifecycle policy for the bucket.
797
840
  *
841
+ * This operation does not retry by default if the user has not defined a retry configuration.
798
842
  * @param PutObjectLifecyclePolicyRequest
799
843
  * @return PutObjectLifecyclePolicyResponse
800
844
  * @throws OciError when an error occurs
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.
845
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/PutObjectLifecyclePolicy.ts.html |here} to see how to use PutObjectLifecyclePolicy API.
802
846
  */
803
847
  putObjectLifecyclePolicy(putObjectLifecyclePolicyRequest: requests.PutObjectLifecyclePolicyRequest): Promise<responses.PutObjectLifecyclePolicyResponse>;
804
848
  /**
@@ -818,10 +862,11 @@ export declare class ObjectStorageClient {
818
862
  * of the work request task.
819
863
  * All the versions of objects will be re-encrypted whether versioning is enabled or suspended at the bucket.
820
864
  *
865
+ * This operation does not retry by default if the user has not defined a retry configuration.
821
866
  * @param ReencryptBucketRequest
822
867
  * @return ReencryptBucketResponse
823
868
  * @throws OciError when an error occurs
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.
869
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ReencryptBucket.ts.html |here} to see how to use ReencryptBucket API.
825
870
  */
826
871
  reencryptBucket(reencryptBucketRequest: requests.ReencryptBucketRequest): Promise<responses.ReencryptBucketResponse>;
827
872
  /**
@@ -835,10 +880,11 @@ export declare class ObjectStorageClient {
835
880
  * <p>
836
881
  - You can encrypt an object using your own encryption key. The key you supply is known as a customer-provided encryption key (SSE-C).
837
882
  *
883
+ * This operation does not retry by default if the user has not defined a retry configuration.
838
884
  * @param ReencryptObjectRequest
839
885
  * @return ReencryptObjectResponse
840
886
  * @throws OciError when an error occurs
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.
887
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/ReencryptObject.ts.html |here} to see how to use ReencryptObject API.
842
888
  */
843
889
  reencryptObject(reencryptObjectRequest: requests.ReencryptObjectRequest): Promise<responses.ReencryptObjectResponse>;
844
890
  /**
@@ -847,20 +893,22 @@ export declare class ObjectStorageClient {
847
893
  See [Object Names](https://docs.cloud.oracle.com/Content/Object/Tasks/managingobjects.htm#namerequirements)
848
894
  * for object naming requirements.
849
895
  *
896
+ * This operation does not retry by default if the user has not defined a retry configuration.
850
897
  * @param RenameObjectRequest
851
898
  * @return RenameObjectResponse
852
899
  * @throws OciError when an error occurs
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.
900
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/RenameObject.ts.html |here} to see how to use RenameObject API.
854
901
  */
855
902
  renameObject(renameObjectRequest: requests.RenameObjectRequest): Promise<responses.RenameObjectResponse>;
856
903
  /**
857
904
  * Restores one or more objects specified by the objectName parameter.
858
905
  * By default objects will be restored for 24 hours. Duration can be configured using the hours parameter.
859
906
  *
907
+ * This operation does not retry by default if the user has not defined a retry configuration.
860
908
  * @param RestoreObjectsRequest
861
909
  * @return RestoreObjectsResponse
862
910
  * @throws OciError when an error occurs
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.
911
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/RestoreObjects.ts.html |here} to see how to use RestoreObjects API.
864
912
  */
865
913
  restoreObjects(restoreObjectsRequest: requests.RestoreObjectsRequest): Promise<responses.RestoreObjectsResponse>;
866
914
  /**
@@ -870,10 +918,11 @@ export declare class ObjectStorageClient {
870
918
  * of the compartment that you want to move the bucket to. For more information about moving resources between compartments,
871
919
  * see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
872
920
  *
921
+ * This operation does not retry by default if the user has not defined a retry configuration.
873
922
  * @param UpdateBucketRequest
874
923
  * @return UpdateBucketResponse
875
924
  * @throws OciError when an error occurs
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.
925
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/UpdateBucket.ts.html |here} to see how to use UpdateBucket API.
877
926
  */
878
927
  updateBucket(updateBucketRequest: requests.UpdateBucketRequest): Promise<responses.UpdateBucketResponse>;
879
928
  /**
@@ -885,37 +934,41 @@ export declare class ObjectStorageClient {
885
934
  * buckets will be modified. A user must have OBJECTSTORAGE_NAMESPACE_UPDATE permission to make changes to the default
886
935
  * compartments for Amazon S3 and Swift.
887
936
  *
937
+ * This operation does not retry by default if the user has not defined a retry configuration.
888
938
  * @param UpdateNamespaceMetadataRequest
889
939
  * @return UpdateNamespaceMetadataResponse
890
940
  * @throws OciError when an error occurs
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.
941
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/UpdateNamespaceMetadata.ts.html |here} to see how to use UpdateNamespaceMetadata API.
892
942
  */
893
943
  updateNamespaceMetadata(updateNamespaceMetadataRequest: requests.UpdateNamespaceMetadataRequest): Promise<responses.UpdateNamespaceMetadataResponse>;
894
944
  /**
895
945
  * Changes the storage tier of the object specified by the objectName parameter.
896
946
  *
947
+ * This operation does not retry by default if the user has not defined a retry configuration.
897
948
  * @param UpdateObjectStorageTierRequest
898
949
  * @return UpdateObjectStorageTierResponse
899
950
  * @throws OciError when an error occurs
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.
951
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/UpdateObjectStorageTier.ts.html |here} to see how to use UpdateObjectStorageTier API.
901
952
  */
902
953
  updateObjectStorageTier(updateObjectStorageTierRequest: requests.UpdateObjectStorageTierRequest): Promise<responses.UpdateObjectStorageTierResponse>;
903
954
  /**
904
955
  * Updates the specified retention rule. Rule changes take effect typically within 30 seconds.
905
956
  *
957
+ * This operation does not retry by default if the user has not defined a retry configuration.
906
958
  * @param UpdateRetentionRuleRequest
907
959
  * @return UpdateRetentionRuleResponse
908
960
  * @throws OciError when an error occurs
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.
961
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/UpdateRetentionRule.ts.html |here} to see how to use UpdateRetentionRule API.
910
962
  */
911
963
  updateRetentionRule(updateRetentionRuleRequest: requests.UpdateRetentionRuleRequest): Promise<responses.UpdateRetentionRuleResponse>;
912
964
  /**
913
965
  * Uploads a single part of a multipart upload.
914
966
  *
967
+ * This operation does not retry by default if the user has not defined a retry configuration.
915
968
  * @param UploadPartRequest
916
969
  * @return UploadPartResponse
917
970
  * @throws OciError when an error occurs
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.
971
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/objectstorage/UploadPart.ts.html |here} to see how to use UploadPart API.
919
972
  */
920
973
  uploadPart(uploadPartRequest: requests.UploadPartRequest): Promise<responses.UploadPartResponse>;
921
974
  }