oci-dataflow 2.79.1 → 2.81.0

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