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