oci-filestorage 2.79.0 → 2.79.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/lib/client.d.ts +50 -51
  2. package/lib/client.js +102 -257
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/create-outbound-connector-details.js +2 -4
  5. package/lib/model/create-outbound-connector-details.js.map +1 -1
  6. package/lib/model/outbound-connector-summary.js +2 -4
  7. package/lib/model/outbound-connector-summary.js.map +1 -1
  8. package/lib/model/outbound-connector.js +2 -4
  9. package/lib/model/outbound-connector.js.map +1 -1
  10. package/lib/request/change-file-system-compartment-request.d.ts +1 -1
  11. package/lib/request/change-filesystem-snapshot-policy-compartment-request.d.ts +1 -1
  12. package/lib/request/change-mount-target-compartment-request.d.ts +1 -1
  13. package/lib/request/change-outbound-connector-compartment-request.d.ts +1 -1
  14. package/lib/request/change-replication-compartment-request.d.ts +1 -1
  15. package/lib/request/create-export-request.d.ts +1 -1
  16. package/lib/request/create-file-system-request.d.ts +1 -1
  17. package/lib/request/create-filesystem-snapshot-policy-request.d.ts +1 -1
  18. package/lib/request/create-mount-target-request.d.ts +1 -1
  19. package/lib/request/create-outbound-connector-request.d.ts +1 -1
  20. package/lib/request/create-replication-request.d.ts +1 -1
  21. package/lib/request/create-snapshot-request.d.ts +1 -1
  22. package/lib/request/delete-export-request.d.ts +1 -1
  23. package/lib/request/delete-file-system-request.d.ts +1 -1
  24. package/lib/request/delete-filesystem-snapshot-policy-request.d.ts +1 -1
  25. package/lib/request/delete-mount-target-request.d.ts +1 -1
  26. package/lib/request/delete-outbound-connector-request.d.ts +1 -1
  27. package/lib/request/delete-replication-request.d.ts +1 -1
  28. package/lib/request/delete-replication-target-request.d.ts +1 -1
  29. package/lib/request/delete-snapshot-request.d.ts +1 -1
  30. package/lib/request/estimate-replication-request.d.ts +1 -1
  31. package/lib/request/get-export-request.d.ts +1 -1
  32. package/lib/request/get-export-set-request.d.ts +1 -1
  33. package/lib/request/get-file-system-request.d.ts +1 -1
  34. package/lib/request/get-filesystem-snapshot-policy-request.d.ts +1 -1
  35. package/lib/request/get-mount-target-request.d.ts +1 -1
  36. package/lib/request/get-outbound-connector-request.d.ts +1 -1
  37. package/lib/request/get-replication-request.d.ts +1 -1
  38. package/lib/request/get-replication-target-request.d.ts +1 -1
  39. package/lib/request/get-snapshot-request.d.ts +1 -1
  40. package/lib/request/list-export-sets-request.d.ts +1 -1
  41. package/lib/request/list-exports-request.d.ts +1 -1
  42. package/lib/request/list-file-systems-request.d.ts +1 -1
  43. package/lib/request/list-filesystem-snapshot-policies-request.d.ts +1 -1
  44. package/lib/request/list-mount-targets-request.d.ts +1 -1
  45. package/lib/request/list-outbound-connectors-request.d.ts +1 -1
  46. package/lib/request/list-replication-targets-request.d.ts +1 -1
  47. package/lib/request/list-replications-request.d.ts +1 -1
  48. package/lib/request/list-snapshots-request.d.ts +1 -1
  49. package/lib/request/pause-filesystem-snapshot-policy-request.d.ts +1 -1
  50. package/lib/request/unpause-filesystem-snapshot-policy-request.d.ts +1 -1
  51. package/lib/request/update-export-request.d.ts +1 -1
  52. package/lib/request/update-export-set-request.d.ts +1 -1
  53. package/lib/request/update-file-system-request.d.ts +1 -1
  54. package/lib/request/update-filesystem-snapshot-policy-request.d.ts +1 -1
  55. package/lib/request/update-mount-target-request.d.ts +1 -1
  56. package/lib/request/update-outbound-connector-request.d.ts +1 -1
  57. package/lib/request/update-replication-request.d.ts +1 -1
  58. package/lib/request/update-snapshot-request.d.ts +1 -1
  59. package/lib/request/validate-key-tabs-request.d.ts +1 -1
  60. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -119,11 +119,7 @@ class FileStorageClient {
119
119
  set endpoint(endpoint) {
120
120
  this._endpoint = endpoint;
121
121
  this._endpoint = this._endpoint + "/20171215";
122
- if (this.logger)
123
- this.logger.info(`FileStorageClient endpoint set to ${this._endpoint}`);
124
- }
125
- get logger() {
126
- return common.LOG.logger;
122
+ oci_common_2.logger.info(`FileStorageClient endpoint set to ${this._endpoint}`);
127
123
  }
128
124
  /**
129
125
  * Determines whether realm specific endpoint should be used or not.
@@ -132,8 +128,7 @@ class FileStorageClient {
132
128
  */
133
129
  set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled) {
134
130
  this._realmSpecificEndpointTemplateEnabled = realmSpecificEndpointTemplateEnabled;
135
- if (this.logger)
136
- this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
131
+ oci_common_2.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
137
132
  if (this._lastSetRegionOrRegionId === common.Region.REGION_STRING) {
138
133
  this.endpoint = common.EndpointBuilder.createEndpointFromRegion(FileStorageClient.serviceEndpointTemplate, this._region, FileStorageClient.endpointServiceName);
139
134
  }
@@ -200,12 +195,11 @@ class FileStorageClient {
200
195
  * @param ChangeFileSystemCompartmentRequest
201
196
  * @return ChangeFileSystemCompartmentResponse
202
197
  * @throws OciError when an error occurs
203
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ChangeFileSystemCompartment.ts.html |here} to see how to use ChangeFileSystemCompartment API.
198
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ChangeFileSystemCompartment.ts.html |here} to see how to use ChangeFileSystemCompartment API.
204
199
  */
