oci-dataflow 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 (50) hide show
  1. package/lib/client.d.ts +42 -43
  2. package/lib/client.js +86 -217
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/sql-endpoint-network-configuration.js +2 -4
  5. package/lib/model/sql-endpoint-network-configuration.js.map +1 -1
  6. package/lib/model/statement-output-data.js +2 -4
  7. package/lib/model/statement-output-data.js.map +1 -1
  8. package/lib/request/change-application-compartment-request.d.ts +1 -1
  9. package/lib/request/change-pool-compartment-request.d.ts +1 -1
  10. package/lib/request/change-private-endpoint-compartment-request.d.ts +1 -1
  11. package/lib/request/change-run-compartment-request.d.ts +1 -1
  12. package/lib/request/change-sql-endpoint-compartment-request.d.ts +1 -1
  13. package/lib/request/create-application-request.d.ts +1 -1
  14. package/lib/request/create-pool-request.d.ts +1 -1
  15. package/lib/request/create-private-endpoint-request.d.ts +1 -1
  16. package/lib/request/create-run-request.d.ts +1 -1
  17. package/lib/request/create-sql-endpoint-request.d.ts +1 -1
  18. package/lib/request/create-statement-request.d.ts +1 -1
  19. package/lib/request/delete-application-request.d.ts +1 -1
  20. package/lib/request/delete-pool-request.d.ts +1 -1
  21. package/lib/request/delete-private-endpoint-request.d.ts +1 -1
  22. package/lib/request/delete-run-request.d.ts +1 -1
  23. package/lib/request/delete-sql-endpoint-request.d.ts +1 -1
  24. package/lib/request/delete-statement-request.d.ts +1 -1
  25. package/lib/request/get-application-request.d.ts +1 -1
  26. package/lib/request/get-pool-request.d.ts +1 -1
  27. package/lib/request/get-private-endpoint-request.d.ts +1 -1
  28. package/lib/request/get-run-log-request.d.ts +1 -1
  29. package/lib/request/get-run-request.d.ts +1 -1
  30. package/lib/request/get-sql-endpoint-request.d.ts +1 -1
  31. package/lib/request/get-statement-request.d.ts +1 -1
  32. package/lib/request/get-work-request-request.d.ts +1 -1
  33. package/lib/request/list-applications-request.d.ts +1 -1
  34. package/lib/request/list-pools-request.d.ts +1 -1
  35. package/lib/request/list-private-endpoints-request.d.ts +1 -1
  36. package/lib/request/list-run-logs-request.d.ts +1 -1
  37. package/lib/request/list-runs-request.d.ts +1 -1
  38. package/lib/request/list-sql-endpoints-request.d.ts +1 -1
  39. package/lib/request/list-statements-request.d.ts +1 -1
  40. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  41. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  42. package/lib/request/list-work-requests-request.d.ts +1 -1
  43. package/lib/request/start-pool-request.d.ts +1 -1
  44. package/lib/request/stop-pool-request.d.ts +1 -1
  45. package/lib/request/update-application-request.d.ts +1 -1
  46. package/lib/request/update-pool-request.d.ts +1 -1
  47. package/lib/request/update-private-endpoint-request.d.ts +1 -1
  48. package/lib/request/update-run-request.d.ts +1 -1
  49. package/lib/request/update-sql-endpoint-request.d.ts +1 -1
  50. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -118,11 +118,7 @@ class DataFlowClient {
118
118
  set endpoint(endpoint) {
119
119
  this._endpoint = endpoint;
120
120
  this._endpoint = this._endpoint + "/20200129";
121
- if (this.logger)
122
- this.logger.info(`DataFlowClient endpoint set to ${this._endpoint}`);
123
- }
124
- get logger() {
125
- return common.LOG.logger;
121
+ oci_common_2.logger.info(`DataFlowClient 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 DataFlowClient {
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(DataFlowClient.serviceEndpointTemplate, this._region, DataFlowClient.endpointServiceName);
138
133
  }
@@ -200,12 +195,11 @@ class DataFlowClient {
200
195
  * @param ChangeApplicationCompartmentRequest
201
196
  * @return ChangeApplicationCompartmentResponse
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/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
198
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
204
199
  */
205
200
  changeApplicationCompartment(changeApplicationCompartmentRequest) {
206
201
  return __awaiter(this, void 0, void 0, function* () {
207
- if (this.logger)
208
- this.logger.debug("Calling operation DataFlowClient#changeApplicationCompartment.");
202
+ oci_common_2.logger.debug("Calling operation DataFlowClient#changeApplicationCompartment.");
209
203
  const operationName = "changeApplicationCompartment";
210
204
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Application/ChangeApplicationCompartment";
211
205
  const pathParams = {
@@ -220,8 +214,6 @@ class DataFlowClient {
220
214
  };
221
215
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
222
216
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeApplicationCompartmentRequest.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,
@@ -261,12 +253,11 @@ class DataFlowClient {
261
253
  * @param ChangePoolCompartmentRequest
262
254
  * @return ChangePoolCompartmentResponse
263
255
  * @throws OciError when an error occurs
264
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ChangePoolCompartment.ts.html |here} to see how to use ChangePoolCompartment API.
256
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ChangePoolCompartment.ts.html |here} to see how to use ChangePoolCompartment API.
265
257
  */
266
258
  changePoolCompartment(changePoolCompartmentRequest) {
267
259
  return __awaiter(this, void 0, void 0, function* () {
268
- if (this.logger)
269
- this.logger.debug("Calling operation DataFlowClient#changePoolCompartment.");
260
+ oci_common_2.logger.debug("Calling operation DataFlowClient#changePoolCompartment.");
270
261
  const operationName = "changePoolCompartment";
271
262
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Pool/ChangePoolCompartment";
272
263
  const pathParams = {
@@ -281,8 +272,6 @@ class DataFlowClient {
281
272
  };
282
273
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
283
274
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changePoolCompartmentRequest.retryConfiguration, specRetryConfiguration);
284
- if (this.logger)
285
- retrier.logger = this.logger;
286
275
  const request = yield oci_common_2.composeRequest({
287
276
  baseEndpoint: this._endpoint,
288
277
  defaultHeaders: this._defaultHeaders,
@@ -319,12 +308,11 @@ class DataFlowClient {
319
308
  * @param ChangePrivateEndpointCompartmentRequest
320
309
  * @return ChangePrivateEndpointCompartmentResponse
321
310
  * @throws OciError when an error occurs
322
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
311
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
323
312
  */
324
313
  changePrivateEndpointCompartment(changePrivateEndpointCompartmentRequest) {
325
314
  return __awaiter(this, void 0, void 0, function* () {
326
- if (this.logger)
327
- this.logger.debug("Calling operation DataFlowClient#changePrivateEndpointCompartment.");
315
+ oci_common_2.logger.debug("Calling operation DataFlowClient#changePrivateEndpointCompartment.");
328
316
  const operationName = "changePrivateEndpointCompartment";
329
317
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/PrivateEndpoint/ChangePrivateEndpointCompartment";
330
318
  const pathParams = {
@@ -338,8 +326,6 @@ class DataFlowClient {
338
326
  };
339
327
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
340
328
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changePrivateEndpointCompartmentRequest.retryConfiguration, specRetryConfiguration);
341
- if (this.logger)
342
- retrier.logger = this.logger;
343
329
  const request = yield oci_common_2.composeRequest({
344
330
  baseEndpoint: this._endpoint,
345
331
  defaultHeaders: this._defaultHeaders,
@@ -384,12 +370,11 @@ class DataFlowClient {
384
370
  * @param ChangeRunCompartmentRequest
385
371
  * @return ChangeRunCompartmentResponse
386
372
  * @throws OciError when an error occurs
387
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
373
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
388
374
  */
389
375
  changeRunCompartment(changeRunCompartmentRequest) {
390
376
  return __awaiter(this, void 0, void 0, function* () {
391
- if (this.logger)
392
- this.logger.debug("Calling operation DataFlowClient#changeRunCompartment.");
377
+ oci_common_2.logger.debug("Calling operation DataFlowClient#changeRunCompartment.");
393
378
  const operationName = "changeRunCompartment";
394
379
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Run/ChangeRunCompartment";
395
380
  const pathParams = {
@@ -404,8 +389,6 @@ class DataFlowClient {
404
389
  };
405
390
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
406
391
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeRunCompartmentRequest.retryConfiguration, specRetryConfiguration);
407
- if (this.logger)
408
- retrier.logger = this.logger;
409
392
  const request = yield oci_common_2.composeRequest({
410
393
  baseEndpoint: this._endpoint,
411
394
  defaultHeaders: this._defaultHeaders,
@@ -441,12 +424,11 @@ class DataFlowClient {
441
424
  * @param ChangeSqlEndpointCompartmentRequest
442
425
  * @return ChangeSqlEndpointCompartmentResponse
443
426
  * @throws OciError when an error occurs
444
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ChangeSqlEndpointCompartment.ts.html |here} to see how to use ChangeSqlEndpointCompartment API.
427
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ChangeSqlEndpointCompartment.ts.html |here} to see how to use ChangeSqlEndpointCompartment API.
445
428
  */
446
429
  changeSqlEndpointCompartment(changeSqlEndpointCompartmentRequest) {
447
430
  return __awaiter(this, void 0, void 0, function* () {
448
- if (this.logger)
449
- this.logger.debug("Calling operation DataFlowClient#changeSqlEndpointCompartment.");
431
+ oci_common_2.logger.debug("Calling operation DataFlowClient#changeSqlEndpointCompartment.");
450
432
  const operationName = "changeSqlEndpointCompartment";
451
433
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/SqlEndpoint/ChangeSqlEndpointCompartment";
452
434
  const pathParams = {
@@ -461,8 +443,6 @@ class DataFlowClient {
461
443
  };
462
444
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
463
445
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeSqlEndpointCompartmentRequest.retryConfiguration, specRetryConfiguration);
464
- if (this.logger)
465
- retrier.logger = this.logger;
466
446
  const request = yield oci_common_2.composeRequest({
467
447
  baseEndpoint: this._endpoint,
468
448
  defaultHeaders: this._defaultHeaders,
@@ -504,12 +484,11 @@ class DataFlowClient {
504
484
  * @param CreateApplicationRequest
505
485
  * @return CreateApplicationResponse
506
486
  * @throws OciError when an error occurs
507
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
487
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
508
488
  */
509
489
  createApplication(createApplicationRequest) {
510
490
  return __awaiter(this, void 0, void 0, function* () {
511
- if (this.logger)
512
- this.logger.debug("Calling operation DataFlowClient#createApplication.");
491
+ oci_common_2.logger.debug("Calling operation DataFlowClient#createApplication.");
513
492
  const operationName = "createApplication";
514
493
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Application/CreateApplication";
515
494
  const pathParams = {};
@@ -521,8 +500,6 @@ class DataFlowClient {
521
500
  };
522
501
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
523
502
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createApplicationRequest.retryConfiguration, specRetryConfiguration);
524
- if (this.logger)
525
- retrier.logger = this.logger;
526
503
  const request = yield oci_common_2.composeRequest({
527
504
  baseEndpoint: this._endpoint,
528
505
  defaultHeaders: this._defaultHeaders,
@@ -568,12 +545,11 @@ class DataFlowClient {
568
545
  * @param CreatePoolRequest
569
546
  * @return CreatePoolResponse
570
547
  * @throws OciError when an error occurs
571
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/CreatePool.ts.html |here} to see how to use CreatePool API.
548
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/CreatePool.ts.html |here} to see how to use CreatePool API.
572
549
  */
573
550
  createPool(createPoolRequest) {
574
551
  return __awaiter(this, void 0, void 0, function* () {
575
- if (this.logger)
576
- this.logger.debug("Calling operation DataFlowClient#createPool.");
552
+ oci_common_2.logger.debug("Calling operation DataFlowClient#createPool.");
577
553
  const operationName = "createPool";
578
554
  const apiReferenceLink = "";
579
555
  const pathParams = {};
@@ -585,8 +561,6 @@ class DataFlowClient {
585
561
  };
586
562
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
587
563
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createPoolRequest.retryConfiguration, specRetryConfiguration);
588
- if (this.logger)
589
- retrier.logger = this.logger;
590
564
  const request = yield oci_common_2.composeRequest({
591
565
  baseEndpoint: this._endpoint,
592
566
  defaultHeaders: this._defaultHeaders,
@@ -642,12 +616,11 @@ class DataFlowClient {
642
616
  * @param CreatePrivateEndpointRequest
643
617
  * @return CreatePrivateEndpointResponse
644
618
  * @throws OciError when an error occurs
645
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
619
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
646
620
  */
647
621
  createPrivateEndpoint(createPrivateEndpointRequest) {
648
622
  return __awaiter(this, void 0, void 0, function* () {
649
- if (this.logger)
650
- this.logger.debug("Calling operation DataFlowClient#createPrivateEndpoint.");
623
+ oci_common_2.logger.debug("Calling operation DataFlowClient#createPrivateEndpoint.");
651
624
  const operationName = "createPrivateEndpoint";
652
625
  const apiReferenceLink = "";
653
626
  const pathParams = {};
@@ -659,8 +632,6 @@ class DataFlowClient {
659
632
  };
660
633
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
661
634
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createPrivateEndpointRequest.retryConfiguration, specRetryConfiguration);
662
- if (this.logger)
663
- retrier.logger = this.logger;
664
635
  const request = yield oci_common_2.composeRequest({
665
636
  baseEndpoint: this._endpoint,
666
637
  defaultHeaders: this._defaultHeaders,
@@ -716,12 +687,11 @@ class DataFlowClient {
716
687
  * @param CreateRunRequest
717
688
  * @return CreateRunResponse
718
689
  * @throws OciError when an error occurs
719
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
690
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
720
691
  */
721
692
  createRun(createRunRequest) {
722
693
  return __awaiter(this, void 0, void 0, function* () {
723
- if (this.logger)
724
- this.logger.debug("Calling operation DataFlowClient#createRun.");
694
+ oci_common_2.logger.debug("Calling operation DataFlowClient#createRun.");
725
695
  const operationName = "createRun";
726
696
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Run/CreateRun";
727
697
  const pathParams = {};
@@ -733,8 +703,6 @@ class DataFlowClient {
733
703
  };
734
704
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
735
705
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createRunRequest.retryConfiguration, specRetryConfiguration);
736
- if (this.logger)
737
- retrier.logger = this.logger;
738
706
  const request = yield oci_common_2.composeRequest({
739
707
  baseEndpoint: this._endpoint,
740
708
  defaultHeaders: this._defaultHeaders,
@@ -779,12 +747,11 @@ class DataFlowClient {
779
747
  * @param CreateSqlEndpointRequest
780
748
  * @return CreateSqlEndpointResponse
781
749
  * @throws OciError when an error occurs
782
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/CreateSqlEndpoint.ts.html |here} to see how to use CreateSqlEndpoint API.
750
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/CreateSqlEndpoint.ts.html |here} to see how to use CreateSqlEndpoint API.
783
751
  */
784
752
  createSqlEndpoint(createSqlEndpointRequest) {
785
753
  return __awaiter(this, void 0, void 0, function* () {
786
- if (this.logger)
787
- this.logger.debug("Calling operation DataFlowClient#createSqlEndpoint.");
754
+ oci_common_2.logger.debug("Calling operation DataFlowClient#createSqlEndpoint.");
788
755
  const operationName = "createSqlEndpoint";
789
756
  const apiReferenceLink = "";
790
757
  const pathParams = {};
@@ -796,8 +763,6 @@ class DataFlowClient {
796
763
  };
797
764
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
798
765
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createSqlEndpointRequest.retryConfiguration, specRetryConfiguration);
799
- if (this.logger)
800
- retrier.logger = this.logger;
801
766
  const request = yield oci_common_2.composeRequest({
802
767
  baseEndpoint: this._endpoint,
803
768
  defaultHeaders: this._defaultHeaders,
@@ -848,12 +813,11 @@ class DataFlowClient {
848
813
  * @param CreateStatementRequest
849
814
  * @return CreateStatementResponse
850
815
  * @throws OciError when an error occurs
851
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/CreateStatement.ts.html |here} to see how to use CreateStatement API.
816
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/CreateStatement.ts.html |here} to see how to use CreateStatement API.
852
817
  */
853
818
  createStatement(createStatementRequest) {
854
819
  return __awaiter(this, void 0, void 0, function* () {
855
- if (this.logger)
856
- this.logger.debug("Calling operation DataFlowClient#createStatement.");
820
+ oci_common_2.logger.debug("Calling operation DataFlowClient#createStatement.");
857
821
  const operationName = "createStatement";
858
822
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Statement/CreateStatement";
859
823
  const pathParams = {
@@ -866,8 +830,6 @@ class DataFlowClient {
866
830
  };
867
831
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
868
832
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createStatementRequest.retryConfiguration, specRetryConfiguration);
869
- if (this.logger)
870
- retrier.logger = this.logger;
871
833
  const request = yield oci_common_2.composeRequest({
872
834
  baseEndpoint: this._endpoint,
873
835
  defaultHeaders: this._defaultHeaders,
@@ -913,12 +875,11 @@ class DataFlowClient {
913
875
  * @param DeleteApplicationRequest
914
876
  * @return DeleteApplicationResponse
915
877
  * @throws OciError when an error occurs
916
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
878
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
917
879
  */
918
880
  deleteApplication(deleteApplicationRequest) {
919
881
  return __awaiter(this, void 0, void 0, function* () {
920
- if (this.logger)
921
- this.logger.debug("Calling operation DataFlowClient#deleteApplication.");
882
+ oci_common_2.logger.debug("Calling operation DataFlowClient#deleteApplication.");
922
883
  const operationName = "deleteApplication";
923
884
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Application/DeleteApplication";
924
885
  const pathParams = {
@@ -932,8 +893,6 @@ class DataFlowClient {
932
893
  };
933
894
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
934
895
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteApplicationRequest.retryConfiguration, specRetryConfiguration);
935
- if (this.logger)
936
- retrier.logger = this.logger;
937
896
  const request = yield oci_common_2.composeRequest({
938
897
  baseEndpoint: this._endpoint,
939
898
  defaultHeaders: this._defaultHeaders,
@@ -969,12 +928,11 @@ class DataFlowClient {
969
928
  * @param DeletePoolRequest
970
929
  * @return DeletePoolResponse
971
930
  * @throws OciError when an error occurs
972
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/DeletePool.ts.html |here} to see how to use DeletePool API.
931
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/DeletePool.ts.html |here} to see how to use DeletePool API.
973
932
  */
974
933
  deletePool(deletePoolRequest) {
975
934
  return __awaiter(this, void 0, void 0, function* () {
976
- if (this.logger)
977
- this.logger.debug("Calling operation DataFlowClient#deletePool.");
935
+ oci_common_2.logger.debug("Calling operation DataFlowClient#deletePool.");
978
936
  const operationName = "deletePool";
979
937
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Pool/DeletePool";
980
938
  const pathParams = {
@@ -988,8 +946,6 @@ class DataFlowClient {
988
946
  };
989
947
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
990
948
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deletePoolRequest.retryConfiguration, specRetryConfiguration);
991
- if (this.logger)
992
- retrier.logger = this.logger;
993
949
  const request = yield oci_common_2.composeRequest({
994
950
  baseEndpoint: this._endpoint,
995
951
  defaultHeaders: this._defaultHeaders,
@@ -1025,12 +981,11 @@ class DataFlowClient {
1025
981
  * @param DeletePrivateEndpointRequest
1026
982
  * @return DeletePrivateEndpointResponse
1027
983
  * @throws OciError when an error occurs
1028
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
984
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
1029
985
  */
1030
986
  deletePrivateEndpoint(deletePrivateEndpointRequest) {
1031
987
  return __awaiter(this, void 0, void 0, function* () {
1032
- if (this.logger)
1033
- this.logger.debug("Calling operation DataFlowClient#deletePrivateEndpoint.");
988
+ oci_common_2.logger.debug("Calling operation DataFlowClient#deletePrivateEndpoint.");
1034
989
  const operationName = "deletePrivateEndpoint";
1035
990
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/PrivateEndpoint/DeletePrivateEndpoint";
1036
991
  const pathParams = {
@@ -1044,8 +999,6 @@ class DataFlowClient {
1044
999
  };
1045
1000
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1046
1001
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deletePrivateEndpointRequest.retryConfiguration, specRetryConfiguration);
1047
- if (this.logger)
1048
- retrier.logger = this.logger;
1049
1002
  const request = yield oci_common_2.composeRequest({
1050
1003
  baseEndpoint: this._endpoint,
1051
1004
  defaultHeaders: this._defaultHeaders,
@@ -1087,12 +1040,11 @@ class DataFlowClient {
1087
1040
  * @param DeleteRunRequest
1088
1041
  * @return DeleteRunResponse
1089
1042
  * @throws OciError when an error occurs
1090
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
1043
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
1091
1044
  */
1092
1045
  deleteRun(deleteRunRequest) {
1093
1046
  return __awaiter(this, void 0, void 0, function* () {
1094
- if (this.logger)
1095
- this.logger.debug("Calling operation DataFlowClient#deleteRun.");
1047
+ oci_common_2.logger.debug("Calling operation DataFlowClient#deleteRun.");
1096
1048
  const operationName = "deleteRun";
1097
1049
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Run/DeleteRun";
1098
1050
  const pathParams = {
@@ -1106,8 +1058,6 @@ class DataFlowClient {
1106
1058
  };
1107
1059
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1108
1060
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteRunRequest.retryConfiguration, specRetryConfiguration);
1109
- if (this.logger)
1110
- retrier.logger = this.logger;
1111
1061
  const request = yield oci_common_2.composeRequest({
1112
1062
  baseEndpoint: this._endpoint,
1113
1063
  defaultHeaders: this._defaultHeaders,
@@ -1142,12 +1092,11 @@ class DataFlowClient {
1142
1092
  * @param DeleteSqlEndpointRequest
1143
1093
  * @return DeleteSqlEndpointResponse
1144
1094
  * @throws OciError when an error occurs
1145
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/DeleteSqlEndpoint.ts.html |here} to see how to use DeleteSqlEndpoint API.
1095
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/DeleteSqlEndpoint.ts.html |here} to see how to use DeleteSqlEndpoint API.
1146
1096
  */
1147
1097
  deleteSqlEndpoint(deleteSqlEndpointRequest) {
1148
1098
  return __awaiter(this, void 0, void 0, function* () {
1149
- if (this.logger)
1150
- this.logger.debug("Calling operation DataFlowClient#deleteSqlEndpoint.");
1099
+ oci_common_2.logger.debug("Calling operation DataFlowClient#deleteSqlEndpoint.");
1151
1100
  const operationName = "deleteSqlEndpoint";
1152
1101
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/SqlEndpoint/DeleteSqlEndpoint";
1153
1102
  const pathParams = {
@@ -1161,8 +1110,6 @@ class DataFlowClient {
1161
1110
  };
1162
1111
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
1163
1112
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteSqlEndpointRequest.retryConfiguration, specRetryConfiguration);
1164
- if (this.logger)
1165
- retrier.logger = this.logger;
1166
1113
  const request = yield oci_common_2.composeRequest({
1167
1114
  baseEndpoint: this._endpoint,
1168
1115
  defaultHeaders: this._defaultHeaders,
@@ -1203,12 +1150,11 @@ class DataFlowClient {
1203
1150
  * @param DeleteStatementRequest
1204
1151
  * @return DeleteStatementResponse
1205
1152
  * @throws OciError when an error occurs
1206
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/DeleteStatement.ts.html |here} to see how to use DeleteStatement API.
1153
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/DeleteStatement.ts.html |here} to see how to use DeleteStatement API.
1207
1154
  */
1208
1155
  deleteStatement(deleteStatementRequest) {
1209
1156
  return __awaiter(this, void 0, void 0, function* () {
1210
- if (this.logger)
1211
- this.logger.debug("Calling operation DataFlowClient#deleteStatement.");
1157
+ oci_common_2.logger.debug("Calling operation DataFlowClient#deleteStatement.");
1212
1158
  const operationName = "deleteStatement";
1213
1159
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Statement/DeleteStatement";
1214
1160
  const pathParams = {
@@ -1223,8 +1169,6 @@ class DataFlowClient {
1223
1169
  };
1224
1170
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1225
1171
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteStatementRequest.retryConfiguration, specRetryConfiguration);
1226
- if (this.logger)
1227
- retrier.logger = this.logger;
1228
1172
  const request = yield oci_common_2.composeRequest({
1229
1173
  baseEndpoint: this._endpoint,
1230
1174
  defaultHeaders: this._defaultHeaders,
@@ -1260,12 +1204,11 @@ class DataFlowClient {
1260
1204
  * @param GetApplicationRequest
1261
1205
  * @return GetApplicationResponse
1262
1206
  * @throws OciError when an error occurs
1263
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
1207
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
1264
1208
  */
1265
1209
  getApplication(getApplicationRequest) {
1266
1210
  return __awaiter(this, void 0, void 0, function* () {
1267
- if (this.logger)
1268
- this.logger.debug("Calling operation DataFlowClient#getApplication.");
1211
+ oci_common_2.logger.debug("Calling operation DataFlowClient#getApplication.");
1269
1212
  const operationName = "getApplication";
1270
1213
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Application/GetApplication";
1271
1214
  const pathParams = {
@@ -1278,8 +1221,6 @@ class DataFlowClient {
1278
1221
  };
1279
1222
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1280
1223
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getApplicationRequest.retryConfiguration, specRetryConfiguration);
1281
- if (this.logger)
1282
- retrier.logger = this.logger;
1283
1224
  const request = yield oci_common_2.composeRequest({
1284
1225
  baseEndpoint: this._endpoint,
1285
1226
  defaultHeaders: this._defaultHeaders,
@@ -1324,12 +1265,11 @@ class DataFlowClient {
1324
1265
  * @param GetPoolRequest
1325
1266
  * @return GetPoolResponse
1326
1267
  * @throws OciError when an error occurs
1327
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/GetPool.ts.html |here} to see how to use GetPool API.
1268
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetPool.ts.html |here} to see how to use GetPool API.
1328
1269
  */
1329
1270
  getPool(getPoolRequest) {
1330
1271
  return __awaiter(this, void 0, void 0, function* () {
1331
- if (this.logger)
1332
- this.logger.debug("Calling operation DataFlowClient#getPool.");
1272
+ oci_common_2.logger.debug("Calling operation DataFlowClient#getPool.");
1333
1273
  const operationName = "getPool";
1334
1274
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Pool/GetPool";
1335
1275
  const pathParams = {
@@ -1342,8 +1282,6 @@ class DataFlowClient {
1342
1282
  };
1343
1283
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1344
1284
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getPoolRequest.retryConfiguration, specRetryConfiguration);
1345
- if (this.logger)
1346
- retrier.logger = this.logger;
1347
1285
  const request = yield oci_common_2.composeRequest({
1348
1286
  baseEndpoint: this._endpoint,
1349
1287
  defaultHeaders: this._defaultHeaders,
@@ -1388,12 +1326,11 @@ class DataFlowClient {
1388
1326
  * @param GetPrivateEndpointRequest
1389
1327
  * @return GetPrivateEndpointResponse
1390
1328
  * @throws OciError when an error occurs
1391
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
1329
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
1392
1330
  */
1393
1331
  getPrivateEndpoint(getPrivateEndpointRequest) {
1394
1332
  return __awaiter(this, void 0, void 0, function* () {
1395
- if (this.logger)
1396
- this.logger.debug("Calling operation DataFlowClient#getPrivateEndpoint.");
1333
+ oci_common_2.logger.debug("Calling operation DataFlowClient#getPrivateEndpoint.");
1397
1334
  const operationName = "getPrivateEndpoint";
1398
1335
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/PrivateEndpoint/GetPrivateEndpoint";
1399
1336
  const pathParams = {
@@ -1406,8 +1343,6 @@ class DataFlowClient {
1406
1343
  };
1407
1344
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1408
1345
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getPrivateEndpointRequest.retryConfiguration, specRetryConfiguration);
1409
- if (this.logger)
1410
- retrier.logger = this.logger;
1411
1346
  const request = yield oci_common_2.composeRequest({
1412
1347
  baseEndpoint: this._endpoint,
1413
1348
  defaultHeaders: this._defaultHeaders,
@@ -1452,12 +1387,11 @@ class DataFlowClient {
1452
1387
  * @param GetRunRequest
1453
1388
  * @return GetRunResponse
1454
1389
  * @throws OciError when an error occurs
1455
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
1390
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
1456
1391
  */
1457
1392
  getRun(getRunRequest) {
1458
1393
  return __awaiter(this, void 0, void 0, function* () {
1459
- if (this.logger)
1460
- this.logger.debug("Calling operation DataFlowClient#getRun.");
1394
+ oci_common_2.logger.debug("Calling operation DataFlowClient#getRun.");
1461
1395
  const operationName = "getRun";
1462
1396
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Run/GetRun";
1463
1397
  const pathParams = {
@@ -1470,8 +1404,6 @@ class DataFlowClient {
1470
1404
  };
1471
1405
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1472
1406
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getRunRequest.retryConfiguration, specRetryConfiguration);
1473
- if (this.logger)
1474
- retrier.logger = this.logger;
1475
1407
  const request = yield oci_common_2.composeRequest({
1476
1408
  baseEndpoint: this._endpoint,
1477
1409
  defaultHeaders: this._defaultHeaders,
@@ -1516,12 +1448,11 @@ class DataFlowClient {
1516
1448
  * @param GetRunLogRequest
1517
1449
  * @return GetRunLogResponse
1518
1450
  * @throws OciError when an error occurs
1519
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
1451
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
1520
1452
  */
1521
1453
  getRunLog(getRunLogRequest) {
1522
1454
  return __awaiter(this, void 0, void 0, function* () {
1523
- if (this.logger)
1524
- this.logger.debug("Calling operation DataFlowClient#getRunLog.");
1455
+ oci_common_2.logger.debug("Calling operation DataFlowClient#getRunLog.");
1525
1456
  const operationName = "getRunLog";
1526
1457
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Run/GetRunLog";
1527
1458
  const pathParams = {
@@ -1535,8 +1466,6 @@ class DataFlowClient {
1535
1466
  };
1536
1467
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1537
1468
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getRunLogRequest.retryConfiguration, specRetryConfiguration);
1538
- if (this.logger)
1539
- retrier.logger = this.logger;
1540
1469
  const request = yield oci_common_2.composeRequest({
1541
1470
  baseEndpoint: this._endpoint,
1542
1471
  defaultHeaders: this._defaultHeaders,
@@ -1602,12 +1531,11 @@ class DataFlowClient {
1602
1531
  * @param GetSqlEndpointRequest
1603
1532
  * @return GetSqlEndpointResponse
1604
1533
  * @throws OciError when an error occurs
1605
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/GetSqlEndpoint.ts.html |here} to see how to use GetSqlEndpoint API.
1534
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetSqlEndpoint.ts.html |here} to see how to use GetSqlEndpoint API.
1606
1535
  */
1607
1536
  getSqlEndpoint(getSqlEndpointRequest) {
1608
1537
  return __awaiter(this, void 0, void 0, function* () {
1609
- if (this.logger)
1610
- this.logger.debug("Calling operation DataFlowClient#getSqlEndpoint.");
1538
+ oci_common_2.logger.debug("Calling operation DataFlowClient#getSqlEndpoint.");
1611
1539
  const operationName = "getSqlEndpoint";
1612
1540
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/SqlEndpoint/GetSqlEndpoint";
1613
1541
  const pathParams = {
@@ -1620,8 +1548,6 @@ class DataFlowClient {
1620
1548
  };
1621
1549
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1622
1550
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getSqlEndpointRequest.retryConfiguration, specRetryConfiguration);
1623
- if (this.logger)
1624
- retrier.logger = this.logger;
1625
1551
  const request = yield oci_common_2.composeRequest({
1626
1552
  baseEndpoint: this._endpoint,
1627
1553
  defaultHeaders: this._defaultHeaders,
@@ -1666,12 +1592,11 @@ class DataFlowClient {
1666
1592
  * @param GetStatementRequest
1667
1593
  * @return GetStatementResponse
1668
1594
  * @throws OciError when an error occurs
1669
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/GetStatement.ts.html |here} to see how to use GetStatement API.
1595
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetStatement.ts.html |here} to see how to use GetStatement API.
1670
1596
  */
1671
1597
  getStatement(getStatementRequest) {
1672
1598
  return __awaiter(this, void 0, void 0, function* () {
1673
- if (this.logger)
1674
- this.logger.debug("Calling operation DataFlowClient#getStatement.");
1599
+ oci_common_2.logger.debug("Calling operation DataFlowClient#getStatement.");
1675
1600
  const operationName = "getStatement";
1676
1601
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Statement/GetStatement";
1677
1602
  const pathParams = {
@@ -1685,8 +1610,6 @@ class DataFlowClient {
1685
1610
  };
1686
1611
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1687
1612
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getStatementRequest.retryConfiguration, specRetryConfiguration);
1688
- if (this.logger)
1689
- retrier.logger = this.logger;
1690
1613
  const request = yield oci_common_2.composeRequest({
1691
1614
  baseEndpoint: this._endpoint,
1692
1615
  defaultHeaders: this._defaultHeaders,
@@ -1731,12 +1654,11 @@ class DataFlowClient {
1731
1654
  * @param GetWorkRequestRequest
1732
1655
  * @return GetWorkRequestResponse
1733
1656
  * @throws OciError when an error occurs
1734
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1657
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1735
1658
  */
1736
1659
  getWorkRequest(getWorkRequestRequest) {
1737
1660
  return __awaiter(this, void 0, void 0, function* () {
1738
- if (this.logger)
1739
- this.logger.debug("Calling operation DataFlowClient#getWorkRequest.");
1661
+ oci_common_2.logger.debug("Calling operation DataFlowClient#getWorkRequest.");
1740
1662
  const operationName = "getWorkRequest";
1741
1663
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/WorkRequest/GetWorkRequest";
1742
1664
  const pathParams = {
@@ -1749,8 +1671,6 @@ class DataFlowClient {
1749
1671
  };
1750
1672
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1751
1673
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
1752
- if (this.logger)
1753
- retrier.logger = this.logger;
1754
1674
  const request = yield oci_common_2.composeRequest({
1755
1675
  baseEndpoint: this._endpoint,
1756
1676
  defaultHeaders: this._defaultHeaders,
@@ -1790,12 +1710,11 @@ class DataFlowClient {
1790
1710
  * @param ListApplicationsRequest
1791
1711
  * @return ListApplicationsResponse
1792
1712
  * @throws OciError when an error occurs
1793
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
1713
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
1794
1714
  */
1795
1715
  listApplications(listApplicationsRequest) {
1796
1716
  return __awaiter(this, void 0, void 0, function* () {
1797
- if (this.logger)
1798
- this.logger.debug("Calling operation DataFlowClient#listApplications.");
1717
+ oci_common_2.logger.debug("Calling operation DataFlowClient#listApplications.");
1799
1718
  const operationName = "listApplications";
1800
1719
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/ApplicationSummary/ListApplications";
1801
1720
  const pathParams = {};
@@ -1816,8 +1735,6 @@ class DataFlowClient {
1816
1735
  };
1817
1736
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1818
1737
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listApplicationsRequest.retryConfiguration, specRetryConfiguration);
1819
- if (this.logger)
1820
- retrier.logger = this.logger;
1821
1738
  const request = yield oci_common_2.composeRequest({
1822
1739
  baseEndpoint: this._endpoint,
1823
1740
  defaultHeaders: this._defaultHeaders,
@@ -1907,12 +1824,11 @@ class DataFlowClient {
1907
1824
  * @param ListPoolsRequest
1908
1825
  * @return ListPoolsResponse
1909
1826
  * @throws OciError when an error occurs
1910
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ListPools.ts.html |here} to see how to use ListPools API.
1827
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListPools.ts.html |here} to see how to use ListPools API.
1911
1828
  */
1912
1829
  listPools(listPoolsRequest) {
1913
1830
  return __awaiter(this, void 0, void 0, function* () {
1914
- if (this.logger)
1915
- this.logger.debug("Calling operation DataFlowClient#listPools.");
1831
+ oci_common_2.logger.debug("Calling operation DataFlowClient#listPools.");
1916
1832
  const operationName = "listPools";
1917
1833
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Pool/ListPools";
1918
1834
  const pathParams = {};
@@ -1933,8 +1849,6 @@ class DataFlowClient {
1933
1849
  };
1934
1850
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1935
1851
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPoolsRequest.retryConfiguration, specRetryConfiguration);
1936
- if (this.logger)
1937
- retrier.logger = this.logger;
1938
1852
  const request = yield oci_common_2.composeRequest({
1939
1853
  baseEndpoint: this._endpoint,
1940
1854
  defaultHeaders: this._defaultHeaders,
@@ -1984,12 +1898,11 @@ class DataFlowClient {
1984
1898
  * @param ListPrivateEndpointsRequest
1985
1899
  * @return ListPrivateEndpointsResponse
1986
1900
  * @throws OciError when an error occurs
1987
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
1901
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
1988
1902
  */
1989
1903
  listPrivateEndpoints(listPrivateEndpointsRequest) {
1990
1904
  return __awaiter(this, void 0, void 0, function* () {
1991
- if (this.logger)
1992
- this.logger.debug("Calling operation DataFlowClient#listPrivateEndpoints.");
1905
+ oci_common_2.logger.debug("Calling operation DataFlowClient#listPrivateEndpoints.");
1993
1906
  const operationName = "listPrivateEndpoints";
1994
1907
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/PrivateEndpoint/ListPrivateEndpoints";
1995
1908
  const pathParams = {};
@@ -2010,8 +1923,6 @@ class DataFlowClient {
2010
1923
  };
2011
1924
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2012
1925
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPrivateEndpointsRequest.retryConfiguration, specRetryConfiguration);
2013
- if (this.logger)
2014
- retrier.logger = this.logger;
2015
1926
  const request = yield oci_common_2.composeRequest({
2016
1927
  baseEndpoint: this._endpoint,
2017
1928
  defaultHeaders: this._defaultHeaders,
@@ -2061,12 +1972,11 @@ class DataFlowClient {
2061
1972
  * @param ListRunLogsRequest
2062
1973
  * @return ListRunLogsResponse
2063
1974
  * @throws OciError when an error occurs
2064
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
1975
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
2065
1976
  */
2066
1977
  listRunLogs(listRunLogsRequest) {
2067
1978
  return __awaiter(this, void 0, void 0, function* () {
2068
- if (this.logger)
2069
- this.logger.debug("Calling operation DataFlowClient#listRunLogs.");
1979
+ oci_common_2.logger.debug("Calling operation DataFlowClient#listRunLogs.");
2070
1980
  const operationName = "listRunLogs";
2071
1981
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/RunLogSummary/ListRunLogs";
2072
1982
  const pathParams = {
@@ -2082,8 +1992,6 @@ class DataFlowClient {
2082
1992
  };
2083
1993
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2084
1994
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRunLogsRequest.retryConfiguration, specRetryConfiguration);
2085
- if (this.logger)
2086
- retrier.logger = this.logger;
2087
1995
  const request = yield oci_common_2.composeRequest({
2088
1996
  baseEndpoint: this._endpoint,
2089
1997
  defaultHeaders: this._defaultHeaders,
@@ -2173,12 +2081,11 @@ class DataFlowClient {
2173
2081
  * @param ListRunsRequest
2174
2082
  * @return ListRunsResponse
2175
2083
  * @throws OciError when an error occurs
2176
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
2084
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
2177
2085
  */
2178
2086
  listRuns(listRunsRequest) {
2179
2087
  return __awaiter(this, void 0, void 0, function* () {
2180
- if (this.logger)
2181
- this.logger.debug("Calling operation DataFlowClient#listRuns.");
2088
+ oci_common_2.logger.debug("Calling operation DataFlowClient#listRuns.");
2182
2089
  const operationName = "listRuns";
2183
2090
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/RunSummary/ListRuns";
2184
2091
  const pathParams = {};
@@ -2202,8 +2109,6 @@ class DataFlowClient {
2202
2109
  };
2203
2110
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2204
2111
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRunsRequest.retryConfiguration, specRetryConfiguration);
2205
- if (this.logger)
2206
- retrier.logger = this.logger;
2207
2112
  const request = yield oci_common_2.composeRequest({
2208
2113
  baseEndpoint: this._endpoint,
2209
2114
  defaultHeaders: this._defaultHeaders,
@@ -2295,12 +2200,11 @@ class DataFlowClient {
2295
2200
  * @param ListSqlEndpointsRequest
2296
2201
  * @return ListSqlEndpointsResponse
2297
2202
  * @throws OciError when an error occurs
2298
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ListSqlEndpoints.ts.html |here} to see how to use ListSqlEndpoints API.
2203
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListSqlEndpoints.ts.html |here} to see how to use ListSqlEndpoints API.
2299
2204
  */
2300
2205
  listSqlEndpoints(listSqlEndpointsRequest) {
2301
2206
  return __awaiter(this, void 0, void 0, function* () {
2302
- if (this.logger)
2303
- this.logger.debug("Calling operation DataFlowClient#listSqlEndpoints.");
2207
+ oci_common_2.logger.debug("Calling operation DataFlowClient#listSqlEndpoints.");
2304
2208
  const operationName = "listSqlEndpoints";
2305
2209
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/SqlEndpointCollection/ListSqlEndpoints";
2306
2210
  const pathParams = {};
@@ -2320,8 +2224,6 @@ class DataFlowClient {
2320
2224
  };
2321
2225
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2322
2226
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listSqlEndpointsRequest.retryConfiguration, specRetryConfiguration);
2323
- if (this.logger)
2324
- retrier.logger = this.logger;
2325
2227
  const request = yield oci_common_2.composeRequest({
2326
2228
  baseEndpoint: this._endpoint,
2327
2229
  defaultHeaders: this._defaultHeaders,
@@ -2366,12 +2268,11 @@ class DataFlowClient {
2366
2268
  * @param ListStatementsRequest
2367
2269
  * @return ListStatementsResponse
2368
2270
  * @throws OciError when an error occurs
2369
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ListStatements.ts.html |here} to see how to use ListStatements API.
2271
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListStatements.ts.html |here} to see how to use ListStatements API.
2370
2272
  */
2371
2273
  listStatements(listStatementsRequest) {
2372
2274
  return __awaiter(this, void 0, void 0, function* () {
2373
- if (this.logger)
2374
- this.logger.debug("Calling operation DataFlowClient#listStatements.");
2275
+ oci_common_2.logger.debug("Calling operation DataFlowClient#listStatements.");
2375
2276
  const operationName = "listStatements";
2376
2277
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/StatementCollection/ListStatements";
2377
2278
  const pathParams = {
@@ -2390,8 +2291,6 @@ class DataFlowClient {
2390
2291
  };
2391
2292
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2392
2293
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listStatementsRequest.retryConfiguration, specRetryConfiguration);
2393
- if (this.logger)
2394
- retrier.logger = this.logger;
2395
2294
  const request = yield oci_common_2.composeRequest({
2396
2295
  baseEndpoint: this._endpoint,
2397
2296
  defaultHeaders: this._defaultHeaders,
@@ -2441,12 +2340,11 @@ class DataFlowClient {
2441
2340
  * @param ListWorkRequestErrorsRequest
2442
2341
  * @return ListWorkRequestErrorsResponse
2443
2342
  * @throws OciError when an error occurs
2444
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2343
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2445
2344
  */
2446
2345
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
2447
2346
  return __awaiter(this, void 0, void 0, function* () {
2448
- if (this.logger)
2449
- this.logger.debug("Calling operation DataFlowClient#listWorkRequestErrors.");
2347
+ oci_common_2.logger.debug("Calling operation DataFlowClient#listWorkRequestErrors.");
2450
2348
  const operationName = "listWorkRequestErrors";
2451
2349
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/WorkRequestError/ListWorkRequestErrors";
2452
2350
  const pathParams = {
@@ -2462,8 +2360,6 @@ class DataFlowClient {
2462
2360
  };
2463
2361
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2464
2362
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestErrorsRequest.retryConfiguration, specRetryConfiguration);
2465
- if (this.logger)
2466
- retrier.logger = this.logger;
2467
2363
  const request = yield oci_common_2.composeRequest({
2468
2364
  baseEndpoint: this._endpoint,
2469
2365
  defaultHeaders: this._defaultHeaders,
@@ -2513,12 +2409,11 @@ class DataFlowClient {
2513
2409
  * @param ListWorkRequestLogsRequest
2514
2410
  * @return ListWorkRequestLogsResponse
2515
2411
  * @throws OciError when an error occurs
2516
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2412
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2517
2413
  */
2518
2414
  listWorkRequestLogs(listWorkRequestLogsRequest) {
2519
2415
  return __awaiter(this, void 0, void 0, function* () {
2520
- if (this.logger)
2521
- this.logger.debug("Calling operation DataFlowClient#listWorkRequestLogs.");
2416
+ oci_common_2.logger.debug("Calling operation DataFlowClient#listWorkRequestLogs.");
2522
2417
  const operationName = "listWorkRequestLogs";
2523
2418
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/WorkRequestLog/ListWorkRequestLogs";
2524
2419
  const pathParams = {
@@ -2534,8 +2429,6 @@ class DataFlowClient {
2534
2429
  };
2535
2430
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2536
2431
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestLogsRequest.retryConfiguration, specRetryConfiguration);
2537
- if (this.logger)
2538
- retrier.logger = this.logger;
2539
2432
  const request = yield oci_common_2.composeRequest({
2540
2433
  baseEndpoint: this._endpoint,
2541
2434
  defaultHeaders: this._defaultHeaders,
@@ -2585,12 +2478,11 @@ class DataFlowClient {
2585
2478
  * @param ListWorkRequestsRequest
2586
2479
  * @return ListWorkRequestsResponse
2587
2480
  * @throws OciError when an error occurs
2588
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2481
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2589
2482
  */
2590
2483
  listWorkRequests(listWorkRequestsRequest) {
2591
2484
  return __awaiter(this, void 0, void 0, function* () {
2592
- if (this.logger)
2593
- this.logger.debug("Calling operation DataFlowClient#listWorkRequests.");
2485
+ oci_common_2.logger.debug("Calling operation DataFlowClient#listWorkRequests.");
2594
2486
  const operationName = "listWorkRequests";
2595
2487
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/WorkRequest/ListWorkRequests";
2596
2488
  const pathParams = {};
@@ -2605,8 +2497,6 @@ class DataFlowClient {
2605
2497
  };
2606
2498
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2607
2499
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
2608
- if (this.logger)
2609
- retrier.logger = this.logger;
2610
2500
  const request = yield oci_common_2.composeRequest({
2611
2501
  baseEndpoint: this._endpoint,
2612
2502
  defaultHeaders: this._defaultHeaders,
@@ -2656,12 +2546,11 @@ class DataFlowClient {
2656
2546
  * @param StartPoolRequest
2657
2547
  * @return StartPoolResponse
2658
2548
  * @throws OciError when an error occurs
2659
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/StartPool.ts.html |here} to see how to use StartPool API.
2549
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/StartPool.ts.html |here} to see how to use StartPool API.
2660
2550
  */
2661
2551
  startPool(startPoolRequest) {
2662
2552
  return __awaiter(this, void 0, void 0, function* () {
2663
- if (this.logger)
2664
- this.logger.debug("Calling operation DataFlowClient#startPool.");
2553
+ oci_common_2.logger.debug("Calling operation DataFlowClient#startPool.");
2665
2554
  const operationName = "startPool";
2666
2555
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Pool/StartPool";
2667
2556
  const pathParams = {
@@ -2676,8 +2565,6 @@ class DataFlowClient {
2676
2565
  };
2677
2566
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2678
2567
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, startPoolRequest.retryConfiguration, specRetryConfiguration);
2679
- if (this.logger)
2680
- retrier.logger = this.logger;
2681
2568
  const request = yield oci_common_2.composeRequest({
2682
2569
  baseEndpoint: this._endpoint,
2683
2570
  defaultHeaders: this._defaultHeaders,
@@ -2718,12 +2605,11 @@ class DataFlowClient {
2718
2605
  * @param StopPoolRequest
2719
2606
  * @return StopPoolResponse
2720
2607
  * @throws OciError when an error occurs
2721
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/StopPool.ts.html |here} to see how to use StopPool API.
2608
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/StopPool.ts.html |here} to see how to use StopPool API.
2722
2609
  */
2723
2610
  stopPool(stopPoolRequest) {
2724
2611
  return __awaiter(this, void 0, void 0, function* () {
2725
- if (this.logger)
2726
- this.logger.debug("Calling operation DataFlowClient#stopPool.");
2612
+ oci_common_2.logger.debug("Calling operation DataFlowClient#stopPool.");
2727
2613
  const operationName = "stopPool";
2728
2614
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Pool/StopPool";
2729
2615
  const pathParams = {
@@ -2738,8 +2624,6 @@ class DataFlowClient {
2738
2624
  };
2739
2625
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2740
2626
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, stopPoolRequest.retryConfiguration, specRetryConfiguration);
2741
- if (this.logger)
2742
- retrier.logger = this.logger;
2743
2627
  const request = yield oci_common_2.composeRequest({
2744
2628
  baseEndpoint: this._endpoint,
2745
2629
  defaultHeaders: this._defaultHeaders,
@@ -2780,12 +2664,11 @@ class DataFlowClient {
2780
2664
  * @param UpdateApplicationRequest
2781
2665
  * @return UpdateApplicationResponse
2782
2666
  * @throws OciError when an error occurs
2783
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
2667
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
2784
2668
  */
2785
2669
  updateApplication(updateApplicationRequest) {
2786
2670
  return __awaiter(this, void 0, void 0, function* () {
2787
- if (this.logger)
2788
- this.logger.debug("Calling operation DataFlowClient#updateApplication.");
2671
+ oci_common_2.logger.debug("Calling operation DataFlowClient#updateApplication.");
2789
2672
  const operationName = "updateApplication";
2790
2673
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Application/UpdateApplication";
2791
2674
  const pathParams = {
@@ -2799,8 +2682,6 @@ class DataFlowClient {
2799
2682
  };
2800
2683
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2801
2684
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateApplicationRequest.retryConfiguration, specRetryConfiguration);
2802
- if (this.logger)
2803
- retrier.logger = this.logger;
2804
2685
  const request = yield oci_common_2.composeRequest({
2805
2686
  baseEndpoint: this._endpoint,
2806
2687
  defaultHeaders: this._defaultHeaders,
@@ -2848,12 +2729,11 @@ class DataFlowClient {
2848
2729
  * @param UpdatePoolRequest
2849
2730
  * @return UpdatePoolResponse
2850
2731
  * @throws OciError when an error occurs
2851
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/UpdatePool.ts.html |here} to see how to use UpdatePool API.
2732
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/UpdatePool.ts.html |here} to see how to use UpdatePool API.
2852
2733
  */
2853
2734
  updatePool(updatePoolRequest) {
2854
2735
  return __awaiter(this, void 0, void 0, function* () {
2855
- if (this.logger)
2856
- this.logger.debug("Calling operation DataFlowClient#updatePool.");
2736
+ oci_common_2.logger.debug("Calling operation DataFlowClient#updatePool.");
2857
2737
  const operationName = "updatePool";
2858
2738
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Pool/UpdatePool";
2859
2739
  const pathParams = {
@@ -2867,8 +2747,6 @@ class DataFlowClient {
2867
2747
  };
2868
2748
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2869
2749
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updatePoolRequest.retryConfiguration, specRetryConfiguration);
2870
- if (this.logger)
2871
- retrier.logger = this.logger;
2872
2750
  const request = yield oci_common_2.composeRequest({
2873
2751
  baseEndpoint: this._endpoint,
2874
2752
  defaultHeaders: this._defaultHeaders,
@@ -2912,12 +2790,11 @@ class DataFlowClient {
2912
2790
  * @param UpdatePrivateEndpointRequest
2913
2791
  * @return UpdatePrivateEndpointResponse
2914
2792
  * @throws OciError when an error occurs
2915
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
2793
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
2916
2794
  */
2917
2795
  updatePrivateEndpoint(updatePrivateEndpointRequest) {
2918
2796
  return __awaiter(this, void 0, void 0, function* () {
2919
- if (this.logger)
2920
- this.logger.debug("Calling operation DataFlowClient#updatePrivateEndpoint.");
2797
+ oci_common_2.logger.debug("Calling operation DataFlowClient#updatePrivateEndpoint.");
2921
2798
  const operationName = "updatePrivateEndpoint";
2922
2799
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/PrivateEndpoint/UpdatePrivateEndpoint";
2923
2800
  const pathParams = {
@@ -2931,8 +2808,6 @@ class DataFlowClient {
2931
2808
  };
2932
2809
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2933
2810
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updatePrivateEndpointRequest.retryConfiguration, specRetryConfiguration);
2934
- if (this.logger)
2935
- retrier.logger = this.logger;
2936
2811
  const request = yield oci_common_2.composeRequest({
2937
2812
  baseEndpoint: this._endpoint,
2938
2813
  defaultHeaders: this._defaultHeaders,
@@ -2974,12 +2849,11 @@ class DataFlowClient {
2974
2849
  * @param UpdateRunRequest
2975
2850
  * @return UpdateRunResponse
2976
2851
  * @throws OciError when an error occurs
2977
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
2852
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
2978
2853
  */
2979
2854
  updateRun(updateRunRequest) {
2980
2855
  return __awaiter(this, void 0, void 0, function* () {
2981
- if (this.logger)
2982
- this.logger.debug("Calling operation DataFlowClient#updateRun.");
2856
+ oci_common_2.logger.debug("Calling operation DataFlowClient#updateRun.");
2983
2857
  const operationName = "updateRun";
2984
2858
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Run/UpdateRun";
2985
2859
  const pathParams = {
@@ -2993,8 +2867,6 @@ class DataFlowClient {
2993
2867
  };
2994
2868
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
2995
2869
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateRunRequest.retryConfiguration, specRetryConfiguration);
2996
- if (this.logger)
2997
- retrier.logger = this.logger;
2998
2870
  const request = yield oci_common_2.composeRequest({
2999
2871
  baseEndpoint: this._endpoint,
3000
2872
  defaultHeaders: this._defaultHeaders,
@@ -3039,12 +2911,11 @@ class DataFlowClient {
3039
2911
  * @param UpdateSqlEndpointRequest
3040
2912
  * @return UpdateSqlEndpointResponse
3041
2913
  * @throws OciError when an error occurs
3042
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/dataflow/UpdateSqlEndpoint.ts.html |here} to see how to use UpdateSqlEndpoint API.
2914
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/dataflow/UpdateSqlEndpoint.ts.html |here} to see how to use UpdateSqlEndpoint API.
3043
2915
  */
3044
2916
  updateSqlEndpoint(updateSqlEndpointRequest) {
3045
2917
  return __awaiter(this, void 0, void 0, function* () {
3046
- if (this.logger)
3047
- this.logger.debug("Calling operation DataFlowClient#updateSqlEndpoint.");
2918
+ oci_common_2.logger.debug("Calling operation DataFlowClient#updateSqlEndpoint.");
3048
2919
  const operationName = "updateSqlEndpoint";
3049
2920
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/SqlEndpoint/UpdateSqlEndpoint";
3050
2921
  const pathParams = {
@@ -3058,8 +2929,6 @@ class DataFlowClient {
3058
2929
  };
3059
2930
  const specRetryConfiguration = common.NoRetryConfigurationDetails;
3060
2931
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateSqlEndpointRequest.retryConfiguration, specRetryConfiguration);
3061
- if (this.logger)
3062
- retrier.logger = this.logger;
3063
2932
  const request = yield oci_common_2.composeRequest({
3064
2933
  baseEndpoint: this._endpoint,
3065
2934
  defaultHeaders: this._defaultHeaders,