oci-filestorage 2.83.0 → 2.84.2

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 (54) hide show
  1. package/lib/client.d.ts +54 -50
  2. package/lib/client.js +56 -50
  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-filesystem-snapshot-policy-compartment-request.d.ts +1 -1
  6. package/lib/request/change-mount-target-compartment-request.d.ts +1 -1
  7. package/lib/request/change-outbound-connector-compartment-request.d.ts +1 -1
  8. package/lib/request/change-replication-compartment-request.d.ts +1 -1
  9. package/lib/request/create-export-request.d.ts +1 -1
  10. package/lib/request/create-file-system-request.d.ts +1 -1
  11. package/lib/request/create-filesystem-snapshot-policy-request.d.ts +1 -1
  12. package/lib/request/create-mount-target-request.d.ts +1 -1
  13. package/lib/request/create-outbound-connector-request.d.ts +1 -1
  14. package/lib/request/create-replication-request.d.ts +1 -1
  15. package/lib/request/create-snapshot-request.d.ts +1 -1
  16. package/lib/request/delete-export-request.d.ts +1 -1
  17. package/lib/request/delete-file-system-request.d.ts +1 -1
  18. package/lib/request/delete-filesystem-snapshot-policy-request.d.ts +1 -1
  19. package/lib/request/delete-mount-target-request.d.ts +1 -1
  20. package/lib/request/delete-outbound-connector-request.d.ts +1 -1
  21. package/lib/request/delete-replication-request.d.ts +1 -1
  22. package/lib/request/delete-replication-target-request.d.ts +1 -1
  23. package/lib/request/delete-snapshot-request.d.ts +1 -1
  24. package/lib/request/estimate-replication-request.d.ts +1 -1
  25. package/lib/request/get-export-request.d.ts +1 -1
  26. package/lib/request/get-export-set-request.d.ts +1 -1
  27. package/lib/request/get-file-system-request.d.ts +1 -1
  28. package/lib/request/get-filesystem-snapshot-policy-request.d.ts +1 -1
  29. package/lib/request/get-mount-target-request.d.ts +1 -1
  30. package/lib/request/get-outbound-connector-request.d.ts +1 -1
  31. package/lib/request/get-replication-request.d.ts +1 -1
  32. package/lib/request/get-replication-target-request.d.ts +1 -1
  33. package/lib/request/get-snapshot-request.d.ts +1 -1
  34. package/lib/request/list-export-sets-request.d.ts +1 -1
  35. package/lib/request/list-exports-request.d.ts +1 -1
  36. package/lib/request/list-file-systems-request.d.ts +1 -1
  37. package/lib/request/list-filesystem-snapshot-policies-request.d.ts +1 -1
  38. package/lib/request/list-mount-targets-request.d.ts +1 -1
  39. package/lib/request/list-outbound-connectors-request.d.ts +1 -1
  40. package/lib/request/list-replication-targets-request.d.ts +1 -1
  41. package/lib/request/list-replications-request.d.ts +1 -1
  42. package/lib/request/list-snapshots-request.d.ts +1 -1
  43. package/lib/request/pause-filesystem-snapshot-policy-request.d.ts +1 -1
  44. package/lib/request/unpause-filesystem-snapshot-policy-request.d.ts +1 -1
  45. package/lib/request/update-export-request.d.ts +1 -1
  46. package/lib/request/update-export-set-request.d.ts +1 -1
  47. package/lib/request/update-file-system-request.d.ts +1 -1
  48. package/lib/request/update-filesystem-snapshot-policy-request.d.ts +1 -1
  49. package/lib/request/update-mount-target-request.d.ts +1 -1
  50. package/lib/request/update-outbound-connector-request.d.ts +1 -1
  51. package/lib/request/update-replication-request.d.ts +1 -1
  52. package/lib/request/update-snapshot-request.d.ts +1 -1
  53. package/lib/request/validate-key-tabs-request.d.ts +1 -1
  54. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -193,6 +193,12 @@ class FileStorageClient {
193
193
  this._circuitBreaker.shutdown();
194
194
  }
195
195
  }
