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