oci-analytics 2.79.0 → 2.79.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/lib/client.d.ts +23 -24
  2. package/lib/client.js +48 -122
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/network-endpoint-details.js +2 -4
  5. package/lib/model/network-endpoint-details.js.map +1 -1
  6. package/lib/request/change-analytics-instance-compartment-request.d.ts +1 -1
  7. package/lib/request/change-analytics-instance-network-endpoint-request.d.ts +1 -1
  8. package/lib/request/create-analytics-instance-request.d.ts +1 -1
  9. package/lib/request/create-private-access-channel-request.d.ts +1 -1
  10. package/lib/request/create-vanity-url-request.d.ts +1 -1
  11. package/lib/request/delete-analytics-instance-request.d.ts +1 -1
  12. package/lib/request/delete-private-access-channel-request.d.ts +1 -1
  13. package/lib/request/delete-vanity-url-request.d.ts +1 -1
  14. package/lib/request/delete-work-request-request.d.ts +1 -1
  15. package/lib/request/get-analytics-instance-request.d.ts +1 -1
  16. package/lib/request/get-private-access-channel-request.d.ts +1 -1
  17. package/lib/request/get-work-request-request.d.ts +1 -1
  18. package/lib/request/list-analytics-instances-request.d.ts +1 -1
  19. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  20. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  21. package/lib/request/list-work-requests-request.d.ts +1 -1
  22. package/lib/request/scale-analytics-instance-request.d.ts +1 -1
  23. package/lib/request/set-kms-key-request.d.ts +1 -1
  24. package/lib/request/start-analytics-instance-request.d.ts +1 -1
  25. package/lib/request/stop-analytics-instance-request.d.ts +1 -1
  26. package/lib/request/update-analytics-instance-request.d.ts +1 -1
  27. package/lib/request/update-private-access-channel-request.d.ts +1 -1
  28. package/lib/request/update-vanity-url-request.d.ts +1 -1
  29. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -118,11 +118,7 @@ class AnalyticsClient {
118
118
  set endpoint(endpoint) {
119
119
  this._endpoint = endpoint;
120
120
  this._endpoint = this._endpoint + "/20190331";
121
- if (this.logger)
122
- this.logger.info(`AnalyticsClient endpoint set to ${this._endpoint}`);
123
- }
124
- get logger() {
125
- return common.LOG.logger;
121
+ oci_common_2.logger.info(`AnalyticsClient endpoint set to ${this._endpoint}`);
126
122
  }
127
123
  /**
128
124
  * Determines whether realm specific endpoint should be used or not.
@@ -131,8 +127,7 @@ class AnalyticsClient {
131
127
  */
132
128
  set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled) {
133
129
  this._realmSpecificEndpointTemplateEnabled = realmSpecificEndpointTemplateEnabled;
134
- if (this.logger)
135
- this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
130
+ oci_common_2.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
136
131
  if (this._lastSetRegionOrRegionId === common.Region.REGION_STRING) {
137
132
  this.endpoint = common.EndpointBuilder.createEndpointFromRegion(AnalyticsClient.serviceEndpointTemplate, this._region, AnalyticsClient.endpointServiceName);
138
133
  }
@@ -200,12 +195,11 @@ class AnalyticsClient {
200
195
  * @param ChangeAnalyticsInstanceCompartmentRequest
201
196
  * @return ChangeAnalyticsInstanceCompartmentResponse
202
197
  * @throws OciError when an error occurs
203
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/ChangeAnalyticsInstanceCompartment.ts.html |here} to see how to use ChangeAnalyticsInstanceCompartment API.
198
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/ChangeAnalyticsInstanceCompartment.ts.html |here} to see how to use ChangeAnalyticsInstanceCompartment API.
204
199
  */