196
+ /**
197
+ * Close the client once it is no longer needed
198
+ */
199
+ close() {
200
+ this.shutdownCircuitBreaker();
201
+ }
196
202
  /**
197
203
  * 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)
198
204
  *
@@ -200,7 +206,7 @@ class FileStorageClient {
200
206
  * @param ChangeFileSystemCompartmentRequest
201
207
  * @return ChangeFileSystemCompartmentResponse
202
208
  * @throws OciError when an error occurs
203
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ChangeFileSystemCompartment.ts.html |here} to see how to use ChangeFileSystemCompartment API.
209
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ChangeFileSystemCompartment.ts.html |here} to see how to use ChangeFileSystemCompartment API.
204
210
  */
205
211
  changeFileSystemCompartment(changeFileSystemCompartmentRequest) {
206
212
  return __awaiter(this, void 0, void 0, function* () {
@@ -257,7 +263,7 @@ class FileStorageClient {
257
263
  * @param ChangeFilesystemSnapshotPolicyCompartmentRequest
258
264
  * @return ChangeFilesystemSnapshotPolicyCompartmentResponse
259
265
  * @throws OciError when an error occurs
260
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ChangeFilesystemSnapshotPolicyCompartment.ts.html |here} to see how to use ChangeFilesystemSnapshotPolicyCompartment API.
266
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ChangeFilesystemSnapshotPolicyCompartment.ts.html |here} to see how to use ChangeFilesystemSnapshotPolicyCompartment API.
261
267
  */
262
268
  changeFilesystemSnapshotPolicyCompartment(changeFilesystemSnapshotPolicyCompartmentRequest) {
263
269
  return __awaiter(this, void 0, void 0, function* () {
@@ -314,7 +320,7 @@ class FileStorageClient {
314
320
  * @param ChangeMountTargetCompartmentRequest
315
321
  * @return ChangeMountTargetCompartmentResponse
316
322
  * @throws OciError when an error occurs
317
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ChangeMountTargetCompartment.ts.html |here} to see how to use ChangeMountTargetCompartment API.
323
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ChangeMountTargetCompartment.ts.html |here} to see how to use ChangeMountTargetCompartment API.
318
324
  */
319
325
  changeMountTargetCompartment(changeMountTargetCompartmentRequest) {
320
326
  return __awaiter(this, void 0, void 0, function* () {
@@ -373,7 +379,7 @@ class FileStorageClient {
373
379
  * @param ChangeOutboundConnectorCompartmentRequest
374
380
  * @return ChangeOutboundConnectorCompartmentResponse
375
381
  * @throws OciError when an error occurs
376
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ChangeOutboundConnectorCompartment.ts.html |here} to see how to use ChangeOutboundConnectorCompartment API.
382
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ChangeOutboundConnectorCompartment.ts.html |here} to see how to use ChangeOutboundConnectorCompartment API.
377
383
  */
378
384
  changeOutboundConnectorCompartment(changeOutboundConnectorCompartmentRequest) {
379
385
  return __awaiter(this, void 0, void 0, function* () {
@@ -431,7 +437,7 @@ class FileStorageClient {
431
437
  * @param ChangeReplicationCompartmentRequest
432
438
  * @return ChangeReplicationCompartmentResponse
433
439
  * @throws OciError when an error occurs
434
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ChangeReplicationCompartment.ts.html |here} to see how to use ChangeReplicationCompartment API.
440
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ChangeReplicationCompartment.ts.html |here} to see how to use ChangeReplicationCompartment API.
435
441
  */
436
442
  changeReplicationCompartment(changeReplicationCompartmentRequest) {
437
443
  return __awaiter(this, void 0, void 0, function* () {
@@ -489,7 +495,7 @@ class FileStorageClient {
489
495
  * @param CreateExportRequest
490
496
  * @return CreateExportResponse
491
497
  * @throws OciError when an error occurs
492
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/CreateExport.ts.html |here} to see how to use CreateExport API.
498
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/CreateExport.ts.html |here} to see how to use CreateExport API.
493
499
  */
494
500
  createExport(createExportRequest) {
495
501
  return __awaiter(this, void 0, void 0, function* () {
@@ -581,7 +587,7 @@ class FileStorageClient {
581
587
  * @param CreateFileSystemRequest
582
588
  * @return CreateFileSystemResponse
583
589
  * @throws OciError when an error occurs
584
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/CreateFileSystem.ts.html |here} to see how to use CreateFileSystem API.
590
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/CreateFileSystem.ts.html |here} to see how to use CreateFileSystem API.
585
591
  */
586
592
  createFileSystem(createFileSystemRequest) {
587
593
  return __awaiter(this, void 0, void 0, function* () {
@@ -649,7 +655,7 @@ class FileStorageClient {
649
655
  * @param CreateFilesystemSnapshotPolicyRequest
650
656
  * @return CreateFilesystemSnapshotPolicyResponse
651
657
  * @throws OciError when an error occurs
652
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/CreateFilesystemSnapshotPolicy.ts.html |here} to see how to use CreateFilesystemSnapshotPolicy API.
658
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/CreateFilesystemSnapshotPolicy.ts.html |here} to see how to use CreateFilesystemSnapshotPolicy API.
653
659
  */
654
660
  createFilesystemSnapshotPolicy(createFilesystemSnapshotPolicyRequest) {
655
661
  return __awaiter(this, void 0, void 0, function* () {
@@ -744,7 +750,7 @@ class FileStorageClient {
744
750
  * @param CreateMountTargetRequest
745
751
  * @return CreateMountTargetResponse
746
752
  * @throws OciError when an error occurs
747
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/CreateMountTarget.ts.html |here} to see how to use CreateMountTarget API.
753
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/CreateMountTarget.ts.html |here} to see how to use CreateMountTarget API.
748
754
  */
749
755
  createMountTarget(createMountTargetRequest) {
750
756
  return __awaiter(this, void 0, void 0, function* () {
@@ -827,7 +833,7 @@ class FileStorageClient {
827
833
  * @param CreateOutboundConnectorRequest
828
834
  * @return CreateOutboundConnectorResponse
829
835
  * @throws OciError when an error occurs
830
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/CreateOutboundConnector.ts.html |here} to see how to use CreateOutboundConnector API.
836
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/CreateOutboundConnector.ts.html |here} to see how to use CreateOutboundConnector API.
831
837
  */
832
838
  createOutboundConnector(createOutboundConnectorRequest) {
833
839
  return __awaiter(this, void 0, void 0, function* () {
@@ -917,7 +923,7 @@ class FileStorageClient {
917
923
  * @param CreateReplicationRequest
918
924
  * @return CreateReplicationResponse
919
925
  * @throws OciError when an error occurs
920
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/CreateReplication.ts.html |here} to see how to use CreateReplication API.
926
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/CreateReplication.ts.html |here} to see how to use CreateReplication API.
921
927
  */
922
928
  createReplication(createReplicationRequest) {
923
929
  return __awaiter(this, void 0, void 0, function* () {
@@ -982,7 +988,7 @@ class FileStorageClient {
982
988
  * @param CreateSnapshotRequest
983
989
  * @return CreateSnapshotResponse
984
990
  * @throws OciError when an error occurs
985
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/CreateSnapshot.ts.html |here} to see how to use CreateSnapshot API.
991
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/CreateSnapshot.ts.html |here} to see how to use CreateSnapshot API.
986
992
  */
987
993
  createSnapshot(createSnapshotRequest) {
988
994
  return __awaiter(this, void 0, void 0, function* () {
@@ -1046,7 +1052,7 @@ class FileStorageClient {
1046
1052
  * @param DeleteExportRequest
1047
1053
  * @return DeleteExportResponse
1048
1054
  * @throws OciError when an error occurs
1049
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/DeleteExport.ts.html |here} to see how to use DeleteExport API.
1055
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteExport.ts.html |here} to see how to use DeleteExport API.
1050
1056
  */
1051
1057
  deleteExport(deleteExportRequest) {
1052
1058
  return __awaiter(this, void 0, void 0, function* () {
@@ -1104,7 +1110,7 @@ class FileStorageClient {
1104
1110
  * @param DeleteFileSystemRequest
1105
1111
  * @return DeleteFileSystemResponse
1106
1112
  * @throws OciError when an error occurs
1107
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/DeleteFileSystem.ts.html |here} to see how to use DeleteFileSystem API.
1113
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteFileSystem.ts.html |here} to see how to use DeleteFileSystem API.
1108
1114
  */
1109
1115
  deleteFileSystem(deleteFileSystemRequest) {
1110
1116
  return __awaiter(this, void 0, void 0, function* () {
@@ -1160,7 +1166,7 @@ class FileStorageClient {
1160
1166
  * @param DeleteFilesystemSnapshotPolicyRequest
1161
1167
  * @return DeleteFilesystemSnapshotPolicyResponse
1162
1168
  * @throws OciError when an error occurs
1163
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/DeleteFilesystemSnapshotPolicy.ts.html |here} to see how to use DeleteFilesystemSnapshotPolicy API.
1169
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteFilesystemSnapshotPolicy.ts.html |here} to see how to use DeleteFilesystemSnapshotPolicy API.
1164
1170
  */
1165
1171
  deleteFilesystemSnapshotPolicy(deleteFilesystemSnapshotPolicyRequest) {
1166
1172
  return __awaiter(this, void 0, void 0, function* () {
@@ -1217,7 +1223,7 @@ class FileStorageClient {
1217
1223
  * @param DeleteMountTargetRequest
1218
1224
  * @return DeleteMountTargetResponse
1219
1225
  * @throws OciError when an error occurs
1220
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/DeleteMountTarget.ts.html |here} to see how to use DeleteMountTarget API.
1226
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteMountTarget.ts.html |here} to see how to use DeleteMountTarget API.
1221
1227
  */
1222
1228
  deleteMountTarget(deleteMountTargetRequest) {
1223
1229
  return __awaiter(this, void 0, void 0, function* () {
@@ -1273,7 +1279,7 @@ class FileStorageClient {
1273
1279
  * @param DeleteOutboundConnectorRequest
1274
1280
  * @return DeleteOutboundConnectorResponse
1275
1281
  * @throws OciError when an error occurs
1276
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/DeleteOutboundConnector.ts.html |here} to see how to use DeleteOutboundConnector API.
1282
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteOutboundConnector.ts.html |here} to see how to use DeleteOutboundConnector API.
1277
1283
  */
1278
1284
  deleteOutboundConnector(deleteOutboundConnectorRequest) {
1279
1285
  return __awaiter(this, void 0, void 0, function* () {
@@ -1329,7 +1335,7 @@ class FileStorageClient {
1329
1335
  * @param DeleteReplicationRequest
1330
1336
  * @return DeleteReplicationResponse
1331
1337
  * @throws OciError when an error occurs
1332
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/DeleteReplication.ts.html |here} to see how to use DeleteReplication API.
1338
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteReplication.ts.html |here} to see how to use DeleteReplication API.
1333
1339
  */
1334
1340
  deleteReplication(deleteReplicationRequest) {
1335
1341
  return __awaiter(this, void 0, void 0, function* () {
@@ -1390,7 +1396,7 @@ class FileStorageClient {
1390
1396
  * @param DeleteReplicationTargetRequest
1391
1397
  * @return DeleteReplicationTargetResponse
1392
1398
  * @throws OciError when an error occurs
1393
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/DeleteReplicationTarget.ts.html |here} to see how to use DeleteReplicationTarget API.
1399
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteReplicationTarget.ts.html |here} to see how to use DeleteReplicationTarget API.
1394
1400
  */
1395
1401
  deleteReplicationTarget(deleteReplicationTargetRequest) {
1396
1402
  return __awaiter(this, void 0, void 0, function* () {
@@ -1446,7 +1452,7 @@ class FileStorageClient {
1446
1452
  * @param DeleteSnapshotRequest
1447
1453
  * @return DeleteSnapshotResponse
1448
1454
  * @throws OciError when an error occurs
1449
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/DeleteSnapshot.ts.html |here} to see how to use DeleteSnapshot API.
1455
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteSnapshot.ts.html |here} to see how to use DeleteSnapshot API.
1450
1456
  */
1451
1457
  deleteSnapshot(deleteSnapshotRequest) {
1452
1458
  return __awaiter(this, void 0, void 0, function* () {
@@ -1502,7 +1508,7 @@ class FileStorageClient {
1502
1508
  * @param EstimateReplicationRequest
1503
1509
  * @return EstimateReplicationResponse
1504
1510
  * @throws OciError when an error occurs
1505
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/EstimateReplication.ts.html |here} to see how to use EstimateReplication API.
1511
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/EstimateReplication.ts.html |here} to see how to use EstimateReplication API.
1506
1512
  */
1507
1513
  estimateReplication(estimateReplicationRequest) {
1508
1514
  return __awaiter(this, void 0, void 0, function* () {
@@ -1568,7 +1574,7 @@ class FileStorageClient {
1568
1574
  * @param GetExportRequest
1569
1575
  * @return GetExportResponse
1570
1576
  * @throws OciError when an error occurs
1571
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/GetExport.ts.html |here} to see how to use GetExport API.
1577
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetExport.ts.html |here} to see how to use GetExport API.
1572
1578
  */
1573
1579
  getExport(getExportRequest) {
1574
1580
  return __awaiter(this, void 0, void 0, function* () {
@@ -1631,7 +1637,7 @@ class FileStorageClient {
1631
1637
  * @param GetExportSetRequest
1632
1638
  * @return GetExportSetResponse
1633
1639
  * @throws OciError when an error occurs
1634
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/GetExportSet.ts.html |here} to see how to use GetExportSet API.
1640
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetExportSet.ts.html |here} to see how to use GetExportSet API.
1635
1641
  */
1636
1642
  getExportSet(getExportSetRequest) {
1637
1643
  return __awaiter(this, void 0, void 0, function* () {
@@ -1694,7 +1700,7 @@ class FileStorageClient {
1694
1700
  * @param GetFileSystemRequest
1695
1701
  * @return GetFileSystemResponse
1696
1702
  * @throws OciError when an error occurs
1697
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/GetFileSystem.ts.html |here} to see how to use GetFileSystem API.
1703
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetFileSystem.ts.html |here} to see how to use GetFileSystem API.
1698
1704
  */
1699
1705
  getFileSystem(getFileSystemRequest) {
1700
1706
  return __awaiter(this, void 0, void 0, function* () {
@@ -1757,7 +1763,7 @@ class FileStorageClient {
1757
1763
  * @param GetFilesystemSnapshotPolicyRequest
1758
1764
  * @return GetFilesystemSnapshotPolicyResponse
1759
1765
  * @throws OciError when an error occurs
1760
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/GetFilesystemSnapshotPolicy.ts.html |here} to see how to use GetFilesystemSnapshotPolicy API.
1766
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetFilesystemSnapshotPolicy.ts.html |here} to see how to use GetFilesystemSnapshotPolicy API.
1761
1767
  */
1762
1768
  getFilesystemSnapshotPolicy(getFilesystemSnapshotPolicyRequest) {
1763
1769
  return __awaiter(this, void 0, void 0, function* () {
@@ -1820,7 +1826,7 @@ class FileStorageClient {
1820
1826
  * @param GetMountTargetRequest
1821
1827
  * @return GetMountTargetResponse
1822
1828
  * @throws OciError when an error occurs
1823
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/GetMountTarget.ts.html |here} to see how to use GetMountTarget API.
1829
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetMountTarget.ts.html |here} to see how to use GetMountTarget API.
1824
1830
  */
1825
1831
  getMountTarget(getMountTargetRequest) {
1826
1832
  return __awaiter(this, void 0, void 0, function* () {
@@ -1883,7 +1889,7 @@ class FileStorageClient {
1883
1889
  * @param GetOutboundConnectorRequest
1884
1890
  * @return GetOutboundConnectorResponse
1885
1891
  * @throws OciError when an error occurs
1886
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/GetOutboundConnector.ts.html |here} to see how to use GetOutboundConnector API.
1892
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetOutboundConnector.ts.html |here} to see how to use GetOutboundConnector API.
1887
1893
  */
1888
1894
  getOutboundConnector(getOutboundConnectorRequest) {
1889
1895
  return __awaiter(this, void 0, void 0, function* () {
@@ -1946,7 +1952,7 @@ class FileStorageClient {
1946
1952
  * @param GetReplicationRequest
1947
1953
  * @return GetReplicationResponse
1948
1954
  * @throws OciError when an error occurs
1949
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/GetReplication.ts.html |here} to see how to use GetReplication API.
1955
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetReplication.ts.html |here} to see how to use GetReplication API.
1950
1956
  */
1951
1957
  getReplication(getReplicationRequest) {
1952
1958
  return __awaiter(this, void 0, void 0, function* () {
@@ -2009,7 +2015,7 @@ class FileStorageClient {
2009
2015
  * @param GetReplicationTargetRequest
2010
2016
  * @return GetReplicationTargetResponse
2011
2017
  * @throws OciError when an error occurs
2012
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/GetReplicationTarget.ts.html |here} to see how to use GetReplicationTarget API.
2018
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetReplicationTarget.ts.html |here} to see how to use GetReplicationTarget API.
2013
2019
  */
2014
2020
  getReplicationTarget(getReplicationTargetRequest) {
2015
2021
  return __awaiter(this, void 0, void 0, function* () {
@@ -2072,7 +2078,7 @@ class FileStorageClient {
2072
2078
  * @param GetSnapshotRequest
2073
2079
  * @return GetSnapshotResponse
2074
2080
  * @throws OciError when an error occurs
2075
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/GetSnapshot.ts.html |here} to see how to use GetSnapshot API.
2081
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetSnapshot.ts.html |here} to see how to use GetSnapshot API.
2076
2082
  */
2077
2083
  getSnapshot(getSnapshotRequest) {
2078
2084
  return __awaiter(this, void 0, void 0, function* () {
@@ -2136,7 +2142,7 @@ class FileStorageClient {
2136
2142
  * @param ListExportSetsRequest
2137
2143
  * @return ListExportSetsResponse
2138
2144
  * @throws OciError when an error occurs
2139
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ListExportSets.ts.html |here} to see how to use ListExportSets API.
2145
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListExportSets.ts.html |here} to see how to use ListExportSets API.
2140
2146
  */
2141
2147
  listExportSets(listExportSetsRequest) {
2142
2148
  return __awaiter(this, void 0, void 0, function* () {
@@ -2250,7 +2256,7 @@ class FileStorageClient {
2250
2256
  * @param ListExportsRequest
2251
2257
  * @return ListExportsResponse
2252
2258
  * @throws OciError when an error occurs
2253
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ListExports.ts.html |here} to see how to use ListExports API.
2259
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListExports.ts.html |here} to see how to use ListExports API.
2254
2260
  */
2255
2261
  listExports(listExportsRequest) {
2256
2262
  return __awaiter(this, void 0, void 0, function* () {
@@ -2363,7 +2369,7 @@ class FileStorageClient {
2363
2369
  * @param ListFileSystemsRequest
2364
2370
  * @return ListFileSystemsResponse
2365
2371
  * @throws OciError when an error occurs
2366
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ListFileSystems.ts.html |here} to see how to use ListFileSystems API.
2372
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListFileSystems.ts.html |here} to see how to use ListFileSystems API.
2367
2373
  */
2368
2374
  listFileSystems(listFileSystemsRequest) {
2369
2375
  return __awaiter(this, void 0, void 0, function* () {
@@ -2478,7 +2484,7 @@ class FileStorageClient {
2478
2484
  * @param ListFilesystemSnapshotPoliciesRequest
2479
2485
  * @return ListFilesystemSnapshotPoliciesResponse
2480
2486
  * @throws OciError when an error occurs
2481
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ListFilesystemSnapshotPolicies.ts.html |here} to see how to use ListFilesystemSnapshotPolicies API.
2487
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListFilesystemSnapshotPolicies.ts.html |here} to see how to use ListFilesystemSnapshotPolicies API.
2482
2488
  */
2483
2489
  listFilesystemSnapshotPolicies(listFilesystemSnapshotPoliciesRequest) {
2484
2490
  return __awaiter(this, void 0, void 0, function* () {
@@ -2590,7 +2596,7 @@ class FileStorageClient {
2590
2596
  * @param ListMountTargetsRequest
2591
2597
  * @return ListMountTargetsResponse
2592
2598
  * @throws OciError when an error occurs
2593
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ListMountTargets.ts.html |here} to see how to use ListMountTargets API.
2599
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListMountTargets.ts.html |here} to see how to use ListMountTargets API.
2594
2600
  */
2595
2601
  listMountTargets(listMountTargetsRequest) {
2596
2602
  return __awaiter(this, void 0, void 0, function* () {
@@ -2703,7 +2709,7 @@ class FileStorageClient {
2703
2709
  * @param ListOutboundConnectorsRequest
2704
2710
  * @return ListOutboundConnectorsResponse
2705
2711
  * @throws OciError when an error occurs
2706
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ListOutboundConnectors.ts.html |here} to see how to use ListOutboundConnectors API.
2712
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListOutboundConnectors.ts.html |here} to see how to use ListOutboundConnectors API.
2707
2713
  */
2708
2714
  listOutboundConnectors(listOutboundConnectorsRequest) {
2709
2715
  return __awaiter(this, void 0, void 0, function* () {
@@ -2815,7 +2821,7 @@ class FileStorageClient {
2815
2821
  * @param ListReplicationTargetsRequest
2816
2822
  * @return ListReplicationTargetsResponse
2817
2823
  * @throws OciError when an error occurs
2818
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ListReplicationTargets.ts.html |here} to see how to use ListReplicationTargets API.
2824
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListReplicationTargets.ts.html |here} to see how to use ListReplicationTargets API.
2819
2825
  */
2820
2826
  listReplicationTargets(listReplicationTargetsRequest) {
2821
2827
  return __awaiter(this, void 0, void 0, function* () {
@@ -2927,7 +2933,7 @@ class FileStorageClient {
2927
2933
  * @param ListReplicationsRequest
2928
2934
  * @return ListReplicationsResponse
2929
2935
  * @throws OciError when an error occurs
2930
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ListReplications.ts.html |here} to see how to use ListReplications API.
2936
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListReplications.ts.html |here} to see how to use ListReplications API.
2931
2937
  */
2932
2938
  listReplications(listReplicationsRequest) {
2933
2939
  return __awaiter(this, void 0, void 0, function* () {
@@ -3046,7 +3052,7 @@ class FileStorageClient {
3046
3052
  * @param ListSnapshotsRequest
3047
3053
  * @return ListSnapshotsResponse
3048
3054
  * @throws OciError when an error occurs
3049
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ListSnapshots.ts.html |here} to see how to use ListSnapshots API.
3055
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListSnapshots.ts.html |here} to see how to use ListSnapshots API.
3050
3056
  */
3051
3057
  listSnapshots(listSnapshotsRequest) {
3052
3058
  return __awaiter(this, void 0, void 0, function* () {
@@ -3162,7 +3168,7 @@ class FileStorageClient {
3162
3168
  * @param PauseFilesystemSnapshotPolicyRequest
3163
3169
  * @return PauseFilesystemSnapshotPolicyResponse
3164
3170
  * @throws OciError when an error occurs
3165
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/PauseFilesystemSnapshotPolicy.ts.html |here} to see how to use PauseFilesystemSnapshotPolicy API.
3171
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/PauseFilesystemSnapshotPolicy.ts.html |here} to see how to use PauseFilesystemSnapshotPolicy API.
3166
3172
  */
3167
3173
  pauseFilesystemSnapshotPolicy(pauseFilesystemSnapshotPolicyRequest) {
3168
3174
  return __awaiter(this, void 0, void 0, function* () {
@@ -3231,7 +3237,7 @@ class FileStorageClient {
3231
3237
  * @param UnpauseFilesystemSnapshotPolicyRequest
3232
3238
  * @return UnpauseFilesystemSnapshotPolicyResponse
3233
3239
  * @throws OciError when an error occurs
3234
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/UnpauseFilesystemSnapshotPolicy.ts.html |here} to see how to use UnpauseFilesystemSnapshotPolicy API.
3240
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UnpauseFilesystemSnapshotPolicy.ts.html |here} to see how to use UnpauseFilesystemSnapshotPolicy API.
3235
3241
  */
3236
3242
  unpauseFilesystemSnapshotPolicy(unpauseFilesystemSnapshotPolicyRequest) {
3237
3243
  return __awaiter(this, void 0, void 0, function* () {
@@ -3295,7 +3301,7 @@ class FileStorageClient {
3295
3301
  * @param UpdateExportRequest
3296
3302
  * @return UpdateExportResponse
3297
3303
  * @throws OciError when an error occurs
3298
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/UpdateExport.ts.html |here} to see how to use UpdateExport API.
3304
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateExport.ts.html |here} to see how to use UpdateExport API.
3299
3305
  */
3300
3306
  updateExport(updateExportRequest) {
3301
3307
  return __awaiter(this, void 0, void 0, function* () {
@@ -3360,7 +3366,7 @@ class FileStorageClient {
3360
3366
  * @param UpdateExportSetRequest
3361
3367
  * @return UpdateExportSetResponse
3362
3368
  * @throws OciError when an error occurs
3363
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/UpdateExportSet.ts.html |here} to see how to use UpdateExportSet API.
3369
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateExportSet.ts.html |here} to see how to use UpdateExportSet API.
3364
3370
  */
3365
3371
  updateExportSet(updateExportSetRequest) {
3366
3372
  return __awaiter(this, void 0, void 0, function* () {
@@ -3427,7 +3433,7 @@ class FileStorageClient {
3427
3433
  * @param UpdateFileSystemRequest
3428
3434
  * @return UpdateFileSystemResponse
3429
3435
  * @throws OciError when an error occurs
3430
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/UpdateFileSystem.ts.html |here} to see how to use UpdateFileSystem API.
3436
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateFileSystem.ts.html |here} to see how to use UpdateFileSystem API.
3431
3437
  */
3432
3438
  updateFileSystem(updateFileSystemRequest) {
3433
3439
  return __awaiter(this, void 0, void 0, function* () {
@@ -3492,7 +3498,7 @@ class FileStorageClient {
3492
3498
  * @param UpdateFilesystemSnapshotPolicyRequest
3493
3499
  * @return UpdateFilesystemSnapshotPolicyResponse
3494
3500
  * @throws OciError when an error occurs
3495
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/UpdateFilesystemSnapshotPolicy.ts.html |here} to see how to use UpdateFilesystemSnapshotPolicy API.
3501
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateFilesystemSnapshotPolicy.ts.html |here} to see how to use UpdateFilesystemSnapshotPolicy API.
3496
3502
  */
3497
3503
  updateFilesystemSnapshotPolicy(updateFilesystemSnapshotPolicyRequest) {
3498
3504
  return __awaiter(this, void 0, void 0, function* () {
@@ -3557,7 +3563,7 @@ class FileStorageClient {
3557
3563
  * @param UpdateMountTargetRequest
3558
3564
  * @return UpdateMountTargetResponse
3559
3565
  * @throws OciError when an error occurs
3560
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/UpdateMountTarget.ts.html |here} to see how to use UpdateMountTarget API.
3566
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateMountTarget.ts.html |here} to see how to use UpdateMountTarget API.
3561
3567
  */
3562
3568
  updateMountTarget(updateMountTargetRequest) {
3563
3569
  return __awaiter(this, void 0, void 0, function* () {
@@ -3622,7 +3628,7 @@ class FileStorageClient {
3622
3628
  * @param UpdateOutboundConnectorRequest
3623
3629
  * @return UpdateOutboundConnectorResponse
3624
3630
  * @throws OciError when an error occurs
3625
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/UpdateOutboundConnector.ts.html |here} to see how to use UpdateOutboundConnector API.
3631
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateOutboundConnector.ts.html |here} to see how to use UpdateOutboundConnector API.
3626
3632
  */
3627
3633
  updateOutboundConnector(updateOutboundConnectorRequest) {
3628
3634
  return __awaiter(this, void 0, void 0, function* () {
@@ -3688,7 +3694,7 @@ class FileStorageClient {
3688
3694
  * @param UpdateReplicationRequest
3689
3695
  * @return UpdateReplicationResponse
3690
3696
  * @throws OciError when an error occurs
3691
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/UpdateReplication.ts.html |here} to see how to use UpdateReplication API.
3697
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateReplication.ts.html |here} to see how to use UpdateReplication API.
3692
3698
  */
3693
3699
  updateReplication(updateReplicationRequest) {
3694
3700
  return __awaiter(this, void 0, void 0, function* () {
@@ -3753,7 +3759,7 @@ class FileStorageClient {
3753
3759
  * @param UpdateSnapshotRequest
3754
3760
  * @return UpdateSnapshotResponse
3755
3761
  * @throws OciError when an error occurs
3756
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/UpdateSnapshot.ts.html |here} to see how to use UpdateSnapshot API.
3762
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateSnapshot.ts.html |here} to see how to use UpdateSnapshot API.
3757
3763
  */
3758
3764
  updateSnapshot(updateSnapshotRequest) {
3759
3765
  return __awaiter(this, void 0, void 0, function* () {
@@ -3821,7 +3827,7 @@ class FileStorageClient {
3821
3827
  * @param ValidateKeyTabsRequest
3822
3828
  * @return ValidateKeyTabsResponse
3823
3829
  * @throws OciError when an error occurs
3824
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.83.0/filestorage/ValidateKeyTabs.ts.html |here} to see how to use ValidateKeyTabs API.
3830
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ValidateKeyTabs.ts.html |here} to see how to use ValidateKeyTabs API.
3825
3831
  */
3826
3832
  validateKeyTabs(validateKeyTabsRequest) {
3827
3833
  return __awaiter(this, void 0, void 0, function* () {