205
200
  changeFileSystemCompartment(changeFileSystemCompartmentRequest) {
206
201
  return __awaiter(this, void 0, void 0, function* () {
207
- if (this.logger)
208
- this.logger.debug("Calling operation FileStorageClient#changeFileSystemCompartment.");
202
+ oci_common_2.logger.debug("Calling operation FileStorageClient#changeFileSystemCompartment.");
209
203
  const operationName = "changeFileSystemCompartment";
210
204
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FileSystem/ChangeFileSystemCompartment";
211
205
  const pathParams = {
@@ -219,8 +213,6 @@ class FileStorageClient {
219
213
  };
220
214
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
221
215
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeFileSystemCompartmentRequest.retryConfiguration, specRetryConfiguration);
222
- if (this.logger)
223
- retrier.logger = this.logger;
224
216
  const request = yield oci_common_2.composeRequest({
225
217
  baseEndpoint: this._endpoint,
226
218
  defaultHeaders: this._defaultHeaders,
@@ -257,12 +249,11 @@ class FileStorageClient {
257
249
  * @param ChangeFilesystemSnapshotPolicyCompartmentRequest
258
250
  * @return ChangeFilesystemSnapshotPolicyCompartmentResponse
259
251
  * @throws OciError when an error occurs
260
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ChangeFilesystemSnapshotPolicyCompartment.ts.html |here} to see how to use ChangeFilesystemSnapshotPolicyCompartment API.
252
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ChangeFilesystemSnapshotPolicyCompartment.ts.html |here} to see how to use ChangeFilesystemSnapshotPolicyCompartment API.
261
253
  */
262
254
  changeFilesystemSnapshotPolicyCompartment(changeFilesystemSnapshotPolicyCompartmentRequest) {
263
255
  return __awaiter(this, void 0, void 0, function* () {
264
- if (this.logger)
265
- this.logger.debug("Calling operation FileStorageClient#changeFilesystemSnapshotPolicyCompartment.");
256
+ oci_common_2.logger.debug("Calling operation FileStorageClient#changeFilesystemSnapshotPolicyCompartment.");
266
257
  const operationName = "changeFilesystemSnapshotPolicyCompartment";
267
258
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FilesystemSnapshotPolicy/ChangeFilesystemSnapshotPolicyCompartment";
268
259
  const pathParams = {
@@ -276,8 +267,6 @@ class FileStorageClient {
276
267
  };
277
268
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
278
269
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeFilesystemSnapshotPolicyCompartmentRequest.retryConfiguration, specRetryConfiguration);
279
- if (this.logger)
280
- retrier.logger = this.logger;
281
270
  const request = yield oci_common_2.composeRequest({
282
271
  baseEndpoint: this._endpoint,
283
272
  defaultHeaders: this._defaultHeaders,
@@ -314,12 +303,11 @@ class FileStorageClient {
314
303
  * @param ChangeMountTargetCompartmentRequest
315
304
  * @return ChangeMountTargetCompartmentResponse
316
305
  * @throws OciError when an error occurs
317
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ChangeMountTargetCompartment.ts.html |here} to see how to use ChangeMountTargetCompartment API.
306
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ChangeMountTargetCompartment.ts.html |here} to see how to use ChangeMountTargetCompartment API.
318
307
  */
319
308
  changeMountTargetCompartment(changeMountTargetCompartmentRequest) {
320
309
  return __awaiter(this, void 0, void 0, function* () {
321
- if (this.logger)
322
- this.logger.debug("Calling operation FileStorageClient#changeMountTargetCompartment.");
310
+ oci_common_2.logger.debug("Calling operation FileStorageClient#changeMountTargetCompartment.");
323
311
  const operationName = "changeMountTargetCompartment";
324
312
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/MountTarget/ChangeMountTargetCompartment";
325
313
  const pathParams = {
@@ -333,8 +321,6 @@ class FileStorageClient {
333
321
  };
334
322
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
335
323
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeMountTargetCompartmentRequest.retryConfiguration, specRetryConfiguration);
336
- if (this.logger)
337
- retrier.logger = this.logger;
338
324
  const request = yield oci_common_2.composeRequest({
339
325
  baseEndpoint: this._endpoint,
340
326
  defaultHeaders: this._defaultHeaders,
@@ -373,12 +359,11 @@ class FileStorageClient {
373
359
  * @param ChangeOutboundConnectorCompartmentRequest
374
360
  * @return ChangeOutboundConnectorCompartmentResponse
375
361
  * @throws OciError when an error occurs
376
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ChangeOutboundConnectorCompartment.ts.html |here} to see how to use ChangeOutboundConnectorCompartment API.
362
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ChangeOutboundConnectorCompartment.ts.html |here} to see how to use ChangeOutboundConnectorCompartment API.
377
363
  */
378
364
  changeOutboundConnectorCompartment(changeOutboundConnectorCompartmentRequest) {
379
365
  return __awaiter(this, void 0, void 0, function* () {
380
- if (this.logger)
381
- this.logger.debug("Calling operation FileStorageClient#changeOutboundConnectorCompartment.");
366
+ oci_common_2.logger.debug("Calling operation FileStorageClient#changeOutboundConnectorCompartment.");
382
367
  const operationName = "changeOutboundConnectorCompartment";
383
368
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/OutboundConnector/ChangeOutboundConnectorCompartment";
384
369
  const pathParams = {
@@ -392,8 +377,6 @@ class FileStorageClient {
392
377
  };
393
378
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
394
379
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeOutboundConnectorCompartmentRequest.retryConfiguration, specRetryConfiguration);
395
- if (this.logger)
396
- retrier.logger = this.logger;
397
380
  const request = yield oci_common_2.composeRequest({
398
381
  baseEndpoint: this._endpoint,
399
382
  defaultHeaders: this._defaultHeaders,
@@ -431,12 +414,11 @@ class FileStorageClient {
431
414
  * @param ChangeReplicationCompartmentRequest
432
415
  * @return ChangeReplicationCompartmentResponse
433
416
  * @throws OciError when an error occurs
434
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ChangeReplicationCompartment.ts.html |here} to see how to use ChangeReplicationCompartment API.
417
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ChangeReplicationCompartment.ts.html |here} to see how to use ChangeReplicationCompartment API.
435
418
  */
436
419
  changeReplicationCompartment(changeReplicationCompartmentRequest) {
437
420
  return __awaiter(this, void 0, void 0, function* () {
438
- if (this.logger)
439
- this.logger.debug("Calling operation FileStorageClient#changeReplicationCompartment.");
421
+ oci_common_2.logger.debug("Calling operation FileStorageClient#changeReplicationCompartment.");
440
422
  const operationName = "changeReplicationCompartment";
441
423
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/Replication/ChangeReplicationCompartment";
442
424
  const pathParams = {
@@ -450,8 +432,6 @@ class FileStorageClient {
450
432
  };
451
433
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
452
434
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeReplicationCompartmentRequest.retryConfiguration, specRetryConfiguration);
453
- if (this.logger)
454
- retrier.logger = this.logger;
455
435
  const request = yield oci_common_2.composeRequest({
456
436
  baseEndpoint: this._endpoint,
457
437
  defaultHeaders: this._defaultHeaders,
@@ -489,12 +469,11 @@ class FileStorageClient {
489
469
  * @param CreateExportRequest
490
470
  * @return CreateExportResponse
491
471
  * @throws OciError when an error occurs
492
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/CreateExport.ts.html |here} to see how to use CreateExport API.
472
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/CreateExport.ts.html |here} to see how to use CreateExport API.
493
473
  */
494
474
  createExport(createExportRequest) {
495
475
  return __awaiter(this, void 0, void 0, function* () {
496
- if (this.logger)
497
- this.logger.debug("Calling operation FileStorageClient#createExport.");
476
+ oci_common_2.logger.debug("Calling operation FileStorageClient#createExport.");
498
477
  const operationName = "createExport";
499
478
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/Export/CreateExport";
500
479
  const pathParams = {};
@@ -506,8 +485,6 @@ class FileStorageClient {
506
485
  };
507
486
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
508
487
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createExportRequest.retryConfiguration, specRetryConfiguration);
509
- if (this.logger)
510
- retrier.logger = this.logger;
511
488
  const request = yield oci_common_2.composeRequest({
512
489
  baseEndpoint: this._endpoint,
513
490
  defaultHeaders: this._defaultHeaders,
@@ -581,12 +558,11 @@ class FileStorageClient {
581
558
  * @param CreateFileSystemRequest
582
559
  * @return CreateFileSystemResponse
583
560
  * @throws OciError when an error occurs
584
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/CreateFileSystem.ts.html |here} to see how to use CreateFileSystem API.
561
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/CreateFileSystem.ts.html |here} to see how to use CreateFileSystem API.
585
562
  */
586
563
  createFileSystem(createFileSystemRequest) {
587
564
  return __awaiter(this, void 0, void 0, function* () {
588
- if (this.logger)
589
- this.logger.debug("Calling operation FileStorageClient#createFileSystem.");
565
+ oci_common_2.logger.debug("Calling operation FileStorageClient#createFileSystem.");
590
566
  const operationName = "createFileSystem";
591
567
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FileSystem/CreateFileSystem";
592
568
  const pathParams = {};
@@ -598,8 +574,6 @@ class FileStorageClient {
598
574
  };
599
575
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
600
576
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createFileSystemRequest.retryConfiguration, specRetryConfiguration);
601
- if (this.logger)
602
- retrier.logger = this.logger;
603
577
  const request = yield oci_common_2.composeRequest({
604
578
  baseEndpoint: this._endpoint,
605
579
  defaultHeaders: this._defaultHeaders,
@@ -649,12 +623,11 @@ class FileStorageClient {
649
623
  * @param CreateFilesystemSnapshotPolicyRequest
650
624
  * @return CreateFilesystemSnapshotPolicyResponse
651
625
  * @throws OciError when an error occurs
652
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/CreateFilesystemSnapshotPolicy.ts.html |here} to see how to use CreateFilesystemSnapshotPolicy API.
626
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/CreateFilesystemSnapshotPolicy.ts.html |here} to see how to use CreateFilesystemSnapshotPolicy API.
653
627
  */
654
628
  createFilesystemSnapshotPolicy(createFilesystemSnapshotPolicyRequest) {
655
629
  return __awaiter(this, void 0, void 0, function* () {
656
- if (this.logger)
657
- this.logger.debug("Calling operation FileStorageClient#createFilesystemSnapshotPolicy.");
630
+ oci_common_2.logger.debug("Calling operation FileStorageClient#createFilesystemSnapshotPolicy.");
658
631
  const operationName = "createFilesystemSnapshotPolicy";
659
632
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FilesystemSnapshotPolicy/CreateFilesystemSnapshotPolicy";
660
633
  const pathParams = {};
@@ -666,8 +639,6 @@ class FileStorageClient {
666
639
  };
667
640
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
668
641
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createFilesystemSnapshotPolicyRequest.retryConfiguration, specRetryConfiguration);
669
- if (this.logger)
670
- retrier.logger = this.logger;
671
642
  const request = yield oci_common_2.composeRequest({
672
643
  baseEndpoint: this._endpoint,
673
644
  defaultHeaders: this._defaultHeaders,
@@ -744,12 +715,11 @@ class FileStorageClient {
744
715
  * @param CreateMountTargetRequest
745
716
  * @return CreateMountTargetResponse
746
717
  * @throws OciError when an error occurs
747
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/CreateMountTarget.ts.html |here} to see how to use CreateMountTarget API.
718
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/CreateMountTarget.ts.html |here} to see how to use CreateMountTarget API.
748
719
  */
749
720
  createMountTarget(createMountTargetRequest) {
750
721
  return __awaiter(this, void 0, void 0, function* () {
751
- if (this.logger)
752
- this.logger.debug("Calling operation FileStorageClient#createMountTarget.");
722
+ oci_common_2.logger.debug("Calling operation FileStorageClient#createMountTarget.");
753
723
  const operationName = "createMountTarget";
754
724
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/MountTarget/CreateMountTarget";
755
725
  const pathParams = {};
@@ -761,8 +731,6 @@ class FileStorageClient {
761
731
  };
762
732
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
763
733
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createMountTargetRequest.retryConfiguration, specRetryConfiguration);
764
- if (this.logger)
765
- retrier.logger = this.logger;
766
734
  const request = yield oci_common_2.composeRequest({
767
735
  baseEndpoint: this._endpoint,
768
736
  defaultHeaders: this._defaultHeaders,
@@ -827,12 +795,11 @@ class FileStorageClient {
827
795
  * @param CreateOutboundConnectorRequest
828
796
  * @return CreateOutboundConnectorResponse
829
797
  * @throws OciError when an error occurs
830
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/CreateOutboundConnector.ts.html |here} to see how to use CreateOutboundConnector API.
798
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/CreateOutboundConnector.ts.html |here} to see how to use CreateOutboundConnector API.
831
799
  */
832
800
  createOutboundConnector(createOutboundConnectorRequest) {
833
801
  return __awaiter(this, void 0, void 0, function* () {
834
- if (this.logger)
835
- this.logger.debug("Calling operation FileStorageClient#createOutboundConnector.");
802
+ oci_common_2.logger.debug("Calling operation FileStorageClient#createOutboundConnector.");
836
803
  const operationName = "createOutboundConnector";
837
804
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/OutboundConnector/CreateOutboundConnector";
838
805
  const pathParams = {};
@@ -844,8 +811,6 @@ class FileStorageClient {
844
811
  };
845
812
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
846
813
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createOutboundConnectorRequest.retryConfiguration, specRetryConfiguration);
847
- if (this.logger)
848
- retrier.logger = this.logger;
849
814
  const request = yield oci_common_2.composeRequest({
850
815
  baseEndpoint: this._endpoint,
851
816
  defaultHeaders: this._defaultHeaders,
@@ -917,12 +882,11 @@ class FileStorageClient {
917
882
  * @param CreateReplicationRequest
918
883
  * @return CreateReplicationResponse
919
884
  * @throws OciError when an error occurs
920
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/CreateReplication.ts.html |here} to see how to use CreateReplication API.
885
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/CreateReplication.ts.html |here} to see how to use CreateReplication API.
921
886
  */
922
887
  createReplication(createReplicationRequest) {
923
888
  return __awaiter(this, void 0, void 0, function* () {
924
- if (this.logger)
925
- this.logger.debug("Calling operation FileStorageClient#createReplication.");
889
+ oci_common_2.logger.debug("Calling operation FileStorageClient#createReplication.");
926
890
  const operationName = "createReplication";
927
891
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/Replication/CreateReplication";
928
892
  const pathParams = {};
@@ -934,8 +898,6 @@ class FileStorageClient {
934
898
  };
935
899
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
936
900
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createReplicationRequest.retryConfiguration, specRetryConfiguration);
937
- if (this.logger)
938
- retrier.logger = this.logger;
939
901
  const request = yield oci_common_2.composeRequest({
940
902
  baseEndpoint: this._endpoint,
941
903
  defaultHeaders: this._defaultHeaders,
@@ -982,12 +944,11 @@ class FileStorageClient {
982
944
  * @param CreateSnapshotRequest
983
945
  * @return CreateSnapshotResponse
984
946
  * @throws OciError when an error occurs
985
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/CreateSnapshot.ts.html |here} to see how to use CreateSnapshot API.
947
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/CreateSnapshot.ts.html |here} to see how to use CreateSnapshot API.
986
948
  */
987
949
  createSnapshot(createSnapshotRequest) {
988
950
  return __awaiter(this, void 0, void 0, function* () {
989
- if (this.logger)
990
- this.logger.debug("Calling operation FileStorageClient#createSnapshot.");
951
+ oci_common_2.logger.debug("Calling operation FileStorageClient#createSnapshot.");
991
952
  const operationName = "createSnapshot";
992
953
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/Snapshot/CreateSnapshot";
993
954
  const pathParams = {};
@@ -999,8 +960,6 @@ class FileStorageClient {
999
960
  };
1000
961
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1001
962
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createSnapshotRequest.retryConfiguration, specRetryConfiguration);
1002
- if (this.logger)
1003
- retrier.logger = this.logger;
1004
963
  const request = yield oci_common_2.composeRequest({
1005
964
  baseEndpoint: this._endpoint,
1006
965
  defaultHeaders: this._defaultHeaders,
@@ -1046,12 +1005,11 @@ class FileStorageClient {
1046
1005
  * @param DeleteExportRequest
1047
1006
  * @return DeleteExportResponse
1048
1007
  * @throws OciError when an error occurs
1049
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/DeleteExport.ts.html |here} to see how to use DeleteExport API.
1008
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/DeleteExport.ts.html |here} to see how to use DeleteExport API.
1050
1009
  */
1051
1010
  deleteExport(deleteExportRequest) {
1052
1011
  return __awaiter(this, void 0, void 0, function* () {
1053
- if (this.logger)
1054
- this.logger.debug("Calling operation FileStorageClient#deleteExport.");
1012
+ oci_common_2.logger.debug("Calling operation FileStorageClient#deleteExport.");
1055
1013
  const operationName = "deleteExport";
1056
1014
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/Export/DeleteExport";
1057
1015
  const pathParams = {
@@ -1065,8 +1023,6 @@ class FileStorageClient {
1065
1023
  };
1066
1024
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1067
1025
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteExportRequest.retryConfiguration, specRetryConfiguration);
1068
- if (this.logger)
1069
- retrier.logger = this.logger;
1070
1026
  const request = yield oci_common_2.composeRequest({
1071
1027
  baseEndpoint: this._endpoint,
1072
1028
  defaultHeaders: this._defaultHeaders,
@@ -1104,12 +1060,11 @@ class FileStorageClient {
1104
1060
  * @param DeleteFileSystemRequest
1105
1061
  * @return DeleteFileSystemResponse
1106
1062
  * @throws OciError when an error occurs
1107
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/DeleteFileSystem.ts.html |here} to see how to use DeleteFileSystem API.
1063
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/DeleteFileSystem.ts.html |here} to see how to use DeleteFileSystem API.
1108
1064
  */
1109
1065
  deleteFileSystem(deleteFileSystemRequest) {
1110
1066
  return __awaiter(this, void 0, void 0, function* () {
1111
- if (this.logger)
1112
- this.logger.debug("Calling operation FileStorageClient#deleteFileSystem.");
1067
+ oci_common_2.logger.debug("Calling operation FileStorageClient#deleteFileSystem.");
1113
1068
  const operationName = "deleteFileSystem";
1114
1069
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FileSystem/DeleteFileSystem";
1115
1070
  const pathParams = {
@@ -1123,8 +1078,6 @@ class FileStorageClient {
1123
1078
  };
1124
1079
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1125
1080
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteFileSystemRequest.retryConfiguration, specRetryConfiguration);
1126
- if (this.logger)
1127
- retrier.logger = this.logger;
1128
1081
  const request = yield oci_common_2.composeRequest({
1129
1082
  baseEndpoint: this._endpoint,
1130
1083
  defaultHeaders: this._defaultHeaders,
@@ -1160,12 +1113,11 @@ class FileStorageClient {
1160
1113
  * @param DeleteFilesystemSnapshotPolicyRequest
1161
1114
  * @return DeleteFilesystemSnapshotPolicyResponse
1162
1115
  * @throws OciError when an error occurs
1163
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/DeleteFilesystemSnapshotPolicy.ts.html |here} to see how to use DeleteFilesystemSnapshotPolicy API.
1116
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/DeleteFilesystemSnapshotPolicy.ts.html |here} to see how to use DeleteFilesystemSnapshotPolicy API.
1164
1117
  */
1165
1118
  deleteFilesystemSnapshotPolicy(deleteFilesystemSnapshotPolicyRequest) {
1166
1119
  return __awaiter(this, void 0, void 0, function* () {
1167
- if (this.logger)
1168
- this.logger.debug("Calling operation FileStorageClient#deleteFilesystemSnapshotPolicy.");
1120
+ oci_common_2.logger.debug("Calling operation FileStorageClient#deleteFilesystemSnapshotPolicy.");
1169
1121
  const operationName = "deleteFilesystemSnapshotPolicy";
1170
1122
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FilesystemSnapshotPolicy/DeleteFilesystemSnapshotPolicy";
1171
1123
  const pathParams = {
@@ -1179,8 +1131,6 @@ class FileStorageClient {
1179
1131
  };
1180
1132
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1181
1133
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteFilesystemSnapshotPolicyRequest.retryConfiguration, specRetryConfiguration);
1182
- if (this.logger)
1183
- retrier.logger = this.logger;
1184
1134
  const request = yield oci_common_2.composeRequest({
1185
1135
  baseEndpoint: this._endpoint,
1186
1136
  defaultHeaders: this._defaultHeaders,
@@ -1217,12 +1167,11 @@ class FileStorageClient {
1217
1167
  * @param DeleteMountTargetRequest
1218
1168
  * @return DeleteMountTargetResponse
1219
1169
  * @throws OciError when an error occurs
1220
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/DeleteMountTarget.ts.html |here} to see how to use DeleteMountTarget API.
1170
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/DeleteMountTarget.ts.html |here} to see how to use DeleteMountTarget API.
1221
1171
  */
1222
1172
  deleteMountTarget(deleteMountTargetRequest) {
1223
1173
  return __awaiter(this, void 0, void 0, function* () {
1224
- if (this.logger)
1225
- this.logger.debug("Calling operation FileStorageClient#deleteMountTarget.");
1174
+ oci_common_2.logger.debug("Calling operation FileStorageClient#deleteMountTarget.");
1226
1175
  const operationName = "deleteMountTarget";
1227
1176
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/MountTarget/DeleteMountTarget";
1228
1177
  const pathParams = {
@@ -1236,8 +1185,6 @@ class FileStorageClient {
1236
1185
  };
1237
1186
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1238
1187
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteMountTargetRequest.retryConfiguration, specRetryConfiguration);
1239
- if (this.logger)
1240
- retrier.logger = this.logger;
1241
1188
  const request = yield oci_common_2.composeRequest({
1242
1189
  baseEndpoint: this._endpoint,
1243
1190
  defaultHeaders: this._defaultHeaders,
@@ -1273,12 +1220,11 @@ class FileStorageClient {
1273
1220
  * @param DeleteOutboundConnectorRequest
1274
1221
  * @return DeleteOutboundConnectorResponse
1275
1222
  * @throws OciError when an error occurs
1276
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/DeleteOutboundConnector.ts.html |here} to see how to use DeleteOutboundConnector API.
1223
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/DeleteOutboundConnector.ts.html |here} to see how to use DeleteOutboundConnector API.
1277
1224
  */
1278
1225
  deleteOutboundConnector(deleteOutboundConnectorRequest) {
1279
1226
  return __awaiter(this, void 0, void 0, function* () {
1280
- if (this.logger)
1281
- this.logger.debug("Calling operation FileStorageClient#deleteOutboundConnector.");
1227
+ oci_common_2.logger.debug("Calling operation FileStorageClient#deleteOutboundConnector.");
1282
1228
  const operationName = "deleteOutboundConnector";
1283
1229
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/OutboundConnector/DeleteOutboundConnector";
1284
1230
  const pathParams = {
@@ -1292,8 +1238,6 @@ class FileStorageClient {
1292
1238
  };
1293
1239
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1294
1240
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteOutboundConnectorRequest.retryConfiguration, specRetryConfiguration);
1295
- if (this.logger)
1296
- retrier.logger = this.logger;
1297
1241
  const request = yield oci_common_2.composeRequest({
1298
1242
  baseEndpoint: this._endpoint,
1299
1243
  defaultHeaders: this._defaultHeaders,
@@ -1329,12 +1273,11 @@ class FileStorageClient {
1329
1273
  * @param DeleteReplicationRequest
1330
1274
  * @return DeleteReplicationResponse
1331
1275
  * @throws OciError when an error occurs
1332
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/DeleteReplication.ts.html |here} to see how to use DeleteReplication API.
1276
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/DeleteReplication.ts.html |here} to see how to use DeleteReplication API.
1333
1277
  */
1334
1278
  deleteReplication(deleteReplicationRequest) {
1335
1279
  return __awaiter(this, void 0, void 0, function* () {
1336
- if (this.logger)
1337
- this.logger.debug("Calling operation FileStorageClient#deleteReplication.");
1280
+ oci_common_2.logger.debug("Calling operation FileStorageClient#deleteReplication.");
1338
1281
  const operationName = "deleteReplication";
1339
1282
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/Replication/DeleteReplication";
1340
1283
  const pathParams = {
@@ -1350,8 +1293,6 @@ class FileStorageClient {
1350
1293
  };
1351
1294
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1352
1295
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteReplicationRequest.retryConfiguration, specRetryConfiguration);
1353
- if (this.logger)
1354
- retrier.logger = this.logger;
1355
1296
  const request = yield oci_common_2.composeRequest({
1356
1297
  baseEndpoint: this._endpoint,
1357
1298
  defaultHeaders: this._defaultHeaders,
@@ -1390,12 +1331,11 @@ class FileStorageClient {
1390
1331
  * @param DeleteReplicationTargetRequest
1391
1332
  * @return DeleteReplicationTargetResponse
1392
1333
  * @throws OciError when an error occurs
1393
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/DeleteReplicationTarget.ts.html |here} to see how to use DeleteReplicationTarget API.
1334
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/DeleteReplicationTarget.ts.html |here} to see how to use DeleteReplicationTarget API.
1394
1335
  */
1395
1336
  deleteReplicationTarget(deleteReplicationTargetRequest) {
1396
1337
  return __awaiter(this, void 0, void 0, function* () {
1397
- if (this.logger)
1398
- this.logger.debug("Calling operation FileStorageClient#deleteReplicationTarget.");
1338
+ oci_common_2.logger.debug("Calling operation FileStorageClient#deleteReplicationTarget.");
1399
1339
  const operationName = "deleteReplicationTarget";
1400
1340
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/ReplicationTarget/DeleteReplicationTarget";
1401
1341
  const pathParams = {
@@ -1409,8 +1349,6 @@ class FileStorageClient {
1409
1349
  };
1410
1350
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1411
1351
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteReplicationTargetRequest.retryConfiguration, specRetryConfiguration);
1412
- if (this.logger)
1413
- retrier.logger = this.logger;
1414
1352
  const request = yield oci_common_2.composeRequest({
1415
1353
  baseEndpoint: this._endpoint,
1416
1354
  defaultHeaders: this._defaultHeaders,
@@ -1446,12 +1384,11 @@ class FileStorageClient {
1446
1384
  * @param DeleteSnapshotRequest
1447
1385
  * @return DeleteSnapshotResponse
1448
1386
  * @throws OciError when an error occurs
1449
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/DeleteSnapshot.ts.html |here} to see how to use DeleteSnapshot API.
1387
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/DeleteSnapshot.ts.html |here} to see how to use DeleteSnapshot API.
1450
1388
  */
1451
1389
  deleteSnapshot(deleteSnapshotRequest) {
1452
1390
  return __awaiter(this, void 0, void 0, function* () {
1453
- if (this.logger)
1454
- this.logger.debug("Calling operation FileStorageClient#deleteSnapshot.");
1391
+ oci_common_2.logger.debug("Calling operation FileStorageClient#deleteSnapshot.");
1455
1392
  const operationName = "deleteSnapshot";
1456
1393
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/Snapshot/DeleteSnapshot";
1457
1394
  const pathParams = {
@@ -1465,8 +1402,6 @@ class FileStorageClient {
1465
1402
  };
1466
1403
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1467
1404
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteSnapshotRequest.retryConfiguration, specRetryConfiguration);
1468
- if (this.logger)
1469
- retrier.logger = this.logger;
1470
1405
  const request = yield oci_common_2.composeRequest({
1471
1406
  baseEndpoint: this._endpoint,
1472
1407
  defaultHeaders: this._defaultHeaders,
@@ -1502,12 +1437,11 @@ class FileStorageClient {
1502
1437
  * @param EstimateReplicationRequest
1503
1438
  * @return EstimateReplicationResponse
1504
1439
  * @throws OciError when an error occurs
1505
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/EstimateReplication.ts.html |here} to see how to use EstimateReplication API.
1440
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/EstimateReplication.ts.html |here} to see how to use EstimateReplication API.
1506
1441
  */
1507
1442
  estimateReplication(estimateReplicationRequest) {
1508
1443
  return __awaiter(this, void 0, void 0, function* () {
1509
- if (this.logger)
1510
- this.logger.debug("Calling operation FileStorageClient#estimateReplication.");
1444
+ oci_common_2.logger.debug("Calling operation FileStorageClient#estimateReplication.");
1511
1445
  const operationName = "estimateReplication";
1512
1446
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FileSystem/EstimateReplication";
1513
1447
  const pathParams = {
@@ -1523,8 +1457,6 @@ class FileStorageClient {
1523
1457
  };
1524
1458
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1525
1459
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, estimateReplicationRequest.retryConfiguration, specRetryConfiguration);
1526
- if (this.logger)
1527
- retrier.logger = this.logger;
1528
1460
  const request = yield oci_common_2.composeRequest({
1529
1461
  baseEndpoint: this._endpoint,
1530
1462
  defaultHeaders: this._defaultHeaders,
@@ -1568,12 +1500,11 @@ class FileStorageClient {
1568
1500
  * @param GetExportRequest
1569
1501
  * @return GetExportResponse
1570
1502
  * @throws OciError when an error occurs
1571
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/GetExport.ts.html |here} to see how to use GetExport API.
1503
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/GetExport.ts.html |here} to see how to use GetExport API.
1572
1504
  */
1573
1505
  getExport(getExportRequest) {
1574
1506
  return __awaiter(this, void 0, void 0, function* () {
1575
- if (this.logger)
1576
- this.logger.debug("Calling operation FileStorageClient#getExport.");
1507
+ oci_common_2.logger.debug("Calling operation FileStorageClient#getExport.");
1577
1508
  const operationName = "getExport";
1578
1509
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/Export/GetExport";
1579
1510
  const pathParams = {
@@ -1586,8 +1517,6 @@ class FileStorageClient {
1586
1517
  };
1587
1518
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1588
1519
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getExportRequest.retryConfiguration, specRetryConfiguration);
1589
- if (this.logger)
1590
- retrier.logger = this.logger;
1591
1520
  const request = yield oci_common_2.composeRequest({
1592
1521
  baseEndpoint: this._endpoint,
1593
1522
  defaultHeaders: this._defaultHeaders,
@@ -1631,12 +1560,11 @@ class FileStorageClient {
1631
1560
  * @param GetExportSetRequest
1632
1561
  * @return GetExportSetResponse
1633
1562
  * @throws OciError when an error occurs
1634
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/GetExportSet.ts.html |here} to see how to use GetExportSet API.
1563
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/GetExportSet.ts.html |here} to see how to use GetExportSet API.
1635
1564
  */
1636
1565
  getExportSet(getExportSetRequest) {
1637
1566
  return __awaiter(this, void 0, void 0, function* () {
1638
- if (this.logger)
1639
- this.logger.debug("Calling operation FileStorageClient#getExportSet.");
1567
+ oci_common_2.logger.debug("Calling operation FileStorageClient#getExportSet.");
1640
1568
  const operationName = "getExportSet";
1641
1569
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/ExportSet/GetExportSet";
1642
1570
  const pathParams = {
@@ -1649,8 +1577,6 @@ class FileStorageClient {
1649
1577
  };
1650
1578
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1651
1579
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getExportSetRequest.retryConfiguration, specRetryConfiguration);
1652
- if (this.logger)
1653
- retrier.logger = this.logger;
1654
1580
  const request = yield oci_common_2.composeRequest({
1655
1581
  baseEndpoint: this._endpoint,
1656
1582
  defaultHeaders: this._defaultHeaders,
@@ -1694,12 +1620,11 @@ class FileStorageClient {
1694
1620
  * @param GetFileSystemRequest
1695
1621
  * @return GetFileSystemResponse
1696
1622
  * @throws OciError when an error occurs
1697
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/GetFileSystem.ts.html |here} to see how to use GetFileSystem API.
1623
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/GetFileSystem.ts.html |here} to see how to use GetFileSystem API.
1698
1624
  */
1699
1625
  getFileSystem(getFileSystemRequest) {
1700
1626
  return __awaiter(this, void 0, void 0, function* () {
1701
- if (this.logger)
1702
- this.logger.debug("Calling operation FileStorageClient#getFileSystem.");
1627
+ oci_common_2.logger.debug("Calling operation FileStorageClient#getFileSystem.");
1703
1628
  const operationName = "getFileSystem";
1704
1629
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FileSystem/GetFileSystem";
1705
1630
  const pathParams = {
@@ -1712,8 +1637,6 @@ class FileStorageClient {
1712
1637
  };
1713
1638
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1714
1639
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getFileSystemRequest.retryConfiguration, specRetryConfiguration);
1715
- if (this.logger)
1716
- retrier.logger = this.logger;
1717
1640
  const request = yield oci_common_2.composeRequest({
1718
1641
  baseEndpoint: this._endpoint,
1719
1642
  defaultHeaders: this._defaultHeaders,
@@ -1757,12 +1680,11 @@ class FileStorageClient {
1757
1680
  * @param GetFilesystemSnapshotPolicyRequest
1758
1681
  * @return GetFilesystemSnapshotPolicyResponse
1759
1682
  * @throws OciError when an error occurs
1760
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/GetFilesystemSnapshotPolicy.ts.html |here} to see how to use GetFilesystemSnapshotPolicy API.
1683
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/GetFilesystemSnapshotPolicy.ts.html |here} to see how to use GetFilesystemSnapshotPolicy API.
1761
1684
  */
1762
1685
  getFilesystemSnapshotPolicy(getFilesystemSnapshotPolicyRequest) {
1763
1686
  return __awaiter(this, void 0, void 0, function* () {
1764
- if (this.logger)
1765
- this.logger.debug("Calling operation FileStorageClient#getFilesystemSnapshotPolicy.");
1687
+ oci_common_2.logger.debug("Calling operation FileStorageClient#getFilesystemSnapshotPolicy.");
1766
1688
  const operationName = "getFilesystemSnapshotPolicy";
1767
1689
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FilesystemSnapshotPolicy/GetFilesystemSnapshotPolicy";
1768
1690
  const pathParams = {
@@ -1775,8 +1697,6 @@ class FileStorageClient {
1775
1697
  };
1776
1698
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1777
1699
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getFilesystemSnapshotPolicyRequest.retryConfiguration, specRetryConfiguration);
1778
- if (this.logger)
1779
- retrier.logger = this.logger;
1780
1700
  const request = yield oci_common_2.composeRequest({
1781
1701
  baseEndpoint: this._endpoint,
1782
1702
  defaultHeaders: this._defaultHeaders,
@@ -1820,12 +1740,11 @@ class FileStorageClient {
1820
1740
  * @param GetMountTargetRequest
1821
1741
  * @return GetMountTargetResponse
1822
1742
  * @throws OciError when an error occurs
1823
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/GetMountTarget.ts.html |here} to see how to use GetMountTarget API.
1743
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/GetMountTarget.ts.html |here} to see how to use GetMountTarget API.
1824
1744
  */
1825
1745
  getMountTarget(getMountTargetRequest) {
1826
1746
  return __awaiter(this, void 0, void 0, function* () {
1827
- if (this.logger)
1828
- this.logger.debug("Calling operation FileStorageClient#getMountTarget.");
1747
+ oci_common_2.logger.debug("Calling operation FileStorageClient#getMountTarget.");
1829
1748
  const operationName = "getMountTarget";
1830
1749
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/MountTarget/GetMountTarget";
1831
1750
  const pathParams = {
@@ -1838,8 +1757,6 @@ class FileStorageClient {
1838
1757
  };
1839
1758
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1840
1759
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getMountTargetRequest.retryConfiguration, specRetryConfiguration);
1841
- if (this.logger)
1842
- retrier.logger = this.logger;
1843
1760
  const request = yield oci_common_2.composeRequest({
1844
1761
  baseEndpoint: this._endpoint,
1845
1762
  defaultHeaders: this._defaultHeaders,
@@ -1883,12 +1800,11 @@ class FileStorageClient {
1883
1800
  * @param GetOutboundConnectorRequest
1884
1801
  * @return GetOutboundConnectorResponse
1885
1802
  * @throws OciError when an error occurs
1886
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/GetOutboundConnector.ts.html |here} to see how to use GetOutboundConnector API.
1803
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/GetOutboundConnector.ts.html |here} to see how to use GetOutboundConnector API.
1887
1804
  */
1888
1805
  getOutboundConnector(getOutboundConnectorRequest) {
1889
1806
  return __awaiter(this, void 0, void 0, function* () {
1890
- if (this.logger)
1891
- this.logger.debug("Calling operation FileStorageClient#getOutboundConnector.");
1807
+ oci_common_2.logger.debug("Calling operation FileStorageClient#getOutboundConnector.");
1892
1808
  const operationName = "getOutboundConnector";
1893
1809
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/OutboundConnector/GetOutboundConnector";
1894
1810
  const pathParams = {
@@ -1901,8 +1817,6 @@ class FileStorageClient {
1901
1817
  };
1902
1818
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1903
1819
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getOutboundConnectorRequest.retryConfiguration, specRetryConfiguration);
1904
- if (this.logger)
1905
- retrier.logger = this.logger;
1906
1820
  const request = yield oci_common_2.composeRequest({
1907
1821
  baseEndpoint: this._endpoint,
1908
1822
  defaultHeaders: this._defaultHeaders,
@@ -1946,12 +1860,11 @@ class FileStorageClient {
1946
1860
  * @param GetReplicationRequest
1947
1861
  * @return GetReplicationResponse
1948
1862
  * @throws OciError when an error occurs
1949
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/GetReplication.ts.html |here} to see how to use GetReplication API.
1863
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/GetReplication.ts.html |here} to see how to use GetReplication API.
1950
1864
  */
1951
1865
  getReplication(getReplicationRequest) {
1952
1866
  return __awaiter(this, void 0, void 0, function* () {
1953
- if (this.logger)
1954
- this.logger.debug("Calling operation FileStorageClient#getReplication.");
1867
+ oci_common_2.logger.debug("Calling operation FileStorageClient#getReplication.");
1955
1868
  const operationName = "getReplication";
1956
1869
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/Replication/GetReplication";
1957
1870
  const pathParams = {
@@ -1964,8 +1877,6 @@ class FileStorageClient {
1964
1877
  };
1965
1878
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1966
1879
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getReplicationRequest.retryConfiguration, specRetryConfiguration);
1967
- if (this.logger)
1968
- retrier.logger = this.logger;
1969
1880
  const request = yield oci_common_2.composeRequest({
1970
1881
  baseEndpoint: this._endpoint,
1971
1882
  defaultHeaders: this._defaultHeaders,
@@ -2009,12 +1920,11 @@ class FileStorageClient {
2009
1920
  * @param GetReplicationTargetRequest
2010
1921
  * @return GetReplicationTargetResponse
2011
1922
  * @throws OciError when an error occurs
2012
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/GetReplicationTarget.ts.html |here} to see how to use GetReplicationTarget API.
1923
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/GetReplicationTarget.ts.html |here} to see how to use GetReplicationTarget API.
2013
1924
  */
2014
1925
  getReplicationTarget(getReplicationTargetRequest) {
2015
1926
  return __awaiter(this, void 0, void 0, function* () {
2016
- if (this.logger)
2017
- this.logger.debug("Calling operation FileStorageClient#getReplicationTarget.");
1927
+ oci_common_2.logger.debug("Calling operation FileStorageClient#getReplicationTarget.");
2018
1928
  const operationName = "getReplicationTarget";
2019
1929
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/ReplicationTarget/GetReplicationTarget";
2020
1930
  const pathParams = {
@@ -2027,8 +1937,6 @@ class FileStorageClient {
2027
1937
  };
2028
1938
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2029
1939
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getReplicationTargetRequest.retryConfiguration, specRetryConfiguration);
2030
- if (this.logger)
2031
- retrier.logger = this.logger;
2032
1940
  const request = yield oci_common_2.composeRequest({
2033
1941
  baseEndpoint: this._endpoint,
2034
1942
  defaultHeaders: this._defaultHeaders,
@@ -2072,12 +1980,11 @@ class FileStorageClient {
2072
1980
  * @param GetSnapshotRequest
2073
1981
  * @return GetSnapshotResponse
2074
1982
  * @throws OciError when an error occurs
2075
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/GetSnapshot.ts.html |here} to see how to use GetSnapshot API.
1983
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/GetSnapshot.ts.html |here} to see how to use GetSnapshot API.
2076
1984
  */
2077
1985
  getSnapshot(getSnapshotRequest) {
2078
1986
  return __awaiter(this, void 0, void 0, function* () {
2079
- if (this.logger)
2080
- this.logger.debug("Calling operation FileStorageClient#getSnapshot.");
1987
+ oci_common_2.logger.debug("Calling operation FileStorageClient#getSnapshot.");
2081
1988
  const operationName = "getSnapshot";
2082
1989
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/Snapshot/GetSnapshot";
2083
1990
  const pathParams = {
@@ -2090,8 +1997,6 @@ class FileStorageClient {
2090
1997
  };
2091
1998
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2092
1999
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getSnapshotRequest.retryConfiguration, specRetryConfiguration);
2093
- if (this.logger)
2094
- retrier.logger = this.logger;
2095
2000
  const request = yield oci_common_2.composeRequest({
2096
2001
  baseEndpoint: this._endpoint,
2097
2002
  defaultHeaders: this._defaultHeaders,
@@ -2136,12 +2041,11 @@ class FileStorageClient {
2136
2041
  * @param ListExportSetsRequest
2137
2042
  * @return ListExportSetsResponse
2138
2043
  * @throws OciError when an error occurs
2139
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ListExportSets.ts.html |here} to see how to use ListExportSets API.
2044
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ListExportSets.ts.html |here} to see how to use ListExportSets API.
2140
2045
  */
2141
2046
  listExportSets(listExportSetsRequest) {
2142
2047
  return __awaiter(this, void 0, void 0, function* () {
2143
- if (this.logger)
2144
- this.logger.debug("Calling operation FileStorageClient#listExportSets.");
2048
+ oci_common_2.logger.debug("Calling operation FileStorageClient#listExportSets.");
2145
2049
  const operationName = "listExportSets";
2146
2050
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/ExportSetSummary/ListExportSets";
2147
2051
  const pathParams = {};
@@ -2162,8 +2066,6 @@ class FileStorageClient {
2162
2066
  };
2163
2067
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2164
2068
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listExportSetsRequest.retryConfiguration, specRetryConfiguration);
2165
- if (this.logger)
2166
- retrier.logger = this.logger;
2167
2069
  const request = yield oci_common_2.composeRequest({
2168
2070
  baseEndpoint: this._endpoint,
2169
2071
  defaultHeaders: this._defaultHeaders,
@@ -2250,12 +2152,11 @@ class FileStorageClient {
2250
2152
  * @param ListExportsRequest
2251
2153
  * @return ListExportsResponse
2252
2154
  * @throws OciError when an error occurs
2253
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ListExports.ts.html |here} to see how to use ListExports API.
2155
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ListExports.ts.html |here} to see how to use ListExports API.
2254
2156
  */
2255
2157
  listExports(listExportsRequest) {
2256
2158
  return __awaiter(this, void 0, void 0, function* () {
2257
- if (this.logger)
2258
- this.logger.debug("Calling operation FileStorageClient#listExports.");
2159
+ oci_common_2.logger.debug("Calling operation FileStorageClient#listExports.");
2259
2160
  const operationName = "listExports";
2260
2161
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/ExportSummary/ListExports";
2261
2162
  const pathParams = {};
@@ -2276,8 +2177,6 @@ class FileStorageClient {
2276
2177
  };
2277
2178
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2278
2179
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listExportsRequest.retryConfiguration, specRetryConfiguration);
2279
- if (this.logger)
2280
- retrier.logger = this.logger;
2281
2180
  const request = yield oci_common_2.composeRequest({
2282
2181
  baseEndpoint: this._endpoint,
2283
2182
  defaultHeaders: this._defaultHeaders,
@@ -2363,12 +2262,11 @@ class FileStorageClient {
2363
2262
  * @param ListFileSystemsRequest
2364
2263
  * @return ListFileSystemsResponse
2365
2264
  * @throws OciError when an error occurs
2366
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ListFileSystems.ts.html |here} to see how to use ListFileSystems API.
2265
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ListFileSystems.ts.html |here} to see how to use ListFileSystems API.
2367
2266
  */
2368
2267
  listFileSystems(listFileSystemsRequest) {
2369
2268
  return __awaiter(this, void 0, void 0, function* () {
2370
- if (this.logger)
2371
- this.logger.debug("Calling operation FileStorageClient#listFileSystems.");
2269
+ oci_common_2.logger.debug("Calling operation FileStorageClient#listFileSystems.");
2372
2270
  const operationName = "listFileSystems";
2373
2271
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FileSystemSummary/ListFileSystems";
2374
2272
  const pathParams = {};
@@ -2392,8 +2290,6 @@ class FileStorageClient {
2392
2290
  };
2393
2291
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2394
2292
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listFileSystemsRequest.retryConfiguration, specRetryConfiguration);
2395
- if (this.logger)
2396
- retrier.logger = this.logger;
2397
2293
  const request = yield oci_common_2.composeRequest({
2398
2294
  baseEndpoint: this._endpoint,
2399
2295
  defaultHeaders: this._defaultHeaders,
@@ -2478,12 +2374,11 @@ class FileStorageClient {
2478
2374
  * @param ListFilesystemSnapshotPoliciesRequest
2479
2375
  * @return ListFilesystemSnapshotPoliciesResponse
2480
2376
  * @throws OciError when an error occurs
2481
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ListFilesystemSnapshotPolicies.ts.html |here} to see how to use ListFilesystemSnapshotPolicies API.
2377
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ListFilesystemSnapshotPolicies.ts.html |here} to see how to use ListFilesystemSnapshotPolicies API.
2482
2378
  */
2483
2379
  listFilesystemSnapshotPolicies(listFilesystemSnapshotPoliciesRequest) {
2484
2380
  return __awaiter(this, void 0, void 0, function* () {
2485
- if (this.logger)
2486
- this.logger.debug("Calling operation FileStorageClient#listFilesystemSnapshotPolicies.");
2381
+ oci_common_2.logger.debug("Calling operation FileStorageClient#listFilesystemSnapshotPolicies.");
2487
2382
  const operationName = "listFilesystemSnapshotPolicies";
2488
2383
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FilesystemSnapshotPolicySummary/ListFilesystemSnapshotPolicies";
2489
2384
  const pathParams = {};
@@ -2504,8 +2399,6 @@ class FileStorageClient {
2504
2399
  };
2505
2400
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2506
2401
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listFilesystemSnapshotPoliciesRequest.retryConfiguration, specRetryConfiguration);
2507
- if (this.logger)
2508
- retrier.logger = this.logger;
2509
2402
  const request = yield oci_common_2.composeRequest({
2510
2403
  baseEndpoint: this._endpoint,
2511
2404
  defaultHeaders: this._defaultHeaders,
@@ -2590,12 +2483,11 @@ class FileStorageClient {
2590
2483
  * @param ListMountTargetsRequest
2591
2484
  * @return ListMountTargetsResponse
2592
2485
  * @throws OciError when an error occurs
2593
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ListMountTargets.ts.html |here} to see how to use ListMountTargets API.
2486
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ListMountTargets.ts.html |here} to see how to use ListMountTargets API.
2594
2487
  */
2595
2488
  listMountTargets(listMountTargetsRequest) {
2596
2489
  return __awaiter(this, void 0, void 0, function* () {
2597
- if (this.logger)
2598
- this.logger.debug("Calling operation FileStorageClient#listMountTargets.");
2490
+ oci_common_2.logger.debug("Calling operation FileStorageClient#listMountTargets.");
2599
2491
  const operationName = "listMountTargets";
2600
2492
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/MountTargetSummary/ListMountTargets";
2601
2493
  const pathParams = {};
@@ -2617,8 +2509,6 @@ class FileStorageClient {
2617
2509
  };
2618
2510
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2619
2511
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listMountTargetsRequest.retryConfiguration, specRetryConfiguration);
2620
- if (this.logger)
2621
- retrier.logger = this.logger;
2622
2512
  const request = yield oci_common_2.composeRequest({
2623
2513
  baseEndpoint: this._endpoint,
2624
2514
  defaultHeaders: this._defaultHeaders,
@@ -2703,12 +2593,11 @@ class FileStorageClient {
2703
2593
  * @param ListOutboundConnectorsRequest
2704
2594
  * @return ListOutboundConnectorsResponse
2705
2595
  * @throws OciError when an error occurs
2706
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ListOutboundConnectors.ts.html |here} to see how to use ListOutboundConnectors API.
2596
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ListOutboundConnectors.ts.html |here} to see how to use ListOutboundConnectors API.
2707
2597
  */
2708
2598
  listOutboundConnectors(listOutboundConnectorsRequest) {
2709
2599
  return __awaiter(this, void 0, void 0, function* () {
2710
- if (this.logger)
2711
- this.logger.debug("Calling operation FileStorageClient#listOutboundConnectors.");
2600
+ oci_common_2.logger.debug("Calling operation FileStorageClient#listOutboundConnectors.");
2712
2601
  const operationName = "listOutboundConnectors";
2713
2602
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/OutboundConnectorSummary/ListOutboundConnectors";
2714
2603
  const pathParams = {};
@@ -2729,8 +2618,6 @@ class FileStorageClient {
2729
2618
  };
2730
2619
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2731
2620
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listOutboundConnectorsRequest.retryConfiguration, specRetryConfiguration);
2732
- if (this.logger)
2733
- retrier.logger = this.logger;
2734
2621
  const request = yield oci_common_2.composeRequest({
2735
2622
  baseEndpoint: this._endpoint,
2736
2623
  defaultHeaders: this._defaultHeaders,
@@ -2815,12 +2702,11 @@ class FileStorageClient {
2815
2702
  * @param ListReplicationTargetsRequest
2816
2703
  * @return ListReplicationTargetsResponse
2817
2704
  * @throws OciError when an error occurs
2818
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ListReplicationTargets.ts.html |here} to see how to use ListReplicationTargets API.
2705
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ListReplicationTargets.ts.html |here} to see how to use ListReplicationTargets API.
2819
2706
  */
2820
2707
  listReplicationTargets(listReplicationTargetsRequest) {
2821
2708
  return __awaiter(this, void 0, void 0, function* () {
2822
- if (this.logger)
2823
- this.logger.debug("Calling operation FileStorageClient#listReplicationTargets.");
2709
+ oci_common_2.logger.debug("Calling operation FileStorageClient#listReplicationTargets.");
2824
2710
  const operationName = "listReplicationTargets";
2825
2711
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/ReplicationTargetSummary/ListReplicationTargets";
2826
2712
  const pathParams = {};
@@ -2841,8 +2727,6 @@ class FileStorageClient {
2841
2727
  };
2842
2728
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2843
2729
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listReplicationTargetsRequest.retryConfiguration, specRetryConfiguration);
2844
- if (this.logger)
2845
- retrier.logger = this.logger;
2846
2730
  const request = yield oci_common_2.composeRequest({
2847
2731
  baseEndpoint: this._endpoint,
2848
2732
  defaultHeaders: this._defaultHeaders,
@@ -2927,12 +2811,11 @@ class FileStorageClient {
2927
2811
  * @param ListReplicationsRequest
2928
2812
  * @return ListReplicationsResponse
2929
2813
  * @throws OciError when an error occurs
2930
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ListReplications.ts.html |here} to see how to use ListReplications API.
2814
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ListReplications.ts.html |here} to see how to use ListReplications API.
2931
2815
  */
2932
2816
  listReplications(listReplicationsRequest) {
2933
2817
  return __awaiter(this, void 0, void 0, function* () {
2934
- if (this.logger)
2935
- this.logger.debug("Calling operation FileStorageClient#listReplications.");
2818
+ oci_common_2.logger.debug("Calling operation FileStorageClient#listReplications.");
2936
2819
  const operationName = "listReplications";
2937
2820
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/ReplicationSummary/ListReplications";
2938
2821
  const pathParams = {};
@@ -2954,8 +2837,6 @@ class FileStorageClient {
2954
2837
  };
2955
2838
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2956
2839
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listReplicationsRequest.retryConfiguration, specRetryConfiguration);
2957
- if (this.logger)
2958
- retrier.logger = this.logger;
2959
2840
  const request = yield oci_common_2.composeRequest({
2960
2841
  baseEndpoint: this._endpoint,
2961
2842
  defaultHeaders: this._defaultHeaders,
@@ -3046,12 +2927,11 @@ class FileStorageClient {
3046
2927
  * @param ListSnapshotsRequest
3047
2928
  * @return ListSnapshotsResponse
3048
2929
  * @throws OciError when an error occurs
3049
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ListSnapshots.ts.html |here} to see how to use ListSnapshots API.
2930
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ListSnapshots.ts.html |here} to see how to use ListSnapshots API.
3050
2931
  */
3051
2932
  listSnapshots(listSnapshotsRequest) {
3052
2933
  return __awaiter(this, void 0, void 0, function* () {
3053
- if (this.logger)
3054
- this.logger.debug("Calling operation FileStorageClient#listSnapshots.");
2934
+ oci_common_2.logger.debug("Calling operation FileStorageClient#listSnapshots.");
3055
2935
  const operationName = "listSnapshots";
3056
2936
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/SnapshotSummary/ListSnapshots";
3057
2937
  const pathParams = {};
@@ -3071,8 +2951,6 @@ class FileStorageClient {
3071
2951
  };
3072
2952
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3073
2953
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listSnapshotsRequest.retryConfiguration, specRetryConfiguration);
3074
- if (this.logger)
3075
- retrier.logger = this.logger;
3076
2954
  const request = yield oci_common_2.composeRequest({
3077
2955
  baseEndpoint: this._endpoint,
3078
2956
  defaultHeaders: this._defaultHeaders,
@@ -3162,12 +3040,11 @@ class FileStorageClient {
3162
3040
  * @param PauseFilesystemSnapshotPolicyRequest
3163
3041
  * @return PauseFilesystemSnapshotPolicyResponse
3164
3042
  * @throws OciError when an error occurs
3165
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/PauseFilesystemSnapshotPolicy.ts.html |here} to see how to use PauseFilesystemSnapshotPolicy API.
3043
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/PauseFilesystemSnapshotPolicy.ts.html |here} to see how to use PauseFilesystemSnapshotPolicy API.
3166
3044
  */
3167
3045
  pauseFilesystemSnapshotPolicy(pauseFilesystemSnapshotPolicyRequest) {
3168
3046
  return __awaiter(this, void 0, void 0, function* () {
3169
- if (this.logger)
3170
- this.logger.debug("Calling operation FileStorageClient#pauseFilesystemSnapshotPolicy.");
3047
+ oci_common_2.logger.debug("Calling operation FileStorageClient#pauseFilesystemSnapshotPolicy.");
3171
3048
  const operationName = "pauseFilesystemSnapshotPolicy";
3172
3049
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FilesystemSnapshotPolicy/PauseFilesystemSnapshotPolicy";
3173
3050
  const pathParams = {
@@ -3181,8 +3058,6 @@ class FileStorageClient {
3181
3058
  };
3182
3059
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3183
3060
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, pauseFilesystemSnapshotPolicyRequest.retryConfiguration, specRetryConfiguration);
3184
- if (this.logger)
3185
- retrier.logger = this.logger;
3186
3061
  const request = yield oci_common_2.composeRequest({
3187
3062
  baseEndpoint: this._endpoint,
3188
3063
  defaultHeaders: this._defaultHeaders,
@@ -3231,12 +3106,11 @@ class FileStorageClient {
3231
3106
  * @param UnpauseFilesystemSnapshotPolicyRequest
3232
3107
  * @return UnpauseFilesystemSnapshotPolicyResponse
3233
3108
  * @throws OciError when an error occurs
3234
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/UnpauseFilesystemSnapshotPolicy.ts.html |here} to see how to use UnpauseFilesystemSnapshotPolicy API.
3109
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/UnpauseFilesystemSnapshotPolicy.ts.html |here} to see how to use UnpauseFilesystemSnapshotPolicy API.
3235
3110
  */
3236
3111
  unpauseFilesystemSnapshotPolicy(unpauseFilesystemSnapshotPolicyRequest) {
3237
3112
  return __awaiter(this, void 0, void 0, function* () {
3238
- if (this.logger)
3239
- this.logger.debug("Calling operation FileStorageClient#unpauseFilesystemSnapshotPolicy.");
3113
+ oci_common_2.logger.debug("Calling operation FileStorageClient#unpauseFilesystemSnapshotPolicy.");
3240
3114
  const operationName = "unpauseFilesystemSnapshotPolicy";
3241
3115
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FilesystemSnapshotPolicy/UnpauseFilesystemSnapshotPolicy";
3242
3116
  const pathParams = {
@@ -3250,8 +3124,6 @@ class FileStorageClient {
3250
3124
  };
3251
3125
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3252
3126
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, unpauseFilesystemSnapshotPolicyRequest.retryConfiguration, specRetryConfiguration);
3253
- if (this.logger)
3254
- retrier.logger = this.logger;
3255
3127
  const request = yield oci_common_2.composeRequest({
3256
3128
  baseEndpoint: this._endpoint,
3257
3129
  defaultHeaders: this._defaultHeaders,
@@ -3295,12 +3167,11 @@ class FileStorageClient {
3295
3167
  * @param UpdateExportRequest
3296
3168
  * @return UpdateExportResponse
3297
3169
  * @throws OciError when an error occurs
3298
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/UpdateExport.ts.html |here} to see how to use UpdateExport API.
3170
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/UpdateExport.ts.html |here} to see how to use UpdateExport API.
3299
3171
  */
3300
3172
  updateExport(updateExportRequest) {
3301
3173
  return __awaiter(this, void 0, void 0, function* () {
3302
- if (this.logger)
3303
- this.logger.debug("Calling operation FileStorageClient#updateExport.");
3174
+ oci_common_2.logger.debug("Calling operation FileStorageClient#updateExport.");
3304
3175
  const operationName = "updateExport";
3305
3176
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/Export/UpdateExport";
3306
3177
  const pathParams = {
@@ -3314,8 +3185,6 @@ class FileStorageClient {
3314
3185
  };
3315
3186
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3316
3187
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateExportRequest.retryConfiguration, specRetryConfiguration);
3317
- if (this.logger)
3318
- retrier.logger = this.logger;
3319
3188
  const request = yield oci_common_2.composeRequest({
3320
3189
  baseEndpoint: this._endpoint,
3321
3190
  defaultHeaders: this._defaultHeaders,
@@ -3360,12 +3229,11 @@ class FileStorageClient {
3360
3229
  * @param UpdateExportSetRequest
3361
3230
  * @return UpdateExportSetResponse
3362
3231
  * @throws OciError when an error occurs
3363
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/UpdateExportSet.ts.html |here} to see how to use UpdateExportSet API.
3232
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/UpdateExportSet.ts.html |here} to see how to use UpdateExportSet API.
3364
3233
  */
3365
3234
  updateExportSet(updateExportSetRequest) {
3366
3235
  return __awaiter(this, void 0, void 0, function* () {
3367
- if (this.logger)
3368
- this.logger.debug("Calling operation FileStorageClient#updateExportSet.");
3236
+ oci_common_2.logger.debug("Calling operation FileStorageClient#updateExportSet.");
3369
3237
  const operationName = "updateExportSet";
3370
3238
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/ExportSet/UpdateExportSet";
3371
3239
  const pathParams = {
@@ -3379,8 +3247,6 @@ class FileStorageClient {
3379
3247
  };
3380
3248
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3381
3249
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateExportSetRequest.retryConfiguration, specRetryConfiguration);
3382
- if (this.logger)
3383
- retrier.logger = this.logger;
3384
3250
  const request = yield oci_common_2.composeRequest({
3385
3251
  baseEndpoint: this._endpoint,
3386
3252
  defaultHeaders: this._defaultHeaders,
@@ -3427,12 +3293,11 @@ class FileStorageClient {
3427
3293
  * @param UpdateFileSystemRequest
3428
3294
  * @return UpdateFileSystemResponse
3429
3295
  * @throws OciError when an error occurs
3430
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/UpdateFileSystem.ts.html |here} to see how to use UpdateFileSystem API.
3296
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/UpdateFileSystem.ts.html |here} to see how to use UpdateFileSystem API.
3431
3297
  */
3432
3298
  updateFileSystem(updateFileSystemRequest) {
3433
3299
  return __awaiter(this, void 0, void 0, function* () {
3434
- if (this.logger)
3435
- this.logger.debug("Calling operation FileStorageClient#updateFileSystem.");
3300
+ oci_common_2.logger.debug("Calling operation FileStorageClient#updateFileSystem.");
3436
3301
  const operationName = "updateFileSystem";
3437
3302
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FileSystem/UpdateFileSystem";
3438
3303
  const pathParams = {
@@ -3446,8 +3311,6 @@ class FileStorageClient {
3446
3311
  };
3447
3312
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3448
3313
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateFileSystemRequest.retryConfiguration, specRetryConfiguration);
3449
- if (this.logger)
3450
- retrier.logger = this.logger;
3451
3314
  const request = yield oci_common_2.composeRequest({
3452
3315
  baseEndpoint: this._endpoint,
3453
3316
  defaultHeaders: this._defaultHeaders,
@@ -3492,12 +3355,11 @@ class FileStorageClient {
3492
3355
  * @param UpdateFilesystemSnapshotPolicyRequest
3493
3356
  * @return UpdateFilesystemSnapshotPolicyResponse
3494
3357
  * @throws OciError when an error occurs
3495
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/UpdateFilesystemSnapshotPolicy.ts.html |here} to see how to use UpdateFilesystemSnapshotPolicy API.
3358
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/UpdateFilesystemSnapshotPolicy.ts.html |here} to see how to use UpdateFilesystemSnapshotPolicy API.
3496
3359
  */
3497
3360
  updateFilesystemSnapshotPolicy(updateFilesystemSnapshotPolicyRequest) {
3498
3361
  return __awaiter(this, void 0, void 0, function* () {
3499
- if (this.logger)
3500
- this.logger.debug("Calling operation FileStorageClient#updateFilesystemSnapshotPolicy.");
3362
+ oci_common_2.logger.debug("Calling operation FileStorageClient#updateFilesystemSnapshotPolicy.");
3501
3363
  const operationName = "updateFilesystemSnapshotPolicy";
3502
3364
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/FilesystemSnapshotPolicy/UpdateFilesystemSnapshotPolicy";
3503
3365
  const pathParams = {
@@ -3511,8 +3373,6 @@ class FileStorageClient {
3511
3373
  };
3512
3374
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3513
3375
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateFilesystemSnapshotPolicyRequest.retryConfiguration, specRetryConfiguration);
3514
- if (this.logger)
3515
- retrier.logger = this.logger;
3516
3376
  const request = yield oci_common_2.composeRequest({
3517
3377
  baseEndpoint: this._endpoint,
3518
3378
  defaultHeaders: this._defaultHeaders,
@@ -3557,12 +3417,11 @@ class FileStorageClient {
3557
3417
  * @param UpdateMountTargetRequest
3558
3418
  * @return UpdateMountTargetResponse
3559
3419
  * @throws OciError when an error occurs
3560
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/UpdateMountTarget.ts.html |here} to see how to use UpdateMountTarget API.
3420
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/UpdateMountTarget.ts.html |here} to see how to use UpdateMountTarget API.
3561
3421
  */
3562
3422
  updateMountTarget(updateMountTargetRequest) {
3563
3423
  return __awaiter(this, void 0, void 0, function* () {
3564
- if (this.logger)
3565
- this.logger.debug("Calling operation FileStorageClient#updateMountTarget.");
3424
+ oci_common_2.logger.debug("Calling operation FileStorageClient#updateMountTarget.");
3566
3425
  const operationName = "updateMountTarget";
3567
3426
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/MountTarget/UpdateMountTarget";
3568
3427
  const pathParams = {
@@ -3576,8 +3435,6 @@ class FileStorageClient {
3576
3435
  };
3577
3436
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3578
3437
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateMountTargetRequest.retryConfiguration, specRetryConfiguration);
3579
- if (this.logger)
3580
- retrier.logger = this.logger;
3581
3438
  const request = yield oci_common_2.composeRequest({
3582
3439
  baseEndpoint: this._endpoint,
3583
3440
  defaultHeaders: this._defaultHeaders,
@@ -3622,12 +3479,11 @@ class FileStorageClient {
3622
3479
  * @param UpdateOutboundConnectorRequest
3623
3480
  * @return UpdateOutboundConnectorResponse
3624
3481
  * @throws OciError when an error occurs
3625
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/UpdateOutboundConnector.ts.html |here} to see how to use UpdateOutboundConnector API.
3482
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/UpdateOutboundConnector.ts.html |here} to see how to use UpdateOutboundConnector API.
3626
3483
  */
3627
3484
  updateOutboundConnector(updateOutboundConnectorRequest) {
3628
3485
  return __awaiter(this, void 0, void 0, function* () {
3629
- if (this.logger)
3630
- this.logger.debug("Calling operation FileStorageClient#updateOutboundConnector.");
3486
+ oci_common_2.logger.debug("Calling operation FileStorageClient#updateOutboundConnector.");
3631
3487
  const operationName = "updateOutboundConnector";
3632
3488
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/OutboundConnector/UpdateOutboundConnector";
3633
3489
  const pathParams = {
@@ -3641,8 +3497,6 @@ class FileStorageClient {
3641
3497
  };
3642
3498
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3643
3499
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateOutboundConnectorRequest.retryConfiguration, specRetryConfiguration);
3644
- if (this.logger)
3645
- retrier.logger = this.logger;
3646
3500
  const request = yield oci_common_2.composeRequest({
3647
3501
  baseEndpoint: this._endpoint,
3648
3502
  defaultHeaders: this._defaultHeaders,
@@ -3688,12 +3542,11 @@ class FileStorageClient {
3688
3542
  * @param UpdateReplicationRequest
3689
3543
  * @return UpdateReplicationResponse
3690
3544
  * @throws OciError when an error occurs
3691
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/UpdateReplication.ts.html |here} to see how to use UpdateReplication API.
3545
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/UpdateReplication.ts.html |here} to see how to use UpdateReplication API.
3692
3546
  */
3693
3547
  updateReplication(updateReplicationRequest) {
3694
3548
  return __awaiter(this, void 0, void 0, function* () {
3695
- if (this.logger)
3696
- this.logger.debug("Calling operation FileStorageClient#updateReplication.");
3549
+ oci_common_2.logger.debug("Calling operation FileStorageClient#updateReplication.");
3697
3550
  const operationName = "updateReplication";
3698
3551
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/Replication/UpdateReplication";
3699
3552
  const pathParams = {
@@ -3707,8 +3560,6 @@ class FileStorageClient {
3707
3560
  };
3708
3561
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3709
3562
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateReplicationRequest.retryConfiguration, specRetryConfiguration);
3710
- if (this.logger)
3711
- retrier.logger = this.logger;
3712
3563
  const request = yield oci_common_2.composeRequest({
3713
3564
  baseEndpoint: this._endpoint,
3714
3565
  defaultHeaders: this._defaultHeaders,
@@ -3753,12 +3604,11 @@ class FileStorageClient {
3753
3604
  * @param UpdateSnapshotRequest
3754
3605
  * @return UpdateSnapshotResponse
3755
3606
  * @throws OciError when an error occurs
3756
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/UpdateSnapshot.ts.html |here} to see how to use UpdateSnapshot API.
3607
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/UpdateSnapshot.ts.html |here} to see how to use UpdateSnapshot API.
3757
3608
  */
3758
3609
  updateSnapshot(updateSnapshotRequest) {
3759
3610
  return __awaiter(this, void 0, void 0, function* () {
3760
- if (this.logger)
3761
- this.logger.debug("Calling operation FileStorageClient#updateSnapshot.");
3611
+ oci_common_2.logger.debug("Calling operation FileStorageClient#updateSnapshot.");
3762
3612
  const operationName = "updateSnapshot";
3763
3613
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/Snapshot/UpdateSnapshot";
3764
3614
  const pathParams = {
@@ -3772,8 +3622,6 @@ class FileStorageClient {
3772
3622
  };
3773
3623
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3774
3624
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateSnapshotRequest.retryConfiguration, specRetryConfiguration);
3775
- if (this.logger)
3776
- retrier.logger = this.logger;
3777
3625
  const request = yield oci_common_2.composeRequest({
3778
3626
  baseEndpoint: this._endpoint,
3779
3627
  defaultHeaders: this._defaultHeaders,
@@ -3821,12 +3669,11 @@ class FileStorageClient {
3821
3669
  * @param ValidateKeyTabsRequest
3822
3670
  * @return ValidateKeyTabsResponse
3823
3671
  * @throws OciError when an error occurs
3824
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/filestorage/ValidateKeyTabs.ts.html |here} to see how to use ValidateKeyTabs API.
3672
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/filestorage/ValidateKeyTabs.ts.html |here} to see how to use ValidateKeyTabs API.
3825
3673
  */
3826
3674
  validateKeyTabs(validateKeyTabsRequest) {
3827
3675
  return __awaiter(this, void 0, void 0, function* () {
3828
- if (this.logger)
3829
- this.logger.debug("Calling operation FileStorageClient#validateKeyTabs.");
3676
+ oci_common_2.logger.debug("Calling operation FileStorageClient#validateKeyTabs.");
3830
3677
  const operationName = "validateKeyTabs";
3831
3678
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/filestorage/20171215/MountTarget/ValidateKeyTabs";
3832
3679
  const pathParams = {};
@@ -3837,8 +3684,6 @@ class FileStorageClient {
3837
3684
  };
3838
3685
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3839
3686
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, validateKeyTabsRequest.retryConfiguration, specRetryConfiguration);
3840
- if (this.logger)
3841
- retrier.logger = this.logger;
3842
3687
  const request = yield oci_common_2.composeRequest({
3843
3688
  baseEndpoint: this._endpoint,
3844
3689
  defaultHeaders: this._defaultHeaders,