oci-objectstorage 2.4.0 → 2.6.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/LICENSE.txt +6 -0
- package/lib/client.d.ts +273 -50
- package/lib/client.js +422 -102
- 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 +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 +1 -1
- 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 +1 -1
- package/lib/upload-manager/node-fs-blob.js +2 -1
- package/lib/upload-manager/node-fs-blob.js.map +1 -1
- package/lib/upload-manager/upload-manager.js +52 -10
- package/lib/upload-manager/upload-manager.js.map +1 -1
- package/lib/upload-manager/upload-options.d.ts +1 -0
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -20,6 +20,9 @@ import * as responses from "./response";
|
|
|
20
20
|
import { ObjectStorageWaiter } from "./objectstorage-waiter";
|
|
21
21
|
export declare enum ObjectStorageApiKeys {
|
|
22
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
25
|
+
*/
|
|
23
26
|
export declare class ObjectStorageClient {
|
|
24
27
|
protected static serviceEndpointTemplate: string;
|
|
25
28
|
protected "_endpoint": string;
|
|
@@ -70,84 +73,93 @@ export declare class ObjectStorageClient {
|
|
|
70
73
|
/**
|
|
71
74
|
* Aborts an in-progress multipart upload and deletes all parts that have been uploaded.
|
|
72
75
|
*
|
|
76
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
73
77
|
* @param AbortMultipartUploadRequest
|
|
74
78
|
* @return AbortMultipartUploadResponse
|
|
75
79
|
* @throws OciError when an error occurs
|
|
76
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
80
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/AbortMultipartUpload.ts.html |here} to see how to use AbortMultipartUpload API.
|
|
77
81
|
*/
|
|
78
82
|
abortMultipartUpload(abortMultipartUploadRequest: requests.AbortMultipartUploadRequest): Promise<responses.AbortMultipartUploadResponse>;
|
|
79
83
|
/**
|
|
80
84
|
* Cancels a work request.
|
|
81
85
|
*
|
|
86
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
82
87
|
* @param CancelWorkRequestRequest
|
|
83
88
|
* @return CancelWorkRequestResponse
|
|
84
89
|
* @throws OciError when an error occurs
|
|
85
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
90
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
|
|
86
91
|
*/
|
|
87
92
|
cancelWorkRequest(cancelWorkRequestRequest: requests.CancelWorkRequestRequest): Promise<responses.CancelWorkRequestResponse>;
|
|
88
93
|
/**
|
|
89
94
|
* Commits a multipart upload, which involves checking part numbers and entity tags (ETags) of the parts, to create an aggregate object.
|
|
90
95
|
*
|
|
96
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
91
97
|
* @param CommitMultipartUploadRequest
|
|
92
98
|
* @return CommitMultipartUploadResponse
|
|
93
99
|
* @throws OciError when an error occurs
|
|
94
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
100
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/CommitMultipartUpload.ts.html |here} to see how to use CommitMultipartUpload API.
|
|
95
101
|
*/
|
|
96
102
|
commitMultipartUpload(commitMultipartUploadRequest: requests.CommitMultipartUploadRequest): Promise<responses.CommitMultipartUploadResponse>;
|
|
97
103
|
/**
|
|
98
104
|
* Creates a request to copy an object within a region or to another region.
|
|
99
105
|
*
|
|
106
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
100
107
|
* @param CopyObjectRequest
|
|
101
108
|
* @return CopyObjectResponse
|
|
102
109
|
* @throws OciError when an error occurs
|
|
103
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
110
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/CopyObject.ts.html |here} to see how to use CopyObject API.
|
|
104
111
|
*/
|
|
105
112
|
copyObject(copyObjectRequest: requests.CopyObjectRequest): Promise<responses.CopyObjectResponse>;
|
|
106
113
|
/**
|
|
107
114
|
* Creates a bucket in the given namespace with a bucket name and optional user-defined metadata. Avoid entering
|
|
108
115
|
* confidential information in bucket names.
|
|
109
116
|
*
|
|
117
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
110
118
|
* @param CreateBucketRequest
|
|
111
119
|
* @return CreateBucketResponse
|
|
112
120
|
* @throws OciError when an error occurs
|
|
113
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
121
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/CreateBucket.ts.html |here} to see how to use CreateBucket API.
|
|
114
122
|
*/
|
|
115
123
|
createBucket(createBucketRequest: requests.CreateBucketRequest): Promise<responses.CreateBucketResponse>;
|
|
116
124
|
/**
|
|
117
125
|
* Starts a new multipart upload to a specific object in the given bucket in the given namespace.
|
|
118
126
|
*
|
|
127
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
119
128
|
* @param CreateMultipartUploadRequest
|
|
120
129
|
* @return CreateMultipartUploadResponse
|
|
121
130
|
* @throws OciError when an error occurs
|
|
122
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
131
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/CreateMultipartUpload.ts.html |here} to see how to use CreateMultipartUpload API.
|
|
123
132
|
*/
|
|
124
133
|
createMultipartUpload(createMultipartUploadRequest: requests.CreateMultipartUploadRequest): Promise<responses.CreateMultipartUploadResponse>;
|
|
125
134
|
/**
|
|
126
135
|
* Creates a pre-authenticated request specific to the bucket.
|
|
127
136
|
*
|
|
137
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
128
138
|
* @param CreatePreauthenticatedRequestRequest
|
|
129
139
|
* @return CreatePreauthenticatedRequestResponse
|
|
130
140
|
* @throws OciError when an error occurs
|
|
131
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
141
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/CreatePreauthenticatedRequest.ts.html |here} to see how to use CreatePreauthenticatedRequest API.
|
|
132
142
|
*/
|
|
133
143
|
createPreauthenticatedRequest(createPreauthenticatedRequestRequest: requests.CreatePreauthenticatedRequestRequest): Promise<responses.CreatePreauthenticatedRequestResponse>;
|
|
134
144
|
/**
|
|
135
145
|
* Creates a replication policy for the specified bucket.
|
|
136
146
|
*
|
|
147
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
137
148
|
* @param CreateReplicationPolicyRequest
|
|
138
149
|
* @return CreateReplicationPolicyResponse
|
|
139
150
|
* @throws OciError when an error occurs
|
|
140
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
151
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/CreateReplicationPolicy.ts.html |here} to see how to use CreateReplicationPolicy API.
|
|
141
152
|
*/
|
|
142
153
|
createReplicationPolicy(createReplicationPolicyRequest: requests.CreateReplicationPolicyRequest): Promise<responses.CreateReplicationPolicyResponse>;
|
|
143
154
|
/**
|
|
144
155
|
* Creates a new retention rule in the specified bucket. The new rule will take effect typically within 30 seconds.
|
|
145
156
|
* Note that a maximum of 100 rules are supported on a bucket.
|
|
146
157
|
*
|
|
158
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
147
159
|
* @param CreateRetentionRuleRequest
|
|
148
160
|
* @return CreateRetentionRuleResponse
|
|
149
161
|
* @throws OciError when an error occurs
|
|
150
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
162
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/CreateRetentionRule.ts.html |here} to see how to use CreateRetentionRule API.
|
|
151
163
|
*/
|
|
152
164
|
createRetentionRule(createRetentionRuleRequest: requests.CreateRetentionRuleRequest): Promise<responses.CreateRetentionRuleResponse>;
|
|
153
165
|
/**
|
|
@@ -156,62 +168,69 @@ export declare class ObjectStorageClient {
|
|
|
156
168
|
* you cannot delete a bucket that has a multipart upload in progress or a pre-authenticated
|
|
157
169
|
* request associated with that bucket.
|
|
158
170
|
*
|
|
171
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
159
172
|
* @param DeleteBucketRequest
|
|
160
173
|
* @return DeleteBucketResponse
|
|
161
174
|
* @throws OciError when an error occurs
|
|
162
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
175
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/DeleteBucket.ts.html |here} to see how to use DeleteBucket API.
|
|
163
176
|
*/
|
|
164
177
|
deleteBucket(deleteBucketRequest: requests.DeleteBucketRequest): Promise<responses.DeleteBucketResponse>;
|
|
165
178
|
/**
|
|
166
179
|
* Deletes an object.
|
|
167
180
|
*
|
|
181
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
168
182
|
* @param DeleteObjectRequest
|
|
169
183
|
* @return DeleteObjectResponse
|
|
170
184
|
* @throws OciError when an error occurs
|
|
171
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
185
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/DeleteObject.ts.html |here} to see how to use DeleteObject API.
|
|
172
186
|
*/
|
|
173
187
|
deleteObject(deleteObjectRequest: requests.DeleteObjectRequest): Promise<responses.DeleteObjectResponse>;
|
|
174
188
|
/**
|
|
175
189
|
* Deletes the object lifecycle policy for the bucket.
|
|
176
190
|
*
|
|
191
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
177
192
|
* @param DeleteObjectLifecyclePolicyRequest
|
|
178
193
|
* @return DeleteObjectLifecyclePolicyResponse
|
|
179
194
|
* @throws OciError when an error occurs
|
|
180
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
195
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/DeleteObjectLifecyclePolicy.ts.html |here} to see how to use DeleteObjectLifecyclePolicy API.
|
|
181
196
|
*/
|
|
182
197
|
deleteObjectLifecyclePolicy(deleteObjectLifecyclePolicyRequest: requests.DeleteObjectLifecyclePolicyRequest): Promise<responses.DeleteObjectLifecyclePolicyResponse>;
|
|
183
198
|
/**
|
|
184
199
|
* Deletes the pre-authenticated request for the bucket.
|
|
200
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
185
201
|
* @param DeletePreauthenticatedRequestRequest
|
|
186
202
|
* @return DeletePreauthenticatedRequestResponse
|
|
187
203
|
* @throws OciError when an error occurs
|
|
188
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
204
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/DeletePreauthenticatedRequest.ts.html |here} to see how to use DeletePreauthenticatedRequest API.
|
|
189
205
|
*/
|
|
190
206
|
deletePreauthenticatedRequest(deletePreauthenticatedRequestRequest: requests.DeletePreauthenticatedRequestRequest): Promise<responses.DeletePreauthenticatedRequestResponse>;
|
|
191
207
|
/**
|
|
192
208
|
* Deletes the replication policy associated with the source bucket.
|
|
193
209
|
*
|
|
210
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
194
211
|
* @param DeleteReplicationPolicyRequest
|
|
195
212
|
* @return DeleteReplicationPolicyResponse
|
|
196
213
|
* @throws OciError when an error occurs
|
|
197
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
214
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/DeleteReplicationPolicy.ts.html |here} to see how to use DeleteReplicationPolicy API.
|
|
198
215
|
*/
|
|
199
216
|
deleteReplicationPolicy(deleteReplicationPolicyRequest: requests.DeleteReplicationPolicyRequest): Promise<responses.DeleteReplicationPolicyResponse>;
|
|
200
217
|
/**
|
|
201
218
|
* Deletes the specified rule. The deletion takes effect typically within 30 seconds.
|
|
219
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
202
220
|
* @param DeleteRetentionRuleRequest
|
|
203
221
|
* @return DeleteRetentionRuleResponse
|
|
204
222
|
* @throws OciError when an error occurs
|
|
205
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
223
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/DeleteRetentionRule.ts.html |here} to see how to use DeleteRetentionRule API.
|
|
206
224
|
*/
|
|
207
225
|
deleteRetentionRule(deleteRetentionRuleRequest: requests.DeleteRetentionRuleRequest): Promise<responses.DeleteRetentionRuleResponse>;
|
|
208
226
|
/**
|
|
209
227
|
* Gets the current representation of the given bucket in the given Object Storage namespace.
|
|
210
228
|
*
|
|
229
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
211
230
|
* @param GetBucketRequest
|
|
212
231
|
* @return GetBucketResponse
|
|
213
232
|
* @throws OciError when an error occurs
|
|
214
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
233
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/GetBucket.ts.html |here} to see how to use GetBucket API.
|
|
215
234
|
*/
|
|
216
235
|
getBucket(getBucketRequest: requests.GetBucketRequest): Promise<responses.GetBucketResponse>;
|
|
217
236
|
/**
|
|
@@ -223,10 +242,11 @@ export declare class ObjectStorageClient {
|
|
|
223
242
|
* If an optional compartmentId query parameter is provided, GetNamespace returns the namespace name of the corresponding
|
|
224
243
|
* tenancy, provided the user has access to it.
|
|
225
244
|
*
|
|
245
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
226
246
|
* @param GetNamespaceRequest
|
|
227
247
|
* @return GetNamespaceResponse
|
|
228
248
|
* @throws OciError when an error occurs
|
|
229
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
249
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/GetNamespace.ts.html |here} to see how to use GetNamespace API.
|
|
230
250
|
*/
|
|
231
251
|
getNamespace(getNamespaceRequest: requests.GetNamespaceRequest): Promise<responses.GetNamespaceResponse>;
|
|
232
252
|
/**
|
|
@@ -238,79 +258,88 @@ export declare class ObjectStorageClient {
|
|
|
238
258
|
* to give users access, see
|
|
239
259
|
* [Getting Started with Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
|
|
240
260
|
*
|
|
261
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
241
262
|
* @param GetNamespaceMetadataRequest
|
|
242
263
|
* @return GetNamespaceMetadataResponse
|
|
243
264
|
* @throws OciError when an error occurs
|
|
244
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
265
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/GetNamespaceMetadata.ts.html |here} to see how to use GetNamespaceMetadata API.
|
|
245
266
|
*/
|
|
246
267
|
getNamespaceMetadata(getNamespaceMetadataRequest: requests.GetNamespaceMetadataRequest): Promise<responses.GetNamespaceMetadataResponse>;
|
|
247
268
|
/**
|
|
248
269
|
* Gets the metadata and body of an object.
|
|
249
270
|
*
|
|
271
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
250
272
|
* @param GetObjectRequest
|
|
251
273
|
* @return GetObjectResponse
|
|
252
274
|
* @throws OciError when an error occurs
|
|
253
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
275
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/GetObject.ts.html |here} to see how to use GetObject API.
|
|
254
276
|
*/
|
|
255
277
|
getObject(getObjectRequest: requests.GetObjectRequest): Promise<responses.GetObjectResponse>;
|
|
256
278
|
/**
|
|
257
279
|
* Gets the object lifecycle policy for the bucket.
|
|
258
280
|
*
|
|
281
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
259
282
|
* @param GetObjectLifecyclePolicyRequest
|
|
260
283
|
* @return GetObjectLifecyclePolicyResponse
|
|
261
284
|
* @throws OciError when an error occurs
|
|
262
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
285
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/GetObjectLifecyclePolicy.ts.html |here} to see how to use GetObjectLifecyclePolicy API.
|
|
263
286
|
*/
|
|
264
287
|
getObjectLifecyclePolicy(getObjectLifecyclePolicyRequest: requests.GetObjectLifecyclePolicyRequest): Promise<responses.GetObjectLifecyclePolicyResponse>;
|
|
265
288
|
/**
|
|
266
289
|
* Gets the pre-authenticated request for the bucket.
|
|
290
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
267
291
|
* @param GetPreauthenticatedRequestRequest
|
|
268
292
|
* @return GetPreauthenticatedRequestResponse
|
|
269
293
|
* @throws OciError when an error occurs
|
|
270
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
294
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/GetPreauthenticatedRequest.ts.html |here} to see how to use GetPreauthenticatedRequest API.
|
|
271
295
|
*/
|
|
272
296
|
getPreauthenticatedRequest(getPreauthenticatedRequestRequest: requests.GetPreauthenticatedRequestRequest): Promise<responses.GetPreauthenticatedRequestResponse>;
|
|
273
297
|
/**
|
|
274
298
|
* Get the replication policy.
|
|
275
299
|
*
|
|
300
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
276
301
|
* @param GetReplicationPolicyRequest
|
|
277
302
|
* @return GetReplicationPolicyResponse
|
|
278
303
|
* @throws OciError when an error occurs
|
|
279
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
304
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/GetReplicationPolicy.ts.html |here} to see how to use GetReplicationPolicy API.
|
|
280
305
|
*/
|
|
281
306
|
getReplicationPolicy(getReplicationPolicyRequest: requests.GetReplicationPolicyRequest): Promise<responses.GetReplicationPolicyResponse>;
|
|
282
307
|
/**
|
|
283
308
|
* Get the specified retention rule.
|
|
309
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
284
310
|
* @param GetRetentionRuleRequest
|
|
285
311
|
* @return GetRetentionRuleResponse
|
|
286
312
|
* @throws OciError when an error occurs
|
|
287
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
313
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/GetRetentionRule.ts.html |here} to see how to use GetRetentionRule API.
|
|
288
314
|
*/
|
|
289
315
|
getRetentionRule(getRetentionRuleRequest: requests.GetRetentionRuleRequest): Promise<responses.GetRetentionRuleResponse>;
|
|
290
316
|
/**
|
|
291
317
|
* Gets the status of the work request for the given ID.
|
|
318
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
292
319
|
* @param GetWorkRequestRequest
|
|
293
320
|
* @return GetWorkRequestResponse
|
|
294
321
|
* @throws OciError when an error occurs
|
|
295
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
322
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
296
323
|
*/
|
|
297
324
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
298
325
|
/**
|
|
299
326
|
* Efficiently checks to see if a bucket exists and gets the current entity tag (ETag) for the bucket.
|
|
300
327
|
*
|
|
328
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
301
329
|
* @param HeadBucketRequest
|
|
302
330
|
* @return HeadBucketResponse
|
|
303
331
|
* @throws OciError when an error occurs
|
|
304
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
332
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/HeadBucket.ts.html |here} to see how to use HeadBucket API.
|
|
305
333
|
*/
|
|
306
334
|
headBucket(headBucketRequest: requests.HeadBucketRequest): Promise<responses.HeadBucketResponse>;
|
|
307
335
|
/**
|
|
308
336
|
* Gets the user-defined metadata and entity tag (ETag) for an object.
|
|
309
337
|
*
|
|
338
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
310
339
|
* @param HeadObjectRequest
|
|
311
340
|
* @return HeadObjectResponse
|
|
312
341
|
* @throws OciError when an error occurs
|
|
313
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
342
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/HeadObject.ts.html |here} to see how to use HeadObject API.
|
|
314
343
|
*/
|
|
315
344
|
headObject(headObjectRequest: requests.HeadObjectRequest): Promise<responses.HeadObjectResponse>;
|
|
316
345
|
/**
|
|
@@ -324,13 +353,15 @@ export declare class ObjectStorageClient {
|
|
|
324
353
|
* talk to an administrator. If you are an administrator who needs to write policies to give users access, see
|
|
325
354
|
* [Getting Started with Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
|
|
326
355
|
*
|
|
356
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
327
357
|
* @param ListBucketsRequest
|
|
328
358
|
* @return ListBucketsResponse
|
|
329
359
|
* @throws OciError when an error occurs
|
|
330
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
360
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ListBuckets.ts.html |here} to see how to use ListBuckets API.
|
|
331
361
|
*/
|
|
332
362
|
listBuckets(listBucketsRequest: requests.ListBucketsRequest): Promise<responses.ListBucketsResponse>;
|
|
333
363
|
/**
|
|
364
|
+
* NOTE: This function is deprecated in favor of listBucketsRecordIterator function.
|
|
334
365
|
* Creates a new async iterator which will iterate over the models.BucketSummary objects
|
|
335
366
|
* contained in responses from the listBuckets operation. This iterator will fetch more data from the
|
|
336
367
|
* server as needed.
|
|
@@ -339,22 +370,40 @@ export declare class ObjectStorageClient {
|
|
|
339
370
|
*/
|
|
340
371
|
listAllBuckets(request: requests.ListBucketsRequest): AsyncIterableIterator<model.BucketSummary>;
|
|
341
372
|
/**
|
|
373
|
+
* NOTE: This function is deprecated in favor of listBucketsResponseIterator function.
|
|
342
374
|
* Creates a new async iterator which will iterate over the responses received from the listBuckets operation. This iterator
|
|
343
375
|
* will fetch more data from the server as needed.
|
|
344
376
|
*
|
|
345
377
|
* @param request a request which can be sent to the service operation
|
|
346
378
|
*/
|
|
347
379
|
listAllBucketsResponses(request: requests.ListBucketsRequest): AsyncIterableIterator<responses.ListBucketsResponse>;
|
|
380
|
+
/**
|
|
381
|
+
* Creates a new async iterator which will iterate over the models.BucketSummary objects
|
|
382
|
+
* contained in responses from the listBuckets operation. This iterator will fetch more data from the
|
|
383
|
+
* server as needed.
|
|
384
|
+
*
|
|
385
|
+
* @param request a request which can be sent to the service operation
|
|
386
|
+
*/
|
|
387
|
+
listBucketsRecordIterator(request: requests.ListBucketsRequest): AsyncIterableIterator<model.BucketSummary>;
|
|
388
|
+
/**
|
|
389
|
+
* Creates a new async iterator which will iterate over the responses received from the listBuckets operation. This iterator
|
|
390
|
+
* will fetch more data from the server as needed.
|
|
391
|
+
*
|
|
392
|
+
* @param request a request which can be sent to the service operation
|
|
393
|
+
*/
|
|
394
|
+
listBucketsResponseIterator(request: requests.ListBucketsRequest): AsyncIterableIterator<responses.ListBucketsResponse>;
|
|
348
395
|
/**
|
|
349
396
|
* Lists the parts of an in-progress multipart upload.
|
|
350
397
|
*
|
|
398
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
351
399
|
* @param ListMultipartUploadPartsRequest
|
|
352
400
|
* @return ListMultipartUploadPartsResponse
|
|
353
401
|
* @throws OciError when an error occurs
|
|
354
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
402
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ListMultipartUploadParts.ts.html |here} to see how to use ListMultipartUploadParts API.
|
|
355
403
|
*/
|
|
356
404
|
listMultipartUploadParts(listMultipartUploadPartsRequest: requests.ListMultipartUploadPartsRequest): Promise<responses.ListMultipartUploadPartsResponse>;
|
|
357
405
|
/**
|
|
406
|
+
* NOTE: This function is deprecated in favor of listMultipartUploadPartsRecordIterator function.
|
|
358
407
|
* Creates a new async iterator which will iterate over the models.MultipartUploadPartSummary objects
|
|
359
408
|
* contained in responses from the listMultipartUploadParts operation. This iterator will fetch more data from the
|
|
360
409
|
* server as needed.
|
|
@@ -363,22 +412,40 @@ export declare class ObjectStorageClient {
|
|
|
363
412
|
*/
|
|
364
413
|
listAllMultipartUploadParts(request: requests.ListMultipartUploadPartsRequest): AsyncIterableIterator<model.MultipartUploadPartSummary>;
|
|
365
414
|
/**
|
|
415
|
+
* NOTE: This function is deprecated in favor of listMultipartUploadPartsResponseIterator function.
|
|
366
416
|
* Creates a new async iterator which will iterate over the responses received from the listMultipartUploadParts operation. This iterator
|
|
367
417
|
* will fetch more data from the server as needed.
|
|
368
418
|
*
|
|
369
419
|
* @param request a request which can be sent to the service operation
|
|
370
420
|
*/
|
|
371
421
|
listAllMultipartUploadPartsResponses(request: requests.ListMultipartUploadPartsRequest): AsyncIterableIterator<responses.ListMultipartUploadPartsResponse>;
|
|
422
|
+
/**
|
|
423
|
+
* Creates a new async iterator which will iterate over the models.MultipartUploadPartSummary objects
|
|
424
|
+
* contained in responses from the listMultipartUploadParts operation. This iterator will fetch more data from the
|
|
425
|
+
* server as needed.
|
|
426
|
+
*
|
|
427
|
+
* @param request a request which can be sent to the service operation
|
|
428
|
+
*/
|
|
429
|
+
listMultipartUploadPartsRecordIterator(request: requests.ListMultipartUploadPartsRequest): AsyncIterableIterator<model.MultipartUploadPartSummary>;
|
|
430
|
+
/**
|
|
431
|
+
* Creates a new async iterator which will iterate over the responses received from the listMultipartUploadParts operation. This iterator
|
|
432
|
+
* will fetch more data from the server as needed.
|
|
433
|
+
*
|
|
434
|
+
* @param request a request which can be sent to the service operation
|
|
435
|
+
*/
|
|
436
|
+
listMultipartUploadPartsResponseIterator(request: requests.ListMultipartUploadPartsRequest): AsyncIterableIterator<responses.ListMultipartUploadPartsResponse>;
|
|
372
437
|
/**
|
|
373
438
|
* Lists all of the in-progress multipart uploads for the given bucket in the given Object Storage namespace.
|
|
374
439
|
*
|
|
440
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
375
441
|
* @param ListMultipartUploadsRequest
|
|
376
442
|
* @return ListMultipartUploadsResponse
|
|
377
443
|
* @throws OciError when an error occurs
|
|
378
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
444
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ListMultipartUploads.ts.html |here} to see how to use ListMultipartUploads API.
|
|
379
445
|
*/
|
|
380
446
|
listMultipartUploads(listMultipartUploadsRequest: requests.ListMultipartUploadsRequest): Promise<responses.ListMultipartUploadsResponse>;
|
|
381
447
|
/**
|
|
448
|
+
* NOTE: This function is deprecated in favor of listMultipartUploadsRecordIterator function.
|
|
382
449
|
* Creates a new async iterator which will iterate over the models.MultipartUpload objects
|
|
383
450
|
* contained in responses from the listMultipartUploads operation. This iterator will fetch more data from the
|
|
384
451
|
* server as needed.
|
|
@@ -387,12 +454,28 @@ export declare class ObjectStorageClient {
|
|
|
387
454
|
*/
|
|
388
455
|
listAllMultipartUploads(request: requests.ListMultipartUploadsRequest): AsyncIterableIterator<model.MultipartUpload>;
|
|
389
456
|
/**
|
|
457
|
+
* NOTE: This function is deprecated in favor of listMultipartUploadsResponseIterator function.
|
|
390
458
|
* Creates a new async iterator which will iterate over the responses received from the listMultipartUploads operation. This iterator
|
|
391
459
|
* will fetch more data from the server as needed.
|
|
392
460
|
*
|
|
393
461
|
* @param request a request which can be sent to the service operation
|
|
394
462
|
*/
|
|
395
463
|
listAllMultipartUploadsResponses(request: requests.ListMultipartUploadsRequest): AsyncIterableIterator<responses.ListMultipartUploadsResponse>;
|
|
464
|
+
/**
|
|
465
|
+
* Creates a new async iterator which will iterate over the models.MultipartUpload objects
|
|
466
|
+
* contained in responses from the listMultipartUploads operation. This iterator will fetch more data from the
|
|
467
|
+
* server as needed.
|
|
468
|
+
*
|
|
469
|
+
* @param request a request which can be sent to the service operation
|
|
470
|
+
*/
|
|
471
|
+
listMultipartUploadsRecordIterator(request: requests.ListMultipartUploadsRequest): AsyncIterableIterator<model.MultipartUpload>;
|
|
472
|
+
/**
|
|
473
|
+
* Creates a new async iterator which will iterate over the responses received from the listMultipartUploads operation. This iterator
|
|
474
|
+
* will fetch more data from the server as needed.
|
|
475
|
+
*
|
|
476
|
+
* @param request a request which can be sent to the service operation
|
|
477
|
+
*/
|
|
478
|
+
listMultipartUploadsResponseIterator(request: requests.ListMultipartUploadsRequest): AsyncIterableIterator<responses.ListMultipartUploadsResponse>;
|
|
396
479
|
/**
|
|
397
480
|
* Lists the object versions in a bucket.
|
|
398
481
|
* <p>
|
|
@@ -403,10 +486,11 @@ export declare class ObjectStorageClient {
|
|
|
403
486
|
* talk to an administrator. If you are an administrator who needs to write policies to give users access, see
|
|
404
487
|
* [Getting Started with Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
|
|
405
488
|
*
|
|
489
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
406
490
|
* @param ListObjectVersionsRequest
|
|
407
491
|
* @return ListObjectVersionsResponse
|
|
408
492
|
* @throws OciError when an error occurs
|
|
409
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
493
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ListObjectVersions.ts.html |here} to see how to use ListObjectVersions API.
|
|
410
494
|
*/
|
|
411
495
|
listObjectVersions(listObjectVersionsRequest: requests.ListObjectVersionsRequest): Promise<responses.ListObjectVersionsResponse>;
|
|
412
496
|
/**
|
|
@@ -421,13 +505,15 @@ export declare class ObjectStorageClient {
|
|
|
421
505
|
* talk to an administrator. If you are an administrator who needs to write policies to give users access, see
|
|
422
506
|
* [Getting Started with Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
|
|
423
507
|
*
|
|
508
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
424
509
|
* @param ListObjectsRequest
|
|
425
510
|
* @return ListObjectsResponse
|
|
426
511
|
* @throws OciError when an error occurs
|
|
427
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
512
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ListObjects.ts.html |here} to see how to use ListObjects API.
|
|
428
513
|
*/
|
|
429
514
|
listObjects(listObjectsRequest: requests.ListObjectsRequest): Promise<responses.ListObjectsResponse>;
|
|
430
515
|
/**
|
|
516
|
+
* NOTE: This function is deprecated in favor of listObjectsRecordIterator function.
|
|
431
517
|
* Creates a new async iterator which will iterate over the models.ObjectSummary objects
|
|
432
518
|
* contained in responses from the listObjects operation. This iterator will fetch more data from the
|
|
433
519
|
* server as needed.
|
|
@@ -436,22 +522,40 @@ export declare class ObjectStorageClient {
|
|
|
436
522
|
*/
|
|
437
523
|
listAllObjects(request: requests.ListObjectsRequest): AsyncIterableIterator<model.ObjectSummary>;
|
|
438
524
|
/**
|
|
525
|
+
* NOTE: This function is deprecated in favor of listObjectsResponseIterator function.
|
|
439
526
|
* Creates a new async iterator which will iterate over the responses received from the listObjects operation. This iterator
|
|
440
527
|
* will fetch more data from the server as needed.
|
|
441
528
|
*
|
|
442
529
|
* @param request a request which can be sent to the service operation
|
|
443
530
|
*/
|
|
444
531
|
listAllObjectsResponses(request: requests.ListObjectsRequest): AsyncIterableIterator<responses.ListObjectsResponse>;
|
|
532
|
+
/**
|
|
533
|
+
* Creates a new async iterator which will iterate over the models.ObjectSummary objects
|
|
534
|
+
* contained in responses from the listObjects operation. This iterator will fetch more data from the
|
|
535
|
+
* server as needed.
|
|
536
|
+
*
|
|
537
|
+
* @param request a request which can be sent to the service operation
|
|
538
|
+
*/
|
|
539
|
+
listObjectsRecordIterator(request: requests.ListObjectsRequest): AsyncIterableIterator<model.ObjectSummary>;
|
|
540
|
+
/**
|
|
541
|
+
* Creates a new async iterator which will iterate over the responses received from the listObjects operation. This iterator
|
|
542
|
+
* will fetch more data from the server as needed.
|
|
543
|
+
*
|
|
544
|
+
* @param request a request which can be sent to the service operation
|
|
545
|
+
*/
|
|
546
|
+
listObjectsResponseIterator(request: requests.ListObjectsRequest): AsyncIterableIterator<responses.ListObjectsResponse>;
|
|
445
547
|
/**
|
|
446
548
|
* Lists pre-authenticated requests for the bucket.
|
|
447
549
|
*
|
|
550
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
448
551
|
* @param ListPreauthenticatedRequestsRequest
|
|
449
552
|
* @return ListPreauthenticatedRequestsResponse
|
|
450
553
|
* @throws OciError when an error occurs
|
|
451
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
554
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ListPreauthenticatedRequests.ts.html |here} to see how to use ListPreauthenticatedRequests API.
|
|
452
555
|
*/
|
|
453
556
|
listPreauthenticatedRequests(listPreauthenticatedRequestsRequest: requests.ListPreauthenticatedRequestsRequest): Promise<responses.ListPreauthenticatedRequestsResponse>;
|
|
454
557
|
/**
|
|
558
|
+
* NOTE: This function is deprecated in favor of listPreauthenticatedRequestsRecordIterator function.
|
|
455
559
|
* Creates a new async iterator which will iterate over the models.PreauthenticatedRequestSummary objects
|
|
456
560
|
* contained in responses from the listPreauthenticatedRequests operation. This iterator will fetch more data from the
|
|
457
561
|
* server as needed.
|
|
@@ -460,22 +564,40 @@ export declare class ObjectStorageClient {
|
|
|
460
564
|
*/
|
|
461
565
|
listAllPreauthenticatedRequests(request: requests.ListPreauthenticatedRequestsRequest): AsyncIterableIterator<model.PreauthenticatedRequestSummary>;
|
|
462
566
|
/**
|
|
567
|
+
* NOTE: This function is deprecated in favor of listPreauthenticatedRequestsResponseIterator function.
|
|
463
568
|
* Creates a new async iterator which will iterate over the responses received from the listPreauthenticatedRequests operation. This iterator
|
|
464
569
|
* will fetch more data from the server as needed.
|
|
465
570
|
*
|
|
466
571
|
* @param request a request which can be sent to the service operation
|
|
467
572
|
*/
|
|
468
573
|
listAllPreauthenticatedRequestsResponses(request: requests.ListPreauthenticatedRequestsRequest): AsyncIterableIterator<responses.ListPreauthenticatedRequestsResponse>;
|
|
574
|
+
/**
|
|
575
|
+
* Creates a new async iterator which will iterate over the models.PreauthenticatedRequestSummary objects
|
|
576
|
+
* contained in responses from the listPreauthenticatedRequests operation. This iterator will fetch more data from the
|
|
577
|
+
* server as needed.
|
|
578
|
+
*
|
|
579
|
+
* @param request a request which can be sent to the service operation
|
|
580
|
+
*/
|
|
581
|
+
listPreauthenticatedRequestsRecordIterator(request: requests.ListPreauthenticatedRequestsRequest): AsyncIterableIterator<model.PreauthenticatedRequestSummary>;
|
|
582
|
+
/**
|
|
583
|
+
* Creates a new async iterator which will iterate over the responses received from the listPreauthenticatedRequests operation. This iterator
|
|
584
|
+
* will fetch more data from the server as needed.
|
|
585
|
+
*
|
|
586
|
+
* @param request a request which can be sent to the service operation
|
|
587
|
+
*/
|
|
588
|
+
listPreauthenticatedRequestsResponseIterator(request: requests.ListPreauthenticatedRequestsRequest): AsyncIterableIterator<responses.ListPreauthenticatedRequestsResponse>;
|
|
469
589
|
/**
|
|
470
590
|
* List the replication policies associated with a bucket.
|
|
471
591
|
*
|
|
592
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
472
593
|
* @param ListReplicationPoliciesRequest
|
|
473
594
|
* @return ListReplicationPoliciesResponse
|
|
474
595
|
* @throws OciError when an error occurs
|
|
475
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
596
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ListReplicationPolicies.ts.html |here} to see how to use ListReplicationPolicies API.
|
|
476
597
|
*/
|
|
477
598
|
listReplicationPolicies(listReplicationPoliciesRequest: requests.ListReplicationPoliciesRequest): Promise<responses.ListReplicationPoliciesResponse>;
|
|
478
599
|
/**
|
|
600
|
+
* NOTE: This function is deprecated in favor of listReplicationPoliciesRecordIterator function.
|
|
479
601
|
* Creates a new async iterator which will iterate over the models.ReplicationPolicySummary objects
|
|
480
602
|
* contained in responses from the listReplicationPolicies operation. This iterator will fetch more data from the
|
|
481
603
|
* server as needed.
|
|
@@ -484,22 +606,40 @@ export declare class ObjectStorageClient {
|
|
|
484
606
|
*/
|
|
485
607
|
listAllReplicationPolicies(request: requests.ListReplicationPoliciesRequest): AsyncIterableIterator<model.ReplicationPolicySummary>;
|
|
486
608
|
/**
|
|
609
|
+
* NOTE: This function is deprecated in favor of listReplicationPoliciesResponseIterator function.
|
|
487
610
|
* Creates a new async iterator which will iterate over the responses received from the listReplicationPolicies operation. This iterator
|
|
488
611
|
* will fetch more data from the server as needed.
|
|
489
612
|
*
|
|
490
613
|
* @param request a request which can be sent to the service operation
|
|
491
614
|
*/
|
|
492
615
|
listAllReplicationPoliciesResponses(request: requests.ListReplicationPoliciesRequest): AsyncIterableIterator<responses.ListReplicationPoliciesResponse>;
|
|
616
|
+
/**
|
|
617
|
+
* Creates a new async iterator which will iterate over the models.ReplicationPolicySummary objects
|
|
618
|
+
* contained in responses from the listReplicationPolicies operation. This iterator will fetch more data from the
|
|
619
|
+
* server as needed.
|
|
620
|
+
*
|
|
621
|
+
* @param request a request which can be sent to the service operation
|
|
622
|
+
*/
|
|
623
|
+
listReplicationPoliciesRecordIterator(request: requests.ListReplicationPoliciesRequest): AsyncIterableIterator<model.ReplicationPolicySummary>;
|
|
624
|
+
/**
|
|
625
|
+
* Creates a new async iterator which will iterate over the responses received from the listReplicationPolicies operation. This iterator
|
|
626
|
+
* will fetch more data from the server as needed.
|
|
627
|
+
*
|
|
628
|
+
* @param request a request which can be sent to the service operation
|
|
629
|
+
*/
|
|
630
|
+
listReplicationPoliciesResponseIterator(request: requests.ListReplicationPoliciesRequest): AsyncIterableIterator<responses.ListReplicationPoliciesResponse>;
|
|
493
631
|
/**
|
|
494
632
|
* List the replication sources of a destination bucket.
|
|
495
633
|
*
|
|
634
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
496
635
|
* @param ListReplicationSourcesRequest
|
|
497
636
|
* @return ListReplicationSourcesResponse
|
|
498
637
|
* @throws OciError when an error occurs
|
|
499
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
638
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ListReplicationSources.ts.html |here} to see how to use ListReplicationSources API.
|
|
500
639
|
*/
|
|
501
640
|
listReplicationSources(listReplicationSourcesRequest: requests.ListReplicationSourcesRequest): Promise<responses.ListReplicationSourcesResponse>;
|
|
502
641
|
/**
|
|
642
|
+
* NOTE: This function is deprecated in favor of listReplicationSourcesRecordIterator function.
|
|
503
643
|
* Creates a new async iterator which will iterate over the models.ReplicationSource objects
|
|
504
644
|
* contained in responses from the listReplicationSources operation. This iterator will fetch more data from the
|
|
505
645
|
* server as needed.
|
|
@@ -508,31 +648,50 @@ export declare class ObjectStorageClient {
|
|
|
508
648
|
*/
|
|
509
649
|
listAllReplicationSources(request: requests.ListReplicationSourcesRequest): AsyncIterableIterator<model.ReplicationSource>;
|
|
510
650
|
/**
|
|
651
|
+
* NOTE: This function is deprecated in favor of listReplicationSourcesResponseIterator function.
|
|
511
652
|
* Creates a new async iterator which will iterate over the responses received from the listReplicationSources operation. This iterator
|
|
512
653
|
* will fetch more data from the server as needed.
|
|
513
654
|
*
|
|
514
655
|
* @param request a request which can be sent to the service operation
|
|
515
656
|
*/
|
|
516
657
|
listAllReplicationSourcesResponses(request: requests.ListReplicationSourcesRequest): AsyncIterableIterator<responses.ListReplicationSourcesResponse>;
|
|
658
|
+
/**
|
|
659
|
+
* Creates a new async iterator which will iterate over the models.ReplicationSource objects
|
|
660
|
+
* contained in responses from the listReplicationSources operation. This iterator will fetch more data from the
|
|
661
|
+
* server as needed.
|
|
662
|
+
*
|
|
663
|
+
* @param request a request which can be sent to the service operation
|
|
664
|
+
*/
|
|
665
|
+
listReplicationSourcesRecordIterator(request: requests.ListReplicationSourcesRequest): AsyncIterableIterator<model.ReplicationSource>;
|
|
666
|
+
/**
|
|
667
|
+
* Creates a new async iterator which will iterate over the responses received from the listReplicationSources operation. This iterator
|
|
668
|
+
* will fetch more data from the server as needed.
|
|
669
|
+
*
|
|
670
|
+
* @param request a request which can be sent to the service operation
|
|
671
|
+
*/
|
|
672
|
+
listReplicationSourcesResponseIterator(request: requests.ListReplicationSourcesRequest): AsyncIterableIterator<responses.ListReplicationSourcesResponse>;
|
|
517
673
|
/**
|
|
518
674
|
* List the retention rules for a bucket. The retention rules are sorted based on creation time,
|
|
519
675
|
* with the most recently created retention rule returned first.
|
|
520
676
|
*
|
|
677
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
521
678
|
* @param ListRetentionRulesRequest
|
|
522
679
|
* @return ListRetentionRulesResponse
|
|
523
680
|
* @throws OciError when an error occurs
|
|
524
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
681
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ListRetentionRules.ts.html |here} to see how to use ListRetentionRules API.
|
|
525
682
|
*/
|
|
526
683
|
listRetentionRules(listRetentionRulesRequest: requests.ListRetentionRulesRequest): Promise<responses.ListRetentionRulesResponse>;
|
|
527
684
|
/**
|
|
528
685
|
* Lists the errors of the work request with the given ID.
|
|
686
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
529
687
|
* @param ListWorkRequestErrorsRequest
|
|
530
688
|
* @return ListWorkRequestErrorsResponse
|
|
531
689
|
* @throws OciError when an error occurs
|
|
532
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
690
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
533
691
|
*/
|
|
534
692
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
535
693
|
/**
|
|
694
|
+
* NOTE: This function is deprecated in favor of listWorkRequestErrorsRecordIterator function.
|
|
536
695
|
* Creates a new async iterator which will iterate over the models.WorkRequestError objects
|
|
537
696
|
* contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
|
|
538
697
|
* server as needed.
|
|
@@ -541,21 +700,39 @@ export declare class ObjectStorageClient {
|
|
|
541
700
|
*/
|
|
542
701
|
listAllWorkRequestErrors(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<model.WorkRequestError>;
|
|
543
702
|
/**
|
|
703
|
+
* NOTE: This function is deprecated in favor of listWorkRequestErrorsResponseIterator function.
|
|
544
704
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
|
|
545
705
|
* will fetch more data from the server as needed.
|
|
546
706
|
*
|
|
547
707
|
* @param request a request which can be sent to the service operation
|
|
548
708
|
*/
|
|
549
709
|
listAllWorkRequestErrorsResponses(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse>;
|
|
710
|
+
/**
|
|
711
|
+
* Creates a new async iterator which will iterate over the models.WorkRequestError objects
|
|
712
|
+
* contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
|
|
713
|
+
* server as needed.
|
|
714
|
+
*
|
|
715
|
+
* @param request a request which can be sent to the service operation
|
|
716
|
+
*/
|
|
717
|
+
listWorkRequestErrorsRecordIterator(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<model.WorkRequestError>;
|
|
718
|
+
/**
|
|
719
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
|
|
720
|
+
* will fetch more data from the server as needed.
|
|
721
|
+
*
|
|
722
|
+
* @param request a request which can be sent to the service operation
|
|
723
|
+
*/
|
|
724
|
+
listWorkRequestErrorsResponseIterator(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse>;
|
|
550
725
|
/**
|
|
551
726
|
* Lists the logs of the work request with the given ID.
|
|
727
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
552
728
|
* @param ListWorkRequestLogsRequest
|
|
553
729
|
* @return ListWorkRequestLogsResponse
|
|
554
730
|
* @throws OciError when an error occurs
|
|
555
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
731
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
556
732
|
*/
|
|
557
733
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
558
734
|
/**
|
|
735
|
+
* NOTE: This function is deprecated in favor of listWorkRequestLogsRecordIterator function.
|
|
559
736
|
* Creates a new async iterator which will iterate over the models.WorkRequestLogEntry objects
|
|
560
737
|
* contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
|
|
561
738
|
* server as needed.
|
|
@@ -564,22 +741,40 @@ export declare class ObjectStorageClient {
|
|
|
564
741
|
*/
|
|
565
742
|
listAllWorkRequestLogs(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<model.WorkRequestLogEntry>;
|
|
566
743
|
/**
|
|
744
|
+
* NOTE: This function is deprecated in favor of listWorkRequestLogsResponseIterator function.
|
|
567
745
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
|
|
568
746
|
* will fetch more data from the server as needed.
|
|
569
747
|
*
|
|
570
748
|
* @param request a request which can be sent to the service operation
|
|
571
749
|
*/
|
|
572
750
|
listAllWorkRequestLogsResponses(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<responses.ListWorkRequestLogsResponse>;
|
|
751
|
+
/**
|
|
752
|
+
* Creates a new async iterator which will iterate over the models.WorkRequestLogEntry objects
|
|
753
|
+
* contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
|
|
754
|
+
* server as needed.
|
|
755
|
+
*
|
|
756
|
+
* @param request a request which can be sent to the service operation
|
|
757
|
+
*/
|
|
758
|
+
listWorkRequestLogsRecordIterator(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<model.WorkRequestLogEntry>;
|
|
759
|
+
/**
|
|
760
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
|
|
761
|
+
* will fetch more data from the server as needed.
|
|
762
|
+
*
|
|
763
|
+
* @param request a request which can be sent to the service operation
|
|
764
|
+
*/
|
|
765
|
+
listWorkRequestLogsResponseIterator(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<responses.ListWorkRequestLogsResponse>;
|
|
573
766
|
/**
|
|
574
767
|
* Lists the work requests in a compartment.
|
|
575
768
|
*
|
|
769
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
576
770
|
* @param ListWorkRequestsRequest
|
|
577
771
|
* @return ListWorkRequestsResponse
|
|
578
772
|
* @throws OciError when an error occurs
|
|
579
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
773
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
580
774
|
*/
|
|
581
775
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
582
776
|
/**
|
|
777
|
+
* NOTE: This function is deprecated in favor of listWorkRequestsRecordIterator function.
|
|
583
778
|
* Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
|
|
584
779
|
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
|
|
585
780
|
* server as needed.
|
|
@@ -588,22 +783,39 @@ export declare class ObjectStorageClient {
|
|
|
588
783
|
*/
|
|
589
784
|
listAllWorkRequests(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequestSummary>;
|
|
590
785
|
/**
|
|
786
|
+
* NOTE: This function is deprecated in favor of listWorkRequestsResponseIterator function.
|
|
591
787
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
|
|
592
788
|
* will fetch more data from the server as needed.
|
|
593
789
|
*
|
|
594
790
|
* @param request a request which can be sent to the service operation
|
|
595
791
|
*/
|
|
596
792
|
listAllWorkRequestsResponses(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
|
|
793
|
+
/**
|
|
794
|
+
* Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
|
|
795
|
+
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
|
|
796
|
+
* server as needed.
|
|
797
|
+
*
|
|
798
|
+
* @param request a request which can be sent to the service operation
|
|
799
|
+
*/
|
|
800
|
+
listWorkRequestsRecordIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequestSummary>;
|
|
801
|
+
/**
|
|
802
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
|
|
803
|
+
* will fetch more data from the server as needed.
|
|
804
|
+
*
|
|
805
|
+
* @param request a request which can be sent to the service operation
|
|
806
|
+
*/
|
|
807
|
+
listWorkRequestsResponseIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
|
|
597
808
|
/**
|
|
598
809
|
* Stops replication to the destination bucket and removes the replication policy. When the replication
|
|
599
810
|
* policy was created, this destination bucket became read-only except for new and changed objects replicated
|
|
600
811
|
* automatically from the source bucket. MakeBucketWritable removes the replication policy. This bucket is no
|
|
601
812
|
* longer the target for replication and is now writable, allowing users to make changes to bucket contents.
|
|
602
813
|
*
|
|
814
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
603
815
|
* @param MakeBucketWritableRequest
|
|
604
816
|
* @return MakeBucketWritableResponse
|
|
605
817
|
* @throws OciError when an error occurs
|
|
606
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
818
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/MakeBucketWritable.ts.html |here} to see how to use MakeBucketWritable API.
|
|
607
819
|
*/
|
|
608
820
|
makeBucketWritable(makeBucketWritableRequest: requests.MakeBucketWritableRequest): Promise<responses.MakeBucketWritableResponse>;
|
|
609
821
|
/**
|
|
@@ -616,19 +828,21 @@ export declare class ObjectStorageClient {
|
|
|
616
828
|
See [Special Instructions for Object Storage PUT](https://docs.cloud.oracle.com/Content/API/Concepts/signingrequests.htm#ObjectStoragePut)
|
|
617
829
|
* for request signature requirements.
|
|
618
830
|
*
|
|
831
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
619
832
|
* @param PutObjectRequest
|
|
620
833
|
* @return PutObjectResponse
|
|
621
834
|
* @throws OciError when an error occurs
|
|
622
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
835
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/PutObject.ts.html |here} to see how to use PutObject API.
|
|
623
836
|
*/
|
|
624
837
|
putObject(putObjectRequest: requests.PutObjectRequest): Promise<responses.PutObjectResponse>;
|
|
625
838
|
/**
|
|
626
839
|
* Creates or replaces the object lifecycle policy for the bucket.
|
|
627
840
|
*
|
|
841
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
628
842
|
* @param PutObjectLifecyclePolicyRequest
|
|
629
843
|
* @return PutObjectLifecyclePolicyResponse
|
|
630
844
|
* @throws OciError when an error occurs
|
|
631
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
845
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/PutObjectLifecyclePolicy.ts.html |here} to see how to use PutObjectLifecyclePolicy API.
|
|
632
846
|
*/
|
|
633
847
|
putObjectLifecyclePolicy(putObjectLifecyclePolicyRequest: requests.PutObjectLifecyclePolicyRequest): Promise<responses.PutObjectLifecyclePolicyResponse>;
|
|
634
848
|
/**
|
|
@@ -648,10 +862,11 @@ export declare class ObjectStorageClient {
|
|
|
648
862
|
* of the work request task.
|
|
649
863
|
* All the versions of objects will be re-encrypted whether versioning is enabled or suspended at the bucket.
|
|
650
864
|
*
|
|
865
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
651
866
|
* @param ReencryptBucketRequest
|
|
652
867
|
* @return ReencryptBucketResponse
|
|
653
868
|
* @throws OciError when an error occurs
|
|
654
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
869
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ReencryptBucket.ts.html |here} to see how to use ReencryptBucket API.
|
|
655
870
|
*/
|
|
656
871
|
reencryptBucket(reencryptBucketRequest: requests.ReencryptBucketRequest): Promise<responses.ReencryptBucketResponse>;
|
|
657
872
|
/**
|
|
@@ -665,10 +880,11 @@ export declare class ObjectStorageClient {
|
|
|
665
880
|
* <p>
|
|
666
881
|
- You can encrypt an object using your own encryption key. The key you supply is known as a customer-provided encryption key (SSE-C).
|
|
667
882
|
*
|
|
883
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
668
884
|
* @param ReencryptObjectRequest
|
|
669
885
|
* @return ReencryptObjectResponse
|
|
670
886
|
* @throws OciError when an error occurs
|
|
671
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
887
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/ReencryptObject.ts.html |here} to see how to use ReencryptObject API.
|
|
672
888
|
*/
|
|
673
889
|
reencryptObject(reencryptObjectRequest: requests.ReencryptObjectRequest): Promise<responses.ReencryptObjectResponse>;
|
|
674
890
|
/**
|
|
@@ -677,20 +893,22 @@ export declare class ObjectStorageClient {
|
|
|
677
893
|
See [Object Names](https://docs.cloud.oracle.com/Content/Object/Tasks/managingobjects.htm#namerequirements)
|
|
678
894
|
* for object naming requirements.
|
|
679
895
|
*
|
|
896
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
680
897
|
* @param RenameObjectRequest
|
|
681
898
|
* @return RenameObjectResponse
|
|
682
899
|
* @throws OciError when an error occurs
|
|
683
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
900
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/RenameObject.ts.html |here} to see how to use RenameObject API.
|
|
684
901
|
*/
|
|
685
902
|
renameObject(renameObjectRequest: requests.RenameObjectRequest): Promise<responses.RenameObjectResponse>;
|
|
686
903
|
/**
|
|
687
904
|
* Restores one or more objects specified by the objectName parameter.
|
|
688
905
|
* By default objects will be restored for 24 hours. Duration can be configured using the hours parameter.
|
|
689
906
|
*
|
|
907
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
690
908
|
* @param RestoreObjectsRequest
|
|
691
909
|
* @return RestoreObjectsResponse
|
|
692
910
|
* @throws OciError when an error occurs
|
|
693
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
911
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/RestoreObjects.ts.html |here} to see how to use RestoreObjects API.
|
|
694
912
|
*/
|
|
695
913
|
restoreObjects(restoreObjectsRequest: requests.RestoreObjectsRequest): Promise<responses.RestoreObjectsResponse>;
|
|
696
914
|
/**
|
|
@@ -700,10 +918,11 @@ export declare class ObjectStorageClient {
|
|
|
700
918
|
* of the compartment that you want to move the bucket to. For more information about moving resources between compartments,
|
|
701
919
|
* see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
702
920
|
*
|
|
921
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
703
922
|
* @param UpdateBucketRequest
|
|
704
923
|
* @return UpdateBucketResponse
|
|
705
924
|
* @throws OciError when an error occurs
|
|
706
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
925
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/UpdateBucket.ts.html |here} to see how to use UpdateBucket API.
|
|
707
926
|
*/
|
|
708
927
|
updateBucket(updateBucketRequest: requests.UpdateBucketRequest): Promise<responses.UpdateBucketResponse>;
|
|
709
928
|
/**
|
|
@@ -715,37 +934,41 @@ export declare class ObjectStorageClient {
|
|
|
715
934
|
* buckets will be modified. A user must have OBJECTSTORAGE_NAMESPACE_UPDATE permission to make changes to the default
|
|
716
935
|
* compartments for Amazon S3 and Swift.
|
|
717
936
|
*
|
|
937
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
718
938
|
* @param UpdateNamespaceMetadataRequest
|
|
719
939
|
* @return UpdateNamespaceMetadataResponse
|
|
720
940
|
* @throws OciError when an error occurs
|
|
721
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
941
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/UpdateNamespaceMetadata.ts.html |here} to see how to use UpdateNamespaceMetadata API.
|
|
722
942
|
*/
|
|
723
943
|
updateNamespaceMetadata(updateNamespaceMetadataRequest: requests.UpdateNamespaceMetadataRequest): Promise<responses.UpdateNamespaceMetadataResponse>;
|
|
724
944
|
/**
|
|
725
945
|
* Changes the storage tier of the object specified by the objectName parameter.
|
|
726
946
|
*
|
|
947
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
727
948
|
* @param UpdateObjectStorageTierRequest
|
|
728
949
|
* @return UpdateObjectStorageTierResponse
|
|
729
950
|
* @throws OciError when an error occurs
|
|
730
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
951
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/UpdateObjectStorageTier.ts.html |here} to see how to use UpdateObjectStorageTier API.
|
|
731
952
|
*/
|
|
732
953
|
updateObjectStorageTier(updateObjectStorageTierRequest: requests.UpdateObjectStorageTierRequest): Promise<responses.UpdateObjectStorageTierResponse>;
|
|
733
954
|
/**
|
|
734
955
|
* Updates the specified retention rule. Rule changes take effect typically within 30 seconds.
|
|
735
956
|
*
|
|
957
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
736
958
|
* @param UpdateRetentionRuleRequest
|
|
737
959
|
* @return UpdateRetentionRuleResponse
|
|
738
960
|
* @throws OciError when an error occurs
|
|
739
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
961
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/UpdateRetentionRule.ts.html |here} to see how to use UpdateRetentionRule API.
|
|
740
962
|
*/
|
|
741
963
|
updateRetentionRule(updateRetentionRuleRequest: requests.UpdateRetentionRuleRequest): Promise<responses.UpdateRetentionRuleResponse>;
|
|
742
964
|
/**
|
|
743
965
|
* Uploads a single part of a multipart upload.
|
|
744
966
|
*
|
|
967
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
745
968
|
* @param UploadPartRequest
|
|
746
969
|
* @return UploadPartResponse
|
|
747
970
|
* @throws OciError when an error occurs
|
|
748
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
971
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/objectstorage/UploadPart.ts.html |here} to see how to use UploadPart API.
|
|
749
972
|
*/
|
|
750
973
|
uploadPart(uploadPartRequest: requests.UploadPartRequest): Promise<responses.UploadPartResponse>;
|
|
751
974
|
}
|