oci-filestorage 2.5.2 → 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/lib/client.d.ts +53 -25
- package/lib/client.js +110 -50
- package/lib/client.js.map +1 -1
- package/lib/request/change-file-system-compartment-request.d.ts +1 -1
- package/lib/request/change-mount-target-compartment-request.d.ts +1 -1
- package/lib/request/create-export-request.d.ts +1 -1
- package/lib/request/create-file-system-request.d.ts +1 -1
- package/lib/request/create-mount-target-request.d.ts +1 -1
- package/lib/request/create-snapshot-request.d.ts +1 -1
- package/lib/request/delete-export-request.d.ts +1 -1
- package/lib/request/delete-file-system-request.d.ts +1 -1
- package/lib/request/delete-mount-target-request.d.ts +1 -1
- package/lib/request/delete-snapshot-request.d.ts +1 -1
- package/lib/request/get-export-request.d.ts +1 -1
- package/lib/request/get-export-set-request.d.ts +1 -1
- package/lib/request/get-file-system-request.d.ts +1 -1
- package/lib/request/get-mount-target-request.d.ts +1 -1
- package/lib/request/get-snapshot-request.d.ts +1 -1
- package/lib/request/list-export-sets-request.d.ts +1 -1
- package/lib/request/list-exports-request.d.ts +1 -1
- package/lib/request/list-file-systems-request.d.ts +1 -1
- package/lib/request/list-mount-targets-request.d.ts +1 -1
- package/lib/request/list-snapshots-request.d.ts +1 -1
- package/lib/request/update-export-request.d.ts +1 -1
- package/lib/request/update-export-set-request.d.ts +1 -1
- package/lib/request/update-file-system-request.d.ts +1 -1
- package/lib/request/update-mount-target-request.d.ts +1 -1
- package/lib/request/update-snapshot-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -18,6 +18,9 @@ import * as responses from "./response";
|
|
|
18
18
|
import { FileStorageWaiter } from "./filestorage-waiter";
|
|
19
19
|
export declare enum FileStorageApiKeys {
|
|
20
20
|
}
|
|
21
|
+
/**
|
|
22
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
23
|
+
*/
|
|
21
24
|
export declare class FileStorageClient {
|
|
22
25
|
protected static serviceEndpointTemplate: string;
|
|
23
26
|
protected "_endpoint": string;
|
|
@@ -68,29 +71,32 @@ export declare class FileStorageClient {
|
|
|
68
71
|
/**
|
|
69
72
|
* Moves a file system and its associated snapshots into a different compartment within the same tenancy. For information about moving resources between compartments, see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes)
|
|
70
73
|
*
|
|
74
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
71
75
|
* @param ChangeFileSystemCompartmentRequest
|
|
72
76
|
* @return ChangeFileSystemCompartmentResponse
|
|
73
77
|
* @throws OciError when an error occurs
|
|
74
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
78
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/ChangeFileSystemCompartment.ts.html |here} to see how to use ChangeFileSystemCompartment API.
|
|
75
79
|
*/
|
|
76
80
|
changeFileSystemCompartment(changeFileSystemCompartmentRequest: requests.ChangeFileSystemCompartmentRequest): Promise<responses.ChangeFileSystemCompartmentResponse>;
|
|
77
81
|
/**
|
|
78
82
|
* Moves a mount target and its associated export set into a different compartment within the same tenancy. For information about moving resources between compartments, see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes)
|
|
79
83
|
*
|
|
84
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
80
85
|
* @param ChangeMountTargetCompartmentRequest
|
|
81
86
|
* @return ChangeMountTargetCompartmentResponse
|
|
82
87
|
* @throws OciError when an error occurs
|
|
83
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
88
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/ChangeMountTargetCompartment.ts.html |here} to see how to use ChangeMountTargetCompartment API.
|
|
84
89
|
*/
|
|
85
90
|
changeMountTargetCompartment(changeMountTargetCompartmentRequest: requests.ChangeMountTargetCompartmentRequest): Promise<responses.ChangeMountTargetCompartmentResponse>;
|
|
86
91
|
/**
|
|
87
92
|
* Creates a new export in the specified export set, path, and
|
|
88
93
|
* file system.
|
|
89
94
|
*
|
|
95
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
90
96
|
* @param CreateExportRequest
|
|
91
97
|
* @return CreateExportResponse
|
|
92
98
|
* @throws OciError when an error occurs
|
|
93
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
99
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/CreateExport.ts.html |here} to see how to use CreateExport API.
|
|
94
100
|
*/
|
|
95
101
|
createExport(createExportRequest: requests.CreateExportRequest): Promise<responses.CreateExportResponse>;
|
|
96
102
|
/**
|
|
@@ -124,10 +130,11 @@ export declare class FileStorageClient {
|
|
|
124
130
|
* You can also retrieve a resource's OCID by using a List API operation on that resource
|
|
125
131
|
* type or by viewing the resource in the Console.
|
|
126
132
|
*
|
|
133
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
127
134
|
* @param CreateFileSystemRequest
|
|
128
135
|
* @return CreateFileSystemResponse
|
|
129
136
|
* @throws OciError when an error occurs
|
|
130
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
137
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/CreateFileSystem.ts.html |here} to see how to use CreateFileSystem API.
|
|
131
138
|
*/
|
|
132
139
|
createFileSystem(createFileSystemRequest: requests.CreateFileSystemRequest): Promise<responses.CreateFileSystemResponse>;
|
|
133
140
|
/**
|
|
@@ -164,29 +171,32 @@ export declare class FileStorageClient {
|
|
|
164
171
|
* You can also retrieve a resource's OCID by using a List API operation on that resource
|
|
165
172
|
* type, or by viewing the resource in the Console.
|
|
166
173
|
*
|
|
174
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
167
175
|
* @param CreateMountTargetRequest
|
|
168
176
|
* @return CreateMountTargetResponse
|
|
169
177
|
* @throws OciError when an error occurs
|
|
170
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
178
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/CreateMountTarget.ts.html |here} to see how to use CreateMountTarget API.
|
|
171
179
|
*/
|
|
172
180
|
createMountTarget(createMountTargetRequest: requests.CreateMountTargetRequest): Promise<responses.CreateMountTargetResponse>;
|
|
173
181
|
/**
|
|
174
182
|
* Creates a new snapshot of the specified file system. You
|
|
175
183
|
* can access the snapshot at `.snapshot/<name>`.
|
|
176
184
|
*
|
|
185
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
177
186
|
* @param CreateSnapshotRequest
|
|
178
187
|
* @return CreateSnapshotResponse
|
|
179
188
|
* @throws OciError when an error occurs
|
|
180
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
189
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/CreateSnapshot.ts.html |here} to see how to use CreateSnapshot API.
|
|
181
190
|
*/
|
|
182
191
|
createSnapshot(createSnapshotRequest: requests.CreateSnapshotRequest): Promise<responses.CreateSnapshotResponse>;
|
|
183
192
|
/**
|
|
184
193
|
* Deletes the specified export.
|
|
185
194
|
*
|
|
195
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
186
196
|
* @param DeleteExportRequest
|
|
187
197
|
* @return DeleteExportResponse
|
|
188
198
|
* @throws OciError when an error occurs
|
|
189
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
199
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/DeleteExport.ts.html |here} to see how to use DeleteExport API.
|
|
190
200
|
*/
|
|
191
201
|
deleteExport(deleteExportRequest: requests.DeleteExportRequest): Promise<responses.DeleteExportResponse>;
|
|
192
202
|
/**
|
|
@@ -194,78 +204,87 @@ export declare class FileStorageClient {
|
|
|
194
204
|
* verify that no remaining export resources still reference it. Deleting a
|
|
195
205
|
* file system also deletes all of its snapshots.
|
|
196
206
|
*
|
|
207
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
197
208
|
* @param DeleteFileSystemRequest
|
|
198
209
|
* @return DeleteFileSystemResponse
|
|
199
210
|
* @throws OciError when an error occurs
|
|
200
|
-
* @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.6.0/filestorage/DeleteFileSystem.ts.html |here} to see how to use DeleteFileSystem API.
|
|
201
212
|
*/
|
|
202
213
|
deleteFileSystem(deleteFileSystemRequest: requests.DeleteFileSystemRequest): Promise<responses.DeleteFileSystemResponse>;
|
|
203
214
|
/**
|
|
204
215
|
* Deletes the specified mount target. This operation also deletes the
|
|
205
216
|
* mount target's VNICs.
|
|
206
217
|
*
|
|
218
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
207
219
|
* @param DeleteMountTargetRequest
|
|
208
220
|
* @return DeleteMountTargetResponse
|
|
209
221
|
* @throws OciError when an error occurs
|
|
210
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
222
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/DeleteMountTarget.ts.html |here} to see how to use DeleteMountTarget API.
|
|
211
223
|
*/
|
|
212
224
|
deleteMountTarget(deleteMountTargetRequest: requests.DeleteMountTargetRequest): Promise<responses.DeleteMountTargetResponse>;
|
|
213
225
|
/**
|
|
214
226
|
* Deletes the specified snapshot.
|
|
215
227
|
*
|
|
228
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
216
229
|
* @param DeleteSnapshotRequest
|
|
217
230
|
* @return DeleteSnapshotResponse
|
|
218
231
|
* @throws OciError when an error occurs
|
|
219
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
232
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/DeleteSnapshot.ts.html |here} to see how to use DeleteSnapshot API.
|
|
220
233
|
*/
|
|
221
234
|
deleteSnapshot(deleteSnapshotRequest: requests.DeleteSnapshotRequest): Promise<responses.DeleteSnapshotResponse>;
|
|
222
235
|
/**
|
|
223
236
|
* Gets the specified export's information.
|
|
237
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
224
238
|
* @param GetExportRequest
|
|
225
239
|
* @return GetExportResponse
|
|
226
240
|
* @throws OciError when an error occurs
|
|
227
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
241
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/GetExport.ts.html |here} to see how to use GetExport API.
|
|
228
242
|
*/
|
|
229
243
|
getExport(getExportRequest: requests.GetExportRequest): Promise<responses.GetExportResponse>;
|
|
230
244
|
/**
|
|
231
245
|
* Gets the specified export set's information.
|
|
246
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
232
247
|
* @param GetExportSetRequest
|
|
233
248
|
* @return GetExportSetResponse
|
|
234
249
|
* @throws OciError when an error occurs
|
|
235
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
250
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/GetExportSet.ts.html |here} to see how to use GetExportSet API.
|
|
236
251
|
*/
|
|
237
252
|
getExportSet(getExportSetRequest: requests.GetExportSetRequest): Promise<responses.GetExportSetResponse>;
|
|
238
253
|
/**
|
|
239
254
|
* Gets the specified file system's information.
|
|
255
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
240
256
|
* @param GetFileSystemRequest
|
|
241
257
|
* @return GetFileSystemResponse
|
|
242
258
|
* @throws OciError when an error occurs
|
|
243
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
259
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/GetFileSystem.ts.html |here} to see how to use GetFileSystem API.
|
|
244
260
|
*/
|
|
245
261
|
getFileSystem(getFileSystemRequest: requests.GetFileSystemRequest): Promise<responses.GetFileSystemResponse>;
|
|
246
262
|
/**
|
|
247
263
|
* Gets the specified mount target's information.
|
|
264
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
248
265
|
* @param GetMountTargetRequest
|
|
249
266
|
* @return GetMountTargetResponse
|
|
250
267
|
* @throws OciError when an error occurs
|
|
251
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
268
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/GetMountTarget.ts.html |here} to see how to use GetMountTarget API.
|
|
252
269
|
*/
|
|
253
270
|
getMountTarget(getMountTargetRequest: requests.GetMountTargetRequest): Promise<responses.GetMountTargetResponse>;
|
|
254
271
|
/**
|
|
255
272
|
* Gets the specified snapshot's information.
|
|
273
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
256
274
|
* @param GetSnapshotRequest
|
|
257
275
|
* @return GetSnapshotResponse
|
|
258
276
|
* @throws OciError when an error occurs
|
|
259
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
277
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/GetSnapshot.ts.html |here} to see how to use GetSnapshot API.
|
|
260
278
|
*/
|
|
261
279
|
getSnapshot(getSnapshotRequest: requests.GetSnapshotRequest): Promise<responses.GetSnapshotResponse>;
|
|
262
280
|
/**
|
|
263
281
|
* Lists the export set resources in the specified compartment.
|
|
264
282
|
*
|
|
283
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
265
284
|
* @param ListExportSetsRequest
|
|
266
285
|
* @return ListExportSetsResponse
|
|
267
286
|
* @throws OciError when an error occurs
|
|
268
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
287
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/ListExportSets.ts.html |here} to see how to use ListExportSets API.
|
|
269
288
|
*/
|
|
270
289
|
listExportSets(listExportSetsRequest: requests.ListExportSetsRequest): Promise<responses.ListExportSetsResponse>;
|
|
271
290
|
/**
|
|
@@ -305,10 +324,11 @@ export declare class FileStorageClient {
|
|
|
305
324
|
* set. You must specify an export set ID, a file system ID, and
|
|
306
325
|
* / or a compartment ID.
|
|
307
326
|
*
|
|
327
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
308
328
|
* @param ListExportsRequest
|
|
309
329
|
* @return ListExportsResponse
|
|
310
330
|
* @throws OciError when an error occurs
|
|
311
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
331
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/ListExports.ts.html |here} to see how to use ListExports API.
|
|
312
332
|
*/
|
|
313
333
|
listExports(listExportsRequest: requests.ListExportsRequest): Promise<responses.ListExportsResponse>;
|
|
314
334
|
/**
|
|
@@ -346,10 +366,11 @@ export declare class FileStorageClient {
|
|
|
346
366
|
/**
|
|
347
367
|
* Lists the file system resources in the specified compartment.
|
|
348
368
|
*
|
|
369
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
349
370
|
* @param ListFileSystemsRequest
|
|
350
371
|
* @return ListFileSystemsResponse
|
|
351
372
|
* @throws OciError when an error occurs
|
|
352
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
373
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/ListFileSystems.ts.html |here} to see how to use ListFileSystems API.
|
|
353
374
|
*/
|
|
354
375
|
listFileSystems(listFileSystemsRequest: requests.ListFileSystemsRequest): Promise<responses.ListFileSystemsResponse>;
|
|
355
376
|
/**
|
|
@@ -387,10 +408,11 @@ export declare class FileStorageClient {
|
|
|
387
408
|
/**
|
|
388
409
|
* Lists the mount target resources in the specified compartment.
|
|
389
410
|
*
|
|
411
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
390
412
|
* @param ListMountTargetsRequest
|
|
391
413
|
* @return ListMountTargetsResponse
|
|
392
414
|
* @throws OciError when an error occurs
|
|
393
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
415
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/ListMountTargets.ts.html |here} to see how to use ListMountTargets API.
|
|
394
416
|
*/
|
|
395
417
|
listMountTargets(listMountTargetsRequest: requests.ListMountTargetsRequest): Promise<responses.ListMountTargetsResponse>;
|
|
396
418
|
/**
|
|
@@ -428,10 +450,11 @@ export declare class FileStorageClient {
|
|
|
428
450
|
/**
|
|
429
451
|
* Lists snapshots of the specified file system.
|
|
430
452
|
*
|
|
453
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
431
454
|
* @param ListSnapshotsRequest
|
|
432
455
|
* @return ListSnapshotsResponse
|
|
433
456
|
* @throws OciError when an error occurs
|
|
434
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
457
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/ListSnapshots.ts.html |here} to see how to use ListSnapshots API.
|
|
435
458
|
*/
|
|
436
459
|
listSnapshots(listSnapshotsRequest: requests.ListSnapshotsRequest): Promise<responses.ListSnapshotsResponse>;
|
|
437
460
|
/**
|
|
@@ -468,44 +491,49 @@ export declare class FileStorageClient {
|
|
|
468
491
|
listSnapshotsResponseIterator(request: requests.ListSnapshotsRequest): AsyncIterableIterator<responses.ListSnapshotsResponse>;
|
|
469
492
|
/**
|
|
470
493
|
* Updates the specified export's information.
|
|
494
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
471
495
|
* @param UpdateExportRequest
|
|
472
496
|
* @return UpdateExportResponse
|
|
473
497
|
* @throws OciError when an error occurs
|
|
474
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
498
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/UpdateExport.ts.html |here} to see how to use UpdateExport API.
|
|
475
499
|
*/
|
|
476
500
|
updateExport(updateExportRequest: requests.UpdateExportRequest): Promise<responses.UpdateExportResponse>;
|
|
477
501
|
/**
|
|
478
502
|
* Updates the specified export set's information.
|
|
503
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
479
504
|
* @param UpdateExportSetRequest
|
|
480
505
|
* @return UpdateExportSetResponse
|
|
481
506
|
* @throws OciError when an error occurs
|
|
482
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
507
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/UpdateExportSet.ts.html |here} to see how to use UpdateExportSet API.
|
|
483
508
|
*/
|
|
484
509
|
updateExportSet(updateExportSetRequest: requests.UpdateExportSetRequest): Promise<responses.UpdateExportSetResponse>;
|
|
485
510
|
/**
|
|
486
511
|
* Updates the specified file system's information.
|
|
487
512
|
* You can use this operation to rename a file system.
|
|
488
513
|
*
|
|
514
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
489
515
|
* @param UpdateFileSystemRequest
|
|
490
516
|
* @return UpdateFileSystemResponse
|
|
491
517
|
* @throws OciError when an error occurs
|
|
492
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
518
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/UpdateFileSystem.ts.html |here} to see how to use UpdateFileSystem API.
|
|
493
519
|
*/
|
|
494
520
|
updateFileSystem(updateFileSystemRequest: requests.UpdateFileSystemRequest): Promise<responses.UpdateFileSystemResponse>;
|
|
495
521
|
/**
|
|
496
522
|
* Updates the specified mount target's information.
|
|
523
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
497
524
|
* @param UpdateMountTargetRequest
|
|
498
525
|
* @return UpdateMountTargetResponse
|
|
499
526
|
* @throws OciError when an error occurs
|
|
500
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
527
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/UpdateMountTarget.ts.html |here} to see how to use UpdateMountTarget API.
|
|
501
528
|
*/
|
|
502
529
|
updateMountTarget(updateMountTargetRequest: requests.UpdateMountTargetRequest): Promise<responses.UpdateMountTargetResponse>;
|
|
503
530
|
/**
|
|
504
531
|
* Updates the specified snapshot's information.
|
|
532
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
505
533
|
* @param UpdateSnapshotRequest
|
|
506
534
|
* @return UpdateSnapshotResponse
|
|
507
535
|
* @throws OciError when an error occurs
|
|
508
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
536
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/filestorage/UpdateSnapshot.ts.html |here} to see how to use UpdateSnapshot API.
|
|
509
537
|
*/
|
|
510
538
|
updateSnapshot(updateSnapshotRequest: requests.UpdateSnapshotRequest): Promise<responses.UpdateSnapshotResponse>;
|
|
511
539
|
}
|