205
200
  changeAnalyticsInstanceCompartment(changeAnalyticsInstanceCompartmentRequest) {
206
201
  return __awaiter(this, void 0, void 0, function* () {
207
- if (this.logger)
208
- this.logger.debug("Calling operation AnalyticsClient#changeAnalyticsInstanceCompartment.");
202
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#changeAnalyticsInstanceCompartment.");
209
203
  const operationName = "changeAnalyticsInstanceCompartment";
210
204
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/ChangeAnalyticsInstanceCompartment";
211
205
  const pathParams = {
@@ -220,8 +214,6 @@ class AnalyticsClient {
220
214
  };
221
215
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
222
216
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeAnalyticsInstanceCompartmentRequest.retryConfiguration, specRetryConfiguration);
223
- if (this.logger)
224
- retrier.logger = this.logger;
225
217
  const request = yield oci_common_2.composeRequest({
226
218
  baseEndpoint: this._endpoint,
227
219
  defaultHeaders: this._defaultHeaders,
@@ -264,12 +256,11 @@ class AnalyticsClient {
264
256
  * @param ChangeAnalyticsInstanceNetworkEndpointRequest
265
257
  * @return ChangeAnalyticsInstanceNetworkEndpointResponse
266
258
  * @throws OciError when an error occurs
267
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/ChangeAnalyticsInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeAnalyticsInstanceNetworkEndpoint API.
259
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/ChangeAnalyticsInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeAnalyticsInstanceNetworkEndpoint API.
268
260
  */
269
261
  changeAnalyticsInstanceNetworkEndpoint(changeAnalyticsInstanceNetworkEndpointRequest) {
270
262
  return __awaiter(this, void 0, void 0, function* () {
271
- if (this.logger)
272
- this.logger.debug("Calling operation AnalyticsClient#changeAnalyticsInstanceNetworkEndpoint.");
263
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#changeAnalyticsInstanceNetworkEndpoint.");
273
264
  const operationName = "changeAnalyticsInstanceNetworkEndpoint";
274
265
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/ChangeAnalyticsInstanceNetworkEndpoint";
275
266
  const pathParams = {
@@ -284,8 +275,6 @@ class AnalyticsClient {
284
275
  };
285
276
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
286
277
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeAnalyticsInstanceNetworkEndpointRequest.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,
@@ -328,12 +317,11 @@ class AnalyticsClient {
328
317
  * @param CreateAnalyticsInstanceRequest
329
318
  * @return CreateAnalyticsInstanceResponse
330
319
  * @throws OciError when an error occurs
331
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/CreateAnalyticsInstance.ts.html |here} to see how to use CreateAnalyticsInstance API.
320
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/CreateAnalyticsInstance.ts.html |here} to see how to use CreateAnalyticsInstance API.
332
321
  */
333
322
  createAnalyticsInstance(createAnalyticsInstanceRequest) {
334
323
  return __awaiter(this, void 0, void 0, function* () {
335
- if (this.logger)
336
- this.logger.debug("Calling operation AnalyticsClient#createAnalyticsInstance.");
324
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#createAnalyticsInstance.");
337
325
  const operationName = "createAnalyticsInstance";
338
326
  const apiReferenceLink = "";
339
327
  const pathParams = {};
@@ -345,8 +333,6 @@ class AnalyticsClient {
345
333
  };
346
334
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
347
335
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createAnalyticsInstanceRequest.retryConfiguration, specRetryConfiguration);
348
- if (this.logger)
349
- retrier.logger = this.logger;
350
336
  const request = yield oci_common_2.composeRequest({
351
337
  baseEndpoint: this._endpoint,
352
338
  defaultHeaders: this._defaultHeaders,
@@ -403,12 +389,11 @@ class AnalyticsClient {
403
389
  * @param CreatePrivateAccessChannelRequest
404
390
  * @return CreatePrivateAccessChannelResponse
405
391
  * @throws OciError when an error occurs
406
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/CreatePrivateAccessChannel.ts.html |here} to see how to use CreatePrivateAccessChannel API.
392
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/CreatePrivateAccessChannel.ts.html |here} to see how to use CreatePrivateAccessChannel API.
407
393
  */
408
394
  createPrivateAccessChannel(createPrivateAccessChannelRequest) {
409
395
  return __awaiter(this, void 0, void 0, function* () {
410
- if (this.logger)
411
- this.logger.debug("Calling operation AnalyticsClient#createPrivateAccessChannel.");
396
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#createPrivateAccessChannel.");
412
397
  const operationName = "createPrivateAccessChannel";
413
398
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/CreatePrivateAccessChannel";
414
399
  const pathParams = {
@@ -422,8 +407,6 @@ class AnalyticsClient {
422
407
  };
423
408
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
424
409
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createPrivateAccessChannelRequest.retryConfiguration, specRetryConfiguration);
425
- if (this.logger)
426
- retrier.logger = this.logger;
427
410
  const request = yield oci_common_2.composeRequest({
428
411
  baseEndpoint: this._endpoint,
429
412
  defaultHeaders: this._defaultHeaders,
@@ -466,12 +449,11 @@ class AnalyticsClient {
466
449
  * @param CreateVanityUrlRequest
467
450
  * @return CreateVanityUrlResponse
468
451
  * @throws OciError when an error occurs
469
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/CreateVanityUrl.ts.html |here} to see how to use CreateVanityUrl API.
452
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/CreateVanityUrl.ts.html |here} to see how to use CreateVanityUrl API.
470
453
  */
471
454
  createVanityUrl(createVanityUrlRequest) {
472
455
  return __awaiter(this, void 0, void 0, function* () {
473
- if (this.logger)
474
- this.logger.debug("Calling operation AnalyticsClient#createVanityUrl.");
456
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#createVanityUrl.");
475
457
  const operationName = "createVanityUrl";
476
458
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/CreateVanityUrl";
477
459
  const pathParams = {
@@ -485,8 +467,6 @@ class AnalyticsClient {
485
467
  };
486
468
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
487
469
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createVanityUrlRequest.retryConfiguration, specRetryConfiguration);
488
- if (this.logger)
489
- retrier.logger = this.logger;
490
470
  const request = yield oci_common_2.composeRequest({
491
471
  baseEndpoint: this._endpoint,
492
472
  defaultHeaders: this._defaultHeaders,
@@ -529,12 +509,11 @@ class AnalyticsClient {
529
509
  * @param DeleteAnalyticsInstanceRequest
530
510
  * @return DeleteAnalyticsInstanceResponse
531
511
  * @throws OciError when an error occurs
532
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/DeleteAnalyticsInstance.ts.html |here} to see how to use DeleteAnalyticsInstance API.
512
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/DeleteAnalyticsInstance.ts.html |here} to see how to use DeleteAnalyticsInstance API.
533
513
  */
534
514
  deleteAnalyticsInstance(deleteAnalyticsInstanceRequest) {
535
515
  return __awaiter(this, void 0, void 0, function* () {
536
- if (this.logger)
537
- this.logger.debug("Calling operation AnalyticsClient#deleteAnalyticsInstance.");
516
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#deleteAnalyticsInstance.");
538
517
  const operationName = "deleteAnalyticsInstance";
539
518
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/DeleteAnalyticsInstance";
540
519
  const pathParams = {
@@ -549,8 +528,6 @@ class AnalyticsClient {
549
528
  };
550
529
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
551
530
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteAnalyticsInstanceRequest.retryConfiguration, specRetryConfiguration);
552
- if (this.logger)
553
- retrier.logger = this.logger;
554
531
  const request = yield oci_common_2.composeRequest({
555
532
  baseEndpoint: this._endpoint,
556
533
  defaultHeaders: this._defaultHeaders,
@@ -591,12 +568,11 @@ class AnalyticsClient {
591
568
  * @param DeletePrivateAccessChannelRequest
592
569
  * @return DeletePrivateAccessChannelResponse
593
570
  * @throws OciError when an error occurs
594
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/DeletePrivateAccessChannel.ts.html |here} to see how to use DeletePrivateAccessChannel API.
571
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/DeletePrivateAccessChannel.ts.html |here} to see how to use DeletePrivateAccessChannel API.
595
572
  */
596
573
  deletePrivateAccessChannel(deletePrivateAccessChannelRequest) {
597
574
  return __awaiter(this, void 0, void 0, function* () {
598
- if (this.logger)
599
- this.logger.debug("Calling operation AnalyticsClient#deletePrivateAccessChannel.");
575
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#deletePrivateAccessChannel.");
600
576
  const operationName = "deletePrivateAccessChannel";
601
577
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/DeletePrivateAccessChannel";
602
578
  const pathParams = {
@@ -612,8 +588,6 @@ class AnalyticsClient {
612
588
  };
613
589
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
614
590
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deletePrivateAccessChannelRequest.retryConfiguration, specRetryConfiguration);
615
- if (this.logger)
616
- retrier.logger = this.logger;
617
591
  const request = yield oci_common_2.composeRequest({
618
592
  baseEndpoint: this._endpoint,
619
593
  defaultHeaders: this._defaultHeaders,
@@ -654,12 +628,11 @@ class AnalyticsClient {
654
628
  * @param DeleteVanityUrlRequest
655
629
  * @return DeleteVanityUrlResponse
656
630
  * @throws OciError when an error occurs
657
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/DeleteVanityUrl.ts.html |here} to see how to use DeleteVanityUrl API.
631
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/DeleteVanityUrl.ts.html |here} to see how to use DeleteVanityUrl API.
658
632
  */
659
633
  deleteVanityUrl(deleteVanityUrlRequest) {
660
634
  return __awaiter(this, void 0, void 0, function* () {
661
- if (this.logger)
662
- this.logger.debug("Calling operation AnalyticsClient#deleteVanityUrl.");
635
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#deleteVanityUrl.");
663
636
  const operationName = "deleteVanityUrl";
664
637
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/DeleteVanityUrl";
665
638
  const pathParams = {
@@ -675,8 +648,6 @@ class AnalyticsClient {
675
648
  };
676
649
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
677
650
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteVanityUrlRequest.retryConfiguration, specRetryConfiguration);
678
- if (this.logger)
679
- retrier.logger = this.logger;
680
651
  const request = yield oci_common_2.composeRequest({
681
652
  baseEndpoint: this._endpoint,
682
653
  defaultHeaders: this._defaultHeaders,
@@ -717,12 +688,11 @@ class AnalyticsClient {
717
688
  * @param DeleteWorkRequestRequest
718
689
  * @return DeleteWorkRequestResponse
719
690
  * @throws OciError when an error occurs
720
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
691
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
721
692
  */
722
693
  deleteWorkRequest(deleteWorkRequestRequest) {
723
694
  return __awaiter(this, void 0, void 0, function* () {
724
- if (this.logger)
725
- this.logger.debug("Calling operation AnalyticsClient#deleteWorkRequest.");
695
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#deleteWorkRequest.");
726
696
  const operationName = "deleteWorkRequest";
727
697
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/WorkRequest/DeleteWorkRequest";
728
698
  const pathParams = {
@@ -736,8 +706,6 @@ class AnalyticsClient {
736
706
  };
737
707
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
738
708
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteWorkRequestRequest.retryConfiguration, specRetryConfiguration);
739
- if (this.logger)
740
- retrier.logger = this.logger;
741
709
  const request = yield oci_common_2.composeRequest({
742
710
  baseEndpoint: this._endpoint,
743
711
  defaultHeaders: this._defaultHeaders,
@@ -773,12 +741,11 @@ class AnalyticsClient {
773
741
  * @param GetAnalyticsInstanceRequest
774
742
  * @return GetAnalyticsInstanceResponse
775
743
  * @throws OciError when an error occurs
776
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/GetAnalyticsInstance.ts.html |here} to see how to use GetAnalyticsInstance API.
744
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/GetAnalyticsInstance.ts.html |here} to see how to use GetAnalyticsInstance API.
777
745
  */
778
746
  getAnalyticsInstance(getAnalyticsInstanceRequest) {
779
747
  return __awaiter(this, void 0, void 0, function* () {
780
- if (this.logger)
781
- this.logger.debug("Calling operation AnalyticsClient#getAnalyticsInstance.");
748
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#getAnalyticsInstance.");
782
749
  const operationName = "getAnalyticsInstance";
783
750
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/GetAnalyticsInstance";
784
751
  const pathParams = {
@@ -791,8 +758,6 @@ class AnalyticsClient {
791
758
  };
792
759
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
793
760
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getAnalyticsInstanceRequest.retryConfiguration, specRetryConfiguration);
794
- if (this.logger)
795
- retrier.logger = this.logger;
796
761
  const request = yield oci_common_2.composeRequest({
797
762
  baseEndpoint: this._endpoint,
798
763
  defaultHeaders: this._defaultHeaders,
@@ -837,12 +802,11 @@ class AnalyticsClient {
837
802
  * @param GetPrivateAccessChannelRequest
838
803
  * @return GetPrivateAccessChannelResponse
839
804
  * @throws OciError when an error occurs
840
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/GetPrivateAccessChannel.ts.html |here} to see how to use GetPrivateAccessChannel API.
805
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/GetPrivateAccessChannel.ts.html |here} to see how to use GetPrivateAccessChannel API.
841
806
  */
842
807
  getPrivateAccessChannel(getPrivateAccessChannelRequest) {
843
808
  return __awaiter(this, void 0, void 0, function* () {
844
- if (this.logger)
845
- this.logger.debug("Calling operation AnalyticsClient#getPrivateAccessChannel.");
809
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#getPrivateAccessChannel.");
846
810
  const operationName = "getPrivateAccessChannel";
847
811
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/GetPrivateAccessChannel";
848
812
  const pathParams = {
@@ -856,8 +820,6 @@ class AnalyticsClient {
856
820
  };
857
821
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
858
822
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getPrivateAccessChannelRequest.retryConfiguration, specRetryConfiguration);
859
- if (this.logger)
860
- retrier.logger = this.logger;
861
823
  const request = yield oci_common_2.composeRequest({
862
824
  baseEndpoint: this._endpoint,
863
825
  defaultHeaders: this._defaultHeaders,
@@ -902,12 +864,11 @@ class AnalyticsClient {
902
864
  * @param GetWorkRequestRequest
903
865
  * @return GetWorkRequestResponse
904
866
  * @throws OciError when an error occurs
905
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
867
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
906
868
  */
907
869
  getWorkRequest(getWorkRequestRequest) {
908
870
  return __awaiter(this, void 0, void 0, function* () {
909
- if (this.logger)
910
- this.logger.debug("Calling operation AnalyticsClient#getWorkRequest.");
871
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#getWorkRequest.");
911
872
  const operationName = "getWorkRequest";
912
873
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/WorkRequest/GetWorkRequest";
913
874
  const pathParams = {
@@ -920,8 +881,6 @@ class AnalyticsClient {
920
881
  };
921
882
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
922
883
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
923
- if (this.logger)
924
- retrier.logger = this.logger;
925
884
  const request = yield oci_common_2.composeRequest({
926
885
  baseEndpoint: this._endpoint,
927
886
  defaultHeaders: this._defaultHeaders,
@@ -971,12 +930,11 @@ class AnalyticsClient {
971
930
  * @param ListAnalyticsInstancesRequest
972
931
  * @return ListAnalyticsInstancesResponse
973
932
  * @throws OciError when an error occurs
974
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/ListAnalyticsInstances.ts.html |here} to see how to use ListAnalyticsInstances API.
933
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/ListAnalyticsInstances.ts.html |here} to see how to use ListAnalyticsInstances API.
975
934
  */
976
935
  listAnalyticsInstances(listAnalyticsInstancesRequest) {
977
936
  return __awaiter(this, void 0, void 0, function* () {
978
- if (this.logger)
979
- this.logger.debug("Calling operation AnalyticsClient#listAnalyticsInstances.");
937
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#listAnalyticsInstances.");
980
938
  const operationName = "listAnalyticsInstances";
981
939
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstanceSummary/ListAnalyticsInstances";
982
940
  const pathParams = {};
@@ -997,8 +955,6 @@ class AnalyticsClient {
997
955
  };
998
956
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
999
957
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listAnalyticsInstancesRequest.retryConfiguration, specRetryConfiguration);
1000
- if (this.logger)
1001
- retrier.logger = this.logger;
1002
958
  const request = yield oci_common_2.composeRequest({
1003
959
  baseEndpoint: this._endpoint,
1004
960
  defaultHeaders: this._defaultHeaders,
@@ -1083,12 +1039,11 @@ class AnalyticsClient {
1083
1039
  * @param ListWorkRequestErrorsRequest
1084
1040
  * @return ListWorkRequestErrorsResponse
1085
1041
  * @throws OciError when an error occurs
1086
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1042
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1087
1043
  */
1088
1044
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
1089
1045
  return __awaiter(this, void 0, void 0, function* () {
1090
- if (this.logger)
1091
- this.logger.debug("Calling operation AnalyticsClient#listWorkRequestErrors.");
1046
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#listWorkRequestErrors.");
1092
1047
  const operationName = "listWorkRequestErrors";
1093
1048
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/WorkRequestError/ListWorkRequestErrors";
1094
1049
  const pathParams = {
@@ -1104,8 +1059,6 @@ class AnalyticsClient {
1104
1059
  };
1105
1060
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1106
1061
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestErrorsRequest.retryConfiguration, specRetryConfiguration);
1107
- if (this.logger)
1108
- retrier.logger = this.logger;
1109
1062
  const request = yield oci_common_2.composeRequest({
1110
1063
  baseEndpoint: this._endpoint,
1111
1064
  defaultHeaders: this._defaultHeaders,
@@ -1190,12 +1143,11 @@ class AnalyticsClient {
1190
1143
  * @param ListWorkRequestLogsRequest
1191
1144
  * @return ListWorkRequestLogsResponse
1192
1145
  * @throws OciError when an error occurs
1193
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1146
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1194
1147
  */
1195
1148
  listWorkRequestLogs(listWorkRequestLogsRequest) {
1196
1149
  return __awaiter(this, void 0, void 0, function* () {
1197
- if (this.logger)
1198
- this.logger.debug("Calling operation AnalyticsClient#listWorkRequestLogs.");
1150
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#listWorkRequestLogs.");
1199
1151
  const operationName = "listWorkRequestLogs";
1200
1152
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/WorkRequestLog/ListWorkRequestLogs";
1201
1153
  const pathParams = {
@@ -1211,8 +1163,6 @@ class AnalyticsClient {
1211
1163
  };
1212
1164
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1213
1165
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestLogsRequest.retryConfiguration, specRetryConfiguration);
1214
- if (this.logger)
1215
- retrier.logger = this.logger;
1216
1166
  const request = yield oci_common_2.composeRequest({
1217
1167
  baseEndpoint: this._endpoint,
1218
1168
  defaultHeaders: this._defaultHeaders,
@@ -1297,12 +1247,11 @@ class AnalyticsClient {
1297
1247
  * @param ListWorkRequestsRequest
1298
1248
  * @return ListWorkRequestsResponse
1299
1249
  * @throws OciError when an error occurs
1300
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1250
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1301
1251
  */
1302
1252
  listWorkRequests(listWorkRequestsRequest) {
1303
1253
  return __awaiter(this, void 0, void 0, function* () {
1304
- if (this.logger)
1305
- this.logger.debug("Calling operation AnalyticsClient#listWorkRequests.");
1254
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#listWorkRequests.");
1306
1255
  const operationName = "listWorkRequests";
1307
1256
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/WorkRequestSummary/ListWorkRequests";
1308
1257
  const pathParams = {};
@@ -1322,8 +1271,6 @@ class AnalyticsClient {
1322
1271
  };
1323
1272
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1324
1273
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
1325
- if (this.logger)
1326
- retrier.logger = this.logger;
1327
1274
  const request = yield oci_common_2.composeRequest({
1328
1275
  baseEndpoint: this._endpoint,
1329
1276
  defaultHeaders: this._defaultHeaders,
@@ -1409,12 +1356,11 @@ class AnalyticsClient {
1409
1356
  * @param ScaleAnalyticsInstanceRequest
1410
1357
  * @return ScaleAnalyticsInstanceResponse
1411
1358
  * @throws OciError when an error occurs
1412
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/ScaleAnalyticsInstance.ts.html |here} to see how to use ScaleAnalyticsInstance API.
1359
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/ScaleAnalyticsInstance.ts.html |here} to see how to use ScaleAnalyticsInstance API.
1413
1360
  */
1414
1361
  scaleAnalyticsInstance(scaleAnalyticsInstanceRequest) {
1415
1362
  return __awaiter(this, void 0, void 0, function* () {
1416
- if (this.logger)
1417
- this.logger.debug("Calling operation AnalyticsClient#scaleAnalyticsInstance.");
1363
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#scaleAnalyticsInstance.");
1418
1364
  const operationName = "scaleAnalyticsInstance";
1419
1365
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/ScaleAnalyticsInstance";
1420
1366
  const pathParams = {
@@ -1429,8 +1375,6 @@ class AnalyticsClient {
1429
1375
  };
1430
1376
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1431
1377
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, scaleAnalyticsInstanceRequest.retryConfiguration, specRetryConfiguration);
1432
- if (this.logger)
1433
- retrier.logger = this.logger;
1434
1378
  const request = yield oci_common_2.composeRequest({
1435
1379
  baseEndpoint: this._endpoint,
1436
1380
  defaultHeaders: this._defaultHeaders,
@@ -1472,12 +1416,11 @@ class AnalyticsClient {
1472
1416
  * @param SetKmsKeyRequest
1473
1417
  * @return SetKmsKeyResponse
1474
1418
  * @throws OciError when an error occurs
1475
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/SetKmsKey.ts.html |here} to see how to use SetKmsKey API.
1419
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/SetKmsKey.ts.html |here} to see how to use SetKmsKey API.
1476
1420
  */
1477
1421
  setKmsKey(setKmsKeyRequest) {
1478
1422
  return __awaiter(this, void 0, void 0, function* () {
1479
- if (this.logger)
1480
- this.logger.debug("Calling operation AnalyticsClient#setKmsKey.");
1423
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#setKmsKey.");
1481
1424
  const operationName = "setKmsKey";
1482
1425
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/SetKmsKey";
1483
1426
  const pathParams = {
@@ -1492,8 +1435,6 @@ class AnalyticsClient {
1492
1435
  };
1493
1436
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1494
1437
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, setKmsKeyRequest.retryConfiguration, specRetryConfiguration);
1495
- if (this.logger)
1496
- retrier.logger = this.logger;
1497
1438
  const request = yield oci_common_2.composeRequest({
1498
1439
  baseEndpoint: this._endpoint,
1499
1440
  defaultHeaders: this._defaultHeaders,
@@ -1536,12 +1477,11 @@ class AnalyticsClient {
1536
1477
  * @param StartAnalyticsInstanceRequest
1537
1478
  * @return StartAnalyticsInstanceResponse
1538
1479
  * @throws OciError when an error occurs
1539
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/StartAnalyticsInstance.ts.html |here} to see how to use StartAnalyticsInstance API.
1480
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/StartAnalyticsInstance.ts.html |here} to see how to use StartAnalyticsInstance API.
1540
1481
  */
1541
1482
  startAnalyticsInstance(startAnalyticsInstanceRequest) {
1542
1483
  return __awaiter(this, void 0, void 0, function* () {
1543
- if (this.logger)
1544
- this.logger.debug("Calling operation AnalyticsClient#startAnalyticsInstance.");
1484
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#startAnalyticsInstance.");
1545
1485
  const operationName = "startAnalyticsInstance";
1546
1486
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/StartAnalyticsInstance";
1547
1487
  const pathParams = {
@@ -1556,8 +1496,6 @@ class AnalyticsClient {
1556
1496
  };
1557
1497
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1558
1498
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, startAnalyticsInstanceRequest.retryConfiguration, specRetryConfiguration);
1559
- if (this.logger)
1560
- retrier.logger = this.logger;
1561
1499
  const request = yield oci_common_2.composeRequest({
1562
1500
  baseEndpoint: this._endpoint,
1563
1501
  defaultHeaders: this._defaultHeaders,
@@ -1599,12 +1537,11 @@ class AnalyticsClient {
1599
1537
  * @param StopAnalyticsInstanceRequest
1600
1538
  * @return StopAnalyticsInstanceResponse
1601
1539
  * @throws OciError when an error occurs
1602
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/StopAnalyticsInstance.ts.html |here} to see how to use StopAnalyticsInstance API.
1540
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/StopAnalyticsInstance.ts.html |here} to see how to use StopAnalyticsInstance API.
1603
1541
  */
1604
1542
  stopAnalyticsInstance(stopAnalyticsInstanceRequest) {
1605
1543
  return __awaiter(this, void 0, void 0, function* () {
1606
- if (this.logger)
1607
- this.logger.debug("Calling operation AnalyticsClient#stopAnalyticsInstance.");
1544
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#stopAnalyticsInstance.");
1608
1545
  const operationName = "stopAnalyticsInstance";
1609
1546
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/StopAnalyticsInstance";
1610
1547
  const pathParams = {
@@ -1619,8 +1556,6 @@ class AnalyticsClient {
1619
1556
  };
1620
1557
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1621
1558
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, stopAnalyticsInstanceRequest.retryConfiguration, specRetryConfiguration);
1622
- if (this.logger)
1623
- retrier.logger = this.logger;
1624
1559
  const request = yield oci_common_2.composeRequest({
1625
1560
  baseEndpoint: this._endpoint,
1626
1561
  defaultHeaders: this._defaultHeaders,
@@ -1662,12 +1597,11 @@ class AnalyticsClient {
1662
1597
  * @param UpdateAnalyticsInstanceRequest
1663
1598
  * @return UpdateAnalyticsInstanceResponse
1664
1599
  * @throws OciError when an error occurs
1665
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/UpdateAnalyticsInstance.ts.html |here} to see how to use UpdateAnalyticsInstance API.
1600
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/UpdateAnalyticsInstance.ts.html |here} to see how to use UpdateAnalyticsInstance API.
1666
1601
  */
1667
1602
  updateAnalyticsInstance(updateAnalyticsInstanceRequest) {
1668
1603
  return __awaiter(this, void 0, void 0, function* () {
1669
- if (this.logger)
1670
- this.logger.debug("Calling operation AnalyticsClient#updateAnalyticsInstance.");
1604
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#updateAnalyticsInstance.");
1671
1605
  const operationName = "updateAnalyticsInstance";
1672
1606
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/UpdateAnalyticsInstance";
1673
1607
  const pathParams = {
@@ -1681,8 +1615,6 @@ class AnalyticsClient {
1681
1615
  };
1682
1616
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1683
1617
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateAnalyticsInstanceRequest.retryConfiguration, specRetryConfiguration);
1684
- if (this.logger)
1685
- retrier.logger = this.logger;
1686
1618
  const request = yield oci_common_2.composeRequest({
1687
1619
  baseEndpoint: this._endpoint,
1688
1620
  defaultHeaders: this._defaultHeaders,
@@ -1728,12 +1660,11 @@ class AnalyticsClient {
1728
1660
  * @param UpdatePrivateAccessChannelRequest
1729
1661
  * @return UpdatePrivateAccessChannelResponse
1730
1662
  * @throws OciError when an error occurs
1731
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/UpdatePrivateAccessChannel.ts.html |here} to see how to use UpdatePrivateAccessChannel API.
1663
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/UpdatePrivateAccessChannel.ts.html |here} to see how to use UpdatePrivateAccessChannel API.
1732
1664
  */
1733
1665
  updatePrivateAccessChannel(updatePrivateAccessChannelRequest) {
1734
1666
  return __awaiter(this, void 0, void 0, function* () {
1735
- if (this.logger)
1736
- this.logger.debug("Calling operation AnalyticsClient#updatePrivateAccessChannel.");
1667
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#updatePrivateAccessChannel.");
1737
1668
  const operationName = "updatePrivateAccessChannel";
1738
1669
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/UpdatePrivateAccessChannel";
1739
1670
  const pathParams = {
@@ -1749,8 +1680,6 @@ class AnalyticsClient {
1749
1680
  };
1750
1681
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1751
1682
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updatePrivateAccessChannelRequest.retryConfiguration, specRetryConfiguration);
1752
- if (this.logger)
1753
- retrier.logger = this.logger;
1754
1683
  const request = yield oci_common_2.composeRequest({
1755
1684
  baseEndpoint: this._endpoint,
1756
1685
  defaultHeaders: this._defaultHeaders,
@@ -1792,12 +1721,11 @@ class AnalyticsClient {
1792
1721
  * @param UpdateVanityUrlRequest
1793
1722
  * @return UpdateVanityUrlResponse
1794
1723
  * @throws OciError when an error occurs
1795
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/analytics/UpdateVanityUrl.ts.html |here} to see how to use UpdateVanityUrl API.
1724
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/analytics/UpdateVanityUrl.ts.html |here} to see how to use UpdateVanityUrl API.
1796
1725
  */
1797
1726
  updateVanityUrl(updateVanityUrlRequest) {
1798
1727
  return __awaiter(this, void 0, void 0, function* () {
1799
- if (this.logger)
1800
- this.logger.debug("Calling operation AnalyticsClient#updateVanityUrl.");
1728
+ oci_common_2.logger.debug("Calling operation AnalyticsClient#updateVanityUrl.");
1801
1729
  const operationName = "updateVanityUrl";
1802
1730
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/UpdateVanityUrl";
1803
1731
  const pathParams = {
@@ -1813,8 +1741,6 @@ class AnalyticsClient {
1813
1741
  };
1814
1742
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1815
1743
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateVanityUrlRequest.retryConfiguration, specRetryConfiguration);
1816
- if (this.logger)
1817
- retrier.logger = this.logger;
1818
1744
  const request = yield oci_common_2.composeRequest({
1819
1745
  baseEndpoint: this._endpoint,
1820
1746
  defaultHeaders: this._defaultHeaders,