oci-filestorage 2.66.0 → 2.68.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 +51 -50
- package/lib/client.js +55 -51
- package/lib/client.js.map +1 -1
- package/lib/request/change-file-system-compartment-request.d.ts +1 -1
- package/lib/request/change-filesystem-snapshot-policy-compartment-request.d.ts +1 -1
- package/lib/request/change-mount-target-compartment-request.d.ts +1 -1
- package/lib/request/change-outbound-connector-compartment-request.d.ts +1 -1
- package/lib/request/change-replication-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-filesystem-snapshot-policy-request.d.ts +1 -1
- package/lib/request/create-mount-target-request.d.ts +1 -1
- package/lib/request/create-outbound-connector-request.d.ts +1 -1
- package/lib/request/create-replication-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-filesystem-snapshot-policy-request.d.ts +1 -1
- package/lib/request/delete-mount-target-request.d.ts +1 -1
- package/lib/request/delete-outbound-connector-request.d.ts +1 -1
- package/lib/request/delete-replication-request.d.ts +1 -1
- package/lib/request/delete-replication-target-request.d.ts +1 -1
- package/lib/request/delete-snapshot-request.d.ts +1 -1
- package/lib/request/estimate-replication-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-filesystem-snapshot-policy-request.d.ts +1 -1
- package/lib/request/get-mount-target-request.d.ts +1 -1
- package/lib/request/get-outbound-connector-request.d.ts +1 -1
- package/lib/request/get-replication-request.d.ts +1 -1
- package/lib/request/get-replication-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-filesystem-snapshot-policies-request.d.ts +1 -1
- package/lib/request/list-mount-targets-request.d.ts +1 -1
- package/lib/request/list-outbound-connectors-request.d.ts +1 -1
- package/lib/request/list-replication-targets-request.d.ts +1 -1
- package/lib/request/list-replications-request.d.ts +1 -1
- package/lib/request/list-snapshots-request.d.ts +1 -1
- package/lib/request/pause-filesystem-snapshot-policy-request.d.ts +1 -1
- package/lib/request/unpause-filesystem-snapshot-policy-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-filesystem-snapshot-policy-request.d.ts +1 -1
- package/lib/request/update-mount-target-request.d.ts +1 -1
- package/lib/request/update-outbound-connector-request.d.ts +1 -1
- package/lib/request/update-replication-request.d.ts +1 -1
- package/lib/request/update-snapshot-request.d.ts +1 -1
- package/lib/request/validate-key-tabs-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -64,6 +64,7 @@ class FileStorageClient {
|
|
|
64
64
|
this["_defaultHeaders"] = {};
|
|
65
65
|
this._circuitBreaker = null;
|
|
66
66
|
this._httpOptions = undefined;
|
|
67
|
+
this._bodyDuplexMode = undefined;
|
|
67
68
|
this.targetService = "FileStorage";
|
|
68
69
|
this._regionId = "";
|
|
69
70
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -78,6 +79,9 @@ class FileStorageClient {
|
|
|
78
79
|
this._httpOptions = clientConfiguration.httpOptions
|
|
79
80
|
? clientConfiguration.httpOptions
|
|
80
81
|
: undefined;
|
|
82
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
83
|
+
? clientConfiguration.bodyDuplexMode
|
|
84
|
+
: undefined;
|
|
81
85
|
}
|
|
82
86
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
83
87
|
const specCircuitBreakerEnabled = true;
|
|
@@ -88,7 +92,7 @@ class FileStorageClient {
|
|
|
88
92
|
}
|
|
89
93
|
this._httpClient =
|
|
90
94
|
params.httpClient ||
|
|
91
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
95
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
92
96
|
if (params.authenticationDetailsProvider &&
|
|
93
97
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
94
98
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -183,7 +187,7 @@ class FileStorageClient {
|
|
|
183
187
|
* @param ChangeFileSystemCompartmentRequest
|
|
184
188
|
* @return ChangeFileSystemCompartmentResponse
|
|
185
189
|
* @throws OciError when an error occurs
|
|
186
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
190
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ChangeFileSystemCompartment.ts.html |here} to see how to use ChangeFileSystemCompartment API.
|
|
187
191
|
*/
|
|
188
192
|
changeFileSystemCompartment(changeFileSystemCompartmentRequest) {
|
|
189
193
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -240,7 +244,7 @@ class FileStorageClient {
|
|
|
240
244
|
* @param ChangeFilesystemSnapshotPolicyCompartmentRequest
|
|
241
245
|
* @return ChangeFilesystemSnapshotPolicyCompartmentResponse
|
|
242
246
|
* @throws OciError when an error occurs
|
|
243
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
247
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ChangeFilesystemSnapshotPolicyCompartment.ts.html |here} to see how to use ChangeFilesystemSnapshotPolicyCompartment API.
|
|
244
248
|
*/
|
|
245
249
|
changeFilesystemSnapshotPolicyCompartment(changeFilesystemSnapshotPolicyCompartmentRequest) {
|
|
246
250
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -297,7 +301,7 @@ class FileStorageClient {
|
|
|
297
301
|
* @param ChangeMountTargetCompartmentRequest
|
|
298
302
|
* @return ChangeMountTargetCompartmentResponse
|
|
299
303
|
* @throws OciError when an error occurs
|
|
300
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
304
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ChangeMountTargetCompartment.ts.html |here} to see how to use ChangeMountTargetCompartment API.
|
|
301
305
|
*/
|
|
302
306
|
changeMountTargetCompartment(changeMountTargetCompartmentRequest) {
|
|
303
307
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -356,7 +360,7 @@ class FileStorageClient {
|
|
|
356
360
|
* @param ChangeOutboundConnectorCompartmentRequest
|
|
357
361
|
* @return ChangeOutboundConnectorCompartmentResponse
|
|
358
362
|
* @throws OciError when an error occurs
|
|
359
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
363
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ChangeOutboundConnectorCompartment.ts.html |here} to see how to use ChangeOutboundConnectorCompartment API.
|
|
360
364
|
*/
|
|
361
365
|
changeOutboundConnectorCompartment(changeOutboundConnectorCompartmentRequest) {
|
|
362
366
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -414,7 +418,7 @@ class FileStorageClient {
|
|
|
414
418
|
* @param ChangeReplicationCompartmentRequest
|
|
415
419
|
* @return ChangeReplicationCompartmentResponse
|
|
416
420
|
* @throws OciError when an error occurs
|
|
417
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
421
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ChangeReplicationCompartment.ts.html |here} to see how to use ChangeReplicationCompartment API.
|
|
418
422
|
*/
|
|
419
423
|
changeReplicationCompartment(changeReplicationCompartmentRequest) {
|
|
420
424
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -472,7 +476,7 @@ class FileStorageClient {
|
|
|
472
476
|
* @param CreateExportRequest
|
|
473
477
|
* @return CreateExportResponse
|
|
474
478
|
* @throws OciError when an error occurs
|
|
475
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
479
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/CreateExport.ts.html |here} to see how to use CreateExport API.
|
|
476
480
|
*/
|
|
477
481
|
createExport(createExportRequest) {
|
|
478
482
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -564,7 +568,7 @@ class FileStorageClient {
|
|
|
564
568
|
* @param CreateFileSystemRequest
|
|
565
569
|
* @return CreateFileSystemResponse
|
|
566
570
|
* @throws OciError when an error occurs
|
|
567
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
571
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/CreateFileSystem.ts.html |here} to see how to use CreateFileSystem API.
|
|
568
572
|
*/
|
|
569
573
|
createFileSystem(createFileSystemRequest) {
|
|
570
574
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -632,7 +636,7 @@ class FileStorageClient {
|
|
|
632
636
|
* @param CreateFilesystemSnapshotPolicyRequest
|
|
633
637
|
* @return CreateFilesystemSnapshotPolicyResponse
|
|
634
638
|
* @throws OciError when an error occurs
|
|
635
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
639
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/CreateFilesystemSnapshotPolicy.ts.html |here} to see how to use CreateFilesystemSnapshotPolicy API.
|
|
636
640
|
*/
|
|
637
641
|
createFilesystemSnapshotPolicy(createFilesystemSnapshotPolicyRequest) {
|
|
638
642
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -727,7 +731,7 @@ class FileStorageClient {
|
|
|
727
731
|
* @param CreateMountTargetRequest
|
|
728
732
|
* @return CreateMountTargetResponse
|
|
729
733
|
* @throws OciError when an error occurs
|
|
730
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
734
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/CreateMountTarget.ts.html |here} to see how to use CreateMountTarget API.
|
|
731
735
|
*/
|
|
732
736
|
createMountTarget(createMountTargetRequest) {
|
|
733
737
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -810,7 +814,7 @@ class FileStorageClient {
|
|
|
810
814
|
* @param CreateOutboundConnectorRequest
|
|
811
815
|
* @return CreateOutboundConnectorResponse
|
|
812
816
|
* @throws OciError when an error occurs
|
|
813
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
817
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/CreateOutboundConnector.ts.html |here} to see how to use CreateOutboundConnector API.
|
|
814
818
|
*/
|
|
815
819
|
createOutboundConnector(createOutboundConnectorRequest) {
|
|
816
820
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -900,7 +904,7 @@ class FileStorageClient {
|
|
|
900
904
|
* @param CreateReplicationRequest
|
|
901
905
|
* @return CreateReplicationResponse
|
|
902
906
|
* @throws OciError when an error occurs
|
|
903
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
907
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/CreateReplication.ts.html |here} to see how to use CreateReplication API.
|
|
904
908
|
*/
|
|
905
909
|
createReplication(createReplicationRequest) {
|
|
906
910
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -965,7 +969,7 @@ class FileStorageClient {
|
|
|
965
969
|
* @param CreateSnapshotRequest
|
|
966
970
|
* @return CreateSnapshotResponse
|
|
967
971
|
* @throws OciError when an error occurs
|
|
968
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
972
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/CreateSnapshot.ts.html |here} to see how to use CreateSnapshot API.
|
|
969
973
|
*/
|
|
970
974
|
createSnapshot(createSnapshotRequest) {
|
|
971
975
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1029,7 +1033,7 @@ class FileStorageClient {
|
|
|
1029
1033
|
* @param DeleteExportRequest
|
|
1030
1034
|
* @return DeleteExportResponse
|
|
1031
1035
|
* @throws OciError when an error occurs
|
|
1032
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1036
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/DeleteExport.ts.html |here} to see how to use DeleteExport API.
|
|
1033
1037
|
*/
|
|
1034
1038
|
deleteExport(deleteExportRequest) {
|
|
1035
1039
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1087,7 +1091,7 @@ class FileStorageClient {
|
|
|
1087
1091
|
* @param DeleteFileSystemRequest
|
|
1088
1092
|
* @return DeleteFileSystemResponse
|
|
1089
1093
|
* @throws OciError when an error occurs
|
|
1090
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1094
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/DeleteFileSystem.ts.html |here} to see how to use DeleteFileSystem API.
|
|
1091
1095
|
*/
|
|
1092
1096
|
deleteFileSystem(deleteFileSystemRequest) {
|
|
1093
1097
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1143,7 +1147,7 @@ class FileStorageClient {
|
|
|
1143
1147
|
* @param DeleteFilesystemSnapshotPolicyRequest
|
|
1144
1148
|
* @return DeleteFilesystemSnapshotPolicyResponse
|
|
1145
1149
|
* @throws OciError when an error occurs
|
|
1146
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1150
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/DeleteFilesystemSnapshotPolicy.ts.html |here} to see how to use DeleteFilesystemSnapshotPolicy API.
|
|
1147
1151
|
*/
|
|
1148
1152
|
deleteFilesystemSnapshotPolicy(deleteFilesystemSnapshotPolicyRequest) {
|
|
1149
1153
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1200,7 +1204,7 @@ class FileStorageClient {
|
|
|
1200
1204
|
* @param DeleteMountTargetRequest
|
|
1201
1205
|
* @return DeleteMountTargetResponse
|
|
1202
1206
|
* @throws OciError when an error occurs
|
|
1203
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1207
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/DeleteMountTarget.ts.html |here} to see how to use DeleteMountTarget API.
|
|
1204
1208
|
*/
|
|
1205
1209
|
deleteMountTarget(deleteMountTargetRequest) {
|
|
1206
1210
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1256,7 +1260,7 @@ class FileStorageClient {
|
|
|
1256
1260
|
* @param DeleteOutboundConnectorRequest
|
|
1257
1261
|
* @return DeleteOutboundConnectorResponse
|
|
1258
1262
|
* @throws OciError when an error occurs
|
|
1259
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1263
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/DeleteOutboundConnector.ts.html |here} to see how to use DeleteOutboundConnector API.
|
|
1260
1264
|
*/
|
|
1261
1265
|
deleteOutboundConnector(deleteOutboundConnectorRequest) {
|
|
1262
1266
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1312,7 +1316,7 @@ class FileStorageClient {
|
|
|
1312
1316
|
* @param DeleteReplicationRequest
|
|
1313
1317
|
* @return DeleteReplicationResponse
|
|
1314
1318
|
* @throws OciError when an error occurs
|
|
1315
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1319
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/DeleteReplication.ts.html |here} to see how to use DeleteReplication API.
|
|
1316
1320
|
*/
|
|
1317
1321
|
deleteReplication(deleteReplicationRequest) {
|
|
1318
1322
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1373,7 +1377,7 @@ class FileStorageClient {
|
|
|
1373
1377
|
* @param DeleteReplicationTargetRequest
|
|
1374
1378
|
* @return DeleteReplicationTargetResponse
|
|
1375
1379
|
* @throws OciError when an error occurs
|
|
1376
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1380
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/DeleteReplicationTarget.ts.html |here} to see how to use DeleteReplicationTarget API.
|
|
1377
1381
|
*/
|
|
1378
1382
|
deleteReplicationTarget(deleteReplicationTargetRequest) {
|
|
1379
1383
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1429,7 +1433,7 @@ class FileStorageClient {
|
|
|
1429
1433
|
* @param DeleteSnapshotRequest
|
|
1430
1434
|
* @return DeleteSnapshotResponse
|
|
1431
1435
|
* @throws OciError when an error occurs
|
|
1432
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1436
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/DeleteSnapshot.ts.html |here} to see how to use DeleteSnapshot API.
|
|
1433
1437
|
*/
|
|
1434
1438
|
deleteSnapshot(deleteSnapshotRequest) {
|
|
1435
1439
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1485,7 +1489,7 @@ class FileStorageClient {
|
|
|
1485
1489
|
* @param EstimateReplicationRequest
|
|
1486
1490
|
* @return EstimateReplicationResponse
|
|
1487
1491
|
* @throws OciError when an error occurs
|
|
1488
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1492
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/EstimateReplication.ts.html |here} to see how to use EstimateReplication API.
|
|
1489
1493
|
*/
|
|
1490
1494
|
estimateReplication(estimateReplicationRequest) {
|
|
1491
1495
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1551,7 +1555,7 @@ class FileStorageClient {
|
|
|
1551
1555
|
* @param GetExportRequest
|
|
1552
1556
|
* @return GetExportResponse
|
|
1553
1557
|
* @throws OciError when an error occurs
|
|
1554
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1558
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/GetExport.ts.html |here} to see how to use GetExport API.
|
|
1555
1559
|
*/
|
|
1556
1560
|
getExport(getExportRequest) {
|
|
1557
1561
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1614,7 +1618,7 @@ class FileStorageClient {
|
|
|
1614
1618
|
* @param GetExportSetRequest
|
|
1615
1619
|
* @return GetExportSetResponse
|
|
1616
1620
|
* @throws OciError when an error occurs
|
|
1617
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1621
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/GetExportSet.ts.html |here} to see how to use GetExportSet API.
|
|
1618
1622
|
*/
|
|
1619
1623
|
getExportSet(getExportSetRequest) {
|
|
1620
1624
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1677,7 +1681,7 @@ class FileStorageClient {
|
|
|
1677
1681
|
* @param GetFileSystemRequest
|
|
1678
1682
|
* @return GetFileSystemResponse
|
|
1679
1683
|
* @throws OciError when an error occurs
|
|
1680
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1684
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/GetFileSystem.ts.html |here} to see how to use GetFileSystem API.
|
|
1681
1685
|
*/
|
|
1682
1686
|
getFileSystem(getFileSystemRequest) {
|
|
1683
1687
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1740,7 +1744,7 @@ class FileStorageClient {
|
|
|
1740
1744
|
* @param GetFilesystemSnapshotPolicyRequest
|
|
1741
1745
|
* @return GetFilesystemSnapshotPolicyResponse
|
|
1742
1746
|
* @throws OciError when an error occurs
|
|
1743
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1747
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/GetFilesystemSnapshotPolicy.ts.html |here} to see how to use GetFilesystemSnapshotPolicy API.
|
|
1744
1748
|
*/
|
|
1745
1749
|
getFilesystemSnapshotPolicy(getFilesystemSnapshotPolicyRequest) {
|
|
1746
1750
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1803,7 +1807,7 @@ class FileStorageClient {
|
|
|
1803
1807
|
* @param GetMountTargetRequest
|
|
1804
1808
|
* @return GetMountTargetResponse
|
|
1805
1809
|
* @throws OciError when an error occurs
|
|
1806
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1810
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/GetMountTarget.ts.html |here} to see how to use GetMountTarget API.
|
|
1807
1811
|
*/
|
|
1808
1812
|
getMountTarget(getMountTargetRequest) {
|
|
1809
1813
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1866,7 +1870,7 @@ class FileStorageClient {
|
|
|
1866
1870
|
* @param GetOutboundConnectorRequest
|
|
1867
1871
|
* @return GetOutboundConnectorResponse
|
|
1868
1872
|
* @throws OciError when an error occurs
|
|
1869
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1873
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/GetOutboundConnector.ts.html |here} to see how to use GetOutboundConnector API.
|
|
1870
1874
|
*/
|
|
1871
1875
|
getOutboundConnector(getOutboundConnectorRequest) {
|
|
1872
1876
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1929,7 +1933,7 @@ class FileStorageClient {
|
|
|
1929
1933
|
* @param GetReplicationRequest
|
|
1930
1934
|
* @return GetReplicationResponse
|
|
1931
1935
|
* @throws OciError when an error occurs
|
|
1932
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1936
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/GetReplication.ts.html |here} to see how to use GetReplication API.
|
|
1933
1937
|
*/
|
|
1934
1938
|
getReplication(getReplicationRequest) {
|
|
1935
1939
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1992,7 +1996,7 @@ class FileStorageClient {
|
|
|
1992
1996
|
* @param GetReplicationTargetRequest
|
|
1993
1997
|
* @return GetReplicationTargetResponse
|
|
1994
1998
|
* @throws OciError when an error occurs
|
|
1995
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1999
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/GetReplicationTarget.ts.html |here} to see how to use GetReplicationTarget API.
|
|
1996
2000
|
*/
|
|
1997
2001
|
getReplicationTarget(getReplicationTargetRequest) {
|
|
1998
2002
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2055,7 +2059,7 @@ class FileStorageClient {
|
|
|
2055
2059
|
* @param GetSnapshotRequest
|
|
2056
2060
|
* @return GetSnapshotResponse
|
|
2057
2061
|
* @throws OciError when an error occurs
|
|
2058
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2062
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/GetSnapshot.ts.html |here} to see how to use GetSnapshot API.
|
|
2059
2063
|
*/
|
|
2060
2064
|
getSnapshot(getSnapshotRequest) {
|
|
2061
2065
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2119,7 +2123,7 @@ class FileStorageClient {
|
|
|
2119
2123
|
* @param ListExportSetsRequest
|
|
2120
2124
|
* @return ListExportSetsResponse
|
|
2121
2125
|
* @throws OciError when an error occurs
|
|
2122
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2126
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ListExportSets.ts.html |here} to see how to use ListExportSets API.
|
|
2123
2127
|
*/
|
|
2124
2128
|
listExportSets(listExportSetsRequest) {
|
|
2125
2129
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2233,7 +2237,7 @@ class FileStorageClient {
|
|
|
2233
2237
|
* @param ListExportsRequest
|
|
2234
2238
|
* @return ListExportsResponse
|
|
2235
2239
|
* @throws OciError when an error occurs
|
|
2236
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2240
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ListExports.ts.html |here} to see how to use ListExports API.
|
|
2237
2241
|
*/
|
|
2238
2242
|
listExports(listExportsRequest) {
|
|
2239
2243
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2346,7 +2350,7 @@ class FileStorageClient {
|
|
|
2346
2350
|
* @param ListFileSystemsRequest
|
|
2347
2351
|
* @return ListFileSystemsResponse
|
|
2348
2352
|
* @throws OciError when an error occurs
|
|
2349
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2353
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ListFileSystems.ts.html |here} to see how to use ListFileSystems API.
|
|
2350
2354
|
*/
|
|
2351
2355
|
listFileSystems(listFileSystemsRequest) {
|
|
2352
2356
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2461,7 +2465,7 @@ class FileStorageClient {
|
|
|
2461
2465
|
* @param ListFilesystemSnapshotPoliciesRequest
|
|
2462
2466
|
* @return ListFilesystemSnapshotPoliciesResponse
|
|
2463
2467
|
* @throws OciError when an error occurs
|
|
2464
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2468
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ListFilesystemSnapshotPolicies.ts.html |here} to see how to use ListFilesystemSnapshotPolicies API.
|
|
2465
2469
|
*/
|
|
2466
2470
|
listFilesystemSnapshotPolicies(listFilesystemSnapshotPoliciesRequest) {
|
|
2467
2471
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2573,7 +2577,7 @@ class FileStorageClient {
|
|
|
2573
2577
|
* @param ListMountTargetsRequest
|
|
2574
2578
|
* @return ListMountTargetsResponse
|
|
2575
2579
|
* @throws OciError when an error occurs
|
|
2576
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2580
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ListMountTargets.ts.html |here} to see how to use ListMountTargets API.
|
|
2577
2581
|
*/
|
|
2578
2582
|
listMountTargets(listMountTargetsRequest) {
|
|
2579
2583
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2686,7 +2690,7 @@ class FileStorageClient {
|
|
|
2686
2690
|
* @param ListOutboundConnectorsRequest
|
|
2687
2691
|
* @return ListOutboundConnectorsResponse
|
|
2688
2692
|
* @throws OciError when an error occurs
|
|
2689
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2693
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ListOutboundConnectors.ts.html |here} to see how to use ListOutboundConnectors API.
|
|
2690
2694
|
*/
|
|
2691
2695
|
listOutboundConnectors(listOutboundConnectorsRequest) {
|
|
2692
2696
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2798,7 +2802,7 @@ class FileStorageClient {
|
|
|
2798
2802
|
* @param ListReplicationTargetsRequest
|
|
2799
2803
|
* @return ListReplicationTargetsResponse
|
|
2800
2804
|
* @throws OciError when an error occurs
|
|
2801
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2805
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ListReplicationTargets.ts.html |here} to see how to use ListReplicationTargets API.
|
|
2802
2806
|
*/
|
|
2803
2807
|
listReplicationTargets(listReplicationTargetsRequest) {
|
|
2804
2808
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2910,7 +2914,7 @@ class FileStorageClient {
|
|
|
2910
2914
|
* @param ListReplicationsRequest
|
|
2911
2915
|
* @return ListReplicationsResponse
|
|
2912
2916
|
* @throws OciError when an error occurs
|
|
2913
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2917
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ListReplications.ts.html |here} to see how to use ListReplications API.
|
|
2914
2918
|
*/
|
|
2915
2919
|
listReplications(listReplicationsRequest) {
|
|
2916
2920
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3029,7 +3033,7 @@ class FileStorageClient {
|
|
|
3029
3033
|
* @param ListSnapshotsRequest
|
|
3030
3034
|
* @return ListSnapshotsResponse
|
|
3031
3035
|
* @throws OciError when an error occurs
|
|
3032
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3036
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ListSnapshots.ts.html |here} to see how to use ListSnapshots API.
|
|
3033
3037
|
*/
|
|
3034
3038
|
listSnapshots(listSnapshotsRequest) {
|
|
3035
3039
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3145,7 +3149,7 @@ class FileStorageClient {
|
|
|
3145
3149
|
* @param PauseFilesystemSnapshotPolicyRequest
|
|
3146
3150
|
* @return PauseFilesystemSnapshotPolicyResponse
|
|
3147
3151
|
* @throws OciError when an error occurs
|
|
3148
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3152
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/PauseFilesystemSnapshotPolicy.ts.html |here} to see how to use PauseFilesystemSnapshotPolicy API.
|
|
3149
3153
|
*/
|
|
3150
3154
|
pauseFilesystemSnapshotPolicy(pauseFilesystemSnapshotPolicyRequest) {
|
|
3151
3155
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3214,7 +3218,7 @@ class FileStorageClient {
|
|
|
3214
3218
|
* @param UnpauseFilesystemSnapshotPolicyRequest
|
|
3215
3219
|
* @return UnpauseFilesystemSnapshotPolicyResponse
|
|
3216
3220
|
* @throws OciError when an error occurs
|
|
3217
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3221
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/UnpauseFilesystemSnapshotPolicy.ts.html |here} to see how to use UnpauseFilesystemSnapshotPolicy API.
|
|
3218
3222
|
*/
|
|
3219
3223
|
unpauseFilesystemSnapshotPolicy(unpauseFilesystemSnapshotPolicyRequest) {
|
|
3220
3224
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3278,7 +3282,7 @@ class FileStorageClient {
|
|
|
3278
3282
|
* @param UpdateExportRequest
|
|
3279
3283
|
* @return UpdateExportResponse
|
|
3280
3284
|
* @throws OciError when an error occurs
|
|
3281
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3285
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/UpdateExport.ts.html |here} to see how to use UpdateExport API.
|
|
3282
3286
|
*/
|
|
3283
3287
|
updateExport(updateExportRequest) {
|
|
3284
3288
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3343,7 +3347,7 @@ class FileStorageClient {
|
|
|
3343
3347
|
* @param UpdateExportSetRequest
|
|
3344
3348
|
* @return UpdateExportSetResponse
|
|
3345
3349
|
* @throws OciError when an error occurs
|
|
3346
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3350
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/UpdateExportSet.ts.html |here} to see how to use UpdateExportSet API.
|
|
3347
3351
|
*/
|
|
3348
3352
|
updateExportSet(updateExportSetRequest) {
|
|
3349
3353
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3410,7 +3414,7 @@ class FileStorageClient {
|
|
|
3410
3414
|
* @param UpdateFileSystemRequest
|
|
3411
3415
|
* @return UpdateFileSystemResponse
|
|
3412
3416
|
* @throws OciError when an error occurs
|
|
3413
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3417
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/UpdateFileSystem.ts.html |here} to see how to use UpdateFileSystem API.
|
|
3414
3418
|
*/
|
|
3415
3419
|
updateFileSystem(updateFileSystemRequest) {
|
|
3416
3420
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3475,7 +3479,7 @@ class FileStorageClient {
|
|
|
3475
3479
|
* @param UpdateFilesystemSnapshotPolicyRequest
|
|
3476
3480
|
* @return UpdateFilesystemSnapshotPolicyResponse
|
|
3477
3481
|
* @throws OciError when an error occurs
|
|
3478
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3482
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/UpdateFilesystemSnapshotPolicy.ts.html |here} to see how to use UpdateFilesystemSnapshotPolicy API.
|
|
3479
3483
|
*/
|
|
3480
3484
|
updateFilesystemSnapshotPolicy(updateFilesystemSnapshotPolicyRequest) {
|
|
3481
3485
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3540,7 +3544,7 @@ class FileStorageClient {
|
|
|
3540
3544
|
* @param UpdateMountTargetRequest
|
|
3541
3545
|
* @return UpdateMountTargetResponse
|
|
3542
3546
|
* @throws OciError when an error occurs
|
|
3543
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3547
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/UpdateMountTarget.ts.html |here} to see how to use UpdateMountTarget API.
|
|
3544
3548
|
*/
|
|
3545
3549
|
updateMountTarget(updateMountTargetRequest) {
|
|
3546
3550
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3605,7 +3609,7 @@ class FileStorageClient {
|
|
|
3605
3609
|
* @param UpdateOutboundConnectorRequest
|
|
3606
3610
|
* @return UpdateOutboundConnectorResponse
|
|
3607
3611
|
* @throws OciError when an error occurs
|
|
3608
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3612
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/UpdateOutboundConnector.ts.html |here} to see how to use UpdateOutboundConnector API.
|
|
3609
3613
|
*/
|
|
3610
3614
|
updateOutboundConnector(updateOutboundConnectorRequest) {
|
|
3611
3615
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3671,7 +3675,7 @@ class FileStorageClient {
|
|
|
3671
3675
|
* @param UpdateReplicationRequest
|
|
3672
3676
|
* @return UpdateReplicationResponse
|
|
3673
3677
|
* @throws OciError when an error occurs
|
|
3674
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3678
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/UpdateReplication.ts.html |here} to see how to use UpdateReplication API.
|
|
3675
3679
|
*/
|
|
3676
3680
|
updateReplication(updateReplicationRequest) {
|
|
3677
3681
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3736,7 +3740,7 @@ class FileStorageClient {
|
|
|
3736
3740
|
* @param UpdateSnapshotRequest
|
|
3737
3741
|
* @return UpdateSnapshotResponse
|
|
3738
3742
|
* @throws OciError when an error occurs
|
|
3739
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3743
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/UpdateSnapshot.ts.html |here} to see how to use UpdateSnapshot API.
|
|
3740
3744
|
*/
|
|
3741
3745
|
updateSnapshot(updateSnapshotRequest) {
|
|
3742
3746
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3804,7 +3808,7 @@ class FileStorageClient {
|
|
|
3804
3808
|
* @param ValidateKeyTabsRequest
|
|
3805
3809
|
* @return ValidateKeyTabsResponse
|
|
3806
3810
|
* @throws OciError when an error occurs
|
|
3807
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3811
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/filestorage/ValidateKeyTabs.ts.html |here} to see how to use ValidateKeyTabs API.
|
|
3808
3812
|
*/
|
|
3809
3813
|
validateKeyTabs(validateKeyTabsRequest) {
|
|
3810
3814
|
return __awaiter(this, void 0, void 0, function* () {
|