oci-filestorage 2.56.0 → 2.58.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/lib/client.d.ts +45 -35
  2. package/lib/client.js +58 -35
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/change-file-system-compartment-request.d.ts +1 -1
  5. package/lib/request/change-mount-target-compartment-request.d.ts +1 -1
  6. package/lib/request/change-replication-compartment-request.d.ts +1 -1
  7. package/lib/request/create-export-request.d.ts +1 -1
  8. package/lib/request/create-file-system-request.d.ts +1 -1
  9. package/lib/request/create-mount-target-request.d.ts +1 -1
  10. package/lib/request/create-replication-request.d.ts +1 -1
  11. package/lib/request/create-snapshot-request.d.ts +1 -1
  12. package/lib/request/delete-export-request.d.ts +1 -1
  13. package/lib/request/delete-file-system-request.d.ts +1 -1
  14. package/lib/request/delete-mount-target-request.d.ts +1 -1
  15. package/lib/request/delete-replication-request.d.ts +1 -1
  16. package/lib/request/delete-replication-target-request.d.ts +1 -1
  17. package/lib/request/delete-snapshot-request.d.ts +1 -1
  18. package/lib/request/estimate-replication-request.d.ts +1 -1
  19. package/lib/request/get-export-request.d.ts +1 -1
  20. package/lib/request/get-export-set-request.d.ts +1 -1
  21. package/lib/request/get-file-system-request.d.ts +1 -1
  22. package/lib/request/get-mount-target-request.d.ts +1 -1
  23. package/lib/request/get-replication-request.d.ts +1 -1
  24. package/lib/request/get-replication-target-request.d.ts +1 -1
  25. package/lib/request/get-snapshot-request.d.ts +1 -1
  26. package/lib/request/list-export-sets-request.d.ts +1 -1
  27. package/lib/request/list-exports-request.d.ts +1 -1
  28. package/lib/request/list-file-systems-request.d.ts +1 -1
  29. package/lib/request/list-mount-targets-request.d.ts +1 -1
  30. package/lib/request/list-replication-targets-request.d.ts +1 -1
  31. package/lib/request/list-replications-request.d.ts +1 -1
  32. package/lib/request/list-snapshots-request.d.ts +1 -1
  33. package/lib/request/update-export-request.d.ts +1 -1
  34. package/lib/request/update-export-set-request.d.ts +1 -1
  35. package/lib/request/update-file-system-request.d.ts +1 -1
  36. package/lib/request/update-mount-target-request.d.ts +1 -1
  37. package/lib/request/update-replication-request.d.ts +1 -1
  38. package/lib/request/update-snapshot-request.d.ts +1 -1
  39. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -25,6 +25,7 @@ export declare enum FileStorageApiKeys {
25
25
  export declare class FileStorageClient {
26
26
  protected static serviceEndpointTemplate: string;
27
27
  protected static endpointServiceName: string;
28
+ protected "_realmSpecificEndpointTemplateEnabled": boolean;
28
29
  protected "_endpoint": string;
29
30
  protected "_defaultHeaders": any;
30
31
  protected "_waiters": FileStorageWaiter;
@@ -32,6 +33,9 @@ export declare class FileStorageClient {
32
33
  protected _circuitBreaker: null;
33
34
  protected _httpOptions: any;
34
35
  targetService: string;
36
+ protected _regionId: string;
37
+ protected "_region": common.Region;
38
+ protected _lastSetRegionOrRegionId: string;
35
39
  protected _httpClient: common.HttpClient;
36
40
  constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
37
41
  /**
@@ -44,6 +48,12 @@ export declare class FileStorageClient {
44
48
  */
45
49
  set endpoint(endpoint: string);
46
50
  get logger(): import("oci-common/lib/log").Logger;
51
+ /**
52
+ * Determines whether realm specific endpoint should be used or not.
53
+ * Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
54
+ * @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
55
+ */
56
+ set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
47
57
  /**
48
58
  * Sets the region to call (ex, Region.US_PHOENIX_1).
49
59
  * Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
@@ -79,7 +89,7 @@ export declare class FileStorageClient {
79
89
  * @param ChangeFileSystemCompartmentRequest
80
90
  * @return ChangeFileSystemCompartmentResponse
81
91
  * @throws OciError when an error occurs
82
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/ChangeFileSystemCompartment.ts.html |here} to see how to use ChangeFileSystemCompartment API.
92
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/ChangeFileSystemCompartment.ts.html |here} to see how to use ChangeFileSystemCompartment API.
83
93
  */
84
94
  changeFileSystemCompartment(changeFileSystemCompartmentRequest: requests.ChangeFileSystemCompartmentRequest): Promise<responses.ChangeFileSystemCompartmentResponse>;
85
95
  /**
@@ -89,7 +99,7 @@ export declare class FileStorageClient {
89
99
  * @param ChangeMountTargetCompartmentRequest
90
100
  * @return ChangeMountTargetCompartmentResponse
91
101
  * @throws OciError when an error occurs
92
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/ChangeMountTargetCompartment.ts.html |here} to see how to use ChangeMountTargetCompartment API.
102
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/ChangeMountTargetCompartment.ts.html |here} to see how to use ChangeMountTargetCompartment API.
93
103
  */
94
104
  changeMountTargetCompartment(changeMountTargetCompartmentRequest: requests.ChangeMountTargetCompartmentRequest): Promise<responses.ChangeMountTargetCompartmentResponse>;
95
105
  /**
@@ -100,7 +110,7 @@ export declare class FileStorageClient {
100
110
  * @param ChangeReplicationCompartmentRequest
101
111
  * @return ChangeReplicationCompartmentResponse
102
112
  * @throws OciError when an error occurs
103
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/ChangeReplicationCompartment.ts.html |here} to see how to use ChangeReplicationCompartment API.
113
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/ChangeReplicationCompartment.ts.html |here} to see how to use ChangeReplicationCompartment API.
104
114
  */
105
115
  changeReplicationCompartment(changeReplicationCompartmentRequest: requests.ChangeReplicationCompartmentRequest): Promise<responses.ChangeReplicationCompartmentResponse>;
106
116
  /**
@@ -111,7 +121,7 @@ export declare class FileStorageClient {
111
121
  * @param CreateExportRequest
112
122
  * @return CreateExportResponse
113
123
  * @throws OciError when an error occurs
114
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/CreateExport.ts.html |here} to see how to use CreateExport API.
124
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/CreateExport.ts.html |here} to see how to use CreateExport API.
115
125
  */
116
126
  createExport(createExportRequest: requests.CreateExportRequest): Promise<responses.CreateExportResponse>;
117
127
  /**
@@ -149,7 +159,7 @@ export declare class FileStorageClient {
149
159
  * @param CreateFileSystemRequest
150
160
  * @return CreateFileSystemResponse
151
161
  * @throws OciError when an error occurs
152
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/CreateFileSystem.ts.html |here} to see how to use CreateFileSystem API.
162
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/CreateFileSystem.ts.html |here} to see how to use CreateFileSystem API.
153
163
  */
154
164
  createFileSystem(createFileSystemRequest: requests.CreateFileSystemRequest): Promise<responses.CreateFileSystemResponse>;
155
165
  /**
@@ -190,7 +200,7 @@ export declare class FileStorageClient {
190
200
  * @param CreateMountTargetRequest
191
201
  * @return CreateMountTargetResponse
192
202
  * @throws OciError when an error occurs
193
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/CreateMountTarget.ts.html |here} to see how to use CreateMountTarget API.
203
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/CreateMountTarget.ts.html |here} to see how to use CreateMountTarget API.
194
204
  */
195
205
  createMountTarget(createMountTargetRequest: requests.CreateMountTargetRequest): Promise<responses.CreateMountTargetResponse>;
196
206
  /**
@@ -226,7 +236,7 @@ export declare class FileStorageClient {
226
236
  * @param CreateReplicationRequest
227
237
  * @return CreateReplicationResponse
228
238
  * @throws OciError when an error occurs
229
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/CreateReplication.ts.html |here} to see how to use CreateReplication API.
239
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/CreateReplication.ts.html |here} to see how to use CreateReplication API.
230
240
  */
231
241
  createReplication(createReplicationRequest: requests.CreateReplicationRequest): Promise<responses.CreateReplicationResponse>;
232
242
  /**
@@ -237,7 +247,7 @@ export declare class FileStorageClient {
237
247
  * @param CreateSnapshotRequest
238
248
  * @return CreateSnapshotResponse
239
249
  * @throws OciError when an error occurs
240
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/CreateSnapshot.ts.html |here} to see how to use CreateSnapshot API.
250
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/CreateSnapshot.ts.html |here} to see how to use CreateSnapshot API.
241
251
  */
242
252
  createSnapshot(createSnapshotRequest: requests.CreateSnapshotRequest): Promise<responses.CreateSnapshotResponse>;
243
253
  /**
@@ -247,7 +257,7 @@ export declare class FileStorageClient {
247
257
  * @param DeleteExportRequest
248
258
  * @return DeleteExportResponse
249
259
  * @throws OciError when an error occurs
250
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/DeleteExport.ts.html |here} to see how to use DeleteExport API.
260
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/DeleteExport.ts.html |here} to see how to use DeleteExport API.
251
261
  */
252
262
  deleteExport(deleteExportRequest: requests.DeleteExportRequest): Promise<responses.DeleteExportResponse>;
253
263
  /**
@@ -259,7 +269,7 @@ export declare class FileStorageClient {
259
269
  * @param DeleteFileSystemRequest
260
270
  * @return DeleteFileSystemResponse
261
271
  * @throws OciError when an error occurs
262
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/DeleteFileSystem.ts.html |here} to see how to use DeleteFileSystem API.
272
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/DeleteFileSystem.ts.html |here} to see how to use DeleteFileSystem API.
263
273
  */
264
274
  deleteFileSystem(deleteFileSystemRequest: requests.DeleteFileSystemRequest): Promise<responses.DeleteFileSystemResponse>;
265
275
  /**
@@ -270,7 +280,7 @@ export declare class FileStorageClient {
270
280
  * @param DeleteMountTargetRequest
271
281
  * @return DeleteMountTargetResponse
272
282
  * @throws OciError when an error occurs
273
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/DeleteMountTarget.ts.html |here} to see how to use DeleteMountTarget API.
283
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/DeleteMountTarget.ts.html |here} to see how to use DeleteMountTarget API.
274
284
  */
275
285
  deleteMountTarget(deleteMountTargetRequest: requests.DeleteMountTargetRequest): Promise<responses.DeleteMountTargetResponse>;
276
286
  /**
@@ -280,7 +290,7 @@ export declare class FileStorageClient {
280
290
  * @param DeleteReplicationRequest
281
291
  * @return DeleteReplicationResponse
282
292
  * @throws OciError when an error occurs
283
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/DeleteReplication.ts.html |here} to see how to use DeleteReplication API.
293
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/DeleteReplication.ts.html |here} to see how to use DeleteReplication API.
284
294
  */
285
295
  deleteReplication(deleteReplicationRequest: requests.DeleteReplicationRequest): Promise<responses.DeleteReplicationResponse>;
286
296
  /**
@@ -293,7 +303,7 @@ export declare class FileStorageClient {
293
303
  * @param DeleteReplicationTargetRequest
294
304
  * @return DeleteReplicationTargetResponse
295
305
  * @throws OciError when an error occurs
296
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/DeleteReplicationTarget.ts.html |here} to see how to use DeleteReplicationTarget API.
306
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/DeleteReplicationTarget.ts.html |here} to see how to use DeleteReplicationTarget API.
297
307
  */
298
308
  deleteReplicationTarget(deleteReplicationTargetRequest: requests.DeleteReplicationTargetRequest): Promise<responses.DeleteReplicationTargetResponse>;
299
309
  /**
@@ -303,7 +313,7 @@ export declare class FileStorageClient {
303
313
  * @param DeleteSnapshotRequest
304
314
  * @return DeleteSnapshotResponse
305
315
  * @throws OciError when an error occurs
306
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/DeleteSnapshot.ts.html |here} to see how to use DeleteSnapshot API.
316
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/DeleteSnapshot.ts.html |here} to see how to use DeleteSnapshot API.
307
317
  */
308
318
  deleteSnapshot(deleteSnapshotRequest: requests.DeleteSnapshotRequest): Promise<responses.DeleteSnapshotResponse>;
309
319
  /**
@@ -313,7 +323,7 @@ export declare class FileStorageClient {
313
323
  * @param EstimateReplicationRequest
314
324
  * @return EstimateReplicationResponse
315
325
  * @throws OciError when an error occurs
316
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/EstimateReplication.ts.html |here} to see how to use EstimateReplication API.
326
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/EstimateReplication.ts.html |here} to see how to use EstimateReplication API.
317
327
  */
318
328
  estimateReplication(estimateReplicationRequest: requests.EstimateReplicationRequest): Promise<responses.EstimateReplicationResponse>;
319
329
  /**
@@ -322,7 +332,7 @@ export declare class FileStorageClient {
322
332
  * @param GetExportRequest
323
333
  * @return GetExportResponse
324
334
  * @throws OciError when an error occurs
325
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/GetExport.ts.html |here} to see how to use GetExport API.
335
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/GetExport.ts.html |here} to see how to use GetExport API.
326
336
  */
327
337
  getExport(getExportRequest: requests.GetExportRequest): Promise<responses.GetExportResponse>;
328
338
  /**
@@ -331,7 +341,7 @@ export declare class FileStorageClient {
331
341
  * @param GetExportSetRequest
332
342
  * @return GetExportSetResponse
333
343
  * @throws OciError when an error occurs
334
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/GetExportSet.ts.html |here} to see how to use GetExportSet API.
344
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/GetExportSet.ts.html |here} to see how to use GetExportSet API.
335
345
  */
336
346
  getExportSet(getExportSetRequest: requests.GetExportSetRequest): Promise<responses.GetExportSetResponse>;
337
347
  /**
@@ -340,7 +350,7 @@ export declare class FileStorageClient {
340
350
  * @param GetFileSystemRequest
341
351
  * @return GetFileSystemResponse
342
352
  * @throws OciError when an error occurs
343
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/GetFileSystem.ts.html |here} to see how to use GetFileSystem API.
353
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/GetFileSystem.ts.html |here} to see how to use GetFileSystem API.
344
354
  */
345
355
  getFileSystem(getFileSystemRequest: requests.GetFileSystemRequest): Promise<responses.GetFileSystemResponse>;
346
356
  /**
@@ -349,7 +359,7 @@ export declare class FileStorageClient {
349
359
  * @param GetMountTargetRequest
350
360
  * @return GetMountTargetResponse
351
361
  * @throws OciError when an error occurs
352
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/GetMountTarget.ts.html |here} to see how to use GetMountTarget API.
362
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/GetMountTarget.ts.html |here} to see how to use GetMountTarget API.
353
363
  */
354
364
  getMountTarget(getMountTargetRequest: requests.GetMountTargetRequest): Promise<responses.GetMountTargetResponse>;
355
365
  /**
@@ -358,7 +368,7 @@ export declare class FileStorageClient {
358
368
  * @param GetReplicationRequest
359
369
  * @return GetReplicationResponse
360
370
  * @throws OciError when an error occurs
361
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/GetReplication.ts.html |here} to see how to use GetReplication API.
371
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/GetReplication.ts.html |here} to see how to use GetReplication API.
362
372
  */
363
373
  getReplication(getReplicationRequest: requests.GetReplicationRequest): Promise<responses.GetReplicationResponse>;
364
374
  /**
@@ -367,7 +377,7 @@ export declare class FileStorageClient {
367
377
  * @param GetReplicationTargetRequest
368
378
  * @return GetReplicationTargetResponse
369
379
  * @throws OciError when an error occurs
370
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/GetReplicationTarget.ts.html |here} to see how to use GetReplicationTarget API.
380
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/GetReplicationTarget.ts.html |here} to see how to use GetReplicationTarget API.
371
381
  */
372
382
  getReplicationTarget(getReplicationTargetRequest: requests.GetReplicationTargetRequest): Promise<responses.GetReplicationTargetResponse>;
373
383
  /**
@@ -376,7 +386,7 @@ export declare class FileStorageClient {
376
386
  * @param GetSnapshotRequest
377
387
  * @return GetSnapshotResponse
378
388
  * @throws OciError when an error occurs
379
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/GetSnapshot.ts.html |here} to see how to use GetSnapshot API.
389
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/GetSnapshot.ts.html |here} to see how to use GetSnapshot API.
380
390
  */
381
391
  getSnapshot(getSnapshotRequest: requests.GetSnapshotRequest): Promise<responses.GetSnapshotResponse>;
382
392
  /**
@@ -386,7 +396,7 @@ export declare class FileStorageClient {
386
396
  * @param ListExportSetsRequest
387
397
  * @return ListExportSetsResponse
388
398
  * @throws OciError when an error occurs
389
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/ListExportSets.ts.html |here} to see how to use ListExportSets API.
399
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/ListExportSets.ts.html |here} to see how to use ListExportSets API.
390
400
  */
391
401
  listExportSets(listExportSetsRequest: requests.ListExportSetsRequest): Promise<responses.ListExportSetsResponse>;
392
402
  /**
@@ -430,7 +440,7 @@ export declare class FileStorageClient {
430
440
  * @param ListExportsRequest
431
441
  * @return ListExportsResponse
432
442
  * @throws OciError when an error occurs
433
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/ListExports.ts.html |here} to see how to use ListExports API.
443
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/ListExports.ts.html |here} to see how to use ListExports API.
434
444
  */
435
445
  listExports(listExportsRequest: requests.ListExportsRequest): Promise<responses.ListExportsResponse>;
436
446
  /**
@@ -472,7 +482,7 @@ export declare class FileStorageClient {
472
482
  * @param ListFileSystemsRequest
473
483
  * @return ListFileSystemsResponse
474
484
  * @throws OciError when an error occurs
475
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/ListFileSystems.ts.html |here} to see how to use ListFileSystems API.
485
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/ListFileSystems.ts.html |here} to see how to use ListFileSystems API.
476
486
  */
477
487
  listFileSystems(listFileSystemsRequest: requests.ListFileSystemsRequest): Promise<responses.ListFileSystemsResponse>;
478
488
  /**
@@ -514,7 +524,7 @@ export declare class FileStorageClient {
514
524
  * @param ListMountTargetsRequest
515
525
  * @return ListMountTargetsResponse
516
526
  * @throws OciError when an error occurs
517
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/ListMountTargets.ts.html |here} to see how to use ListMountTargets API.
527
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/ListMountTargets.ts.html |here} to see how to use ListMountTargets API.
518
528
  */
519
529
  listMountTargets(listMountTargetsRequest: requests.ListMountTargetsRequest): Promise<responses.ListMountTargetsResponse>;
520
530
  /**
@@ -556,7 +566,7 @@ export declare class FileStorageClient {
556
566
  * @param ListReplicationTargetsRequest
557
567
  * @return ListReplicationTargetsResponse
558
568
  * @throws OciError when an error occurs
559
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/ListReplicationTargets.ts.html |here} to see how to use ListReplicationTargets API.
569
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/ListReplicationTargets.ts.html |here} to see how to use ListReplicationTargets API.
560
570
  */
561
571
  listReplicationTargets(listReplicationTargetsRequest: requests.ListReplicationTargetsRequest): Promise<responses.ListReplicationTargetsResponse>;
562
572
  /**
@@ -598,7 +608,7 @@ export declare class FileStorageClient {
598
608
  * @param ListReplicationsRequest
599
609
  * @return ListReplicationsResponse
600
610
  * @throws OciError when an error occurs
601
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/ListReplications.ts.html |here} to see how to use ListReplications API.
611
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/ListReplications.ts.html |here} to see how to use ListReplications API.
602
612
  */
603
613
  listReplications(listReplicationsRequest: requests.ListReplicationsRequest): Promise<responses.ListReplicationsResponse>;
604
614
  /**
@@ -640,7 +650,7 @@ export declare class FileStorageClient {
640
650
  * @param ListSnapshotsRequest
641
651
  * @return ListSnapshotsResponse
642
652
  * @throws OciError when an error occurs
643
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/ListSnapshots.ts.html |here} to see how to use ListSnapshots API.
653
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/ListSnapshots.ts.html |here} to see how to use ListSnapshots API.
644
654
  */
645
655
  listSnapshots(listSnapshotsRequest: requests.ListSnapshotsRequest): Promise<responses.ListSnapshotsResponse>;
646
656
  /**
@@ -681,7 +691,7 @@ export declare class FileStorageClient {
681
691
  * @param UpdateExportRequest
682
692
  * @return UpdateExportResponse
683
693
  * @throws OciError when an error occurs
684
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/UpdateExport.ts.html |here} to see how to use UpdateExport API.
694
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/UpdateExport.ts.html |here} to see how to use UpdateExport API.
685
695
  */
686
696
  updateExport(updateExportRequest: requests.UpdateExportRequest): Promise<responses.UpdateExportResponse>;
687
697
  /**
@@ -690,7 +700,7 @@ export declare class FileStorageClient {
690
700
  * @param UpdateExportSetRequest
691
701
  * @return UpdateExportSetResponse
692
702
  * @throws OciError when an error occurs
693
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/UpdateExportSet.ts.html |here} to see how to use UpdateExportSet API.
703
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/UpdateExportSet.ts.html |here} to see how to use UpdateExportSet API.
694
704
  */
695
705
  updateExportSet(updateExportSetRequest: requests.UpdateExportSetRequest): Promise<responses.UpdateExportSetResponse>;
696
706
  /**
@@ -701,7 +711,7 @@ export declare class FileStorageClient {
701
711
  * @param UpdateFileSystemRequest
702
712
  * @return UpdateFileSystemResponse
703
713
  * @throws OciError when an error occurs
704
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/UpdateFileSystem.ts.html |here} to see how to use UpdateFileSystem API.
714
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/UpdateFileSystem.ts.html |here} to see how to use UpdateFileSystem API.
705
715
  */
706
716
  updateFileSystem(updateFileSystemRequest: requests.UpdateFileSystemRequest): Promise<responses.UpdateFileSystemResponse>;
707
717
  /**
@@ -710,7 +720,7 @@ export declare class FileStorageClient {
710
720
  * @param UpdateMountTargetRequest
711
721
  * @return UpdateMountTargetResponse
712
722
  * @throws OciError when an error occurs
713
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/UpdateMountTarget.ts.html |here} to see how to use UpdateMountTarget API.
723
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/UpdateMountTarget.ts.html |here} to see how to use UpdateMountTarget API.
714
724
  */
715
725
  updateMountTarget(updateMountTargetRequest: requests.UpdateMountTargetRequest): Promise<responses.UpdateMountTargetResponse>;
716
726
  /**
@@ -720,7 +730,7 @@ export declare class FileStorageClient {
720
730
  * @param UpdateReplicationRequest
721
731
  * @return UpdateReplicationResponse
722
732
  * @throws OciError when an error occurs
723
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/UpdateReplication.ts.html |here} to see how to use UpdateReplication API.
733
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/UpdateReplication.ts.html |here} to see how to use UpdateReplication API.
724
734
  */
725
735
  updateReplication(updateReplicationRequest: requests.UpdateReplicationRequest): Promise<responses.UpdateReplicationResponse>;
726
736
  /**
@@ -729,7 +739,7 @@ export declare class FileStorageClient {
729
739
  * @param UpdateSnapshotRequest
730
740
  * @return UpdateSnapshotResponse
731
741
  * @throws OciError when an error occurs
732
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.56.0/filestorage/UpdateSnapshot.ts.html |here} to see how to use UpdateSnapshot API.
742
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/filestorage/UpdateSnapshot.ts.html |here} to see how to use UpdateSnapshot API.
733
743
  */
734
744
  updateSnapshot(updateSnapshotRequest: requests.UpdateSnapshotRequest): Promise<responses.UpdateSnapshotResponse>;
735
745
  }