oci-filestorage 2.117.0 → 2.118.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.js +75 -223
- package/lib/client.js.map +1 -1
- package/lib/model/client-options.d.ts +1 -1
- package/lib/model/create-mount-target-details.d.ts +2 -12
- package/lib/model/create-mount-target-details.js.map +1 -1
- package/lib/model/mount-target-summary.d.ts +0 -4
- package/lib/model/mount-target-summary.js.map +1 -1
- package/lib/model/mount-target.d.ts +0 -4
- package/lib/model/mount-target.js.map +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -233,14 +233,12 @@ class FileStorageClient {
|
|
|
233
233
|
"if-match": addExportLockRequest.ifMatch,
|
|
234
234
|
"opc-request-id": addExportLockRequest.opcRequestId
|
|
235
235
|
};
|
|
236
|
-
const requiredParams = new Set(["exportId"]);
|
|
237
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
238
236
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
239
237
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addExportLockRequest.retryConfiguration, specRetryConfiguration);
|
|
240
238
|
if (this.logger)
|
|
241
239
|
retrier.logger = this.logger;
|
|
242
240
|
const request = yield oci_common_2.composeRequest({
|
|
243
|
-
baseEndpoint:
|
|
241
|
+
baseEndpoint: this._endpoint,
|
|
244
242
|
defaultHeaders: this._defaultHeaders,
|
|
245
243
|
path: "/exports/{exportId}/actions/addLock",
|
|
246
244
|
method: "POST",
|
|
@@ -300,14 +298,12 @@ class FileStorageClient {
|
|
|
300
298
|
"if-match": addFileSystemLockRequest.ifMatch,
|
|
301
299
|
"opc-request-id": addFileSystemLockRequest.opcRequestId
|
|
302
300
|
};
|
|
303
|
-
const requiredParams = new Set(["fileSystemId"]);
|
|
304
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
305
301
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
306
302
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addFileSystemLockRequest.retryConfiguration, specRetryConfiguration);
|
|
307
303
|
if (this.logger)
|
|
308
304
|
retrier.logger = this.logger;
|
|
309
305
|
const request = yield oci_common_2.composeRequest({
|
|
310
|
-
baseEndpoint:
|
|
306
|
+
baseEndpoint: this._endpoint,
|
|
311
307
|
defaultHeaders: this._defaultHeaders,
|
|
312
308
|
path: "/fileSystems/{fileSystemId}/actions/addLock",
|
|
313
309
|
method: "POST",
|
|
@@ -367,14 +363,12 @@ class FileStorageClient {
|
|
|
367
363
|
"if-match": addFilesystemSnapshotPolicyLockRequest.ifMatch,
|
|
368
364
|
"opc-request-id": addFilesystemSnapshotPolicyLockRequest.opcRequestId
|
|
369
365
|
};
|
|
370
|
-
const requiredParams = new Set(["filesystemSnapshotPolicyId"]);
|
|
371
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
372
366
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
373
367
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addFilesystemSnapshotPolicyLockRequest.retryConfiguration, specRetryConfiguration);
|
|
374
368
|
if (this.logger)
|
|
375
369
|
retrier.logger = this.logger;
|
|
376
370
|
const request = yield oci_common_2.composeRequest({
|
|
377
|
-
baseEndpoint:
|
|
371
|
+
baseEndpoint: this._endpoint,
|
|
378
372
|
defaultHeaders: this._defaultHeaders,
|
|
379
373
|
path: "/filesystemSnapshotPolicies/{filesystemSnapshotPolicyId}/actions/addLock",
|
|
380
374
|
method: "POST",
|
|
@@ -434,14 +428,12 @@ class FileStorageClient {
|
|
|
434
428
|
"if-match": addMountTargetLockRequest.ifMatch,
|
|
435
429
|
"opc-request-id": addMountTargetLockRequest.opcRequestId
|
|
436
430
|
};
|
|
437
|
-
const requiredParams = new Set(["mountTargetId"]);
|
|
438
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
439
431
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
440
432
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addMountTargetLockRequest.retryConfiguration, specRetryConfiguration);
|
|
441
433
|
if (this.logger)
|
|
442
434
|
retrier.logger = this.logger;
|
|
443
435
|
const request = yield oci_common_2.composeRequest({
|
|
444
|
-
baseEndpoint:
|
|
436
|
+
baseEndpoint: this._endpoint,
|
|
445
437
|
defaultHeaders: this._defaultHeaders,
|
|
446
438
|
path: "/mountTargets/{mountTargetId}/actions/addLock",
|
|
447
439
|
method: "POST",
|
|
@@ -501,14 +493,12 @@ class FileStorageClient {
|
|
|
501
493
|
"if-match": addOutboundConnectorLockRequest.ifMatch,
|
|
502
494
|
"opc-request-id": addOutboundConnectorLockRequest.opcRequestId
|
|
503
495
|
};
|
|
504
|
-
const requiredParams = new Set(["outboundConnectorId"]);
|
|
505
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
506
496
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
507
497
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addOutboundConnectorLockRequest.retryConfiguration, specRetryConfiguration);
|
|
508
498
|
if (this.logger)
|
|
509
499
|
retrier.logger = this.logger;
|
|
510
500
|
const request = yield oci_common_2.composeRequest({
|
|
511
|
-
baseEndpoint:
|
|
501
|
+
baseEndpoint: this._endpoint,
|
|
512
502
|
defaultHeaders: this._defaultHeaders,
|
|
513
503
|
path: "/outboundConnectors/{outboundConnectorId}/actions/addLock",
|
|
514
504
|
method: "POST",
|
|
@@ -568,14 +558,12 @@ class FileStorageClient {
|
|
|
568
558
|
"if-match": addReplicationLockRequest.ifMatch,
|
|
569
559
|
"opc-request-id": addReplicationLockRequest.opcRequestId
|
|
570
560
|
};
|
|
571
|
-
const requiredParams = new Set(["replicationId"]);
|
|
572
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
573
561
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
574
562
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addReplicationLockRequest.retryConfiguration, specRetryConfiguration);
|
|
575
563
|
if (this.logger)
|
|
576
564
|
retrier.logger = this.logger;
|
|
577
565
|
const request = yield oci_common_2.composeRequest({
|
|
578
|
-
baseEndpoint:
|
|
566
|
+
baseEndpoint: this._endpoint,
|
|
579
567
|
defaultHeaders: this._defaultHeaders,
|
|
580
568
|
path: "/replications/{replicationId}/actions/addLock",
|
|
581
569
|
method: "POST",
|
|
@@ -635,14 +623,12 @@ class FileStorageClient {
|
|
|
635
623
|
"if-match": addSnapshotLockRequest.ifMatch,
|
|
636
624
|
"opc-request-id": addSnapshotLockRequest.opcRequestId
|
|
637
625
|
};
|
|
638
|
-
const requiredParams = new Set(["snapshotId"]);
|
|
639
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
640
626
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
641
627
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addSnapshotLockRequest.retryConfiguration, specRetryConfiguration);
|
|
642
628
|
if (this.logger)
|
|
643
629
|
retrier.logger = this.logger;
|
|
644
630
|
const request = yield oci_common_2.composeRequest({
|
|
645
|
-
baseEndpoint:
|
|
631
|
+
baseEndpoint: this._endpoint,
|
|
646
632
|
defaultHeaders: this._defaultHeaders,
|
|
647
633
|
path: "/snapshots/{snapshotId}/actions/addLock",
|
|
648
634
|
method: "POST",
|
|
@@ -703,14 +689,12 @@ class FileStorageClient {
|
|
|
703
689
|
"if-match": cancelDowngradeShapeMountTargetRequest.ifMatch,
|
|
704
690
|
"opc-request-id": cancelDowngradeShapeMountTargetRequest.opcRequestId
|
|
705
691
|
};
|
|
706
|
-
const requiredParams = new Set(["mountTargetId"]);
|
|
707
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
708
692
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
709
693
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, cancelDowngradeShapeMountTargetRequest.retryConfiguration, specRetryConfiguration);
|
|
710
694
|
if (this.logger)
|
|
711
695
|
retrier.logger = this.logger;
|
|
712
696
|
const request = yield oci_common_2.composeRequest({
|
|
713
|
-
baseEndpoint:
|
|
697
|
+
baseEndpoint: this._endpoint,
|
|
714
698
|
defaultHeaders: this._defaultHeaders,
|
|
715
699
|
path: "/mountTargets/{mountTargetId}/actions/cancelShapeDowngrade",
|
|
716
700
|
method: "POST",
|
|
@@ -772,14 +756,12 @@ class FileStorageClient {
|
|
|
772
756
|
"if-match": changeFileSystemCompartmentRequest.ifMatch,
|
|
773
757
|
"opc-request-id": changeFileSystemCompartmentRequest.opcRequestId
|
|
774
758
|
};
|
|
775
|
-
const requiredParams = new Set(["fileSystemId"]);
|
|
776
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
777
759
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
778
760
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeFileSystemCompartmentRequest.retryConfiguration, specRetryConfiguration);
|
|
779
761
|
if (this.logger)
|
|
780
762
|
retrier.logger = this.logger;
|
|
781
763
|
const request = yield oci_common_2.composeRequest({
|
|
782
|
-
baseEndpoint:
|
|
764
|
+
baseEndpoint: this._endpoint,
|
|
783
765
|
defaultHeaders: this._defaultHeaders,
|
|
784
766
|
path: "/fileSystems/{fileSystemId}/actions/changeCompartment",
|
|
785
767
|
method: "POST",
|
|
@@ -833,14 +815,12 @@ class FileStorageClient {
|
|
|
833
815
|
"if-match": changeFilesystemSnapshotPolicyCompartmentRequest.ifMatch,
|
|
834
816
|
"opc-request-id": changeFilesystemSnapshotPolicyCompartmentRequest.opcRequestId
|
|
835
817
|
};
|
|
836
|
-
const requiredParams = new Set(["filesystemSnapshotPolicyId"]);
|
|
837
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
838
818
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
839
819
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeFilesystemSnapshotPolicyCompartmentRequest.retryConfiguration, specRetryConfiguration);
|
|
840
820
|
if (this.logger)
|
|
841
821
|
retrier.logger = this.logger;
|
|
842
822
|
const request = yield oci_common_2.composeRequest({
|
|
843
|
-
baseEndpoint:
|
|
823
|
+
baseEndpoint: this._endpoint,
|
|
844
824
|
defaultHeaders: this._defaultHeaders,
|
|
845
825
|
path: "/filesystemSnapshotPolicies/{filesystemSnapshotPolicyId}/actions/changeCompartment",
|
|
846
826
|
method: "POST",
|
|
@@ -894,14 +874,12 @@ class FileStorageClient {
|
|
|
894
874
|
"if-match": changeMountTargetCompartmentRequest.ifMatch,
|
|
895
875
|
"opc-request-id": changeMountTargetCompartmentRequest.opcRequestId
|
|
896
876
|
};
|
|
897
|
-
const requiredParams = new Set(["mountTargetId"]);
|
|
898
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
899
877
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
900
878
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeMountTargetCompartmentRequest.retryConfiguration, specRetryConfiguration);
|
|
901
879
|
if (this.logger)
|
|
902
880
|
retrier.logger = this.logger;
|
|
903
881
|
const request = yield oci_common_2.composeRequest({
|
|
904
|
-
baseEndpoint:
|
|
882
|
+
baseEndpoint: this._endpoint,
|
|
905
883
|
defaultHeaders: this._defaultHeaders,
|
|
906
884
|
path: "/mountTargets/{mountTargetId}/actions/changeCompartment",
|
|
907
885
|
method: "POST",
|
|
@@ -957,14 +935,12 @@ class FileStorageClient {
|
|
|
957
935
|
"if-match": changeOutboundConnectorCompartmentRequest.ifMatch,
|
|
958
936
|
"opc-request-id": changeOutboundConnectorCompartmentRequest.opcRequestId
|
|
959
937
|
};
|
|
960
|
-
const requiredParams = new Set(["outboundConnectorId"]);
|
|
961
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
962
938
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
963
939
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeOutboundConnectorCompartmentRequest.retryConfiguration, specRetryConfiguration);
|
|
964
940
|
if (this.logger)
|
|
965
941
|
retrier.logger = this.logger;
|
|
966
942
|
const request = yield oci_common_2.composeRequest({
|
|
967
|
-
baseEndpoint:
|
|
943
|
+
baseEndpoint: this._endpoint,
|
|
968
944
|
defaultHeaders: this._defaultHeaders,
|
|
969
945
|
path: "/outboundConnectors/{outboundConnectorId}/actions/changeCompartment",
|
|
970
946
|
method: "POST",
|
|
@@ -1019,14 +995,12 @@ class FileStorageClient {
|
|
|
1019
995
|
"if-match": changeReplicationCompartmentRequest.ifMatch,
|
|
1020
996
|
"opc-request-id": changeReplicationCompartmentRequest.opcRequestId
|
|
1021
997
|
};
|
|
1022
|
-
const requiredParams = new Set(["replicationId"]);
|
|
1023
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1024
998
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1025
999
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeReplicationCompartmentRequest.retryConfiguration, specRetryConfiguration);
|
|
1026
1000
|
if (this.logger)
|
|
1027
1001
|
retrier.logger = this.logger;
|
|
1028
1002
|
const request = yield oci_common_2.composeRequest({
|
|
1029
|
-
baseEndpoint:
|
|
1003
|
+
baseEndpoint: this._endpoint,
|
|
1030
1004
|
defaultHeaders: this._defaultHeaders,
|
|
1031
1005
|
path: "/replications/{replicationId}/actions/changeCompartment",
|
|
1032
1006
|
method: "POST",
|
|
@@ -1077,14 +1051,12 @@ class FileStorageClient {
|
|
|
1077
1051
|
"opc-retry-token": createExportRequest.opcRetryToken,
|
|
1078
1052
|
"opc-request-id": createExportRequest.opcRequestId
|
|
1079
1053
|
};
|
|
1080
|
-
const requiredParams = new Set([]);
|
|
1081
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1082
1054
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1083
1055
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createExportRequest.retryConfiguration, specRetryConfiguration);
|
|
1084
1056
|
if (this.logger)
|
|
1085
1057
|
retrier.logger = this.logger;
|
|
1086
1058
|
const request = yield oci_common_2.composeRequest({
|
|
1087
|
-
baseEndpoint:
|
|
1059
|
+
baseEndpoint: this._endpoint,
|
|
1088
1060
|
defaultHeaders: this._defaultHeaders,
|
|
1089
1061
|
path: "/exports",
|
|
1090
1062
|
method: "POST",
|
|
@@ -1171,14 +1143,12 @@ class FileStorageClient {
|
|
|
1171
1143
|
"opc-retry-token": createFileSystemRequest.opcRetryToken,
|
|
1172
1144
|
"opc-request-id": createFileSystemRequest.opcRequestId
|
|
1173
1145
|
};
|
|
1174
|
-
const requiredParams = new Set([]);
|
|
1175
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1176
1146
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1177
1147
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createFileSystemRequest.retryConfiguration, specRetryConfiguration);
|
|
1178
1148
|
if (this.logger)
|
|
1179
1149
|
retrier.logger = this.logger;
|
|
1180
1150
|
const request = yield oci_common_2.composeRequest({
|
|
1181
|
-
baseEndpoint:
|
|
1151
|
+
baseEndpoint: this._endpoint,
|
|
1182
1152
|
defaultHeaders: this._defaultHeaders,
|
|
1183
1153
|
path: "/fileSystems",
|
|
1184
1154
|
method: "POST",
|
|
@@ -1241,14 +1211,12 @@ class FileStorageClient {
|
|
|
1241
1211
|
"opc-retry-token": createFilesystemSnapshotPolicyRequest.opcRetryToken,
|
|
1242
1212
|
"opc-request-id": createFilesystemSnapshotPolicyRequest.opcRequestId
|
|
1243
1213
|
};
|
|
1244
|
-
const requiredParams = new Set([]);
|
|
1245
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1246
1214
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1247
1215
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createFilesystemSnapshotPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
1248
1216
|
if (this.logger)
|
|
1249
1217
|
retrier.logger = this.logger;
|
|
1250
1218
|
const request = yield oci_common_2.composeRequest({
|
|
1251
|
-
baseEndpoint:
|
|
1219
|
+
baseEndpoint: this._endpoint,
|
|
1252
1220
|
defaultHeaders: this._defaultHeaders,
|
|
1253
1221
|
path: "/filesystemSnapshotPolicies",
|
|
1254
1222
|
method: "POST",
|
|
@@ -1340,14 +1308,12 @@ class FileStorageClient {
|
|
|
1340
1308
|
"opc-retry-token": createMountTargetRequest.opcRetryToken,
|
|
1341
1309
|
"opc-request-id": createMountTargetRequest.opcRequestId
|
|
1342
1310
|
};
|
|
1343
|
-
const requiredParams = new Set([]);
|
|
1344
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1345
1311
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1346
1312
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createMountTargetRequest.retryConfiguration, specRetryConfiguration);
|
|
1347
1313
|
if (this.logger)
|
|
1348
1314
|
retrier.logger = this.logger;
|
|
1349
1315
|
const request = yield oci_common_2.composeRequest({
|
|
1350
|
-
baseEndpoint:
|
|
1316
|
+
baseEndpoint: this._endpoint,
|
|
1351
1317
|
defaultHeaders: this._defaultHeaders,
|
|
1352
1318
|
path: "/mountTargets",
|
|
1353
1319
|
method: "POST",
|
|
@@ -1425,14 +1391,12 @@ class FileStorageClient {
|
|
|
1425
1391
|
"opc-retry-token": createOutboundConnectorRequest.opcRetryToken,
|
|
1426
1392
|
"opc-request-id": createOutboundConnectorRequest.opcRequestId
|
|
1427
1393
|
};
|
|
1428
|
-
const requiredParams = new Set([]);
|
|
1429
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1430
1394
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1431
1395
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createOutboundConnectorRequest.retryConfiguration, specRetryConfiguration);
|
|
1432
1396
|
if (this.logger)
|
|
1433
1397
|
retrier.logger = this.logger;
|
|
1434
1398
|
const request = yield oci_common_2.composeRequest({
|
|
1435
|
-
baseEndpoint:
|
|
1399
|
+
baseEndpoint: this._endpoint,
|
|
1436
1400
|
defaultHeaders: this._defaultHeaders,
|
|
1437
1401
|
path: "/outboundConnectors",
|
|
1438
1402
|
method: "POST",
|
|
@@ -1495,14 +1459,12 @@ class FileStorageClient {
|
|
|
1495
1459
|
"opc-request-id": createQuotaRuleRequest.opcRequestId,
|
|
1496
1460
|
"opc-retry-token": createQuotaRuleRequest.opcRetryToken
|
|
1497
1461
|
};
|
|
1498
|
-
const requiredParams = new Set(["fileSystemId"]);
|
|
1499
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1500
1462
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1501
1463
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createQuotaRuleRequest.retryConfiguration, specRetryConfiguration);
|
|
1502
1464
|
if (this.logger)
|
|
1503
1465
|
retrier.logger = this.logger;
|
|
1504
1466
|
const request = yield oci_common_2.composeRequest({
|
|
1505
|
-
baseEndpoint:
|
|
1467
|
+
baseEndpoint: this._endpoint,
|
|
1506
1468
|
defaultHeaders: this._defaultHeaders,
|
|
1507
1469
|
path: "/fileSystems/{fileSystemId}/quotaRules",
|
|
1508
1470
|
method: "POST",
|
|
@@ -1587,14 +1549,12 @@ class FileStorageClient {
|
|
|
1587
1549
|
"opc-retry-token": createReplicationRequest.opcRetryToken,
|
|
1588
1550
|
"opc-request-id": createReplicationRequest.opcRequestId
|
|
1589
1551
|
};
|
|
1590
|
-
const requiredParams = new Set([]);
|
|
1591
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1592
1552
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1593
1553
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createReplicationRequest.retryConfiguration, specRetryConfiguration);
|
|
1594
1554
|
if (this.logger)
|
|
1595
1555
|
retrier.logger = this.logger;
|
|
1596
1556
|
const request = yield oci_common_2.composeRequest({
|
|
1597
|
-
baseEndpoint:
|
|
1557
|
+
baseEndpoint: this._endpoint,
|
|
1598
1558
|
defaultHeaders: this._defaultHeaders,
|
|
1599
1559
|
path: "/replications",
|
|
1600
1560
|
method: "POST",
|
|
@@ -1654,14 +1614,12 @@ class FileStorageClient {
|
|
|
1654
1614
|
"opc-retry-token": createSnapshotRequest.opcRetryToken,
|
|
1655
1615
|
"opc-request-id": createSnapshotRequest.opcRequestId
|
|
1656
1616
|
};
|
|
1657
|
-
const requiredParams = new Set([]);
|
|
1658
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1659
1617
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1660
1618
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createSnapshotRequest.retryConfiguration, specRetryConfiguration);
|
|
1661
1619
|
if (this.logger)
|
|
1662
1620
|
retrier.logger = this.logger;
|
|
1663
1621
|
const request = yield oci_common_2.composeRequest({
|
|
1664
|
-
baseEndpoint:
|
|
1622
|
+
baseEndpoint: this._endpoint,
|
|
1665
1623
|
defaultHeaders: this._defaultHeaders,
|
|
1666
1624
|
path: "/snapshots",
|
|
1667
1625
|
method: "POST",
|
|
@@ -1724,14 +1682,12 @@ class FileStorageClient {
|
|
|
1724
1682
|
"if-match": deleteExportRequest.ifMatch,
|
|
1725
1683
|
"opc-request-id": deleteExportRequest.opcRequestId
|
|
1726
1684
|
};
|
|
1727
|
-
const requiredParams = new Set(["exportId"]);
|
|
1728
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1729
1685
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1730
1686
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteExportRequest.retryConfiguration, specRetryConfiguration);
|
|
1731
1687
|
if (this.logger)
|
|
1732
1688
|
retrier.logger = this.logger;
|
|
1733
1689
|
const request = yield oci_common_2.composeRequest({
|
|
1734
|
-
baseEndpoint:
|
|
1690
|
+
baseEndpoint: this._endpoint,
|
|
1735
1691
|
defaultHeaders: this._defaultHeaders,
|
|
1736
1692
|
path: "/exports/{exportId}",
|
|
1737
1693
|
method: "DELETE",
|
|
@@ -1787,14 +1743,12 @@ class FileStorageClient {
|
|
|
1787
1743
|
"if-match": deleteFileSystemRequest.ifMatch,
|
|
1788
1744
|
"opc-request-id": deleteFileSystemRequest.opcRequestId
|
|
1789
1745
|
};
|
|
1790
|
-
const requiredParams = new Set(["fileSystemId"]);
|
|
1791
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1792
1746
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1793
1747
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteFileSystemRequest.retryConfiguration, specRetryConfiguration);
|
|
1794
1748
|
if (this.logger)
|
|
1795
1749
|
retrier.logger = this.logger;
|
|
1796
1750
|
const request = yield oci_common_2.composeRequest({
|
|
1797
|
-
baseEndpoint:
|
|
1751
|
+
baseEndpoint: this._endpoint,
|
|
1798
1752
|
defaultHeaders: this._defaultHeaders,
|
|
1799
1753
|
path: "/fileSystems/{fileSystemId}",
|
|
1800
1754
|
method: "DELETE",
|
|
@@ -1847,14 +1801,12 @@ class FileStorageClient {
|
|
|
1847
1801
|
"if-match": deleteFilesystemSnapshotPolicyRequest.ifMatch,
|
|
1848
1802
|
"opc-request-id": deleteFilesystemSnapshotPolicyRequest.opcRequestId
|
|
1849
1803
|
};
|
|
1850
|
-
const requiredParams = new Set(["filesystemSnapshotPolicyId"]);
|
|
1851
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1852
1804
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1853
1805
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteFilesystemSnapshotPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
1854
1806
|
if (this.logger)
|
|
1855
1807
|
retrier.logger = this.logger;
|
|
1856
1808
|
const request = yield oci_common_2.composeRequest({
|
|
1857
|
-
baseEndpoint:
|
|
1809
|
+
baseEndpoint: this._endpoint,
|
|
1858
1810
|
defaultHeaders: this._defaultHeaders,
|
|
1859
1811
|
path: "/filesystemSnapshotPolicies/{filesystemSnapshotPolicyId}",
|
|
1860
1812
|
method: "DELETE",
|
|
@@ -1908,14 +1860,12 @@ class FileStorageClient {
|
|
|
1908
1860
|
"if-match": deleteMountTargetRequest.ifMatch,
|
|
1909
1861
|
"opc-request-id": deleteMountTargetRequest.opcRequestId
|
|
1910
1862
|
};
|
|
1911
|
-
const requiredParams = new Set(["mountTargetId"]);
|
|
1912
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1913
1863
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1914
1864
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteMountTargetRequest.retryConfiguration, specRetryConfiguration);
|
|
1915
1865
|
if (this.logger)
|
|
1916
1866
|
retrier.logger = this.logger;
|
|
1917
1867
|
const request = yield oci_common_2.composeRequest({
|
|
1918
|
-
baseEndpoint:
|
|
1868
|
+
baseEndpoint: this._endpoint,
|
|
1919
1869
|
defaultHeaders: this._defaultHeaders,
|
|
1920
1870
|
path: "/mountTargets/{mountTargetId}",
|
|
1921
1871
|
method: "DELETE",
|
|
@@ -1968,14 +1918,12 @@ class FileStorageClient {
|
|
|
1968
1918
|
"if-match": deleteOutboundConnectorRequest.ifMatch,
|
|
1969
1919
|
"opc-request-id": deleteOutboundConnectorRequest.opcRequestId
|
|
1970
1920
|
};
|
|
1971
|
-
const requiredParams = new Set(["outboundConnectorId"]);
|
|
1972
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
1973
1921
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1974
1922
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteOutboundConnectorRequest.retryConfiguration, specRetryConfiguration);
|
|
1975
1923
|
if (this.logger)
|
|
1976
1924
|
retrier.logger = this.logger;
|
|
1977
1925
|
const request = yield oci_common_2.composeRequest({
|
|
1978
|
-
baseEndpoint:
|
|
1926
|
+
baseEndpoint: this._endpoint,
|
|
1979
1927
|
defaultHeaders: this._defaultHeaders,
|
|
1980
1928
|
path: "/outboundConnectors/{outboundConnectorId}",
|
|
1981
1929
|
method: "DELETE",
|
|
@@ -2027,14 +1975,12 @@ class FileStorageClient {
|
|
|
2027
1975
|
"if-match": deleteQuotaRuleRequest.ifMatch,
|
|
2028
1976
|
"opc-request-id": deleteQuotaRuleRequest.opcRequestId
|
|
2029
1977
|
};
|
|
2030
|
-
const requiredParams = new Set(["fileSystemId", "quotaRuleId"]);
|
|
2031
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2032
1978
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2033
1979
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteQuotaRuleRequest.retryConfiguration, specRetryConfiguration);
|
|
2034
1980
|
if (this.logger)
|
|
2035
1981
|
retrier.logger = this.logger;
|
|
2036
1982
|
const request = yield oci_common_2.composeRequest({
|
|
2037
|
-
baseEndpoint:
|
|
1983
|
+
baseEndpoint: this._endpoint,
|
|
2038
1984
|
defaultHeaders: this._defaultHeaders,
|
|
2039
1985
|
path: "/fileSystems/{fileSystemId}/quotaRules/{quotaRuleId}",
|
|
2040
1986
|
method: "DELETE",
|
|
@@ -2088,14 +2034,12 @@ class FileStorageClient {
|
|
|
2088
2034
|
"if-match": deleteReplicationRequest.ifMatch,
|
|
2089
2035
|
"opc-request-id": deleteReplicationRequest.opcRequestId
|
|
2090
2036
|
};
|
|
2091
|
-
const requiredParams = new Set(["replicationId"]);
|
|
2092
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2093
2037
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2094
2038
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteReplicationRequest.retryConfiguration, specRetryConfiguration);
|
|
2095
2039
|
if (this.logger)
|
|
2096
2040
|
retrier.logger = this.logger;
|
|
2097
2041
|
const request = yield oci_common_2.composeRequest({
|
|
2098
|
-
baseEndpoint:
|
|
2042
|
+
baseEndpoint: this._endpoint,
|
|
2099
2043
|
defaultHeaders: this._defaultHeaders,
|
|
2100
2044
|
path: "/replications/{replicationId}",
|
|
2101
2045
|
method: "DELETE",
|
|
@@ -2151,14 +2095,12 @@ class FileStorageClient {
|
|
|
2151
2095
|
"if-match": deleteReplicationTargetRequest.ifMatch,
|
|
2152
2096
|
"opc-request-id": deleteReplicationTargetRequest.opcRequestId
|
|
2153
2097
|
};
|
|
2154
|
-
const requiredParams = new Set(["replicationTargetId"]);
|
|
2155
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2156
2098
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2157
2099
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteReplicationTargetRequest.retryConfiguration, specRetryConfiguration);
|
|
2158
2100
|
if (this.logger)
|
|
2159
2101
|
retrier.logger = this.logger;
|
|
2160
2102
|
const request = yield oci_common_2.composeRequest({
|
|
2161
|
-
baseEndpoint:
|
|
2103
|
+
baseEndpoint: this._endpoint,
|
|
2162
2104
|
defaultHeaders: this._defaultHeaders,
|
|
2163
2105
|
path: "/replicationTargets/{replicationTargetId}",
|
|
2164
2106
|
method: "DELETE",
|
|
@@ -2211,14 +2153,12 @@ class FileStorageClient {
|
|
|
2211
2153
|
"if-match": deleteSnapshotRequest.ifMatch,
|
|
2212
2154
|
"opc-request-id": deleteSnapshotRequest.opcRequestId
|
|
2213
2155
|
};
|
|
2214
|
-
const requiredParams = new Set(["snapshotId"]);
|
|
2215
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2216
2156
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2217
2157
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteSnapshotRequest.retryConfiguration, specRetryConfiguration);
|
|
2218
2158
|
if (this.logger)
|
|
2219
2159
|
retrier.logger = this.logger;
|
|
2220
2160
|
const request = yield oci_common_2.composeRequest({
|
|
2221
|
-
baseEndpoint:
|
|
2161
|
+
baseEndpoint: this._endpoint,
|
|
2222
2162
|
defaultHeaders: this._defaultHeaders,
|
|
2223
2163
|
path: "/snapshots/{snapshotId}",
|
|
2224
2164
|
method: "DELETE",
|
|
@@ -2269,14 +2209,12 @@ class FileStorageClient {
|
|
|
2269
2209
|
"if-match": detachCloneRequest.ifMatch,
|
|
2270
2210
|
"opc-request-id": detachCloneRequest.opcRequestId
|
|
2271
2211
|
};
|
|
2272
|
-
const requiredParams = new Set(["fileSystemId"]);
|
|
2273
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2274
2212
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2275
2213
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, detachCloneRequest.retryConfiguration, specRetryConfiguration);
|
|
2276
2214
|
if (this.logger)
|
|
2277
2215
|
retrier.logger = this.logger;
|
|
2278
2216
|
const request = yield oci_common_2.composeRequest({
|
|
2279
|
-
baseEndpoint:
|
|
2217
|
+
baseEndpoint: this._endpoint,
|
|
2280
2218
|
defaultHeaders: this._defaultHeaders,
|
|
2281
2219
|
path: "/fileSystems/{fileSystemId}/actions/detachClone",
|
|
2282
2220
|
method: "POST",
|
|
@@ -2329,14 +2267,12 @@ class FileStorageClient {
|
|
|
2329
2267
|
"if-match": estimateReplicationRequest.ifMatch,
|
|
2330
2268
|
"opc-request-id": estimateReplicationRequest.opcRequestId
|
|
2331
2269
|
};
|
|
2332
|
-
const requiredParams = new Set(["fileSystemId"]);
|
|
2333
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2334
2270
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2335
2271
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, estimateReplicationRequest.retryConfiguration, specRetryConfiguration);
|
|
2336
2272
|
if (this.logger)
|
|
2337
2273
|
retrier.logger = this.logger;
|
|
2338
2274
|
const request = yield oci_common_2.composeRequest({
|
|
2339
|
-
baseEndpoint:
|
|
2275
|
+
baseEndpoint: this._endpoint,
|
|
2340
2276
|
defaultHeaders: this._defaultHeaders,
|
|
2341
2277
|
path: "/fileSystems/{fileSystemId}/actions/estimateReplication",
|
|
2342
2278
|
method: "POST",
|
|
@@ -2394,14 +2330,12 @@ class FileStorageClient {
|
|
|
2394
2330
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2395
2331
|
"opc-request-id": getExportRequest.opcRequestId
|
|
2396
2332
|
};
|
|
2397
|
-
const requiredParams = new Set(["exportId"]);
|
|
2398
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2399
2333
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2400
2334
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getExportRequest.retryConfiguration, specRetryConfiguration);
|
|
2401
2335
|
if (this.logger)
|
|
2402
2336
|
retrier.logger = this.logger;
|
|
2403
2337
|
const request = yield oci_common_2.composeRequest({
|
|
2404
|
-
baseEndpoint:
|
|
2338
|
+
baseEndpoint: this._endpoint,
|
|
2405
2339
|
defaultHeaders: this._defaultHeaders,
|
|
2406
2340
|
path: "/exports/{exportId}",
|
|
2407
2341
|
method: "GET",
|
|
@@ -2459,14 +2393,12 @@ class FileStorageClient {
|
|
|
2459
2393
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2460
2394
|
"opc-request-id": getExportSetRequest.opcRequestId
|
|
2461
2395
|
};
|
|
2462
|
-
const requiredParams = new Set(["exportSetId"]);
|
|
2463
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2464
2396
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2465
2397
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getExportSetRequest.retryConfiguration, specRetryConfiguration);
|
|
2466
2398
|
if (this.logger)
|
|
2467
2399
|
retrier.logger = this.logger;
|
|
2468
2400
|
const request = yield oci_common_2.composeRequest({
|
|
2469
|
-
baseEndpoint:
|
|
2401
|
+
baseEndpoint: this._endpoint,
|
|
2470
2402
|
defaultHeaders: this._defaultHeaders,
|
|
2471
2403
|
path: "/exportSets/{exportSetId}",
|
|
2472
2404
|
method: "GET",
|
|
@@ -2524,14 +2456,12 @@ class FileStorageClient {
|
|
|
2524
2456
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2525
2457
|
"opc-request-id": getFileSystemRequest.opcRequestId
|
|
2526
2458
|
};
|
|
2527
|
-
const requiredParams = new Set(["fileSystemId"]);
|
|
2528
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2529
2459
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2530
2460
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getFileSystemRequest.retryConfiguration, specRetryConfiguration);
|
|
2531
2461
|
if (this.logger)
|
|
2532
2462
|
retrier.logger = this.logger;
|
|
2533
2463
|
const request = yield oci_common_2.composeRequest({
|
|
2534
|
-
baseEndpoint:
|
|
2464
|
+
baseEndpoint: this._endpoint,
|
|
2535
2465
|
defaultHeaders: this._defaultHeaders,
|
|
2536
2466
|
path: "/fileSystems/{fileSystemId}",
|
|
2537
2467
|
method: "GET",
|
|
@@ -2589,14 +2519,12 @@ class FileStorageClient {
|
|
|
2589
2519
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2590
2520
|
"opc-request-id": getFilesystemSnapshotPolicyRequest.opcRequestId
|
|
2591
2521
|
};
|
|
2592
|
-
const requiredParams = new Set(["filesystemSnapshotPolicyId"]);
|
|
2593
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2594
2522
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2595
2523
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getFilesystemSnapshotPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
2596
2524
|
if (this.logger)
|
|
2597
2525
|
retrier.logger = this.logger;
|
|
2598
2526
|
const request = yield oci_common_2.composeRequest({
|
|
2599
|
-
baseEndpoint:
|
|
2527
|
+
baseEndpoint: this._endpoint,
|
|
2600
2528
|
defaultHeaders: this._defaultHeaders,
|
|
2601
2529
|
path: "/filesystemSnapshotPolicies/{filesystemSnapshotPolicyId}",
|
|
2602
2530
|
method: "GET",
|
|
@@ -2654,14 +2582,12 @@ class FileStorageClient {
|
|
|
2654
2582
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2655
2583
|
"opc-request-id": getMountTargetRequest.opcRequestId
|
|
2656
2584
|
};
|
|
2657
|
-
const requiredParams = new Set(["mountTargetId"]);
|
|
2658
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2659
2585
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2660
2586
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getMountTargetRequest.retryConfiguration, specRetryConfiguration);
|
|
2661
2587
|
if (this.logger)
|
|
2662
2588
|
retrier.logger = this.logger;
|
|
2663
2589
|
const request = yield oci_common_2.composeRequest({
|
|
2664
|
-
baseEndpoint:
|
|
2590
|
+
baseEndpoint: this._endpoint,
|
|
2665
2591
|
defaultHeaders: this._defaultHeaders,
|
|
2666
2592
|
path: "/mountTargets/{mountTargetId}",
|
|
2667
2593
|
method: "GET",
|
|
@@ -2719,14 +2645,12 @@ class FileStorageClient {
|
|
|
2719
2645
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2720
2646
|
"opc-request-id": getOutboundConnectorRequest.opcRequestId
|
|
2721
2647
|
};
|
|
2722
|
-
const requiredParams = new Set(["outboundConnectorId"]);
|
|
2723
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2724
2648
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2725
2649
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getOutboundConnectorRequest.retryConfiguration, specRetryConfiguration);
|
|
2726
2650
|
if (this.logger)
|
|
2727
2651
|
retrier.logger = this.logger;
|
|
2728
2652
|
const request = yield oci_common_2.composeRequest({
|
|
2729
|
-
baseEndpoint:
|
|
2653
|
+
baseEndpoint: this._endpoint,
|
|
2730
2654
|
defaultHeaders: this._defaultHeaders,
|
|
2731
2655
|
path: "/outboundConnectors/{outboundConnectorId}",
|
|
2732
2656
|
method: "GET",
|
|
@@ -2787,14 +2711,12 @@ class FileStorageClient {
|
|
|
2787
2711
|
"if-match": getQuotaRuleRequest.ifMatch,
|
|
2788
2712
|
"opc-request-id": getQuotaRuleRequest.opcRequestId
|
|
2789
2713
|
};
|
|
2790
|
-
const requiredParams = new Set(["fileSystemId", "quotaRuleId"]);
|
|
2791
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2792
2714
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2793
2715
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getQuotaRuleRequest.retryConfiguration, specRetryConfiguration);
|
|
2794
2716
|
if (this.logger)
|
|
2795
2717
|
retrier.logger = this.logger;
|
|
2796
2718
|
const request = yield oci_common_2.composeRequest({
|
|
2797
|
-
baseEndpoint:
|
|
2719
|
+
baseEndpoint: this._endpoint,
|
|
2798
2720
|
defaultHeaders: this._defaultHeaders,
|
|
2799
2721
|
path: "/fileSystems/{fileSystemId}/quotaRules/{quotaRuleId}",
|
|
2800
2722
|
method: "GET",
|
|
@@ -2852,14 +2774,12 @@ class FileStorageClient {
|
|
|
2852
2774
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2853
2775
|
"opc-request-id": getReplicationRequest.opcRequestId
|
|
2854
2776
|
};
|
|
2855
|
-
const requiredParams = new Set(["replicationId"]);
|
|
2856
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2857
2777
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2858
2778
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getReplicationRequest.retryConfiguration, specRetryConfiguration);
|
|
2859
2779
|
if (this.logger)
|
|
2860
2780
|
retrier.logger = this.logger;
|
|
2861
2781
|
const request = yield oci_common_2.composeRequest({
|
|
2862
|
-
baseEndpoint:
|
|
2782
|
+
baseEndpoint: this._endpoint,
|
|
2863
2783
|
defaultHeaders: this._defaultHeaders,
|
|
2864
2784
|
path: "/replications/{replicationId}",
|
|
2865
2785
|
method: "GET",
|
|
@@ -2917,14 +2837,12 @@ class FileStorageClient {
|
|
|
2917
2837
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2918
2838
|
"opc-request-id": getReplicationTargetRequest.opcRequestId
|
|
2919
2839
|
};
|
|
2920
|
-
const requiredParams = new Set(["replicationTargetId"]);
|
|
2921
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2922
2840
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2923
2841
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getReplicationTargetRequest.retryConfiguration, specRetryConfiguration);
|
|
2924
2842
|
if (this.logger)
|
|
2925
2843
|
retrier.logger = this.logger;
|
|
2926
2844
|
const request = yield oci_common_2.composeRequest({
|
|
2927
|
-
baseEndpoint:
|
|
2845
|
+
baseEndpoint: this._endpoint,
|
|
2928
2846
|
defaultHeaders: this._defaultHeaders,
|
|
2929
2847
|
path: "/replicationTargets/{replicationTargetId}",
|
|
2930
2848
|
method: "GET",
|
|
@@ -2982,14 +2900,12 @@ class FileStorageClient {
|
|
|
2982
2900
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2983
2901
|
"opc-request-id": getSnapshotRequest.opcRequestId
|
|
2984
2902
|
};
|
|
2985
|
-
const requiredParams = new Set(["snapshotId"]);
|
|
2986
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
2987
2903
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2988
2904
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getSnapshotRequest.retryConfiguration, specRetryConfiguration);
|
|
2989
2905
|
if (this.logger)
|
|
2990
2906
|
retrier.logger = this.logger;
|
|
2991
2907
|
const request = yield oci_common_2.composeRequest({
|
|
2992
|
-
baseEndpoint:
|
|
2908
|
+
baseEndpoint: this._endpoint,
|
|
2993
2909
|
defaultHeaders: this._defaultHeaders,
|
|
2994
2910
|
path: "/snapshots/{snapshotId}",
|
|
2995
2911
|
method: "GET",
|
|
@@ -3056,14 +2972,12 @@ class FileStorageClient {
|
|
|
3056
2972
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3057
2973
|
"opc-request-id": listExportSetsRequest.opcRequestId
|
|
3058
2974
|
};
|
|
3059
|
-
const requiredParams = new Set(["compartmentId", "availabilityDomain"]);
|
|
3060
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
3061
2975
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3062
2976
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listExportSetsRequest.retryConfiguration, specRetryConfiguration);
|
|
3063
2977
|
if (this.logger)
|
|
3064
2978
|
retrier.logger = this.logger;
|
|
3065
2979
|
const request = yield oci_common_2.composeRequest({
|
|
3066
|
-
baseEndpoint:
|
|
2980
|
+
baseEndpoint: this._endpoint,
|
|
3067
2981
|
defaultHeaders: this._defaultHeaders,
|
|
3068
2982
|
path: "/exportSets",
|
|
3069
2983
|
method: "GET",
|
|
@@ -3172,14 +3086,12 @@ class FileStorageClient {
|
|
|
3172
3086
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3173
3087
|
"opc-request-id": listExportsRequest.opcRequestId
|
|
3174
3088
|
};
|
|
3175
|
-
const requiredParams = new Set([]);
|
|
3176
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
3177
3089
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3178
3090
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listExportsRequest.retryConfiguration, specRetryConfiguration);
|
|
3179
3091
|
if (this.logger)
|
|
3180
3092
|
retrier.logger = this.logger;
|
|
3181
3093
|
const request = yield oci_common_2.composeRequest({
|
|
3182
|
-
baseEndpoint:
|
|
3094
|
+
baseEndpoint: this._endpoint,
|
|
3183
3095
|
defaultHeaders: this._defaultHeaders,
|
|
3184
3096
|
path: "/exports",
|
|
3185
3097
|
method: "GET",
|
|
@@ -3290,14 +3202,12 @@ class FileStorageClient {
|
|
|
3290
3202
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3291
3203
|
"opc-request-id": listFileSystemsRequest.opcRequestId
|
|
3292
3204
|
};
|
|
3293
|
-
const requiredParams = new Set(["compartmentId", "availabilityDomain"]);
|
|
3294
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
3295
3205
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3296
3206
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listFileSystemsRequest.retryConfiguration, specRetryConfiguration);
|
|
3297
3207
|
if (this.logger)
|
|
3298
3208
|
retrier.logger = this.logger;
|
|
3299
3209
|
const request = yield oci_common_2.composeRequest({
|
|
3300
|
-
baseEndpoint:
|
|
3210
|
+
baseEndpoint: this._endpoint,
|
|
3301
3211
|
defaultHeaders: this._defaultHeaders,
|
|
3302
3212
|
path: "/fileSystems",
|
|
3303
3213
|
method: "GET",
|
|
@@ -3404,14 +3314,12 @@ class FileStorageClient {
|
|
|
3404
3314
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3405
3315
|
"opc-request-id": listFilesystemSnapshotPoliciesRequest.opcRequestId
|
|
3406
3316
|
};
|
|
3407
|
-
const requiredParams = new Set(["compartmentId", "availabilityDomain"]);
|
|
3408
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
3409
3317
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3410
3318
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listFilesystemSnapshotPoliciesRequest.retryConfiguration, specRetryConfiguration);
|
|
3411
3319
|
if (this.logger)
|
|
3412
3320
|
retrier.logger = this.logger;
|
|
3413
3321
|
const request = yield oci_common_2.composeRequest({
|
|
3414
|
-
baseEndpoint:
|
|
3322
|
+
baseEndpoint: this._endpoint,
|
|
3415
3323
|
defaultHeaders: this._defaultHeaders,
|
|
3416
3324
|
path: "/filesystemSnapshotPolicies",
|
|
3417
3325
|
method: "GET",
|
|
@@ -3519,14 +3427,12 @@ class FileStorageClient {
|
|
|
3519
3427
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3520
3428
|
"opc-request-id": listMountTargetsRequest.opcRequestId
|
|
3521
3429
|
};
|
|
3522
|
-
const requiredParams = new Set(["compartmentId", "availabilityDomain"]);
|
|
3523
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
3524
3430
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3525
3431
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listMountTargetsRequest.retryConfiguration, specRetryConfiguration);
|
|
3526
3432
|
if (this.logger)
|
|
3527
3433
|
retrier.logger = this.logger;
|
|
3528
3434
|
const request = yield oci_common_2.composeRequest({
|
|
3529
|
-
baseEndpoint:
|
|
3435
|
+
baseEndpoint: this._endpoint,
|
|
3530
3436
|
defaultHeaders: this._defaultHeaders,
|
|
3531
3437
|
path: "/mountTargets",
|
|
3532
3438
|
method: "GET",
|
|
@@ -3633,14 +3539,12 @@ class FileStorageClient {
|
|
|
3633
3539
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3634
3540
|
"opc-request-id": listOutboundConnectorsRequest.opcRequestId
|
|
3635
3541
|
};
|
|
3636
|
-
const requiredParams = new Set(["compartmentId", "availabilityDomain"]);
|
|
3637
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
3638
3542
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3639
3543
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listOutboundConnectorsRequest.retryConfiguration, specRetryConfiguration);
|
|
3640
3544
|
if (this.logger)
|
|
3641
3545
|
retrier.logger = this.logger;
|
|
3642
3546
|
const request = yield oci_common_2.composeRequest({
|
|
3643
|
-
baseEndpoint:
|
|
3547
|
+
baseEndpoint: this._endpoint,
|
|
3644
3548
|
defaultHeaders: this._defaultHeaders,
|
|
3645
3549
|
path: "/outboundConnectors",
|
|
3646
3550
|
method: "GET",
|
|
@@ -3747,14 +3651,12 @@ class FileStorageClient {
|
|
|
3747
3651
|
"if-match": listQuotaRulesRequest.ifMatch,
|
|
3748
3652
|
"opc-request-id": listQuotaRulesRequest.opcRequestId
|
|
3749
3653
|
};
|
|
3750
|
-
const requiredParams = new Set(["fileSystemId", "principalType"]);
|
|
3751
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
3752
3654
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3753
3655
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listQuotaRulesRequest.retryConfiguration, specRetryConfiguration);
|
|
3754
3656
|
if (this.logger)
|
|
3755
3657
|
retrier.logger = this.logger;
|
|
3756
3658
|
const request = yield oci_common_2.composeRequest({
|
|
3757
|
-
baseEndpoint:
|
|
3659
|
+
baseEndpoint: this._endpoint,
|
|
3758
3660
|
defaultHeaders: this._defaultHeaders,
|
|
3759
3661
|
path: "/fileSystems/{fileSystemId}/quotaRules",
|
|
3760
3662
|
method: "GET",
|
|
@@ -3861,14 +3763,12 @@ class FileStorageClient {
|
|
|
3861
3763
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3862
3764
|
"opc-request-id": listReplicationTargetsRequest.opcRequestId
|
|
3863
3765
|
};
|
|
3864
|
-
const requiredParams = new Set(["compartmentId", "availabilityDomain"]);
|
|
3865
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
3866
3766
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3867
3767
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listReplicationTargetsRequest.retryConfiguration, specRetryConfiguration);
|
|
3868
3768
|
if (this.logger)
|
|
3869
3769
|
retrier.logger = this.logger;
|
|
3870
3770
|
const request = yield oci_common_2.composeRequest({
|
|
3871
|
-
baseEndpoint:
|
|
3771
|
+
baseEndpoint: this._endpoint,
|
|
3872
3772
|
defaultHeaders: this._defaultHeaders,
|
|
3873
3773
|
path: "/replicationTargets",
|
|
3874
3774
|
method: "GET",
|
|
@@ -3976,14 +3876,12 @@ class FileStorageClient {
|
|
|
3976
3876
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3977
3877
|
"opc-request-id": listReplicationsRequest.opcRequestId
|
|
3978
3878
|
};
|
|
3979
|
-
const requiredParams = new Set(["compartmentId", "availabilityDomain"]);
|
|
3980
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
3981
3879
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3982
3880
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listReplicationsRequest.retryConfiguration, specRetryConfiguration);
|
|
3983
3881
|
if (this.logger)
|
|
3984
3882
|
retrier.logger = this.logger;
|
|
3985
3883
|
const request = yield oci_common_2.composeRequest({
|
|
3986
|
-
baseEndpoint:
|
|
3884
|
+
baseEndpoint: this._endpoint,
|
|
3987
3885
|
defaultHeaders: this._defaultHeaders,
|
|
3988
3886
|
path: "/replications",
|
|
3989
3887
|
method: "GET",
|
|
@@ -4095,14 +3993,12 @@ class FileStorageClient {
|
|
|
4095
3993
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
4096
3994
|
"opc-request-id": listSnapshotsRequest.opcRequestId
|
|
4097
3995
|
};
|
|
4098
|
-
const requiredParams = new Set([]);
|
|
4099
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
4100
3996
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4101
3997
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listSnapshotsRequest.retryConfiguration, specRetryConfiguration);
|
|
4102
3998
|
if (this.logger)
|
|
4103
3999
|
retrier.logger = this.logger;
|
|
4104
4000
|
const request = yield oci_common_2.composeRequest({
|
|
4105
|
-
baseEndpoint:
|
|
4001
|
+
baseEndpoint: this._endpoint,
|
|
4106
4002
|
defaultHeaders: this._defaultHeaders,
|
|
4107
4003
|
path: "/snapshots",
|
|
4108
4004
|
method: "GET",
|
|
@@ -4209,14 +4105,12 @@ class FileStorageClient {
|
|
|
4209
4105
|
"if-match": pauseFilesystemSnapshotPolicyRequest.ifMatch,
|
|
4210
4106
|
"opc-request-id": pauseFilesystemSnapshotPolicyRequest.opcRequestId
|
|
4211
4107
|
};
|
|
4212
|
-
const requiredParams = new Set(["filesystemSnapshotPolicyId"]);
|
|
4213
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
4214
4108
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4215
4109
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, pauseFilesystemSnapshotPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
4216
4110
|
if (this.logger)
|
|
4217
4111
|
retrier.logger = this.logger;
|
|
4218
4112
|
const request = yield oci_common_2.composeRequest({
|
|
4219
|
-
baseEndpoint:
|
|
4113
|
+
baseEndpoint: this._endpoint,
|
|
4220
4114
|
defaultHeaders: this._defaultHeaders,
|
|
4221
4115
|
path: "/filesystemSnapshotPolicies/{filesystemSnapshotPolicyId}/actions/pause",
|
|
4222
4116
|
method: "POST",
|
|
@@ -4275,14 +4169,12 @@ class FileStorageClient {
|
|
|
4275
4169
|
"if-match": removeExportLockRequest.ifMatch,
|
|
4276
4170
|
"opc-request-id": removeExportLockRequest.opcRequestId
|
|
4277
4171
|
};
|
|
4278
|
-
const requiredParams = new Set(["exportId"]);
|
|
4279
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
4280
4172
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4281
4173
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, removeExportLockRequest.retryConfiguration, specRetryConfiguration);
|
|
4282
4174
|
if (this.logger)
|
|
4283
4175
|
retrier.logger = this.logger;
|
|
4284
4176
|
const request = yield oci_common_2.composeRequest({
|
|
4285
|
-
baseEndpoint:
|
|
4177
|
+
baseEndpoint: this._endpoint,
|
|
4286
4178
|
defaultHeaders: this._defaultHeaders,
|
|
4287
4179
|
path: "/exports/{exportId}/actions/removeLock",
|
|
4288
4180
|
method: "POST",
|
|
@@ -4342,14 +4234,12 @@ class FileStorageClient {
|
|
|
4342
4234
|
"if-match": removeFileSystemLockRequest.ifMatch,
|
|
4343
4235
|
"opc-request-id": removeFileSystemLockRequest.opcRequestId
|
|
4344
4236
|
};
|
|
4345
|
-
const requiredParams = new Set(["fileSystemId"]);
|
|
4346
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
4347
4237
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4348
4238
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, removeFileSystemLockRequest.retryConfiguration, specRetryConfiguration);
|
|
4349
4239
|
if (this.logger)
|
|
4350
4240
|
retrier.logger = this.logger;
|
|
4351
4241
|
const request = yield oci_common_2.composeRequest({
|
|
4352
|
-
baseEndpoint:
|
|
4242
|
+
baseEndpoint: this._endpoint,
|
|
4353
4243
|
defaultHeaders: this._defaultHeaders,
|
|
4354
4244
|
path: "/fileSystems/{fileSystemId}/actions/removeLock",
|
|
4355
4245
|
method: "POST",
|
|
@@ -4409,14 +4299,12 @@ class FileStorageClient {
|
|
|
4409
4299
|
"if-match": removeFilesystemSnapshotPolicyLockRequest.ifMatch,
|
|
4410
4300
|
"opc-request-id": removeFilesystemSnapshotPolicyLockRequest.opcRequestId
|
|
4411
4301
|
};
|
|
4412
|
-
const requiredParams = new Set(["filesystemSnapshotPolicyId"]);
|
|
4413
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
4414
4302
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4415
4303
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, removeFilesystemSnapshotPolicyLockRequest.retryConfiguration, specRetryConfiguration);
|
|
4416
4304
|
if (this.logger)
|
|
4417
4305
|
retrier.logger = this.logger;
|
|
4418
4306
|
const request = yield oci_common_2.composeRequest({
|
|
4419
|
-
baseEndpoint:
|
|
4307
|
+
baseEndpoint: this._endpoint,
|
|
4420
4308
|
defaultHeaders: this._defaultHeaders,
|
|
4421
4309
|
path: "/filesystemSnapshotPolicies/{filesystemSnapshotPolicyId}/actions/removeLock",
|
|
4422
4310
|
method: "POST",
|
|
@@ -4476,14 +4364,12 @@ class FileStorageClient {
|
|
|
4476
4364
|
"if-match": removeMountTargetLockRequest.ifMatch,
|
|
4477
4365
|
"opc-request-id": removeMountTargetLockRequest.opcRequestId
|
|
4478
4366
|
};
|
|
4479
|
-
const requiredParams = new Set(["mountTargetId"]);
|
|
4480
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
4481
4367
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4482
4368
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, removeMountTargetLockRequest.retryConfiguration, specRetryConfiguration);
|
|
4483
4369
|
if (this.logger)
|
|
4484
4370
|
retrier.logger = this.logger;
|
|
4485
4371
|
const request = yield oci_common_2.composeRequest({
|
|
4486
|
-
baseEndpoint:
|
|
4372
|
+
baseEndpoint: this._endpoint,
|
|
4487
4373
|
defaultHeaders: this._defaultHeaders,
|
|
4488
4374
|
path: "/mountTargets/{mountTargetId}/actions/removeLock",
|
|
4489
4375
|
method: "POST",
|
|
@@ -4543,14 +4429,12 @@ class FileStorageClient {
|
|
|
4543
4429
|
"if-match": removeOutboundConnectorLockRequest.ifMatch,
|
|
4544
4430
|
"opc-request-id": removeOutboundConnectorLockRequest.opcRequestId
|
|
4545
4431
|
};
|
|
4546
|
-
const requiredParams = new Set(["outboundConnectorId"]);
|
|
4547
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
4548
4432
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4549
4433
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, removeOutboundConnectorLockRequest.retryConfiguration, specRetryConfiguration);
|
|
4550
4434
|
if (this.logger)
|
|
4551
4435
|
retrier.logger = this.logger;
|
|
4552
4436
|
const request = yield oci_common_2.composeRequest({
|
|
4553
|
-
baseEndpoint:
|
|
4437
|
+
baseEndpoint: this._endpoint,
|
|
4554
4438
|
defaultHeaders: this._defaultHeaders,
|
|
4555
4439
|
path: "/outboundConnectors/{outboundConnectorId}/actions/removeLock",
|
|
4556
4440
|
method: "POST",
|
|
@@ -4610,14 +4494,12 @@ class FileStorageClient {
|
|
|
4610
4494
|
"if-match": removeReplicationLockRequest.ifMatch,
|
|
4611
4495
|
"opc-request-id": removeReplicationLockRequest.opcRequestId
|
|
4612
4496
|
};
|
|
4613
|
-
const requiredParams = new Set(["replicationId"]);
|
|
4614
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
4615
4497
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4616
4498
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, removeReplicationLockRequest.retryConfiguration, specRetryConfiguration);
|
|
4617
4499
|
if (this.logger)
|
|
4618
4500
|
retrier.logger = this.logger;
|
|
4619
4501
|
const request = yield oci_common_2.composeRequest({
|
|
4620
|
-
baseEndpoint:
|
|
4502
|
+
baseEndpoint: this._endpoint,
|
|
4621
4503
|
defaultHeaders: this._defaultHeaders,
|
|
4622
4504
|
path: "/replications/{replicationId}/actions/removeLock",
|
|
4623
4505
|
method: "POST",
|
|
@@ -4677,14 +4559,12 @@ class FileStorageClient {
|
|
|
4677
4559
|
"if-match": removeSnapshotLockRequest.ifMatch,
|
|
4678
4560
|
"opc-request-id": removeSnapshotLockRequest.opcRequestId
|
|
4679
4561
|
};
|
|
4680
|
-
const requiredParams = new Set(["snapshotId"]);
|
|
4681
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
4682
4562
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4683
4563
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, removeSnapshotLockRequest.retryConfiguration, specRetryConfiguration);
|
|
4684
4564
|
if (this.logger)
|
|
4685
4565
|
retrier.logger = this.logger;
|
|
4686
4566
|
const request = yield oci_common_2.composeRequest({
|
|
4687
|
-
baseEndpoint:
|
|
4567
|
+
baseEndpoint: this._endpoint,
|
|
4688
4568
|
defaultHeaders: this._defaultHeaders,
|
|
4689
4569
|
path: "/snapshots/{snapshotId}/actions/removeLock",
|
|
4690
4570
|
method: "POST",
|
|
@@ -4745,14 +4625,12 @@ class FileStorageClient {
|
|
|
4745
4625
|
"if-match": scheduleDowngradeShapeMountTargetRequest.ifMatch,
|
|
4746
4626
|
"opc-request-id": scheduleDowngradeShapeMountTargetRequest.opcRequestId
|
|
4747
4627
|
};
|
|
4748
|
-
const requiredParams = new Set(["mountTargetId"]);
|
|
4749
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
4750
4628
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4751
4629
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, scheduleDowngradeShapeMountTargetRequest.retryConfiguration, specRetryConfiguration);
|
|
4752
4630
|
if (this.logger)
|
|
4753
4631
|
retrier.logger = this.logger;
|
|
4754
4632
|
const request = yield oci_common_2.composeRequest({
|
|
4755
|
-
baseEndpoint:
|
|
4633
|
+
baseEndpoint: this._endpoint,
|
|
4756
4634
|
defaultHeaders: this._defaultHeaders,
|
|
4757
4635
|
path: "/mountTargets/{mountTargetId}/actions/scheduleShapeDowngrade",
|
|
4758
4636
|
method: "POST",
|
|
@@ -4816,14 +4694,12 @@ class FileStorageClient {
|
|
|
4816
4694
|
"opc-retry-token": toggleQuotaRulesRequest.opcRetryToken,
|
|
4817
4695
|
"opc-request-id": toggleQuotaRulesRequest.opcRequestId
|
|
4818
4696
|
};
|
|
4819
|
-
const requiredParams = new Set(["fileSystemId"]);
|
|
4820
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
4821
4697
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4822
4698
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, toggleQuotaRulesRequest.retryConfiguration, specRetryConfiguration);
|
|
4823
4699
|
if (this.logger)
|
|
4824
4700
|
retrier.logger = this.logger;
|
|
4825
4701
|
const request = yield oci_common_2.composeRequest({
|
|
4826
|
-
baseEndpoint:
|
|
4702
|
+
baseEndpoint: this._endpoint,
|
|
4827
4703
|
defaultHeaders: this._defaultHeaders,
|
|
4828
4704
|
path: "/fileSystems/{fileSystemId}/actions/toggleQuotaRules",
|
|
4829
4705
|
method: "POST",
|
|
@@ -4881,14 +4757,12 @@ class FileStorageClient {
|
|
|
4881
4757
|
"if-match": unpauseFilesystemSnapshotPolicyRequest.ifMatch,
|
|
4882
4758
|
"opc-request-id": unpauseFilesystemSnapshotPolicyRequest.opcRequestId
|
|
4883
4759
|
};
|
|
4884
|
-
const requiredParams = new Set(["filesystemSnapshotPolicyId"]);
|
|
4885
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
4886
4760
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4887
4761
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, unpauseFilesystemSnapshotPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
4888
4762
|
if (this.logger)
|
|
4889
4763
|
retrier.logger = this.logger;
|
|
4890
4764
|
const request = yield oci_common_2.composeRequest({
|
|
4891
|
-
baseEndpoint:
|
|
4765
|
+
baseEndpoint: this._endpoint,
|
|
4892
4766
|
defaultHeaders: this._defaultHeaders,
|
|
4893
4767
|
path: "/filesystemSnapshotPolicies/{filesystemSnapshotPolicyId}/actions/unpause",
|
|
4894
4768
|
method: "POST",
|
|
@@ -4949,14 +4823,12 @@ class FileStorageClient {
|
|
|
4949
4823
|
"if-match": updateExportRequest.ifMatch,
|
|
4950
4824
|
"opc-request-id": updateExportRequest.opcRequestId
|
|
4951
4825
|
};
|
|
4952
|
-
const requiredParams = new Set(["exportId"]);
|
|
4953
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
4954
4826
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4955
4827
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateExportRequest.retryConfiguration, specRetryConfiguration);
|
|
4956
4828
|
if (this.logger)
|
|
4957
4829
|
retrier.logger = this.logger;
|
|
4958
4830
|
const request = yield oci_common_2.composeRequest({
|
|
4959
|
-
baseEndpoint:
|
|
4831
|
+
baseEndpoint: this._endpoint,
|
|
4960
4832
|
defaultHeaders: this._defaultHeaders,
|
|
4961
4833
|
path: "/exports/{exportId}",
|
|
4962
4834
|
method: "PUT",
|
|
@@ -5016,14 +4888,12 @@ class FileStorageClient {
|
|
|
5016
4888
|
"if-match": updateExportSetRequest.ifMatch,
|
|
5017
4889
|
"opc-request-id": updateExportSetRequest.opcRequestId
|
|
5018
4890
|
};
|
|
5019
|
-
const requiredParams = new Set(["exportSetId"]);
|
|
5020
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
5021
4891
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
5022
4892
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateExportSetRequest.retryConfiguration, specRetryConfiguration);
|
|
5023
4893
|
if (this.logger)
|
|
5024
4894
|
retrier.logger = this.logger;
|
|
5025
4895
|
const request = yield oci_common_2.composeRequest({
|
|
5026
|
-
baseEndpoint:
|
|
4896
|
+
baseEndpoint: this._endpoint,
|
|
5027
4897
|
defaultHeaders: this._defaultHeaders,
|
|
5028
4898
|
path: "/exportSets/{exportSetId}",
|
|
5029
4899
|
method: "PUT",
|
|
@@ -5087,14 +4957,12 @@ class FileStorageClient {
|
|
|
5087
4957
|
"if-match": updateFileSystemRequest.ifMatch,
|
|
5088
4958
|
"opc-request-id": updateFileSystemRequest.opcRequestId
|
|
5089
4959
|
};
|
|
5090
|
-
const requiredParams = new Set(["fileSystemId"]);
|
|
5091
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
5092
4960
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
5093
4961
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateFileSystemRequest.retryConfiguration, specRetryConfiguration);
|
|
5094
4962
|
if (this.logger)
|
|
5095
4963
|
retrier.logger = this.logger;
|
|
5096
4964
|
const request = yield oci_common_2.composeRequest({
|
|
5097
|
-
baseEndpoint:
|
|
4965
|
+
baseEndpoint: this._endpoint,
|
|
5098
4966
|
defaultHeaders: this._defaultHeaders,
|
|
5099
4967
|
path: "/fileSystems/{fileSystemId}",
|
|
5100
4968
|
method: "PUT",
|
|
@@ -5156,14 +5024,12 @@ class FileStorageClient {
|
|
|
5156
5024
|
"if-match": updateFilesystemSnapshotPolicyRequest.ifMatch,
|
|
5157
5025
|
"opc-request-id": updateFilesystemSnapshotPolicyRequest.opcRequestId
|
|
5158
5026
|
};
|
|
5159
|
-
const requiredParams = new Set(["filesystemSnapshotPolicyId"]);
|
|
5160
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
5161
5027
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
5162
5028
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateFilesystemSnapshotPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
5163
5029
|
if (this.logger)
|
|
5164
5030
|
retrier.logger = this.logger;
|
|
5165
5031
|
const request = yield oci_common_2.composeRequest({
|
|
5166
|
-
baseEndpoint:
|
|
5032
|
+
baseEndpoint: this._endpoint,
|
|
5167
5033
|
defaultHeaders: this._defaultHeaders,
|
|
5168
5034
|
path: "/filesystemSnapshotPolicies/{filesystemSnapshotPolicyId}",
|
|
5169
5035
|
method: "PUT",
|
|
@@ -5225,14 +5091,12 @@ class FileStorageClient {
|
|
|
5225
5091
|
"if-match": updateMountTargetRequest.ifMatch,
|
|
5226
5092
|
"opc-request-id": updateMountTargetRequest.opcRequestId
|
|
5227
5093
|
};
|
|
5228
|
-
const requiredParams = new Set(["mountTargetId"]);
|
|
5229
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
5230
5094
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
5231
5095
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateMountTargetRequest.retryConfiguration, specRetryConfiguration);
|
|
5232
5096
|
if (this.logger)
|
|
5233
5097
|
retrier.logger = this.logger;
|
|
5234
5098
|
const request = yield oci_common_2.composeRequest({
|
|
5235
|
-
baseEndpoint:
|
|
5099
|
+
baseEndpoint: this._endpoint,
|
|
5236
5100
|
defaultHeaders: this._defaultHeaders,
|
|
5237
5101
|
path: "/mountTargets/{mountTargetId}",
|
|
5238
5102
|
method: "PUT",
|
|
@@ -5294,14 +5158,12 @@ class FileStorageClient {
|
|
|
5294
5158
|
"if-match": updateOutboundConnectorRequest.ifMatch,
|
|
5295
5159
|
"opc-request-id": updateOutboundConnectorRequest.opcRequestId
|
|
5296
5160
|
};
|
|
5297
|
-
const requiredParams = new Set(["outboundConnectorId"]);
|
|
5298
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
5299
5161
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
5300
5162
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateOutboundConnectorRequest.retryConfiguration, specRetryConfiguration);
|
|
5301
5163
|
if (this.logger)
|
|
5302
5164
|
retrier.logger = this.logger;
|
|
5303
5165
|
const request = yield oci_common_2.composeRequest({
|
|
5304
|
-
baseEndpoint:
|
|
5166
|
+
baseEndpoint: this._endpoint,
|
|
5305
5167
|
defaultHeaders: this._defaultHeaders,
|
|
5306
5168
|
path: "/outboundConnectors/{outboundConnectorId}",
|
|
5307
5169
|
method: "PUT",
|
|
@@ -5363,14 +5225,12 @@ class FileStorageClient {
|
|
|
5363
5225
|
"if-match": updateQuotaRuleRequest.ifMatch,
|
|
5364
5226
|
"opc-request-id": updateQuotaRuleRequest.opcRequestId
|
|
5365
5227
|
};
|
|
5366
|
-
const requiredParams = new Set(["fileSystemId", "quotaRuleId"]);
|
|
5367
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
5368
5228
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
5369
5229
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateQuotaRuleRequest.retryConfiguration, specRetryConfiguration);
|
|
5370
5230
|
if (this.logger)
|
|
5371
5231
|
retrier.logger = this.logger;
|
|
5372
5232
|
const request = yield oci_common_2.composeRequest({
|
|
5373
|
-
baseEndpoint:
|
|
5233
|
+
baseEndpoint: this._endpoint,
|
|
5374
5234
|
defaultHeaders: this._defaultHeaders,
|
|
5375
5235
|
path: "/fileSystems/{fileSystemId}/quotaRules/{quotaRuleId}",
|
|
5376
5236
|
method: "PUT",
|
|
@@ -5433,14 +5293,12 @@ class FileStorageClient {
|
|
|
5433
5293
|
"if-match": updateReplicationRequest.ifMatch,
|
|
5434
5294
|
"opc-request-id": updateReplicationRequest.opcRequestId
|
|
5435
5295
|
};
|
|
5436
|
-
const requiredParams = new Set(["replicationId"]);
|
|
5437
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
5438
5296
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
5439
5297
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateReplicationRequest.retryConfiguration, specRetryConfiguration);
|
|
5440
5298
|
if (this.logger)
|
|
5441
5299
|
retrier.logger = this.logger;
|
|
5442
5300
|
const request = yield oci_common_2.composeRequest({
|
|
5443
|
-
baseEndpoint:
|
|
5301
|
+
baseEndpoint: this._endpoint,
|
|
5444
5302
|
defaultHeaders: this._defaultHeaders,
|
|
5445
5303
|
path: "/replications/{replicationId}",
|
|
5446
5304
|
method: "PUT",
|
|
@@ -5502,14 +5360,12 @@ class FileStorageClient {
|
|
|
5502
5360
|
"if-match": updateSnapshotRequest.ifMatch,
|
|
5503
5361
|
"opc-request-id": updateSnapshotRequest.opcRequestId
|
|
5504
5362
|
};
|
|
5505
|
-
const requiredParams = new Set(["snapshotId"]);
|
|
5506
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
5507
5363
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
5508
5364
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateSnapshotRequest.retryConfiguration, specRetryConfiguration);
|
|
5509
5365
|
if (this.logger)
|
|
5510
5366
|
retrier.logger = this.logger;
|
|
5511
5367
|
const request = yield oci_common_2.composeRequest({
|
|
5512
|
-
baseEndpoint:
|
|
5368
|
+
baseEndpoint: this._endpoint,
|
|
5513
5369
|
defaultHeaders: this._defaultHeaders,
|
|
5514
5370
|
path: "/snapshots/{snapshotId}",
|
|
5515
5371
|
method: "PUT",
|
|
@@ -5570,14 +5426,12 @@ class FileStorageClient {
|
|
|
5570
5426
|
"if-match": upgradeShapeMountTargetRequest.ifMatch,
|
|
5571
5427
|
"opc-request-id": upgradeShapeMountTargetRequest.opcRequestId
|
|
5572
5428
|
};
|
|
5573
|
-
const requiredParams = new Set(["mountTargetId"]);
|
|
5574
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
5575
5429
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
5576
5430
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, upgradeShapeMountTargetRequest.retryConfiguration, specRetryConfiguration);
|
|
5577
5431
|
if (this.logger)
|
|
5578
5432
|
retrier.logger = this.logger;
|
|
5579
5433
|
const request = yield oci_common_2.composeRequest({
|
|
5580
|
-
baseEndpoint:
|
|
5434
|
+
baseEndpoint: this._endpoint,
|
|
5581
5435
|
defaultHeaders: this._defaultHeaders,
|
|
5582
5436
|
path: "/mountTargets/{mountTargetId}/actions/upgradeShape",
|
|
5583
5437
|
method: "POST",
|
|
@@ -5637,14 +5491,12 @@ class FileStorageClient {
|
|
|
5637
5491
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
5638
5492
|
"opc-request-id": validateKeyTabsRequest.opcRequestId
|
|
5639
5493
|
};
|
|
5640
|
-
const requiredParams = new Set([]);
|
|
5641
|
-
let endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(this.endpoint, pathParams, queryParams, requiredParams);
|
|
5642
5494
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
5643
5495
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, validateKeyTabsRequest.retryConfiguration, specRetryConfiguration);
|
|
5644
5496
|
if (this.logger)
|
|
5645
5497
|
retrier.logger = this.logger;
|
|
5646
5498
|
const request = yield oci_common_2.composeRequest({
|
|
5647
|
-
baseEndpoint:
|
|
5499
|
+
baseEndpoint: this._endpoint,
|
|
5648
5500
|
defaultHeaders: this._defaultHeaders,
|
|
5649
5501
|
path: "/mountTargets/actions/validateKeyTabs",
|
|
5650
5502
|
method: "POST",
|
|
@@ -5678,6 +5530,6 @@ class FileStorageClient {
|
|
|
5678
5530
|
}
|
|
5679
5531
|
}
|
|
5680
5532
|
exports.FileStorageClient = FileStorageClient;
|
|
5681
|
-
FileStorageClient.serviceEndpointTemplate = "https://filestorage.{region}.{
|
|
5533
|
+
FileStorageClient.serviceEndpointTemplate = "https://filestorage.{region}.{secondLevelDomain}";
|
|
5682
5534
|
FileStorageClient.endpointServiceName = "filestorage";
|
|
5683
5535
|
//# sourceMappingURL=client.js.map
|