oci-loadbalancer 2.78.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 (71) hide show
  1. package/lib/client.d.ts +61 -62
  2. package/lib/client.js +124 -312
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/action.js +2 -4
  5. package/lib/model/action.js.map +1 -1
  6. package/lib/model/rule-condition.js +2 -4
  7. package/lib/model/rule-condition.js.map +1 -1
  8. package/lib/model/rule.js +2 -4
  9. package/lib/model/rule.js.map +1 -1
  10. package/lib/request/change-load-balancer-compartment-request.d.ts +1 -1
  11. package/lib/request/create-backend-request.d.ts +1 -1
  12. package/lib/request/create-backend-set-request.d.ts +1 -1
  13. package/lib/request/create-certificate-request.d.ts +1 -1
  14. package/lib/request/create-hostname-request.d.ts +1 -1
  15. package/lib/request/create-listener-request.d.ts +1 -1
  16. package/lib/request/create-load-balancer-request.d.ts +1 -1
  17. package/lib/request/create-path-route-set-request.d.ts +1 -1
  18. package/lib/request/create-routing-policy-request.d.ts +1 -1
  19. package/lib/request/create-rule-set-request.d.ts +1 -1
  20. package/lib/request/create-sslcipher-suite-request.d.ts +1 -1
  21. package/lib/request/delete-backend-request.d.ts +1 -1
  22. package/lib/request/delete-backend-set-request.d.ts +1 -1
  23. package/lib/request/delete-certificate-request.d.ts +1 -1
  24. package/lib/request/delete-hostname-request.d.ts +1 -1
  25. package/lib/request/delete-listener-request.d.ts +1 -1
  26. package/lib/request/delete-load-balancer-request.d.ts +1 -1
  27. package/lib/request/delete-path-route-set-request.d.ts +1 -1
  28. package/lib/request/delete-routing-policy-request.d.ts +1 -1
  29. package/lib/request/delete-rule-set-request.d.ts +1 -1
  30. package/lib/request/delete-sslcipher-suite-request.d.ts +1 -1
  31. package/lib/request/get-backend-health-request.d.ts +1 -1
  32. package/lib/request/get-backend-request.d.ts +1 -1
  33. package/lib/request/get-backend-set-health-request.d.ts +1 -1
  34. package/lib/request/get-backend-set-request.d.ts +1 -1
  35. package/lib/request/get-health-checker-request.d.ts +1 -1
  36. package/lib/request/get-hostname-request.d.ts +1 -1
  37. package/lib/request/get-load-balancer-health-request.d.ts +1 -1
  38. package/lib/request/get-load-balancer-request.d.ts +1 -1
  39. package/lib/request/get-path-route-set-request.d.ts +1 -1
  40. package/lib/request/get-routing-policy-request.d.ts +1 -1
  41. package/lib/request/get-rule-set-request.d.ts +1 -1
  42. package/lib/request/get-sslcipher-suite-request.d.ts +1 -1
  43. package/lib/request/get-work-request-request.d.ts +1 -1
  44. package/lib/request/list-backend-sets-request.d.ts +1 -1
  45. package/lib/request/list-backends-request.d.ts +1 -1
  46. package/lib/request/list-certificates-request.d.ts +1 -1
  47. package/lib/request/list-hostnames-request.d.ts +1 -1
  48. package/lib/request/list-listener-rules-request.d.ts +1 -1
  49. package/lib/request/list-load-balancer-healths-request.d.ts +1 -1
  50. package/lib/request/list-load-balancers-request.d.ts +1 -1
  51. package/lib/request/list-path-route-sets-request.d.ts +1 -1
  52. package/lib/request/list-policies-request.d.ts +1 -1
  53. package/lib/request/list-protocols-request.d.ts +1 -1
  54. package/lib/request/list-routing-policies-request.d.ts +1 -1
  55. package/lib/request/list-rule-sets-request.d.ts +1 -1
  56. package/lib/request/list-shapes-request.d.ts +1 -1
  57. package/lib/request/list-sslcipher-suites-request.d.ts +1 -1
  58. package/lib/request/list-work-requests-request.d.ts +1 -1
  59. package/lib/request/update-backend-request.d.ts +1 -1
  60. package/lib/request/update-backend-set-request.d.ts +1 -1
  61. package/lib/request/update-health-checker-request.d.ts +1 -1
  62. package/lib/request/update-hostname-request.d.ts +1 -1
  63. package/lib/request/update-listener-request.d.ts +1 -1
  64. package/lib/request/update-load-balancer-request.d.ts +1 -1
  65. package/lib/request/update-load-balancer-shape-request.d.ts +1 -1
  66. package/lib/request/update-network-security-groups-request.d.ts +1 -1
  67. package/lib/request/update-path-route-set-request.d.ts +1 -1
  68. package/lib/request/update-routing-policy-request.d.ts +1 -1
  69. package/lib/request/update-rule-set-request.d.ts +1 -1
  70. package/lib/request/update-sslcipher-suite-request.d.ts +1 -1
  71. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -119,11 +119,7 @@ class LoadBalancerClient {
119
119
  set endpoint(endpoint) {
120
120
  this._endpoint = endpoint;
121
121
  this._endpoint = this._endpoint + "/20170115";
122
- if (this.logger)
123
- this.logger.info(`LoadBalancerClient endpoint set to ${this._endpoint}`);
124
- }
125
- get logger() {
126
- return common.LOG.logger;
122
+ oci_common_2.logger.info(`LoadBalancerClient 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 LoadBalancerClient {
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(LoadBalancerClient.serviceEndpointTemplate, this._region, LoadBalancerClient.endpointServiceName);
139
134
  }
@@ -201,12 +196,11 @@ class LoadBalancerClient {
201
196
  * @param ChangeLoadBalancerCompartmentRequest
202
197
  * @return ChangeLoadBalancerCompartmentResponse
203
198
  * @throws OciError when an error occurs
204
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
199
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
205
200
  */
206
201
  changeLoadBalancerCompartment(changeLoadBalancerCompartmentRequest) {
207
202
  return __awaiter(this, void 0, void 0, function* () {
208
- if (this.logger)
209
- this.logger.debug("Calling operation LoadBalancerClient#changeLoadBalancerCompartment.");
203
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#changeLoadBalancerCompartment.");
210
204
  const operationName = "changeLoadBalancerCompartment";
211
205
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancer/ChangeLoadBalancerCompartment";
212
206
  const pathParams = {
@@ -221,8 +215,6 @@ class LoadBalancerClient {
221
215
  };
222
216
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
223
217
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeLoadBalancerCompartmentRequest.retryConfiguration, specRetryConfiguration);
224
- if (this.logger)
225
- retrier.logger = this.logger;
226
218
  const request = yield oci_common_2.composeRequest({
227
219
  baseEndpoint: this._endpoint,
228
220
  defaultHeaders: this._defaultHeaders,
@@ -263,12 +255,11 @@ class LoadBalancerClient {
263
255
  * @param CreateBackendRequest
264
256
  * @return CreateBackendResponse
265
257
  * @throws OciError when an error occurs
266
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
258
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
267
259
  */
268
260
  createBackend(createBackendRequest) {
269
261
  return __awaiter(this, void 0, void 0, function* () {
270
- if (this.logger)
271
- this.logger.debug("Calling operation LoadBalancerClient#createBackend.");
262
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#createBackend.");
272
263
  const operationName = "createBackend";
273
264
  const apiReferenceLink = "";
274
265
  const pathParams = {
@@ -284,8 +275,6 @@ class LoadBalancerClient {
284
275
  };
285
276
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
286
277
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createBackendRequest.retryConfiguration, specRetryConfiguration);
287
- if (this.logger)
288
- retrier.logger = this.logger;
289
278
  const request = yield oci_common_2.composeRequest({
290
279
  baseEndpoint: this._endpoint,
291
280
  defaultHeaders: this._defaultHeaders,
@@ -326,12 +315,11 @@ class LoadBalancerClient {
326
315
  * @param CreateBackendSetRequest
327
316
  * @return CreateBackendSetResponse
328
317
  * @throws OciError when an error occurs
329
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
318
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
330
319
  */
331
320
  createBackendSet(createBackendSetRequest) {
332
321
  return __awaiter(this, void 0, void 0, function* () {
333
- if (this.logger)
334
- this.logger.debug("Calling operation LoadBalancerClient#createBackendSet.");
322
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#createBackendSet.");
335
323
  const operationName = "createBackendSet";
336
324
  const apiReferenceLink = "";
337
325
  const pathParams = {
@@ -346,8 +334,6 @@ class LoadBalancerClient {
346
334
  };
347
335
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
348
336
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createBackendSetRequest.retryConfiguration, specRetryConfiguration);
349
- if (this.logger)
350
- retrier.logger = this.logger;
351
337
  const request = yield oci_common_2.composeRequest({
352
338
  baseEndpoint: this._endpoint,
353
339
  defaultHeaders: this._defaultHeaders,
@@ -388,12 +374,11 @@ class LoadBalancerClient {
388
374
  * @param CreateCertificateRequest
389
375
  * @return CreateCertificateResponse
390
376
  * @throws OciError when an error occurs
391
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
377
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
392
378
  */
393
379
  createCertificate(createCertificateRequest) {
394
380
  return __awaiter(this, void 0, void 0, function* () {
395
- if (this.logger)
396
- this.logger.debug("Calling operation LoadBalancerClient#createCertificate.");
381
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#createCertificate.");
397
382
  const operationName = "createCertificate";
398
383
  const apiReferenceLink = "";
399
384
  const pathParams = {
@@ -408,8 +393,6 @@ class LoadBalancerClient {
408
393
  };
409
394
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
410
395
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createCertificateRequest.retryConfiguration, specRetryConfiguration);
411
- if (this.logger)
412
- retrier.logger = this.logger;
413
396
  const request = yield oci_common_2.composeRequest({
414
397
  baseEndpoint: this._endpoint,
415
398
  defaultHeaders: this._defaultHeaders,
@@ -452,12 +435,11 @@ class LoadBalancerClient {
452
435
  * @param CreateHostnameRequest
453
436
  * @return CreateHostnameResponse
454
437
  * @throws OciError when an error occurs
455
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
438
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
456
439
  */
457
440
  createHostname(createHostnameRequest) {
458
441
  return __awaiter(this, void 0, void 0, function* () {
459
- if (this.logger)
460
- this.logger.debug("Calling operation LoadBalancerClient#createHostname.");
442
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#createHostname.");
461
443
  const operationName = "createHostname";
462
444
  const apiReferenceLink = "";
463
445
  const pathParams = {
@@ -472,8 +454,6 @@ class LoadBalancerClient {
472
454
  };
473
455
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
474
456
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createHostnameRequest.retryConfiguration, specRetryConfiguration);
475
- if (this.logger)
476
- retrier.logger = this.logger;
477
457
  const request = yield oci_common_2.composeRequest({
478
458
  baseEndpoint: this._endpoint,
479
459
  defaultHeaders: this._defaultHeaders,
@@ -514,12 +494,11 @@ class LoadBalancerClient {
514
494
  * @param CreateListenerRequest
515
495
  * @return CreateListenerResponse
516
496
  * @throws OciError when an error occurs
517
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
497
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
518
498
  */
519
499
  createListener(createListenerRequest) {
520
500
  return __awaiter(this, void 0, void 0, function* () {
521
- if (this.logger)
522
- this.logger.debug("Calling operation LoadBalancerClient#createListener.");
501
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#createListener.");
523
502
  const operationName = "createListener";
524
503
  const apiReferenceLink = "";
525
504
  const pathParams = {
@@ -534,8 +513,6 @@ class LoadBalancerClient {
534
513
  };
535
514
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
536
515
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createListenerRequest.retryConfiguration, specRetryConfiguration);
537
- if (this.logger)
538
- retrier.logger = this.logger;
539
516
  const request = yield oci_common_2.composeRequest({
540
517
  baseEndpoint: this._endpoint,
541
518
  defaultHeaders: this._defaultHeaders,
@@ -603,12 +580,11 @@ class LoadBalancerClient {
603
580
  * @param CreateLoadBalancerRequest
604
581
  * @return CreateLoadBalancerResponse
605
582
  * @throws OciError when an error occurs
606
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
583
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
607
584
  */
608
585
  createLoadBalancer(createLoadBalancerRequest) {
609
586
  return __awaiter(this, void 0, void 0, function* () {
610
- if (this.logger)
611
- this.logger.debug("Calling operation LoadBalancerClient#createLoadBalancer.");
587
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#createLoadBalancer.");
612
588
  const operationName = "createLoadBalancer";
613
589
  const apiReferenceLink = "";
614
590
  const pathParams = {};
@@ -620,8 +596,6 @@ class LoadBalancerClient {
620
596
  };
621
597
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
622
598
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createLoadBalancerRequest.retryConfiguration, specRetryConfiguration);
623
- if (this.logger)
624
- retrier.logger = this.logger;
625
599
  const request = yield oci_common_2.composeRequest({
626
600
  baseEndpoint: this._endpoint,
627
601
  defaultHeaders: this._defaultHeaders,
@@ -664,12 +638,11 @@ class LoadBalancerClient {
664
638
  * @param CreatePathRouteSetRequest
665
639
  * @return CreatePathRouteSetResponse
666
640
  * @throws OciError when an error occurs
667
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
641
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
668
642
  */
669
643
  createPathRouteSet(createPathRouteSetRequest) {
670
644
  return __awaiter(this, void 0, void 0, function* () {
671
- if (this.logger)
672
- this.logger.debug("Calling operation LoadBalancerClient#createPathRouteSet.");
645
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#createPathRouteSet.");
673
646
  const operationName = "createPathRouteSet";
674
647
  const apiReferenceLink = "";
675
648
  const pathParams = {
@@ -684,8 +657,6 @@ class LoadBalancerClient {
684
657
  };
685
658
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
686
659
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createPathRouteSetRequest.retryConfiguration, specRetryConfiguration);
687
- if (this.logger)
688
- retrier.logger = this.logger;
689
660
  const request = yield oci_common_2.composeRequest({
690
661
  baseEndpoint: this._endpoint,
691
662
  defaultHeaders: this._defaultHeaders,
@@ -728,12 +699,11 @@ class LoadBalancerClient {
728
699
  * @param CreateRoutingPolicyRequest
729
700
  * @return CreateRoutingPolicyResponse
730
701
  * @throws OciError when an error occurs
731
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
702
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
732
703
  */
733
704
  createRoutingPolicy(createRoutingPolicyRequest) {
734
705
  return __awaiter(this, void 0, void 0, function* () {
735
- if (this.logger)
736
- this.logger.debug("Calling operation LoadBalancerClient#createRoutingPolicy.");
706
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#createRoutingPolicy.");
737
707
  const operationName = "createRoutingPolicy";
738
708
  const apiReferenceLink = "";
739
709
  const pathParams = {
@@ -748,8 +718,6 @@ class LoadBalancerClient {
748
718
  };
749
719
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
750
720
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createRoutingPolicyRequest.retryConfiguration, specRetryConfiguration);
751
- if (this.logger)
752
- retrier.logger = this.logger;
753
721
  const request = yield oci_common_2.composeRequest({
754
722
  baseEndpoint: this._endpoint,
755
723
  defaultHeaders: this._defaultHeaders,
@@ -792,12 +760,11 @@ class LoadBalancerClient {
792
760
  * @param CreateRuleSetRequest
793
761
  * @return CreateRuleSetResponse
794
762
  * @throws OciError when an error occurs
795
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
763
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
796
764
  */
797
765
  createRuleSet(createRuleSetRequest) {
798
766
  return __awaiter(this, void 0, void 0, function* () {
799
- if (this.logger)
800
- this.logger.debug("Calling operation LoadBalancerClient#createRuleSet.");
767
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#createRuleSet.");
801
768
  const operationName = "createRuleSet";
802
769
  const apiReferenceLink = "";
803
770
  const pathParams = {
@@ -812,8 +779,6 @@ class LoadBalancerClient {
812
779
  };
813
780
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
814
781
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createRuleSetRequest.retryConfiguration, specRetryConfiguration);
815
- if (this.logger)
816
- retrier.logger = this.logger;
817
782
  const request = yield oci_common_2.composeRequest({
818
783
  baseEndpoint: this._endpoint,
819
784
  defaultHeaders: this._defaultHeaders,
@@ -854,12 +819,11 @@ class LoadBalancerClient {
854
819
  * @param CreateSSLCipherSuiteRequest
855
820
  * @return CreateSSLCipherSuiteResponse
856
821
  * @throws OciError when an error occurs
857
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
822
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
858
823
  */
859
824
  createSSLCipherSuite(createSSLCipherSuiteRequest) {
860
825
  return __awaiter(this, void 0, void 0, function* () {
861
- if (this.logger)
862
- this.logger.debug("Calling operation LoadBalancerClient#createSSLCipherSuite.");
826
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#createSSLCipherSuite.");
863
827
  const operationName = "createSSLCipherSuite";
864
828
  const apiReferenceLink = "";
865
829
  const pathParams = {
@@ -874,8 +838,6 @@ class LoadBalancerClient {
874
838
  };
875
839
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
876
840
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createSSLCipherSuiteRequest.retryConfiguration, specRetryConfiguration);
877
- if (this.logger)
878
- retrier.logger = this.logger;
879
841
  const request = yield oci_common_2.composeRequest({
880
842
  baseEndpoint: this._endpoint,
881
843
  defaultHeaders: this._defaultHeaders,
@@ -916,12 +878,11 @@ class LoadBalancerClient {
916
878
  * @param DeleteBackendRequest
917
879
  * @return DeleteBackendResponse
918
880
  * @throws OciError when an error occurs
919
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
881
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
920
882
  */
921
883
  deleteBackend(deleteBackendRequest) {
922
884
  return __awaiter(this, void 0, void 0, function* () {
923
- if (this.logger)
924
- this.logger.debug("Calling operation LoadBalancerClient#deleteBackend.");
885
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#deleteBackend.");
925
886
  const operationName = "deleteBackend";
926
887
  const apiReferenceLink = "";
927
888
  const pathParams = {
@@ -937,8 +898,6 @@ class LoadBalancerClient {
937
898
  };
938
899
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
939
900
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteBackendRequest.retryConfiguration, specRetryConfiguration);
940
- if (this.logger)
941
- retrier.logger = this.logger;
942
901
  const request = yield oci_common_2.composeRequest({
943
902
  baseEndpoint: this._endpoint,
944
903
  defaultHeaders: this._defaultHeaders,
@@ -981,12 +940,11 @@ class LoadBalancerClient {
981
940
  * @param DeleteBackendSetRequest
982
941
  * @return DeleteBackendSetResponse
983
942
  * @throws OciError when an error occurs
984
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
943
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
985
944
  */
986
945
  deleteBackendSet(deleteBackendSetRequest) {
987
946
  return __awaiter(this, void 0, void 0, function* () {
988
- if (this.logger)
989
- this.logger.debug("Calling operation LoadBalancerClient#deleteBackendSet.");
947
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#deleteBackendSet.");
990
948
  const operationName = "deleteBackendSet";
991
949
  const apiReferenceLink = "";
992
950
  const pathParams = {
@@ -1001,8 +959,6 @@ class LoadBalancerClient {
1001
959
  };
1002
960
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1003
961
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteBackendSetRequest.retryConfiguration, specRetryConfiguration);
1004
- if (this.logger)
1005
- retrier.logger = this.logger;
1006
962
  const request = yield oci_common_2.composeRequest({
1007
963
  baseEndpoint: this._endpoint,
1008
964
  defaultHeaders: this._defaultHeaders,
@@ -1042,12 +998,11 @@ class LoadBalancerClient {
1042
998
  * @param DeleteCertificateRequest
1043
999
  * @return DeleteCertificateResponse
1044
1000
  * @throws OciError when an error occurs
1045
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
1001
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
1046
1002
  */
1047
1003
  deleteCertificate(deleteCertificateRequest) {
1048
1004
  return __awaiter(this, void 0, void 0, function* () {
1049
- if (this.logger)
1050
- this.logger.debug("Calling operation LoadBalancerClient#deleteCertificate.");
1005
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#deleteCertificate.");
1051
1006
  const operationName = "deleteCertificate";
1052
1007
  const apiReferenceLink = "";
1053
1008
  const pathParams = {
@@ -1062,8 +1017,6 @@ class LoadBalancerClient {
1062
1017
  };
1063
1018
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1064
1019
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteCertificateRequest.retryConfiguration, specRetryConfiguration);
1065
- if (this.logger)
1066
- retrier.logger = this.logger;
1067
1020
  const request = yield oci_common_2.composeRequest({
1068
1021
  baseEndpoint: this._endpoint,
1069
1022
  defaultHeaders: this._defaultHeaders,
@@ -1104,12 +1057,11 @@ class LoadBalancerClient {
1104
1057
  * @param DeleteHostnameRequest
1105
1058
  * @return DeleteHostnameResponse
1106
1059
  * @throws OciError when an error occurs
1107
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
1060
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
1108
1061
  */
1109
1062
  deleteHostname(deleteHostnameRequest) {
1110
1063
  return __awaiter(this, void 0, void 0, function* () {
1111
- if (this.logger)
1112
- this.logger.debug("Calling operation LoadBalancerClient#deleteHostname.");
1064
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#deleteHostname.");
1113
1065
  const operationName = "deleteHostname";
1114
1066
  const apiReferenceLink = "";
1115
1067
  const pathParams = {
@@ -1124,8 +1076,6 @@ class LoadBalancerClient {
1124
1076
  };
1125
1077
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1126
1078
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteHostnameRequest.retryConfiguration, specRetryConfiguration);
1127
- if (this.logger)
1128
- retrier.logger = this.logger;
1129
1079
  const request = yield oci_common_2.composeRequest({
1130
1080
  baseEndpoint: this._endpoint,
1131
1081
  defaultHeaders: this._defaultHeaders,
@@ -1165,12 +1115,11 @@ class LoadBalancerClient {
1165
1115
  * @param DeleteListenerRequest
1166
1116
  * @return DeleteListenerResponse
1167
1117
  * @throws OciError when an error occurs
1168
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
1118
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
1169
1119
  */
1170
1120
  deleteListener(deleteListenerRequest) {
1171
1121
  return __awaiter(this, void 0, void 0, function* () {
1172
- if (this.logger)
1173
- this.logger.debug("Calling operation LoadBalancerClient#deleteListener.");
1122
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#deleteListener.");
1174
1123
  const operationName = "deleteListener";
1175
1124
  const apiReferenceLink = "";
1176
1125
  const pathParams = {
@@ -1185,8 +1134,6 @@ class LoadBalancerClient {
1185
1134
  };
1186
1135
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1187
1136
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteListenerRequest.retryConfiguration, specRetryConfiguration);
1188
- if (this.logger)
1189
- retrier.logger = this.logger;
1190
1137
  const request = yield oci_common_2.composeRequest({
1191
1138
  baseEndpoint: this._endpoint,
1192
1139
  defaultHeaders: this._defaultHeaders,
@@ -1226,12 +1173,11 @@ class LoadBalancerClient {
1226
1173
  * @param DeleteLoadBalancerRequest
1227
1174
  * @return DeleteLoadBalancerResponse
1228
1175
  * @throws OciError when an error occurs
1229
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
1176
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
1230
1177
  */
1231
1178
  deleteLoadBalancer(deleteLoadBalancerRequest) {
1232
1179
  return __awaiter(this, void 0, void 0, function* () {
1233
- if (this.logger)
1234
- this.logger.debug("Calling operation LoadBalancerClient#deleteLoadBalancer.");
1180
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#deleteLoadBalancer.");
1235
1181
  const operationName = "deleteLoadBalancer";
1236
1182
  const apiReferenceLink = "";
1237
1183
  const pathParams = {
@@ -1245,8 +1191,6 @@ class LoadBalancerClient {
1245
1191
  };
1246
1192
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1247
1193
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteLoadBalancerRequest.retryConfiguration, specRetryConfiguration);
1248
- if (this.logger)
1249
- retrier.logger = this.logger;
1250
1194
  const request = yield oci_common_2.composeRequest({
1251
1195
  baseEndpoint: this._endpoint,
1252
1196
  defaultHeaders: this._defaultHeaders,
@@ -1290,12 +1234,11 @@ class LoadBalancerClient {
1290
1234
  * @param DeletePathRouteSetRequest
1291
1235
  * @return DeletePathRouteSetResponse
1292
1236
  * @throws OciError when an error occurs
1293
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
1237
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
1294
1238
  */
1295
1239
  deletePathRouteSet(deletePathRouteSetRequest) {
1296
1240
  return __awaiter(this, void 0, void 0, function* () {
1297
- if (this.logger)
1298
- this.logger.debug("Calling operation LoadBalancerClient#deletePathRouteSet.");
1241
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#deletePathRouteSet.");
1299
1242
  const operationName = "deletePathRouteSet";
1300
1243
  const apiReferenceLink = "";
1301
1244
  const pathParams = {
@@ -1310,8 +1253,6 @@ class LoadBalancerClient {
1310
1253
  };
1311
1254
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1312
1255
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deletePathRouteSetRequest.retryConfiguration, specRetryConfiguration);
1313
- if (this.logger)
1314
- retrier.logger = this.logger;
1315
1256
  const request = yield oci_common_2.composeRequest({
1316
1257
  baseEndpoint: this._endpoint,
1317
1258
  defaultHeaders: this._defaultHeaders,
@@ -1355,12 +1296,11 @@ class LoadBalancerClient {
1355
1296
  * @param DeleteRoutingPolicyRequest
1356
1297
  * @return DeleteRoutingPolicyResponse
1357
1298
  * @throws OciError when an error occurs
1358
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
1299
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
1359
1300
  */
1360
1301
  deleteRoutingPolicy(deleteRoutingPolicyRequest) {
1361
1302
  return __awaiter(this, void 0, void 0, function* () {
1362
- if (this.logger)
1363
- this.logger.debug("Calling operation LoadBalancerClient#deleteRoutingPolicy.");
1303
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#deleteRoutingPolicy.");
1364
1304
  const operationName = "deleteRoutingPolicy";
1365
1305
  const apiReferenceLink = "";
1366
1306
  const pathParams = {
@@ -1375,8 +1315,6 @@ class LoadBalancerClient {
1375
1315
  };
1376
1316
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1377
1317
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteRoutingPolicyRequest.retryConfiguration, specRetryConfiguration);
1378
- if (this.logger)
1379
- retrier.logger = this.logger;
1380
1318
  const request = yield oci_common_2.composeRequest({
1381
1319
  baseEndpoint: this._endpoint,
1382
1320
  defaultHeaders: this._defaultHeaders,
@@ -1420,12 +1358,11 @@ class LoadBalancerClient {
1420
1358
  * @param DeleteRuleSetRequest
1421
1359
  * @return DeleteRuleSetResponse
1422
1360
  * @throws OciError when an error occurs
1423
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
1361
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
1424
1362
  */
1425
1363
  deleteRuleSet(deleteRuleSetRequest) {
1426
1364
  return __awaiter(this, void 0, void 0, function* () {
1427
- if (this.logger)
1428
- this.logger.debug("Calling operation LoadBalancerClient#deleteRuleSet.");
1365
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#deleteRuleSet.");
1429
1366
  const operationName = "deleteRuleSet";
1430
1367
  const apiReferenceLink = "";
1431
1368
  const pathParams = {
@@ -1440,8 +1377,6 @@ class LoadBalancerClient {
1440
1377
  };
1441
1378
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1442
1379
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteRuleSetRequest.retryConfiguration, specRetryConfiguration);
1443
- if (this.logger)
1444
- retrier.logger = this.logger;
1445
1380
  const request = yield oci_common_2.composeRequest({
1446
1381
  baseEndpoint: this._endpoint,
1447
1382
  defaultHeaders: this._defaultHeaders,
@@ -1481,12 +1416,11 @@ class LoadBalancerClient {
1481
1416
  * @param DeleteSSLCipherSuiteRequest
1482
1417
  * @return DeleteSSLCipherSuiteResponse
1483
1418
  * @throws OciError when an error occurs
1484
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
1419
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
1485
1420
  */
1486
1421
  deleteSSLCipherSuite(deleteSSLCipherSuiteRequest) {
1487
1422
  return __awaiter(this, void 0, void 0, function* () {
1488
- if (this.logger)
1489
- this.logger.debug("Calling operation LoadBalancerClient#deleteSSLCipherSuite.");
1423
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#deleteSSLCipherSuite.");
1490
1424
  const operationName = "deleteSSLCipherSuite";
1491
1425
  const apiReferenceLink = "";
1492
1426
  const pathParams = {
@@ -1501,8 +1435,6 @@ class LoadBalancerClient {
1501
1435
  };
1502
1436
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1503
1437
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteSSLCipherSuiteRequest.retryConfiguration, specRetryConfiguration);
1504
- if (this.logger)
1505
- retrier.logger = this.logger;
1506
1438
  const request = yield oci_common_2.composeRequest({
1507
1439
  baseEndpoint: this._endpoint,
1508
1440
  defaultHeaders: this._defaultHeaders,
@@ -1542,12 +1474,11 @@ class LoadBalancerClient {
1542
1474
  * @param GetBackendRequest
1543
1475
  * @return GetBackendResponse
1544
1476
  * @throws OciError when an error occurs
1545
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
1477
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
1546
1478
  */
1547
1479
  getBackend(getBackendRequest) {
1548
1480
  return __awaiter(this, void 0, void 0, function* () {
1549
- if (this.logger)
1550
- this.logger.debug("Calling operation LoadBalancerClient#getBackend.");
1481
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#getBackend.");
1551
1482
  const operationName = "getBackend";
1552
1483
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/Backend/GetBackend";
1553
1484
  const pathParams = {
@@ -1563,8 +1494,6 @@ class LoadBalancerClient {
1563
1494
  };
1564
1495
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1565
1496
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBackendRequest.retryConfiguration, specRetryConfiguration);
1566
- if (this.logger)
1567
- retrier.logger = this.logger;
1568
1497
  const request = yield oci_common_2.composeRequest({
1569
1498
  baseEndpoint: this._endpoint,
1570
1499
  defaultHeaders: this._defaultHeaders,
@@ -1608,12 +1537,11 @@ class LoadBalancerClient {
1608
1537
  * @param GetBackendHealthRequest
1609
1538
  * @return GetBackendHealthResponse
1610
1539
  * @throws OciError when an error occurs
1611
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
1540
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
1612
1541
  */
1613
1542
  getBackendHealth(getBackendHealthRequest) {
1614
1543
  return __awaiter(this, void 0, void 0, function* () {
1615
- if (this.logger)
1616
- this.logger.debug("Calling operation LoadBalancerClient#getBackendHealth.");
1544
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#getBackendHealth.");
1617
1545
  const operationName = "getBackendHealth";
1618
1546
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/BackendHealth/GetBackendHealth";
1619
1547
  const pathParams = {
@@ -1629,8 +1557,6 @@ class LoadBalancerClient {
1629
1557
  };
1630
1558
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1631
1559
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBackendHealthRequest.retryConfiguration, specRetryConfiguration);
1632
- if (this.logger)
1633
- retrier.logger = this.logger;
1634
1560
  const request = yield oci_common_2.composeRequest({
1635
1561
  baseEndpoint: this._endpoint,
1636
1562
  defaultHeaders: this._defaultHeaders,
@@ -1674,12 +1600,11 @@ class LoadBalancerClient {
1674
1600
  * @param GetBackendSetRequest
1675
1601
  * @return GetBackendSetResponse
1676
1602
  * @throws OciError when an error occurs
1677
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
1603
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
1678
1604
  */
1679
1605
  getBackendSet(getBackendSetRequest) {
1680
1606
  return __awaiter(this, void 0, void 0, function* () {
1681
- if (this.logger)
1682
- this.logger.debug("Calling operation LoadBalancerClient#getBackendSet.");
1607
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#getBackendSet.");
1683
1608
  const operationName = "getBackendSet";
1684
1609
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/BackendSet/GetBackendSet";
1685
1610
  const pathParams = {
@@ -1694,8 +1619,6 @@ class LoadBalancerClient {
1694
1619
  };
1695
1620
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1696
1621
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBackendSetRequest.retryConfiguration, specRetryConfiguration);
1697
- if (this.logger)
1698
- retrier.logger = this.logger;
1699
1622
  const request = yield oci_common_2.composeRequest({
1700
1623
  baseEndpoint: this._endpoint,
1701
1624
  defaultHeaders: this._defaultHeaders,
@@ -1739,12 +1662,11 @@ class LoadBalancerClient {
1739
1662
  * @param GetBackendSetHealthRequest
1740
1663
  * @return GetBackendSetHealthResponse
1741
1664
  * @throws OciError when an error occurs
1742
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
1665
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
1743
1666
  */
1744
1667
  getBackendSetHealth(getBackendSetHealthRequest) {
1745
1668
  return __awaiter(this, void 0, void 0, function* () {
1746
- if (this.logger)
1747
- this.logger.debug("Calling operation LoadBalancerClient#getBackendSetHealth.");
1669
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#getBackendSetHealth.");
1748
1670
  const operationName = "getBackendSetHealth";
1749
1671
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/BackendSetHealth/GetBackendSetHealth";
1750
1672
  const pathParams = {
@@ -1759,8 +1681,6 @@ class LoadBalancerClient {
1759
1681
  };
1760
1682
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1761
1683
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBackendSetHealthRequest.retryConfiguration, specRetryConfiguration);
1762
- if (this.logger)
1763
- retrier.logger = this.logger;
1764
1684
  const request = yield oci_common_2.composeRequest({
1765
1685
  baseEndpoint: this._endpoint,
1766
1686
  defaultHeaders: this._defaultHeaders,
@@ -1804,12 +1724,11 @@ class LoadBalancerClient {
1804
1724
  * @param GetHealthCheckerRequest
1805
1725
  * @return GetHealthCheckerResponse
1806
1726
  * @throws OciError when an error occurs
1807
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
1727
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
1808
1728
  */
1809
1729
  getHealthChecker(getHealthCheckerRequest) {
1810
1730
  return __awaiter(this, void 0, void 0, function* () {
1811
- if (this.logger)
1812
- this.logger.debug("Calling operation LoadBalancerClient#getHealthChecker.");
1731
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#getHealthChecker.");
1813
1732
  const operationName = "getHealthChecker";
1814
1733
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/HealthChecker/GetHealthChecker";
1815
1734
  const pathParams = {
@@ -1824,8 +1743,6 @@ class LoadBalancerClient {
1824
1743
  };
1825
1744
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1826
1745
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getHealthCheckerRequest.retryConfiguration, specRetryConfiguration);
1827
- if (this.logger)
1828
- retrier.logger = this.logger;
1829
1746
  const request = yield oci_common_2.composeRequest({
1830
1747
  baseEndpoint: this._endpoint,
1831
1748
  defaultHeaders: this._defaultHeaders,
@@ -1869,12 +1786,11 @@ class LoadBalancerClient {
1869
1786
  * @param GetHostnameRequest
1870
1787
  * @return GetHostnameResponse
1871
1788
  * @throws OciError when an error occurs
1872
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
1789
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
1873
1790
  */
1874
1791
  getHostname(getHostnameRequest) {
1875
1792
  return __awaiter(this, void 0, void 0, function* () {
1876
- if (this.logger)
1877
- this.logger.debug("Calling operation LoadBalancerClient#getHostname.");
1793
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#getHostname.");
1878
1794
  const operationName = "getHostname";
1879
1795
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/Hostname/GetHostname";
1880
1796
  const pathParams = {
@@ -1889,8 +1805,6 @@ class LoadBalancerClient {
1889
1805
  };
1890
1806
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1891
1807
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getHostnameRequest.retryConfiguration, specRetryConfiguration);
1892
- if (this.logger)
1893
- retrier.logger = this.logger;
1894
1808
  const request = yield oci_common_2.composeRequest({
1895
1809
  baseEndpoint: this._endpoint,
1896
1810
  defaultHeaders: this._defaultHeaders,
@@ -1934,12 +1848,11 @@ class LoadBalancerClient {
1934
1848
  * @param GetLoadBalancerRequest
1935
1849
  * @return GetLoadBalancerResponse
1936
1850
  * @throws OciError when an error occurs
1937
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
1851
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
1938
1852
  */
1939
1853
  getLoadBalancer(getLoadBalancerRequest) {
1940
1854
  return __awaiter(this, void 0, void 0, function* () {
1941
- if (this.logger)
1942
- this.logger.debug("Calling operation LoadBalancerClient#getLoadBalancer.");
1855
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#getLoadBalancer.");
1943
1856
  const operationName = "getLoadBalancer";
1944
1857
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancer/GetLoadBalancer";
1945
1858
  const pathParams = {
@@ -1953,8 +1866,6 @@ class LoadBalancerClient {
1953
1866
  };
1954
1867
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1955
1868
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getLoadBalancerRequest.retryConfiguration, specRetryConfiguration);
1956
- if (this.logger)
1957
- retrier.logger = this.logger;
1958
1869
  const request = yield oci_common_2.composeRequest({
1959
1870
  baseEndpoint: this._endpoint,
1960
1871
  defaultHeaders: this._defaultHeaders,
@@ -1998,12 +1909,11 @@ class LoadBalancerClient {
1998
1909
  * @param GetLoadBalancerHealthRequest
1999
1910
  * @return GetLoadBalancerHealthResponse
2000
1911
  * @throws OciError when an error occurs
2001
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
1912
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
2002
1913
  */
2003
1914
  getLoadBalancerHealth(getLoadBalancerHealthRequest) {
2004
1915
  return __awaiter(this, void 0, void 0, function* () {
2005
- if (this.logger)
2006
- this.logger.debug("Calling operation LoadBalancerClient#getLoadBalancerHealth.");
1916
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#getLoadBalancerHealth.");
2007
1917
  const operationName = "getLoadBalancerHealth";
2008
1918
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerHealth/GetLoadBalancerHealth";
2009
1919
  const pathParams = {
@@ -2017,8 +1927,6 @@ class LoadBalancerClient {
2017
1927
  };
2018
1928
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2019
1929
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getLoadBalancerHealthRequest.retryConfiguration, specRetryConfiguration);
2020
- if (this.logger)
2021
- retrier.logger = this.logger;
2022
1930
  const request = yield oci_common_2.composeRequest({
2023
1931
  baseEndpoint: this._endpoint,
2024
1932
  defaultHeaders: this._defaultHeaders,
@@ -2062,12 +1970,11 @@ class LoadBalancerClient {
2062
1970
  * @param GetPathRouteSetRequest
2063
1971
  * @return GetPathRouteSetResponse
2064
1972
  * @throws OciError when an error occurs
2065
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
1973
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
2066
1974
  */
2067
1975
  getPathRouteSet(getPathRouteSetRequest) {
2068
1976
  return __awaiter(this, void 0, void 0, function* () {
2069
- if (this.logger)
2070
- this.logger.debug("Calling operation LoadBalancerClient#getPathRouteSet.");
1977
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#getPathRouteSet.");
2071
1978
  const operationName = "getPathRouteSet";
2072
1979
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/PathRouteSet/GetPathRouteSet";
2073
1980
  const pathParams = {
@@ -2082,8 +1989,6 @@ class LoadBalancerClient {
2082
1989
  };
2083
1990
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2084
1991
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getPathRouteSetRequest.retryConfiguration, specRetryConfiguration);
2085
- if (this.logger)
2086
- retrier.logger = this.logger;
2087
1992
  const request = yield oci_common_2.composeRequest({
2088
1993
  baseEndpoint: this._endpoint,
2089
1994
  defaultHeaders: this._defaultHeaders,
@@ -2127,12 +2032,11 @@ class LoadBalancerClient {
2127
2032
  * @param GetRoutingPolicyRequest
2128
2033
  * @return GetRoutingPolicyResponse
2129
2034
  * @throws OciError when an error occurs
2130
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
2035
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
2131
2036
  */
2132
2037
  getRoutingPolicy(getRoutingPolicyRequest) {
2133
2038
  return __awaiter(this, void 0, void 0, function* () {
2134
- if (this.logger)
2135
- this.logger.debug("Calling operation LoadBalancerClient#getRoutingPolicy.");
2039
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#getRoutingPolicy.");
2136
2040
  const operationName = "getRoutingPolicy";
2137
2041
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/RoutingPolicy/GetRoutingPolicy";
2138
2042
  const pathParams = {
@@ -2147,8 +2051,6 @@ class LoadBalancerClient {
2147
2051
  };
2148
2052
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2149
2053
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getRoutingPolicyRequest.retryConfiguration, specRetryConfiguration);
2150
- if (this.logger)
2151
- retrier.logger = this.logger;
2152
2054
  const request = yield oci_common_2.composeRequest({
2153
2055
  baseEndpoint: this._endpoint,
2154
2056
  defaultHeaders: this._defaultHeaders,
@@ -2192,12 +2094,11 @@ class LoadBalancerClient {
2192
2094
  * @param GetRuleSetRequest
2193
2095
  * @return GetRuleSetResponse
2194
2096
  * @throws OciError when an error occurs
2195
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
2097
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
2196
2098
  */
2197
2099
  getRuleSet(getRuleSetRequest) {
2198
2100
  return __awaiter(this, void 0, void 0, function* () {
2199
- if (this.logger)
2200
- this.logger.debug("Calling operation LoadBalancerClient#getRuleSet.");
2101
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#getRuleSet.");
2201
2102
  const operationName = "getRuleSet";
2202
2103
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/RuleSet/GetRuleSet";
2203
2104
  const pathParams = {
@@ -2212,8 +2113,6 @@ class LoadBalancerClient {
2212
2113
  };
2213
2114
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2214
2115
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getRuleSetRequest.retryConfiguration, specRetryConfiguration);
2215
- if (this.logger)
2216
- retrier.logger = this.logger;
2217
2116
  const request = yield oci_common_2.composeRequest({
2218
2117
  baseEndpoint: this._endpoint,
2219
2118
  defaultHeaders: this._defaultHeaders,
@@ -2257,12 +2156,11 @@ class LoadBalancerClient {
2257
2156
  * @param GetSSLCipherSuiteRequest
2258
2157
  * @return GetSSLCipherSuiteResponse
2259
2158
  * @throws OciError when an error occurs
2260
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
2159
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
2261
2160
  */
2262
2161
  getSSLCipherSuite(getSSLCipherSuiteRequest) {
2263
2162
  return __awaiter(this, void 0, void 0, function* () {
2264
- if (this.logger)
2265
- this.logger.debug("Calling operation LoadBalancerClient#getSSLCipherSuite.");
2163
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#getSSLCipherSuite.");
2266
2164
  const operationName = "getSSLCipherSuite";
2267
2165
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/SSLCipherSuite/GetSSLCipherSuite";
2268
2166
  const pathParams = {
@@ -2277,8 +2175,6 @@ class LoadBalancerClient {
2277
2175
  };
2278
2176
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2279
2177
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getSSLCipherSuiteRequest.retryConfiguration, specRetryConfiguration);
2280
- if (this.logger)
2281
- retrier.logger = this.logger;
2282
2178
  const request = yield oci_common_2.composeRequest({
2283
2179
  baseEndpoint: this._endpoint,
2284
2180
  defaultHeaders: this._defaultHeaders,
@@ -2322,12 +2218,11 @@ class LoadBalancerClient {
2322
2218
  * @param GetWorkRequestRequest
2323
2219
  * @return GetWorkRequestResponse
2324
2220
  * @throws OciError when an error occurs
2325
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2221
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2326
2222
  */
2327
2223
  getWorkRequest(getWorkRequestRequest) {
2328
2224
  return __awaiter(this, void 0, void 0, function* () {
2329
- if (this.logger)
2330
- this.logger.debug("Calling operation LoadBalancerClient#getWorkRequest.");
2225
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#getWorkRequest.");
2331
2226
  const operationName = "getWorkRequest";
2332
2227
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/WorkRequest/GetWorkRequest";
2333
2228
  const pathParams = {
@@ -2340,8 +2235,6 @@ class LoadBalancerClient {
2340
2235
  };
2341
2236
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2342
2237
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
2343
- if (this.logger)
2344
- retrier.logger = this.logger;
2345
2238
  const request = yield oci_common_2.composeRequest({
2346
2239
  baseEndpoint: this._endpoint,
2347
2240
  defaultHeaders: this._defaultHeaders,
@@ -2380,12 +2273,11 @@ class LoadBalancerClient {
2380
2273
  * @param ListBackendSetsRequest
2381
2274
  * @return ListBackendSetsResponse
2382
2275
  * @throws OciError when an error occurs
2383
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
2276
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
2384
2277
  */
2385
2278
  listBackendSets(listBackendSetsRequest) {
2386
2279
  return __awaiter(this, void 0, void 0, function* () {
2387
- if (this.logger)
2388
- this.logger.debug("Calling operation LoadBalancerClient#listBackendSets.");
2280
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listBackendSets.");
2389
2281
  const operationName = "listBackendSets";
2390
2282
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/BackendSet/ListBackendSets";
2391
2283
  const pathParams = {
@@ -2399,8 +2291,6 @@ class LoadBalancerClient {
2399
2291
  };
2400
2292
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2401
2293
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listBackendSetsRequest.retryConfiguration, specRetryConfiguration);
2402
- if (this.logger)
2403
- retrier.logger = this.logger;
2404
2294
  const request = yield oci_common_2.composeRequest({
2405
2295
  baseEndpoint: this._endpoint,
2406
2296
  defaultHeaders: this._defaultHeaders,
@@ -2444,12 +2334,11 @@ class LoadBalancerClient {
2444
2334
  * @param ListBackendsRequest
2445
2335
  * @return ListBackendsResponse
2446
2336
  * @throws OciError when an error occurs
2447
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
2337
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
2448
2338
  */
2449
2339
  listBackends(listBackendsRequest) {
2450
2340
  return __awaiter(this, void 0, void 0, function* () {
2451
- if (this.logger)
2452
- this.logger.debug("Calling operation LoadBalancerClient#listBackends.");
2341
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listBackends.");
2453
2342
  const operationName = "listBackends";
2454
2343
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/Backend/ListBackends";
2455
2344
  const pathParams = {
@@ -2464,8 +2353,6 @@ class LoadBalancerClient {
2464
2353
  };
2465
2354
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2466
2355
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listBackendsRequest.retryConfiguration, specRetryConfiguration);
2467
- if (this.logger)
2468
- retrier.logger = this.logger;
2469
2356
  const request = yield oci_common_2.composeRequest({
2470
2357
  baseEndpoint: this._endpoint,
2471
2358
  defaultHeaders: this._defaultHeaders,
@@ -2509,12 +2396,11 @@ class LoadBalancerClient {
2509
2396
  * @param ListCertificatesRequest
2510
2397
  * @return ListCertificatesResponse
2511
2398
  * @throws OciError when an error occurs
2512
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
2399
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
2513
2400
  */
2514
2401
  listCertificates(listCertificatesRequest) {
2515
2402
  return __awaiter(this, void 0, void 0, function* () {
2516
- if (this.logger)
2517
- this.logger.debug("Calling operation LoadBalancerClient#listCertificates.");
2403
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listCertificates.");
2518
2404
  const operationName = "listCertificates";
2519
2405
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/Certificate/ListCertificates";
2520
2406
  const pathParams = {
@@ -2528,8 +2414,6 @@ class LoadBalancerClient {
2528
2414
  };
2529
2415
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2530
2416
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listCertificatesRequest.retryConfiguration, specRetryConfiguration);
2531
- if (this.logger)
2532
- retrier.logger = this.logger;
2533
2417
  const request = yield oci_common_2.composeRequest({
2534
2418
  baseEndpoint: this._endpoint,
2535
2419
  defaultHeaders: this._defaultHeaders,
@@ -2573,12 +2457,11 @@ class LoadBalancerClient {
2573
2457
  * @param ListHostnamesRequest
2574
2458
  * @return ListHostnamesResponse
2575
2459
  * @throws OciError when an error occurs
2576
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
2460
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
2577
2461
  */
2578
2462
  listHostnames(listHostnamesRequest) {
2579
2463
  return __awaiter(this, void 0, void 0, function* () {
2580
- if (this.logger)
2581
- this.logger.debug("Calling operation LoadBalancerClient#listHostnames.");
2464
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listHostnames.");
2582
2465
  const operationName = "listHostnames";
2583
2466
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/Hostname/ListHostnames";
2584
2467
  const pathParams = {
@@ -2592,8 +2475,6 @@ class LoadBalancerClient {
2592
2475
  };
2593
2476
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2594
2477
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listHostnamesRequest.retryConfiguration, specRetryConfiguration);
2595
- if (this.logger)
2596
- retrier.logger = this.logger;
2597
2478
  const request = yield oci_common_2.composeRequest({
2598
2479
  baseEndpoint: this._endpoint,
2599
2480
  defaultHeaders: this._defaultHeaders,
@@ -2644,12 +2525,11 @@ class LoadBalancerClient {
2644
2525
  * @param ListListenerRulesRequest
2645
2526
  * @return ListListenerRulesResponse
2646
2527
  * @throws OciError when an error occurs
2647
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
2528
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
2648
2529
  */
2649
2530
  listListenerRules(listListenerRulesRequest) {
2650
2531
  return __awaiter(this, void 0, void 0, function* () {
2651
- if (this.logger)
2652
- this.logger.debug("Calling operation LoadBalancerClient#listListenerRules.");
2532
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listListenerRules.");
2653
2533
  const operationName = "listListenerRules";
2654
2534
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/ListenerRuleSummary/ListListenerRules";
2655
2535
  const pathParams = {
@@ -2664,8 +2544,6 @@ class LoadBalancerClient {
2664
2544
  };
2665
2545
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2666
2546
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listListenerRulesRequest.retryConfiguration, specRetryConfiguration);
2667
- if (this.logger)
2668
- retrier.logger = this.logger;
2669
2547
  const request = yield oci_common_2.composeRequest({
2670
2548
  baseEndpoint: this._endpoint,
2671
2549
  defaultHeaders: this._defaultHeaders,
@@ -2709,12 +2587,11 @@ class LoadBalancerClient {
2709
2587
  * @param ListLoadBalancerHealthsRequest
2710
2588
  * @return ListLoadBalancerHealthsResponse
2711
2589
  * @throws OciError when an error occurs
2712
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
2590
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
2713
2591
  */
2714
2592
  listLoadBalancerHealths(listLoadBalancerHealthsRequest) {
2715
2593
  return __awaiter(this, void 0, void 0, function* () {
2716
- if (this.logger)
2717
- this.logger.debug("Calling operation LoadBalancerClient#listLoadBalancerHealths.");
2594
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listLoadBalancerHealths.");
2718
2595
  const operationName = "listLoadBalancerHealths";
2719
2596
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerHealthSummary/ListLoadBalancerHealths";
2720
2597
  const pathParams = {};
@@ -2729,8 +2606,6 @@ class LoadBalancerClient {
2729
2606
  };
2730
2607
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2731
2608
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listLoadBalancerHealthsRequest.retryConfiguration, specRetryConfiguration);
2732
- if (this.logger)
2733
- retrier.logger = this.logger;
2734
2609
  const request = yield oci_common_2.composeRequest({
2735
2610
  baseEndpoint: this._endpoint,
2736
2611
  defaultHeaders: this._defaultHeaders,
@@ -2814,12 +2689,11 @@ class LoadBalancerClient {
2814
2689
  * @param ListLoadBalancersRequest
2815
2690
  * @return ListLoadBalancersResponse
2816
2691
  * @throws OciError when an error occurs
2817
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
2692
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
2818
2693
  */
2819
2694
  listLoadBalancers(listLoadBalancersRequest) {
2820
2695
  return __awaiter(this, void 0, void 0, function* () {
2821
- if (this.logger)
2822
- this.logger.debug("Calling operation LoadBalancerClient#listLoadBalancers.");
2696
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listLoadBalancers.");
2823
2697
  const operationName = "listLoadBalancers";
2824
2698
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancer/ListLoadBalancers";
2825
2699
  const pathParams = {};
@@ -2839,8 +2713,6 @@ class LoadBalancerClient {
2839
2713
  };
2840
2714
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2841
2715
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listLoadBalancersRequest.retryConfiguration, specRetryConfiguration);
2842
- if (this.logger)
2843
- retrier.logger = this.logger;
2844
2716
  const request = yield oci_common_2.composeRequest({
2845
2717
  baseEndpoint: this._endpoint,
2846
2718
  defaultHeaders: this._defaultHeaders,
@@ -2924,12 +2796,11 @@ class LoadBalancerClient {
2924
2796
  * @param ListPathRouteSetsRequest
2925
2797
  * @return ListPathRouteSetsResponse
2926
2798
  * @throws OciError when an error occurs
2927
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
2799
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
2928
2800
  */
2929
2801
  listPathRouteSets(listPathRouteSetsRequest) {
2930
2802
  return __awaiter(this, void 0, void 0, function* () {
2931
- if (this.logger)
2932
- this.logger.debug("Calling operation LoadBalancerClient#listPathRouteSets.");
2803
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listPathRouteSets.");
2933
2804
  const operationName = "listPathRouteSets";
2934
2805
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/PathRouteSet/ListPathRouteSets";
2935
2806
  const pathParams = {
@@ -2943,8 +2814,6 @@ class LoadBalancerClient {
2943
2814
  };
2944
2815
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2945
2816
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPathRouteSetsRequest.retryConfiguration, specRetryConfiguration);
2946
- if (this.logger)
2947
- retrier.logger = this.logger;
2948
2817
  const request = yield oci_common_2.composeRequest({
2949
2818
  baseEndpoint: this._endpoint,
2950
2819
  defaultHeaders: this._defaultHeaders,
@@ -2988,12 +2857,11 @@ class LoadBalancerClient {
2988
2857
  * @param ListPoliciesRequest
2989
2858
  * @return ListPoliciesResponse
2990
2859
  * @throws OciError when an error occurs
2991
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
2860
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
2992
2861
  */
2993
2862
  listPolicies(listPoliciesRequest) {
2994
2863
  return __awaiter(this, void 0, void 0, function* () {
2995
- if (this.logger)
2996
- this.logger.debug("Calling operation LoadBalancerClient#listPolicies.");
2864
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listPolicies.");
2997
2865
  const operationName = "listPolicies";
2998
2866
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerPolicy/ListPolicies";
2999
2867
  const pathParams = {};
@@ -3008,8 +2876,6 @@ class LoadBalancerClient {
3008
2876
  };
3009
2877
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3010
2878
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPoliciesRequest.retryConfiguration, specRetryConfiguration);
3011
- if (this.logger)
3012
- retrier.logger = this.logger;
3013
2879
  const request = yield oci_common_2.composeRequest({
3014
2880
  baseEndpoint: this._endpoint,
3015
2881
  defaultHeaders: this._defaultHeaders,
@@ -3093,12 +2959,11 @@ class LoadBalancerClient {
3093
2959
  * @param ListProtocolsRequest
3094
2960
  * @return ListProtocolsResponse
3095
2961
  * @throws OciError when an error occurs
3096
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
2962
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
3097
2963
  */
3098
2964
  listProtocols(listProtocolsRequest) {
3099
2965
  return __awaiter(this, void 0, void 0, function* () {
3100
- if (this.logger)
3101
- this.logger.debug("Calling operation LoadBalancerClient#listProtocols.");
2966
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listProtocols.");
3102
2967
  const operationName = "listProtocols";
3103
2968
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerProtocol/ListProtocols";
3104
2969
  const pathParams = {};
@@ -3113,8 +2978,6 @@ class LoadBalancerClient {
3113
2978
  };
3114
2979
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3115
2980
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listProtocolsRequest.retryConfiguration, specRetryConfiguration);
3116
- if (this.logger)
3117
- retrier.logger = this.logger;
3118
2981
  const request = yield oci_common_2.composeRequest({
3119
2982
  baseEndpoint: this._endpoint,
3120
2983
  defaultHeaders: this._defaultHeaders,
@@ -3198,12 +3061,11 @@ class LoadBalancerClient {
3198
3061
  * @param ListRoutingPoliciesRequest
3199
3062
  * @return ListRoutingPoliciesResponse
3200
3063
  * @throws OciError when an error occurs
3201
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
3064
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
3202
3065
  */
3203
3066
  listRoutingPolicies(listRoutingPoliciesRequest) {
3204
3067
  return __awaiter(this, void 0, void 0, function* () {
3205
- if (this.logger)
3206
- this.logger.debug("Calling operation LoadBalancerClient#listRoutingPolicies.");
3068
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listRoutingPolicies.");
3207
3069
  const operationName = "listRoutingPolicies";
3208
3070
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/RoutingPolicy/ListRoutingPolicies";
3209
3071
  const pathParams = {
@@ -3220,8 +3082,6 @@ class LoadBalancerClient {
3220
3082
  };
3221
3083
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3222
3084
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRoutingPoliciesRequest.retryConfiguration, specRetryConfiguration);
3223
- if (this.logger)
3224
- retrier.logger = this.logger;
3225
3085
  const request = yield oci_common_2.composeRequest({
3226
3086
  baseEndpoint: this._endpoint,
3227
3087
  defaultHeaders: this._defaultHeaders,
@@ -3310,12 +3170,11 @@ class LoadBalancerClient {
3310
3170
  * @param ListRuleSetsRequest
3311
3171
  * @return ListRuleSetsResponse
3312
3172
  * @throws OciError when an error occurs
3313
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
3173
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
3314
3174
  */
3315
3175
  listRuleSets(listRuleSetsRequest) {
3316
3176
  return __awaiter(this, void 0, void 0, function* () {
3317
- if (this.logger)
3318
- this.logger.debug("Calling operation LoadBalancerClient#listRuleSets.");
3177
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listRuleSets.");
3319
3178
  const operationName = "listRuleSets";
3320
3179
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/RuleSet/ListRuleSets";
3321
3180
  const pathParams = {
@@ -3329,8 +3188,6 @@ class LoadBalancerClient {
3329
3188
  };
3330
3189
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3331
3190
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRuleSetsRequest.retryConfiguration, specRetryConfiguration);
3332
- if (this.logger)
3333
- retrier.logger = this.logger;
3334
3191
  const request = yield oci_common_2.composeRequest({
3335
3192
  baseEndpoint: this._endpoint,
3336
3193
  defaultHeaders: this._defaultHeaders,
@@ -3374,12 +3231,11 @@ class LoadBalancerClient {
3374
3231
  * @param ListSSLCipherSuitesRequest
3375
3232
  * @return ListSSLCipherSuitesResponse
3376
3233
  * @throws OciError when an error occurs
3377
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
3234
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
3378
3235
  */
3379
3236
  listSSLCipherSuites(listSSLCipherSuitesRequest) {
3380
3237
  return __awaiter(this, void 0, void 0, function* () {
3381
- if (this.logger)
3382
- this.logger.debug("Calling operation LoadBalancerClient#listSSLCipherSuites.");
3238
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listSSLCipherSuites.");
3383
3239
  const operationName = "listSSLCipherSuites";
3384
3240
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/SSLCipherSuite/ListSSLCipherSuites";
3385
3241
  const pathParams = {
@@ -3393,8 +3249,6 @@ class LoadBalancerClient {
3393
3249
  };
3394
3250
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3395
3251
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listSSLCipherSuitesRequest.retryConfiguration, specRetryConfiguration);
3396
- if (this.logger)
3397
- retrier.logger = this.logger;
3398
3252
  const request = yield oci_common_2.composeRequest({
3399
3253
  baseEndpoint: this._endpoint,
3400
3254
  defaultHeaders: this._defaultHeaders,
@@ -3438,12 +3292,11 @@ class LoadBalancerClient {
3438
3292
  * @param ListShapesRequest
3439
3293
  * @return ListShapesResponse
3440
3294
  * @throws OciError when an error occurs
3441
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
3295
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
3442
3296
  */
3443
3297
  listShapes(listShapesRequest) {
3444
3298
  return __awaiter(this, void 0, void 0, function* () {
3445
- if (this.logger)
3446
- this.logger.debug("Calling operation LoadBalancerClient#listShapes.");
3299
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listShapes.");
3447
3300
  const operationName = "listShapes";
3448
3301
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerShape/ListShapes";
3449
3302
  const pathParams = {};
@@ -3458,8 +3311,6 @@ class LoadBalancerClient {
3458
3311
  };
3459
3312
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3460
3313
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listShapesRequest.retryConfiguration, specRetryConfiguration);
3461
- if (this.logger)
3462
- retrier.logger = this.logger;
3463
3314
  const request = yield oci_common_2.composeRequest({
3464
3315
  baseEndpoint: this._endpoint,
3465
3316
  defaultHeaders: this._defaultHeaders,
@@ -3543,12 +3394,11 @@ class LoadBalancerClient {
3543
3394
  * @param ListWorkRequestsRequest
3544
3395
  * @return ListWorkRequestsResponse
3545
3396
  * @throws OciError when an error occurs
3546
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3397
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3547
3398
  */
3548
3399
  listWorkRequests(listWorkRequestsRequest) {
3549
3400
  return __awaiter(this, void 0, void 0, function* () {
3550
- if (this.logger)
3551
- this.logger.debug("Calling operation LoadBalancerClient#listWorkRequests.");
3401
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#listWorkRequests.");
3552
3402
  const operationName = "listWorkRequests";
3553
3403
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/WorkRequest/ListWorkRequests";
3554
3404
  const pathParams = {
@@ -3564,8 +3414,6 @@ class LoadBalancerClient {
3564
3414
  };
3565
3415
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3566
3416
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
3567
- if (this.logger)
3568
- retrier.logger = this.logger;
3569
3417
  const request = yield oci_common_2.composeRequest({
3570
3418
  baseEndpoint: this._endpoint,
3571
3419
  defaultHeaders: this._defaultHeaders,
@@ -3649,12 +3497,11 @@ class LoadBalancerClient {
3649
3497
  * @param UpdateBackendRequest
3650
3498
  * @return UpdateBackendResponse
3651
3499
  * @throws OciError when an error occurs
3652
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
3500
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
3653
3501
  */
3654
3502
  updateBackend(updateBackendRequest) {
3655
3503
  return __awaiter(this, void 0, void 0, function* () {
3656
- if (this.logger)
3657
- this.logger.debug("Calling operation LoadBalancerClient#updateBackend.");
3504
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#updateBackend.");
3658
3505
  const operationName = "updateBackend";
3659
3506
  const apiReferenceLink = "";
3660
3507
  const pathParams = {
@@ -3671,8 +3518,6 @@ class LoadBalancerClient {
3671
3518
  };
3672
3519
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3673
3520
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateBackendRequest.retryConfiguration, specRetryConfiguration);
3674
- if (this.logger)
3675
- retrier.logger = this.logger;
3676
3521
  const request = yield oci_common_2.composeRequest({
3677
3522
  baseEndpoint: this._endpoint,
3678
3523
  defaultHeaders: this._defaultHeaders,
@@ -3713,12 +3558,11 @@ class LoadBalancerClient {
3713
3558
  * @param UpdateBackendSetRequest
3714
3559
  * @return UpdateBackendSetResponse
3715
3560
  * @throws OciError when an error occurs
3716
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
3561
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
3717
3562
  */
3718
3563
  updateBackendSet(updateBackendSetRequest) {
3719
3564
  return __awaiter(this, void 0, void 0, function* () {
3720
- if (this.logger)
3721
- this.logger.debug("Calling operation LoadBalancerClient#updateBackendSet.");
3565
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#updateBackendSet.");
3722
3566
  const operationName = "updateBackendSet";
3723
3567
  const apiReferenceLink = "";
3724
3568
  const pathParams = {
@@ -3734,8 +3578,6 @@ class LoadBalancerClient {
3734
3578
  };
3735
3579
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3736
3580
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateBackendSetRequest.retryConfiguration, specRetryConfiguration);
3737
- if (this.logger)
3738
- retrier.logger = this.logger;
3739
3581
  const request = yield oci_common_2.composeRequest({
3740
3582
  baseEndpoint: this._endpoint,
3741
3583
  defaultHeaders: this._defaultHeaders,
@@ -3776,12 +3618,11 @@ class LoadBalancerClient {
3776
3618
  * @param UpdateHealthCheckerRequest
3777
3619
  * @return UpdateHealthCheckerResponse
3778
3620
  * @throws OciError when an error occurs
3779
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
3621
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
3780
3622
  */
3781
3623
  updateHealthChecker(updateHealthCheckerRequest) {
3782
3624
  return __awaiter(this, void 0, void 0, function* () {
3783
- if (this.logger)
3784
- this.logger.debug("Calling operation LoadBalancerClient#updateHealthChecker.");
3625
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#updateHealthChecker.");
3785
3626
  const operationName = "updateHealthChecker";
3786
3627
  const apiReferenceLink = "";
3787
3628
  const pathParams = {
@@ -3797,8 +3638,6 @@ class LoadBalancerClient {
3797
3638
  };
3798
3639
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3799
3640
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateHealthCheckerRequest.retryConfiguration, specRetryConfiguration);
3800
- if (this.logger)
3801
- retrier.logger = this.logger;
3802
3641
  const request = yield oci_common_2.composeRequest({
3803
3642
  baseEndpoint: this._endpoint,
3804
3643
  defaultHeaders: this._defaultHeaders,
@@ -3841,12 +3680,11 @@ class LoadBalancerClient {
3841
3680
  * @param UpdateHostnameRequest
3842
3681
  * @return UpdateHostnameResponse
3843
3682
  * @throws OciError when an error occurs
3844
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
3683
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
3845
3684
  */
3846
3685
  updateHostname(updateHostnameRequest) {
3847
3686
  return __awaiter(this, void 0, void 0, function* () {
3848
- if (this.logger)
3849
- this.logger.debug("Calling operation LoadBalancerClient#updateHostname.");
3687
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#updateHostname.");
3850
3688
  const operationName = "updateHostname";
3851
3689
  const apiReferenceLink = "";
3852
3690
  const pathParams = {
@@ -3862,8 +3700,6 @@ class LoadBalancerClient {
3862
3700
  };
3863
3701
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3864
3702
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateHostnameRequest.retryConfiguration, specRetryConfiguration);
3865
- if (this.logger)
3866
- retrier.logger = this.logger;
3867
3703
  const request = yield oci_common_2.composeRequest({
3868
3704
  baseEndpoint: this._endpoint,
3869
3705
  defaultHeaders: this._defaultHeaders,
@@ -3904,12 +3740,11 @@ class LoadBalancerClient {
3904
3740
  * @param UpdateListenerRequest
3905
3741
  * @return UpdateListenerResponse
3906
3742
  * @throws OciError when an error occurs
3907
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
3743
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
3908
3744
  */
3909
3745
  updateListener(updateListenerRequest) {
3910
3746
  return __awaiter(this, void 0, void 0, function* () {
3911
- if (this.logger)
3912
- this.logger.debug("Calling operation LoadBalancerClient#updateListener.");
3747
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#updateListener.");
3913
3748
  const operationName = "updateListener";
3914
3749
  const apiReferenceLink = "";
3915
3750
  const pathParams = {
@@ -3925,8 +3760,6 @@ class LoadBalancerClient {
3925
3760
  };
3926
3761
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3927
3762
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateListenerRequest.retryConfiguration, specRetryConfiguration);
3928
- if (this.logger)
3929
- retrier.logger = this.logger;
3930
3763
  const request = yield oci_common_2.composeRequest({
3931
3764
  baseEndpoint: this._endpoint,
3932
3765
  defaultHeaders: this._defaultHeaders,
@@ -3967,12 +3800,11 @@ class LoadBalancerClient {
3967
3800
  * @param UpdateLoadBalancerRequest
3968
3801
  * @return UpdateLoadBalancerResponse
3969
3802
  * @throws OciError when an error occurs
3970
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
3803
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
3971
3804
  */
3972
3805
  updateLoadBalancer(updateLoadBalancerRequest) {
3973
3806
  return __awaiter(this, void 0, void 0, function* () {
3974
- if (this.logger)
3975
- this.logger.debug("Calling operation LoadBalancerClient#updateLoadBalancer.");
3807
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#updateLoadBalancer.");
3976
3808
  const operationName = "updateLoadBalancer";
3977
3809
  const apiReferenceLink = "";
3978
3810
  const pathParams = {
@@ -3987,8 +3819,6 @@ class LoadBalancerClient {
3987
3819
  };
3988
3820
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3989
3821
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateLoadBalancerRequest.retryConfiguration, specRetryConfiguration);
3990
- if (this.logger)
3991
- retrier.logger = this.logger;
3992
3822
  const request = yield oci_common_2.composeRequest({
3993
3823
  baseEndpoint: this._endpoint,
3994
3824
  defaultHeaders: this._defaultHeaders,
@@ -4035,12 +3865,11 @@ class LoadBalancerClient {
4035
3865
  * @param UpdateLoadBalancerShapeRequest
4036
3866
  * @return UpdateLoadBalancerShapeResponse
4037
3867
  * @throws OciError when an error occurs
4038
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
3868
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
4039
3869
  */
4040
3870
  updateLoadBalancerShape(updateLoadBalancerShapeRequest) {
4041
3871
  return __awaiter(this, void 0, void 0, function* () {
4042
- if (this.logger)
4043
- this.logger.debug("Calling operation LoadBalancerClient#updateLoadBalancerShape.");
3872
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#updateLoadBalancerShape.");
4044
3873
  const operationName = "updateLoadBalancerShape";
4045
3874
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancer/UpdateLoadBalancerShape";
4046
3875
  const pathParams = {
@@ -4055,8 +3884,6 @@ class LoadBalancerClient {
4055
3884
  };
4056
3885
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
4057
3886
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateLoadBalancerShapeRequest.retryConfiguration, specRetryConfiguration);
4058
- if (this.logger)
4059
- retrier.logger = this.logger;
4060
3887
  const request = yield oci_common_2.composeRequest({
4061
3888
  baseEndpoint: this._endpoint,
4062
3889
  defaultHeaders: this._defaultHeaders,
@@ -4097,12 +3924,11 @@ class LoadBalancerClient {
4097
3924
  * @param UpdateNetworkSecurityGroupsRequest
4098
3925
  * @return UpdateNetworkSecurityGroupsResponse
4099
3926
  * @throws OciError when an error occurs
4100
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
3927
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
4101
3928
  */
4102
3929
  updateNetworkSecurityGroups(updateNetworkSecurityGroupsRequest) {
4103
3930
  return __awaiter(this, void 0, void 0, function* () {
4104
- if (this.logger)
4105
- this.logger.debug("Calling operation LoadBalancerClient#updateNetworkSecurityGroups.");
3931
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#updateNetworkSecurityGroups.");
4106
3932
  const operationName = "updateNetworkSecurityGroups";
4107
3933
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/NetworkSecurityGroups/UpdateNetworkSecurityGroups";
4108
3934
  const pathParams = {
@@ -4117,8 +3943,6 @@ class LoadBalancerClient {
4117
3943
  };
4118
3944
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
4119
3945
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateNetworkSecurityGroupsRequest.retryConfiguration, specRetryConfiguration);
4120
- if (this.logger)
4121
- retrier.logger = this.logger;
4122
3946
  const request = yield oci_common_2.composeRequest({
4123
3947
  baseEndpoint: this._endpoint,
4124
3948
  defaultHeaders: this._defaultHeaders,
@@ -4165,12 +3989,11 @@ class LoadBalancerClient {
4165
3989
  * @param UpdatePathRouteSetRequest
4166
3990
  * @return UpdatePathRouteSetResponse
4167
3991
  * @throws OciError when an error occurs
4168
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
3992
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
4169
3993
  */
4170
3994
  updatePathRouteSet(updatePathRouteSetRequest) {
4171
3995
  return __awaiter(this, void 0, void 0, function* () {
4172
- if (this.logger)
4173
- this.logger.debug("Calling operation LoadBalancerClient#updatePathRouteSet.");
3996
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#updatePathRouteSet.");
4174
3997
  const operationName = "updatePathRouteSet";
4175
3998
  const apiReferenceLink = "";
4176
3999
  const pathParams = {
@@ -4186,8 +4009,6 @@ class LoadBalancerClient {
4186
4009
  };
4187
4010
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
4188
4011
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updatePathRouteSetRequest.retryConfiguration, specRetryConfiguration);
4189
- if (this.logger)
4190
- retrier.logger = this.logger;
4191
4012
  const request = yield oci_common_2.composeRequest({
4192
4013
  baseEndpoint: this._endpoint,
4193
4014
  defaultHeaders: this._defaultHeaders,
@@ -4232,12 +4053,11 @@ class LoadBalancerClient {
4232
4053
  * @param UpdateRoutingPolicyRequest
4233
4054
  * @return UpdateRoutingPolicyResponse
4234
4055
  * @throws OciError when an error occurs
4235
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
4056
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
4236
4057
  */
4237
4058
  updateRoutingPolicy(updateRoutingPolicyRequest) {
4238
4059
  return __awaiter(this, void 0, void 0, function* () {
4239
- if (this.logger)
4240
- this.logger.debug("Calling operation LoadBalancerClient#updateRoutingPolicy.");
4060
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#updateRoutingPolicy.");
4241
4061
  const operationName = "updateRoutingPolicy";
4242
4062
  const apiReferenceLink = "";
4243
4063
  const pathParams = {
@@ -4253,8 +4073,6 @@ class LoadBalancerClient {
4253
4073
  };
4254
4074
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
4255
4075
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateRoutingPolicyRequest.retryConfiguration, specRetryConfiguration);
4256
- if (this.logger)
4257
- retrier.logger = this.logger;
4258
4076
  const request = yield oci_common_2.composeRequest({
4259
4077
  baseEndpoint: this._endpoint,
4260
4078
  defaultHeaders: this._defaultHeaders,
@@ -4299,12 +4117,11 @@ class LoadBalancerClient {
4299
4117
  * @param UpdateRuleSetRequest
4300
4118
  * @return UpdateRuleSetResponse
4301
4119
  * @throws OciError when an error occurs
4302
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
4120
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
4303
4121
  */
4304
4122
  updateRuleSet(updateRuleSetRequest) {
4305
4123
  return __awaiter(this, void 0, void 0, function* () {
4306
- if (this.logger)
4307
- this.logger.debug("Calling operation LoadBalancerClient#updateRuleSet.");
4124
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#updateRuleSet.");
4308
4125
  const operationName = "updateRuleSet";
4309
4126
  const apiReferenceLink = "";
4310
4127
  const pathParams = {
@@ -4320,8 +4137,6 @@ class LoadBalancerClient {
4320
4137
  };
4321
4138
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
4322
4139
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateRuleSetRequest.retryConfiguration, specRetryConfiguration);
4323
- if (this.logger)
4324
- retrier.logger = this.logger;
4325
4140
  const request = yield oci_common_2.composeRequest({
4326
4141
  baseEndpoint: this._endpoint,
4327
4142
  defaultHeaders: this._defaultHeaders,
@@ -4362,12 +4177,11 @@ class LoadBalancerClient {
4362
4177
  * @param UpdateSSLCipherSuiteRequest
4363
4178
  * @return UpdateSSLCipherSuiteResponse
4364
4179
  * @throws OciError when an error occurs
4365
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
4180
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
4366
4181
  */
4367
4182
  updateSSLCipherSuite(updateSSLCipherSuiteRequest) {
4368
4183
  return __awaiter(this, void 0, void 0, function* () {
4369
- if (this.logger)
4370
- this.logger.debug("Calling operation LoadBalancerClient#updateSSLCipherSuite.");
4184
+ oci_common_2.logger.debug("Calling operation LoadBalancerClient#updateSSLCipherSuite.");
4371
4185
  const operationName = "updateSSLCipherSuite";
4372
4186
  const apiReferenceLink = "";
4373
4187
  const pathParams = {
@@ -4383,8 +4197,6 @@ class LoadBalancerClient {
4383
4197
  };
4384
4198
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
4385
4199
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateSSLCipherSuiteRequest.retryConfiguration, specRetryConfiguration);
4386
- if (this.logger)
4387
- retrier.logger = this.logger;
4388
4200
  const request = yield oci_common_2.composeRequest({
4389
4201
  baseEndpoint: this._endpoint,
4390
4202
  defaultHeaders: this._defaultHeaders,