oci-containerengine 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 (58) hide show
  1. package/lib/client.d.ts +44 -45
  2. package/lib/client.js +90 -227
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/cluster-pod-network-option-details.js +2 -4
  5. package/lib/model/cluster-pod-network-option-details.js.map +1 -1
  6. package/lib/model/node-pool-pod-network-option-details.js +2 -4
  7. package/lib/model/node-pool-pod-network-option-details.js.map +1 -1
  8. package/lib/model/node-source-details.js +2 -4
  9. package/lib/model/node-source-details.js.map +1 -1
  10. package/lib/model/node-source-option.js +2 -4
  11. package/lib/model/node-source-option.js.map +1 -1
  12. package/lib/model/preemption-action.js +2 -4
  13. package/lib/model/preemption-action.js.map +1 -1
  14. package/lib/request/cluster-migrate-to-native-vcn-request.d.ts +1 -1
  15. package/lib/request/complete-credential-rotation-request.d.ts +1 -1
  16. package/lib/request/create-cluster-request.d.ts +1 -1
  17. package/lib/request/create-kubeconfig-request.d.ts +1 -1
  18. package/lib/request/create-node-pool-request.d.ts +1 -1
  19. package/lib/request/create-virtual-node-pool-request.d.ts +1 -1
  20. package/lib/request/create-workload-mapping-request.d.ts +1 -1
  21. package/lib/request/delete-cluster-request.d.ts +1 -1
  22. package/lib/request/delete-node-pool-request.d.ts +1 -1
  23. package/lib/request/delete-node-request.d.ts +1 -1
  24. package/lib/request/delete-virtual-node-pool-request.d.ts +1 -1
  25. package/lib/request/delete-work-request-request.d.ts +1 -1
  26. package/lib/request/delete-workload-mapping-request.d.ts +1 -1
  27. package/lib/request/disable-addon-request.d.ts +1 -1
  28. package/lib/request/get-addon-request.d.ts +1 -1
  29. package/lib/request/get-cluster-migrate-to-native-vcn-status-request.d.ts +1 -1
  30. package/lib/request/get-cluster-options-request.d.ts +1 -1
  31. package/lib/request/get-cluster-request.d.ts +1 -1
  32. package/lib/request/get-credential-rotation-status-request.d.ts +1 -1
  33. package/lib/request/get-node-pool-options-request.d.ts +1 -1
  34. package/lib/request/get-node-pool-request.d.ts +1 -1
  35. package/lib/request/get-virtual-node-pool-request.d.ts +1 -1
  36. package/lib/request/get-virtual-node-request.d.ts +1 -1
  37. package/lib/request/get-work-request-request.d.ts +1 -1
  38. package/lib/request/get-workload-mapping-request.d.ts +1 -1
  39. package/lib/request/install-addon-request.d.ts +1 -1
  40. package/lib/request/list-addon-options-request.d.ts +1 -1
  41. package/lib/request/list-addons-request.d.ts +1 -1
  42. package/lib/request/list-clusters-request.d.ts +1 -1
  43. package/lib/request/list-node-pools-request.d.ts +1 -1
  44. package/lib/request/list-pod-shapes-request.d.ts +1 -1
  45. package/lib/request/list-virtual-node-pools-request.d.ts +1 -1
  46. package/lib/request/list-virtual-nodes-request.d.ts +1 -1
  47. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  48. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  49. package/lib/request/list-work-requests-request.d.ts +1 -1
  50. package/lib/request/list-workload-mappings-request.d.ts +1 -1
  51. package/lib/request/start-credential-rotation-request.d.ts +1 -1
  52. package/lib/request/update-addon-request.d.ts +1 -1
  53. package/lib/request/update-cluster-endpoint-config-request.d.ts +1 -1
  54. package/lib/request/update-cluster-request.d.ts +1 -1
  55. package/lib/request/update-node-pool-request.d.ts +1 -1
  56. package/lib/request/update-virtual-node-pool-request.d.ts +1 -1
  57. package/lib/request/update-workload-mapping-request.d.ts +1 -1
  58. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -120,11 +120,7 @@ class ContainerEngineClient {
120
120
  set endpoint(endpoint) {
121
121
  this._endpoint = endpoint;
122
122
  this._endpoint = this._endpoint + "/20180222";
123
- if (this.logger)
124
- this.logger.info(`ContainerEngineClient endpoint set to ${this._endpoint}`);
125
- }
126
- get logger() {
127
- return common.LOG.logger;
123
+ oci_common_2.logger.info(`ContainerEngineClient endpoint set to ${this._endpoint}`);
128
124
  }
129
125
  /**
130
126
  * Determines whether realm specific endpoint should be used or not.
@@ -133,8 +129,7 @@ class ContainerEngineClient {
133
129
  */
134
130
  set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled) {
135
131
  this._realmSpecificEndpointTemplateEnabled = realmSpecificEndpointTemplateEnabled;
136
- if (this.logger)
137
- this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
132
+ oci_common_2.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
138
133
  if (this._lastSetRegionOrRegionId === common.Region.REGION_STRING) {
139
134
  this.endpoint = common.EndpointBuilder.createEndpointFromRegion(ContainerEngineClient.serviceEndpointTemplate, this._region, ContainerEngineClient.endpointServiceName);
140
135
  }
@@ -200,12 +195,11 @@ class ContainerEngineClient {
200
195
  * @param ClusterMigrateToNativeVcnRequest
201
196
  * @return ClusterMigrateToNativeVcnResponse
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/containerengine/ClusterMigrateToNativeVcn.ts.html |here} to see how to use ClusterMigrateToNativeVcn API.
198
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/ClusterMigrateToNativeVcn.ts.html |here} to see how to use ClusterMigrateToNativeVcn API.
204
199
  */
205
200
  clusterMigrateToNativeVcn(clusterMigrateToNativeVcnRequest) {
206
201
  return __awaiter(this, void 0, void 0, function* () {
207
- if (this.logger)
208
- this.logger.debug("Calling operation ContainerEngineClient#clusterMigrateToNativeVcn.");
202
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#clusterMigrateToNativeVcn.");
209
203
  const operationName = "clusterMigrateToNativeVcn";
210
204
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/ClusterMigrateToNativeVcn";
211
205
  const pathParams = {
@@ -219,8 +213,6 @@ class ContainerEngineClient {
219
213
  };
220
214
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
221
215
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, clusterMigrateToNativeVcnRequest.retryConfiguration, specRetryConfiguration);
222
- if (this.logger)
223
- retrier.logger = this.logger;
224
216
  const request = yield oci_common_2.composeRequest({
225
217
  baseEndpoint: this._endpoint,
226
218
  defaultHeaders: this._defaultHeaders,
@@ -261,12 +253,11 @@ class ContainerEngineClient {
261
253
  * @param CompleteCredentialRotationRequest
262
254
  * @return CompleteCredentialRotationResponse
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/containerengine/CompleteCredentialRotation.ts.html |here} to see how to use CompleteCredentialRotation API.
256
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/CompleteCredentialRotation.ts.html |here} to see how to use CompleteCredentialRotation API.
265
257
  */
266
258
  completeCredentialRotation(completeCredentialRotationRequest) {
267
259
  return __awaiter(this, void 0, void 0, function* () {
268
- if (this.logger)
269
- this.logger.debug("Calling operation ContainerEngineClient#completeCredentialRotation.");
260
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#completeCredentialRotation.");
270
261
  const operationName = "completeCredentialRotation";
271
262
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/CompleteCredentialRotation";
272
263
  const pathParams = {
@@ -281,8 +272,6 @@ class ContainerEngineClient {
281
272
  };
282
273
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
283
274
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, completeCredentialRotationRequest.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,
@@ -322,12 +311,11 @@ class ContainerEngineClient {
322
311
  * @param CreateClusterRequest
323
312
  * @return CreateClusterResponse
324
313
  * @throws OciError when an error occurs
325
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/CreateCluster.ts.html |here} to see how to use CreateCluster API.
314
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/CreateCluster.ts.html |here} to see how to use CreateCluster API.
326
315
  */
327
316
  createCluster(createClusterRequest) {
328
317
  return __awaiter(this, void 0, void 0, function* () {
329
- if (this.logger)
330
- this.logger.debug("Calling operation ContainerEngineClient#createCluster.");
318
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#createCluster.");
331
319
  const operationName = "createCluster";
332
320
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/CreateCluster";
333
321
  const pathParams = {};
@@ -339,8 +327,6 @@ class ContainerEngineClient {
339
327
  };
340
328
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
341
329
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createClusterRequest.retryConfiguration, specRetryConfiguration);
342
- if (this.logger)
343
- retrier.logger = this.logger;
344
330
  const request = yield oci_common_2.composeRequest({
345
331
  baseEndpoint: this._endpoint,
346
332
  defaultHeaders: this._defaultHeaders,
@@ -381,12 +367,11 @@ class ContainerEngineClient {
381
367
  * @param CreateKubeconfigRequest
382
368
  * @return CreateKubeconfigResponse
383
369
  * @throws OciError when an error occurs
384
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/CreateKubeconfig.ts.html |here} to see how to use CreateKubeconfig API.
370
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/CreateKubeconfig.ts.html |here} to see how to use CreateKubeconfig API.
385
371
  */
386
372
  createKubeconfig(createKubeconfigRequest) {
387
373
  return __awaiter(this, void 0, void 0, function* () {
388
- if (this.logger)
389
- this.logger.debug("Calling operation ContainerEngineClient#createKubeconfig.");
374
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#createKubeconfig.");
390
375
  const operationName = "createKubeconfig";
391
376
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/CreateKubeconfig";
392
377
  const pathParams = {
@@ -399,8 +384,6 @@ class ContainerEngineClient {
399
384
  };
400
385
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
401
386
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createKubeconfigRequest.retryConfiguration, specRetryConfiguration);
402
- if (this.logger)
403
- retrier.logger = this.logger;
404
387
  const request = yield oci_common_2.composeRequest({
405
388
  baseEndpoint: this._endpoint,
406
389
  defaultHeaders: this._defaultHeaders,
@@ -439,12 +422,11 @@ class ContainerEngineClient {
439
422
  * @param CreateNodePoolRequest
440
423
  * @return CreateNodePoolResponse
441
424
  * @throws OciError when an error occurs
442
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/CreateNodePool.ts.html |here} to see how to use CreateNodePool API.
425
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/CreateNodePool.ts.html |here} to see how to use CreateNodePool API.
443
426
  */
444
427
  createNodePool(createNodePoolRequest) {
445
428
  return __awaiter(this, void 0, void 0, function* () {
446
- if (this.logger)
447
- this.logger.debug("Calling operation ContainerEngineClient#createNodePool.");
429
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#createNodePool.");
448
430
  const operationName = "createNodePool";
449
431
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/NodePool/CreateNodePool";
450
432
  const pathParams = {};
@@ -456,8 +438,6 @@ class ContainerEngineClient {
456
438
  };
457
439
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
458
440
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createNodePoolRequest.retryConfiguration, specRetryConfiguration);
459
- if (this.logger)
460
- retrier.logger = this.logger;
461
441
  const request = yield oci_common_2.composeRequest({
462
442
  baseEndpoint: this._endpoint,
463
443
  defaultHeaders: this._defaultHeaders,
@@ -498,12 +478,11 @@ class ContainerEngineClient {
498
478
  * @param CreateVirtualNodePoolRequest
499
479
  * @return CreateVirtualNodePoolResponse
500
480
  * @throws OciError when an error occurs
501
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/CreateVirtualNodePool.ts.html |here} to see how to use CreateVirtualNodePool API.
481
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/CreateVirtualNodePool.ts.html |here} to see how to use CreateVirtualNodePool API.
502
482
  */
503
483
  createVirtualNodePool(createVirtualNodePoolRequest) {
504
484
  return __awaiter(this, void 0, void 0, function* () {
505
- if (this.logger)
506
- this.logger.debug("Calling operation ContainerEngineClient#createVirtualNodePool.");
485
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#createVirtualNodePool.");
507
486
  const operationName = "createVirtualNodePool";
508
487
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/VirtualNodePool/CreateVirtualNodePool";
509
488
  const pathParams = {};
@@ -515,8 +494,6 @@ class ContainerEngineClient {
515
494
  };
516
495
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
517
496
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createVirtualNodePoolRequest.retryConfiguration, specRetryConfiguration);
518
- if (this.logger)
519
- retrier.logger = this.logger;
520
497
  const request = yield oci_common_2.composeRequest({
521
498
  baseEndpoint: this._endpoint,
522
499
  defaultHeaders: this._defaultHeaders,
@@ -557,12 +534,11 @@ class ContainerEngineClient {
557
534
  * @param CreateWorkloadMappingRequest
558
535
  * @return CreateWorkloadMappingResponse
559
536
  * @throws OciError when an error occurs
560
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/CreateWorkloadMapping.ts.html |here} to see how to use CreateWorkloadMapping API.
537
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/CreateWorkloadMapping.ts.html |here} to see how to use CreateWorkloadMapping API.
561
538
  */
562
539
  createWorkloadMapping(createWorkloadMappingRequest) {
563
540
  return __awaiter(this, void 0, void 0, function* () {
564
- if (this.logger)
565
- this.logger.debug("Calling operation ContainerEngineClient#createWorkloadMapping.");
541
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#createWorkloadMapping.");
566
542
  const operationName = "createWorkloadMapping";
567
543
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/WorkloadMapping/CreateWorkloadMapping";
568
544
  const pathParams = {
@@ -576,8 +552,6 @@ class ContainerEngineClient {
576
552
  };
577
553
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
578
554
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createWorkloadMappingRequest.retryConfiguration, specRetryConfiguration);
579
- if (this.logger)
580
- retrier.logger = this.logger;
581
555
  const request = yield oci_common_2.composeRequest({
582
556
  baseEndpoint: this._endpoint,
583
557
  defaultHeaders: this._defaultHeaders,
@@ -622,12 +596,11 @@ class ContainerEngineClient {
622
596
  * @param DeleteClusterRequest
623
597
  * @return DeleteClusterResponse
624
598
  * @throws OciError when an error occurs
625
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/DeleteCluster.ts.html |here} to see how to use DeleteCluster API.
599
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/DeleteCluster.ts.html |here} to see how to use DeleteCluster API.
626
600
  */
627
601
  deleteCluster(deleteClusterRequest) {
628
602
  return __awaiter(this, void 0, void 0, function* () {
629
- if (this.logger)
630
- this.logger.debug("Calling operation ContainerEngineClient#deleteCluster.");
603
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#deleteCluster.");
631
604
  const operationName = "deleteCluster";
632
605
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/DeleteCluster";
633
606
  const pathParams = {
@@ -641,8 +614,6 @@ class ContainerEngineClient {
641
614
  };
642
615
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
643
616
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteClusterRequest.retryConfiguration, specRetryConfiguration);
644
- if (this.logger)
645
- retrier.logger = this.logger;
646
617
  const request = yield oci_common_2.composeRequest({
647
618
  baseEndpoint: this._endpoint,
648
619
  defaultHeaders: this._defaultHeaders,
@@ -682,12 +653,11 @@ class ContainerEngineClient {
682
653
  * @param DeleteNodeRequest
683
654
  * @return DeleteNodeResponse
684
655
  * @throws OciError when an error occurs
685
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/DeleteNode.ts.html |here} to see how to use DeleteNode API.
656
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/DeleteNode.ts.html |here} to see how to use DeleteNode API.
686
657
  */
687
658
  deleteNode(deleteNodeRequest) {
688
659
  return __awaiter(this, void 0, void 0, function* () {
689
- if (this.logger)
690
- this.logger.debug("Calling operation ContainerEngineClient#deleteNode.");
660
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#deleteNode.");
691
661
  const operationName = "deleteNode";
692
662
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/NodePool/DeleteNode";
693
663
  const pathParams = {
@@ -706,8 +676,6 @@ class ContainerEngineClient {
706
676
  };
707
677
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
708
678
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteNodeRequest.retryConfiguration, specRetryConfiguration);
709
- if (this.logger)
710
- retrier.logger = this.logger;
711
679
  const request = yield oci_common_2.composeRequest({
712
680
  baseEndpoint: this._endpoint,
713
681
  defaultHeaders: this._defaultHeaders,
@@ -747,12 +715,11 @@ class ContainerEngineClient {
747
715
  * @param DeleteNodePoolRequest
748
716
  * @return DeleteNodePoolResponse
749
717
  * @throws OciError when an error occurs
750
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/DeleteNodePool.ts.html |here} to see how to use DeleteNodePool API.
718
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/DeleteNodePool.ts.html |here} to see how to use DeleteNodePool API.
751
719
  */
752
720
  deleteNodePool(deleteNodePoolRequest) {
753
721
  return __awaiter(this, void 0, void 0, function* () {
754
- if (this.logger)
755
- this.logger.debug("Calling operation ContainerEngineClient#deleteNodePool.");
722
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#deleteNodePool.");
756
723
  const operationName = "deleteNodePool";
757
724
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/NodePool/DeleteNodePool";
758
725
  const pathParams = {
@@ -769,8 +736,6 @@ class ContainerEngineClient {
769
736
  };
770
737
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
771
738
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteNodePoolRequest.retryConfiguration, specRetryConfiguration);
772
- if (this.logger)
773
- retrier.logger = this.logger;
774
739
  const request = yield oci_common_2.composeRequest({
775
740
  baseEndpoint: this._endpoint,
776
741
  defaultHeaders: this._defaultHeaders,
@@ -810,12 +775,11 @@ class ContainerEngineClient {
810
775
  * @param DeleteVirtualNodePoolRequest
811
776
  * @return DeleteVirtualNodePoolResponse
812
777
  * @throws OciError when an error occurs
813
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/DeleteVirtualNodePool.ts.html |here} to see how to use DeleteVirtualNodePool API.
778
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/DeleteVirtualNodePool.ts.html |here} to see how to use DeleteVirtualNodePool API.
814
779
  */
815
780
  deleteVirtualNodePool(deleteVirtualNodePoolRequest) {
816
781
  return __awaiter(this, void 0, void 0, function* () {
817
- if (this.logger)
818
- this.logger.debug("Calling operation ContainerEngineClient#deleteVirtualNodePool.");
782
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#deleteVirtualNodePool.");
819
783
  const operationName = "deleteVirtualNodePool";
820
784
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/VirtualNodePool/DeleteVirtualNodePool";
821
785
  const pathParams = {
@@ -832,8 +796,6 @@ class ContainerEngineClient {
832
796
  };
833
797
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
834
798
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteVirtualNodePoolRequest.retryConfiguration, specRetryConfiguration);
835
- if (this.logger)
836
- retrier.logger = this.logger;
837
799
  const request = yield oci_common_2.composeRequest({
838
800
  baseEndpoint: this._endpoint,
839
801
  defaultHeaders: this._defaultHeaders,
@@ -873,12 +835,11 @@ class ContainerEngineClient {
873
835
  * @param DeleteWorkRequestRequest
874
836
  * @return DeleteWorkRequestResponse
875
837
  * @throws OciError when an error occurs
876
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
838
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
877
839
  */
878
840
  deleteWorkRequest(deleteWorkRequestRequest) {
879
841
  return __awaiter(this, void 0, void 0, function* () {
880
- if (this.logger)
881
- this.logger.debug("Calling operation ContainerEngineClient#deleteWorkRequest.");
842
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#deleteWorkRequest.");
882
843
  const operationName = "deleteWorkRequest";
883
844
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/WorkRequest/DeleteWorkRequest";
884
845
  const pathParams = {
@@ -892,8 +853,6 @@ class ContainerEngineClient {
892
853
  };
893
854
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
894
855
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteWorkRequestRequest.retryConfiguration, specRetryConfiguration);
895
- if (this.logger)
896
- retrier.logger = this.logger;
897
856
  const request = yield oci_common_2.composeRequest({
898
857
  baseEndpoint: this._endpoint,
899
858
  defaultHeaders: this._defaultHeaders,
@@ -928,12 +887,11 @@ class ContainerEngineClient {
928
887
  * @param DeleteWorkloadMappingRequest
929
888
  * @return DeleteWorkloadMappingResponse
930
889
  * @throws OciError when an error occurs
931
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/DeleteWorkloadMapping.ts.html |here} to see how to use DeleteWorkloadMapping API.
890
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/DeleteWorkloadMapping.ts.html |here} to see how to use DeleteWorkloadMapping API.
932
891
  */
933
892
  deleteWorkloadMapping(deleteWorkloadMappingRequest) {
934
893
  return __awaiter(this, void 0, void 0, function* () {
935
- if (this.logger)
936
- this.logger.debug("Calling operation ContainerEngineClient#deleteWorkloadMapping.");
894
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#deleteWorkloadMapping.");
937
895
  const operationName = "deleteWorkloadMapping";
938
896
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/WorkloadMapping/DeleteWorkloadMapping";
939
897
  const pathParams = {
@@ -948,8 +906,6 @@ class ContainerEngineClient {
948
906
  };
949
907
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
950
908
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteWorkloadMappingRequest.retryConfiguration, specRetryConfiguration);
951
- if (this.logger)
952
- retrier.logger = this.logger;
953
909
  const request = yield oci_common_2.composeRequest({
954
910
  baseEndpoint: this._endpoint,
955
911
  defaultHeaders: this._defaultHeaders,
@@ -984,12 +940,11 @@ class ContainerEngineClient {
984
940
  * @param DisableAddonRequest
985
941
  * @return DisableAddonResponse
986
942
  * @throws OciError when an error occurs
987
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/DisableAddon.ts.html |here} to see how to use DisableAddon API.
943
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/DisableAddon.ts.html |here} to see how to use DisableAddon API.
988
944
  */
989
945
  disableAddon(disableAddonRequest) {
990
946
  return __awaiter(this, void 0, void 0, function* () {
991
- if (this.logger)
992
- this.logger.debug("Calling operation ContainerEngineClient#disableAddon.");
947
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#disableAddon.");
993
948
  const operationName = "disableAddon";
994
949
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/DisableAddon";
995
950
  const pathParams = {
@@ -1006,8 +961,6 @@ class ContainerEngineClient {
1006
961
  };
1007
962
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1008
963
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, disableAddonRequest.retryConfiguration, specRetryConfiguration);
1009
- if (this.logger)
1010
- retrier.logger = this.logger;
1011
964
  const request = yield oci_common_2.composeRequest({
1012
965
  baseEndpoint: this._endpoint,
1013
966
  defaultHeaders: this._defaultHeaders,
@@ -1047,12 +1000,11 @@ class ContainerEngineClient {
1047
1000
  * @param GetAddonRequest
1048
1001
  * @return GetAddonResponse
1049
1002
  * @throws OciError when an error occurs
1050
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/GetAddon.ts.html |here} to see how to use GetAddon API.
1003
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/GetAddon.ts.html |here} to see how to use GetAddon API.
1051
1004
  */
1052
1005
  getAddon(getAddonRequest) {
1053
1006
  return __awaiter(this, void 0, void 0, function* () {
1054
- if (this.logger)
1055
- this.logger.debug("Calling operation ContainerEngineClient#getAddon.");
1007
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#getAddon.");
1056
1008
  const operationName = "getAddon";
1057
1009
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/GetAddon";
1058
1010
  const pathParams = {
@@ -1066,8 +1018,6 @@ class ContainerEngineClient {
1066
1018
  };
1067
1019
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1068
1020
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getAddonRequest.retryConfiguration, specRetryConfiguration);
1069
- if (this.logger)
1070
- retrier.logger = this.logger;
1071
1021
  const request = yield oci_common_2.composeRequest({
1072
1022
  baseEndpoint: this._endpoint,
1073
1023
  defaultHeaders: this._defaultHeaders,
@@ -1111,12 +1061,11 @@ class ContainerEngineClient {
1111
1061
  * @param GetClusterRequest
1112
1062
  * @return GetClusterResponse
1113
1063
  * @throws OciError when an error occurs
1114
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/GetCluster.ts.html |here} to see how to use GetCluster API.
1064
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/GetCluster.ts.html |here} to see how to use GetCluster API.
1115
1065
  */
1116
1066
  getCluster(getClusterRequest) {
1117
1067
  return __awaiter(this, void 0, void 0, function* () {
1118
- if (this.logger)
1119
- this.logger.debug("Calling operation ContainerEngineClient#getCluster.");
1068
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#getCluster.");
1120
1069
  const operationName = "getCluster";
1121
1070
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/GetCluster";
1122
1071
  const pathParams = {
@@ -1129,8 +1078,6 @@ class ContainerEngineClient {
1129
1078
  };
1130
1079
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1131
1080
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getClusterRequest.retryConfiguration, specRetryConfiguration);
1132
- if (this.logger)
1133
- retrier.logger = this.logger;
1134
1081
  const request = yield oci_common_2.composeRequest({
1135
1082
  baseEndpoint: this._endpoint,
1136
1083
  defaultHeaders: this._defaultHeaders,
@@ -1174,12 +1121,11 @@ class ContainerEngineClient {
1174
1121
  * @param GetClusterMigrateToNativeVcnStatusRequest
1175
1122
  * @return GetClusterMigrateToNativeVcnStatusResponse
1176
1123
  * @throws OciError when an error occurs
1177
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/GetClusterMigrateToNativeVcnStatus.ts.html |here} to see how to use GetClusterMigrateToNativeVcnStatus API.
1124
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/GetClusterMigrateToNativeVcnStatus.ts.html |here} to see how to use GetClusterMigrateToNativeVcnStatus API.
1178
1125
  */
1179
1126
  getClusterMigrateToNativeVcnStatus(getClusterMigrateToNativeVcnStatusRequest) {
1180
1127
  return __awaiter(this, void 0, void 0, function* () {
1181
- if (this.logger)
1182
- this.logger.debug("Calling operation ContainerEngineClient#getClusterMigrateToNativeVcnStatus.");
1128
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#getClusterMigrateToNativeVcnStatus.");
1183
1129
  const operationName = "getClusterMigrateToNativeVcnStatus";
1184
1130
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/ClusterMigrateToNativeVcnStatus/GetClusterMigrateToNativeVcnStatus";
1185
1131
  const pathParams = {
@@ -1192,8 +1138,6 @@ class ContainerEngineClient {
1192
1138
  };
1193
1139
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1194
1140
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getClusterMigrateToNativeVcnStatusRequest.retryConfiguration, specRetryConfiguration);
1195
- if (this.logger)
1196
- retrier.logger = this.logger;
1197
1141
  const request = yield oci_common_2.composeRequest({
1198
1142
  baseEndpoint: this._endpoint,
1199
1143
  defaultHeaders: this._defaultHeaders,
@@ -1237,12 +1181,11 @@ class ContainerEngineClient {
1237
1181
  * @param GetClusterOptionsRequest
1238
1182
  * @return GetClusterOptionsResponse
1239
1183
  * @throws OciError when an error occurs
1240
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/GetClusterOptions.ts.html |here} to see how to use GetClusterOptions API.
1184
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/GetClusterOptions.ts.html |here} to see how to use GetClusterOptions API.
1241
1185
  */
1242
1186
  getClusterOptions(getClusterOptionsRequest) {
1243
1187
  return __awaiter(this, void 0, void 0, function* () {
1244
- if (this.logger)
1245
- this.logger.debug("Calling operation ContainerEngineClient#getClusterOptions.");
1188
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#getClusterOptions.");
1246
1189
  const operationName = "getClusterOptions";
1247
1190
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/ClusterOptions/GetClusterOptions";
1248
1191
  const pathParams = {
@@ -1257,8 +1200,6 @@ class ContainerEngineClient {
1257
1200
  };
1258
1201
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1259
1202
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getClusterOptionsRequest.retryConfiguration, specRetryConfiguration);
1260
- if (this.logger)
1261
- retrier.logger = this.logger;
1262
1203
  const request = yield oci_common_2.composeRequest({
1263
1204
  baseEndpoint: this._endpoint,
1264
1205
  defaultHeaders: this._defaultHeaders,
@@ -1297,12 +1238,11 @@ class ContainerEngineClient {
1297
1238
  * @param GetCredentialRotationStatusRequest
1298
1239
  * @return GetCredentialRotationStatusResponse
1299
1240
  * @throws OciError when an error occurs
1300
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/GetCredentialRotationStatus.ts.html |here} to see how to use GetCredentialRotationStatus API.
1241
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/GetCredentialRotationStatus.ts.html |here} to see how to use GetCredentialRotationStatus API.
1301
1242
  */
1302
1243
  getCredentialRotationStatus(getCredentialRotationStatusRequest) {
1303
1244
  return __awaiter(this, void 0, void 0, function* () {
1304
- if (this.logger)
1305
- this.logger.debug("Calling operation ContainerEngineClient#getCredentialRotationStatus.");
1245
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#getCredentialRotationStatus.");
1306
1246
  const operationName = "getCredentialRotationStatus";
1307
1247
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/CredentialRotationStatus/GetCredentialRotationStatus";
1308
1248
  const pathParams = {
@@ -1315,8 +1255,6 @@ class ContainerEngineClient {
1315
1255
  };
1316
1256
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1317
1257
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getCredentialRotationStatusRequest.retryConfiguration, specRetryConfiguration);
1318
- if (this.logger)
1319
- retrier.logger = this.logger;
1320
1258
  const request = yield oci_common_2.composeRequest({
1321
1259
  baseEndpoint: this._endpoint,
1322
1260
  defaultHeaders: this._defaultHeaders,
@@ -1360,12 +1298,11 @@ class ContainerEngineClient {
1360
1298
  * @param GetNodePoolRequest
1361
1299
  * @return GetNodePoolResponse
1362
1300
  * @throws OciError when an error occurs
1363
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/GetNodePool.ts.html |here} to see how to use GetNodePool API.
1301
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/GetNodePool.ts.html |here} to see how to use GetNodePool API.
1364
1302
  */
1365
1303
  getNodePool(getNodePoolRequest) {
1366
1304
  return __awaiter(this, void 0, void 0, function* () {
1367
- if (this.logger)
1368
- this.logger.debug("Calling operation ContainerEngineClient#getNodePool.");
1305
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#getNodePool.");
1369
1306
  const operationName = "getNodePool";
1370
1307
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/NodePool/GetNodePool";
1371
1308
  const pathParams = {
@@ -1378,8 +1315,6 @@ class ContainerEngineClient {
1378
1315
  };
1379
1316
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1380
1317
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getNodePoolRequest.retryConfiguration, specRetryConfiguration);
1381
- if (this.logger)
1382
- retrier.logger = this.logger;
1383
1318
  const request = yield oci_common_2.composeRequest({
1384
1319
  baseEndpoint: this._endpoint,
1385
1320
  defaultHeaders: this._defaultHeaders,
@@ -1423,12 +1358,11 @@ class ContainerEngineClient {
1423
1358
  * @param GetNodePoolOptionsRequest
1424
1359
  * @return GetNodePoolOptionsResponse
1425
1360
  * @throws OciError when an error occurs
1426
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/GetNodePoolOptions.ts.html |here} to see how to use GetNodePoolOptions API.
1361
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/GetNodePoolOptions.ts.html |here} to see how to use GetNodePoolOptions API.
1427
1362
  */
1428
1363
  getNodePoolOptions(getNodePoolOptionsRequest) {
1429
1364
  return __awaiter(this, void 0, void 0, function* () {
1430
- if (this.logger)
1431
- this.logger.debug("Calling operation ContainerEngineClient#getNodePoolOptions.");
1365
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#getNodePoolOptions.");
1432
1366
  const operationName = "getNodePoolOptions";
1433
1367
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/NodePoolOptions/GetNodePoolOptions";
1434
1368
  const pathParams = {
@@ -1443,8 +1377,6 @@ class ContainerEngineClient {
1443
1377
  };
1444
1378
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1445
1379
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getNodePoolOptionsRequest.retryConfiguration, specRetryConfiguration);
1446
- if (this.logger)
1447
- retrier.logger = this.logger;
1448
1380
  const request = yield oci_common_2.composeRequest({
1449
1381
  baseEndpoint: this._endpoint,
1450
1382
  defaultHeaders: this._defaultHeaders,
@@ -1483,12 +1415,11 @@ class ContainerEngineClient {
1483
1415
  * @param GetVirtualNodeRequest
1484
1416
  * @return GetVirtualNodeResponse
1485
1417
  * @throws OciError when an error occurs
1486
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/GetVirtualNode.ts.html |here} to see how to use GetVirtualNode API.
1418
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/GetVirtualNode.ts.html |here} to see how to use GetVirtualNode API.
1487
1419
  */
1488
1420
  getVirtualNode(getVirtualNodeRequest) {
1489
1421
  return __awaiter(this, void 0, void 0, function* () {
1490
- if (this.logger)
1491
- this.logger.debug("Calling operation ContainerEngineClient#getVirtualNode.");
1422
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#getVirtualNode.");
1492
1423
  const operationName = "getVirtualNode";
1493
1424
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/VirtualNodePool/GetVirtualNode";
1494
1425
  const pathParams = {
@@ -1502,8 +1433,6 @@ class ContainerEngineClient {
1502
1433
  };
1503
1434
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1504
1435
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getVirtualNodeRequest.retryConfiguration, specRetryConfiguration);
1505
- if (this.logger)
1506
- retrier.logger = this.logger;
1507
1436
  const request = yield oci_common_2.composeRequest({
1508
1437
  baseEndpoint: this._endpoint,
1509
1438
  defaultHeaders: this._defaultHeaders,
@@ -1547,12 +1476,11 @@ class ContainerEngineClient {
1547
1476
  * @param GetVirtualNodePoolRequest
1548
1477
  * @return GetVirtualNodePoolResponse
1549
1478
  * @throws OciError when an error occurs
1550
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/GetVirtualNodePool.ts.html |here} to see how to use GetVirtualNodePool API.
1479
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/GetVirtualNodePool.ts.html |here} to see how to use GetVirtualNodePool API.
1551
1480
  */
1552
1481
  getVirtualNodePool(getVirtualNodePoolRequest) {
1553
1482
  return __awaiter(this, void 0, void 0, function* () {
1554
- if (this.logger)
1555
- this.logger.debug("Calling operation ContainerEngineClient#getVirtualNodePool.");
1483
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#getVirtualNodePool.");
1556
1484
  const operationName = "getVirtualNodePool";
1557
1485
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/VirtualNodePool/GetVirtualNodePool";
1558
1486
  const pathParams = {
@@ -1565,8 +1493,6 @@ class ContainerEngineClient {
1565
1493
  };
1566
1494
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1567
1495
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getVirtualNodePoolRequest.retryConfiguration, specRetryConfiguration);
1568
- if (this.logger)
1569
- retrier.logger = this.logger;
1570
1496
  const request = yield oci_common_2.composeRequest({
1571
1497
  baseEndpoint: this._endpoint,
1572
1498
  defaultHeaders: this._defaultHeaders,
@@ -1610,12 +1536,11 @@ class ContainerEngineClient {
1610
1536
  * @param GetWorkRequestRequest
1611
1537
  * @return GetWorkRequestResponse
1612
1538
  * @throws OciError when an error occurs
1613
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1539
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1614
1540
  */
1615
1541
  getWorkRequest(getWorkRequestRequest) {
1616
1542
  return __awaiter(this, void 0, void 0, function* () {
1617
- if (this.logger)
1618
- this.logger.debug("Calling operation ContainerEngineClient#getWorkRequest.");
1543
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#getWorkRequest.");
1619
1544
  const operationName = "getWorkRequest";
1620
1545
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/WorkRequest/GetWorkRequest";
1621
1546
  const pathParams = {
@@ -1628,8 +1553,6 @@ class ContainerEngineClient {
1628
1553
  };
1629
1554
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1630
1555
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
1631
- if (this.logger)
1632
- retrier.logger = this.logger;
1633
1556
  const request = yield oci_common_2.composeRequest({
1634
1557
  baseEndpoint: this._endpoint,
1635
1558
  defaultHeaders: this._defaultHeaders,
@@ -1678,12 +1601,11 @@ class ContainerEngineClient {
1678
1601
  * @param GetWorkloadMappingRequest
1679
1602
  * @return GetWorkloadMappingResponse
1680
1603
  * @throws OciError when an error occurs
1681
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/GetWorkloadMapping.ts.html |here} to see how to use GetWorkloadMapping API.
1604
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/GetWorkloadMapping.ts.html |here} to see how to use GetWorkloadMapping API.
1682
1605
  */
1683
1606
  getWorkloadMapping(getWorkloadMappingRequest) {
1684
1607
  return __awaiter(this, void 0, void 0, function* () {
1685
- if (this.logger)
1686
- this.logger.debug("Calling operation ContainerEngineClient#getWorkloadMapping.");
1608
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#getWorkloadMapping.");
1687
1609
  const operationName = "getWorkloadMapping";
1688
1610
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/WorkloadMapping/GetWorkloadMapping";
1689
1611
  const pathParams = {
@@ -1697,8 +1619,6 @@ class ContainerEngineClient {
1697
1619
  };
1698
1620
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1699
1621
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkloadMappingRequest.retryConfiguration, specRetryConfiguration);
1700
- if (this.logger)
1701
- retrier.logger = this.logger;
1702
1622
  const request = yield oci_common_2.composeRequest({
1703
1623
  baseEndpoint: this._endpoint,
1704
1624
  defaultHeaders: this._defaultHeaders,
@@ -1742,12 +1662,11 @@ class ContainerEngineClient {
1742
1662
  * @param InstallAddonRequest
1743
1663
  * @return InstallAddonResponse
1744
1664
  * @throws OciError when an error occurs
1745
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/InstallAddon.ts.html |here} to see how to use InstallAddon API.
1665
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/InstallAddon.ts.html |here} to see how to use InstallAddon API.
1746
1666
  */
1747
1667
  installAddon(installAddonRequest) {
1748
1668
  return __awaiter(this, void 0, void 0, function* () {
1749
- if (this.logger)
1750
- this.logger.debug("Calling operation ContainerEngineClient#installAddon.");
1669
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#installAddon.");
1751
1670
  const operationName = "installAddon";
1752
1671
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/InstallAddon";
1753
1672
  const pathParams = {
@@ -1762,8 +1681,6 @@ class ContainerEngineClient {
1762
1681
  };
1763
1682
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1764
1683
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, installAddonRequest.retryConfiguration, specRetryConfiguration);
1765
- if (this.logger)
1766
- retrier.logger = this.logger;
1767
1684
  const request = yield oci_common_2.composeRequest({
1768
1685
  baseEndpoint: this._endpoint,
1769
1686
  defaultHeaders: this._defaultHeaders,
@@ -1804,12 +1721,11 @@ class ContainerEngineClient {
1804
1721
  * @param ListAddonOptionsRequest
1805
1722
  * @return ListAddonOptionsResponse
1806
1723
  * @throws OciError when an error occurs
1807
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/ListAddonOptions.ts.html |here} to see how to use ListAddonOptions API.
1724
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/ListAddonOptions.ts.html |here} to see how to use ListAddonOptions API.
1808
1725
  */
1809
1726
  listAddonOptions(listAddonOptionsRequest) {
1810
1727
  return __awaiter(this, void 0, void 0, function* () {
1811
- if (this.logger)
1812
- this.logger.debug("Calling operation ContainerEngineClient#listAddonOptions.");
1728
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#listAddonOptions.");
1813
1729
  const operationName = "listAddonOptions";
1814
1730
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/AddonOptionSummary/ListAddonOptions";
1815
1731
  const pathParams = {};
@@ -1827,8 +1743,6 @@ class ContainerEngineClient {
1827
1743
  };
1828
1744
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1829
1745
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listAddonOptionsRequest.retryConfiguration, specRetryConfiguration);
1830
- if (this.logger)
1831
- retrier.logger = this.logger;
1832
1746
  const request = yield oci_common_2.composeRequest({
1833
1747
  baseEndpoint: this._endpoint,
1834
1748
  defaultHeaders: this._defaultHeaders,
@@ -1912,12 +1826,11 @@ class ContainerEngineClient {
1912
1826
  * @param ListAddonsRequest
1913
1827
  * @return ListAddonsResponse
1914
1828
  * @throws OciError when an error occurs
1915
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/ListAddons.ts.html |here} to see how to use ListAddons API.
1829
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/ListAddons.ts.html |here} to see how to use ListAddons API.
1916
1830
  */
1917
1831
  listAddons(listAddonsRequest) {
1918
1832
  return __awaiter(this, void 0, void 0, function* () {
1919
- if (this.logger)
1920
- this.logger.debug("Calling operation ContainerEngineClient#listAddons.");
1833
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#listAddons.");
1921
1834
  const operationName = "listAddons";
1922
1835
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/ListAddons";
1923
1836
  const pathParams = {
@@ -1935,8 +1848,6 @@ class ContainerEngineClient {
1935
1848
  };
1936
1849
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1937
1850
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listAddonsRequest.retryConfiguration, specRetryConfiguration);
1938
- if (this.logger)
1939
- retrier.logger = this.logger;
1940
1851
  const request = yield oci_common_2.composeRequest({
1941
1852
  baseEndpoint: this._endpoint,
1942
1853
  defaultHeaders: this._defaultHeaders,
@@ -2020,12 +1931,11 @@ class ContainerEngineClient {
2020
1931
  * @param ListClustersRequest
2021
1932
  * @return ListClustersResponse
2022
1933
  * @throws OciError when an error occurs
2023
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/ListClusters.ts.html |here} to see how to use ListClusters API.
1934
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/ListClusters.ts.html |here} to see how to use ListClusters API.
2024
1935
  */
2025
1936
  listClusters(listClustersRequest) {
2026
1937
  return __awaiter(this, void 0, void 0, function* () {
2027
- if (this.logger)
2028
- this.logger.debug("Calling operation ContainerEngineClient#listClusters.");
1938
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#listClusters.");
2029
1939
  const operationName = "listClusters";
2030
1940
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/ClusterSummary/ListClusters";
2031
1941
  const pathParams = {};
@@ -2044,8 +1954,6 @@ class ContainerEngineClient {
2044
1954
  };
2045
1955
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2046
1956
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listClustersRequest.retryConfiguration, specRetryConfiguration);
2047
- if (this.logger)
2048
- retrier.logger = this.logger;
2049
1957
  const request = yield oci_common_2.composeRequest({
2050
1958
  baseEndpoint: this._endpoint,
2051
1959
  defaultHeaders: this._defaultHeaders,
@@ -2129,12 +2037,11 @@ class ContainerEngineClient {
2129
2037
  * @param ListNodePoolsRequest
2130
2038
  * @return ListNodePoolsResponse
2131
2039
  * @throws OciError when an error occurs
2132
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/ListNodePools.ts.html |here} to see how to use ListNodePools API.
2040
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/ListNodePools.ts.html |here} to see how to use ListNodePools API.
2133
2041
  */
2134
2042
  listNodePools(listNodePoolsRequest) {
2135
2043
  return __awaiter(this, void 0, void 0, function* () {
2136
- if (this.logger)
2137
- this.logger.debug("Calling operation ContainerEngineClient#listNodePools.");
2044
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#listNodePools.");
2138
2045
  const operationName = "listNodePools";
2139
2046
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/NodePoolSummary/ListNodePools";
2140
2047
  const pathParams = {};
@@ -2154,8 +2061,6 @@ class ContainerEngineClient {
2154
2061
  };
2155
2062
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2156
2063
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listNodePoolsRequest.retryConfiguration, specRetryConfiguration);
2157
- if (this.logger)
2158
- retrier.logger = this.logger;
2159
2064
  const request = yield oci_common_2.composeRequest({
2160
2065
  baseEndpoint: this._endpoint,
2161
2066
  defaultHeaders: this._defaultHeaders,
@@ -2239,12 +2144,11 @@ class ContainerEngineClient {
2239
2144
  * @param ListPodShapesRequest
2240
2145
  * @return ListPodShapesResponse
2241
2146
  * @throws OciError when an error occurs
2242
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/ListPodShapes.ts.html |here} to see how to use ListPodShapes API.
2147
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/ListPodShapes.ts.html |here} to see how to use ListPodShapes API.
2243
2148
  */
2244
2149
  listPodShapes(listPodShapesRequest) {
2245
2150
  return __awaiter(this, void 0, void 0, function* () {
2246
- if (this.logger)
2247
- this.logger.debug("Calling operation ContainerEngineClient#listPodShapes.");
2151
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#listPodShapes.");
2248
2152
  const operationName = "listPodShapes";
2249
2153
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/PodShapeSummary/ListPodShapes";
2250
2154
  const pathParams = {};
@@ -2263,8 +2167,6 @@ class ContainerEngineClient {
2263
2167
  };
2264
2168
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2265
2169
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPodShapesRequest.retryConfiguration, specRetryConfiguration);
2266
- if (this.logger)
2267
- retrier.logger = this.logger;
2268
2170
  const request = yield oci_common_2.composeRequest({
2269
2171
  baseEndpoint: this._endpoint,
2270
2172
  defaultHeaders: this._defaultHeaders,
@@ -2348,12 +2250,11 @@ class ContainerEngineClient {
2348
2250
  * @param ListVirtualNodePoolsRequest
2349
2251
  * @return ListVirtualNodePoolsResponse
2350
2252
  * @throws OciError when an error occurs
2351
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/ListVirtualNodePools.ts.html |here} to see how to use ListVirtualNodePools API.
2253
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/ListVirtualNodePools.ts.html |here} to see how to use ListVirtualNodePools API.
2352
2254
  */
2353
2255
  listVirtualNodePools(listVirtualNodePoolsRequest) {
2354
2256
  return __awaiter(this, void 0, void 0, function* () {
2355
- if (this.logger)
2356
- this.logger.debug("Calling operation ContainerEngineClient#listVirtualNodePools.");
2257
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#listVirtualNodePools.");
2357
2258
  const operationName = "listVirtualNodePools";
2358
2259
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/VirtualNodePoolSummary/ListVirtualNodePools";
2359
2260
  const pathParams = {};
@@ -2373,8 +2274,6 @@ class ContainerEngineClient {
2373
2274
  };
2374
2275
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2375
2276
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listVirtualNodePoolsRequest.retryConfiguration, specRetryConfiguration);
2376
- if (this.logger)
2377
- retrier.logger = this.logger;
2378
2277
  const request = yield oci_common_2.composeRequest({
2379
2278
  baseEndpoint: this._endpoint,
2380
2279
  defaultHeaders: this._defaultHeaders,
@@ -2458,12 +2357,11 @@ class ContainerEngineClient {
2458
2357
  * @param ListVirtualNodesRequest
2459
2358
  * @return ListVirtualNodesResponse
2460
2359
  * @throws OciError when an error occurs
2461
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/ListVirtualNodes.ts.html |here} to see how to use ListVirtualNodes API.
2360
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/ListVirtualNodes.ts.html |here} to see how to use ListVirtualNodes API.
2462
2361
  */
2463
2362
  listVirtualNodes(listVirtualNodesRequest) {
2464
2363
  return __awaiter(this, void 0, void 0, function* () {
2465
- if (this.logger)
2466
- this.logger.debug("Calling operation ContainerEngineClient#listVirtualNodes.");
2364
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#listVirtualNodes.");
2467
2365
  const operationName = "listVirtualNodes";
2468
2366
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/VirtualNodePool/ListVirtualNodes";
2469
2367
  const pathParams = {
@@ -2482,8 +2380,6 @@ class ContainerEngineClient {
2482
2380
  };
2483
2381
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2484
2382
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listVirtualNodesRequest.retryConfiguration, specRetryConfiguration);
2485
- if (this.logger)
2486
- retrier.logger = this.logger;
2487
2383
  const request = yield oci_common_2.composeRequest({
2488
2384
  baseEndpoint: this._endpoint,
2489
2385
  defaultHeaders: this._defaultHeaders,
@@ -2567,12 +2463,11 @@ class ContainerEngineClient {
2567
2463
  * @param ListWorkRequestErrorsRequest
2568
2464
  * @return ListWorkRequestErrorsResponse
2569
2465
  * @throws OciError when an error occurs
2570
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2466
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2571
2467
  */
2572
2468
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
2573
2469
  return __awaiter(this, void 0, void 0, function* () {
2574
- if (this.logger)
2575
- this.logger.debug("Calling operation ContainerEngineClient#listWorkRequestErrors.");
2470
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#listWorkRequestErrors.");
2576
2471
  const operationName = "listWorkRequestErrors";
2577
2472
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/WorkRequestError/ListWorkRequestErrors";
2578
2473
  const pathParams = {
@@ -2587,8 +2482,6 @@ class ContainerEngineClient {
2587
2482
  };
2588
2483
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2589
2484
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestErrorsRequest.retryConfiguration, specRetryConfiguration);
2590
- if (this.logger)
2591
- retrier.logger = this.logger;
2592
2485
  const request = yield oci_common_2.composeRequest({
2593
2486
  baseEndpoint: this._endpoint,
2594
2487
  defaultHeaders: this._defaultHeaders,
@@ -2627,12 +2520,11 @@ class ContainerEngineClient {
2627
2520
  * @param ListWorkRequestLogsRequest
2628
2521
  * @return ListWorkRequestLogsResponse
2629
2522
  * @throws OciError when an error occurs
2630
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2523
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2631
2524
  */
2632
2525
  listWorkRequestLogs(listWorkRequestLogsRequest) {
2633
2526
  return __awaiter(this, void 0, void 0, function* () {
2634
- if (this.logger)
2635
- this.logger.debug("Calling operation ContainerEngineClient#listWorkRequestLogs.");
2527
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#listWorkRequestLogs.");
2636
2528
  const operationName = "listWorkRequestLogs";
2637
2529
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/WorkRequestLogEntry/ListWorkRequestLogs";
2638
2530
  const pathParams = {
@@ -2647,8 +2539,6 @@ class ContainerEngineClient {
2647
2539
  };
2648
2540
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2649
2541
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestLogsRequest.retryConfiguration, specRetryConfiguration);
2650
- if (this.logger)
2651
- retrier.logger = this.logger;
2652
2542
  const request = yield oci_common_2.composeRequest({
2653
2543
  baseEndpoint: this._endpoint,
2654
2544
  defaultHeaders: this._defaultHeaders,
@@ -2687,12 +2577,11 @@ class ContainerEngineClient {
2687
2577
  * @param ListWorkRequestsRequest
2688
2578
  * @return ListWorkRequestsResponse
2689
2579
  * @throws OciError when an error occurs
2690
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2580
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2691
2581
  */
2692
2582
  listWorkRequests(listWorkRequestsRequest) {
2693
2583
  return __awaiter(this, void 0, void 0, function* () {
2694
- if (this.logger)
2695
- this.logger.debug("Calling operation ContainerEngineClient#listWorkRequests.");
2584
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#listWorkRequests.");
2696
2585
  const operationName = "listWorkRequests";
2697
2586
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/WorkRequestSummary/ListWorkRequests";
2698
2587
  const pathParams = {};
@@ -2713,8 +2602,6 @@ class ContainerEngineClient {
2713
2602
  };
2714
2603
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2715
2604
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
2716
- if (this.logger)
2717
- retrier.logger = this.logger;
2718
2605
  const request = yield oci_common_2.composeRequest({
2719
2606
  baseEndpoint: this._endpoint,
2720
2607
  defaultHeaders: this._defaultHeaders,
@@ -2798,12 +2685,11 @@ class ContainerEngineClient {
2798
2685
  * @param ListWorkloadMappingsRequest
2799
2686
  * @return ListWorkloadMappingsResponse
2800
2687
  * @throws OciError when an error occurs
2801
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/ListWorkloadMappings.ts.html |here} to see how to use ListWorkloadMappings API.
2688
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/ListWorkloadMappings.ts.html |here} to see how to use ListWorkloadMappings API.
2802
2689
  */
2803
2690
  listWorkloadMappings(listWorkloadMappingsRequest) {
2804
2691
  return __awaiter(this, void 0, void 0, function* () {
2805
- if (this.logger)
2806
- this.logger.debug("Calling operation ContainerEngineClient#listWorkloadMappings.");
2692
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#listWorkloadMappings.");
2807
2693
  const operationName = "listWorkloadMappings";
2808
2694
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/WorkloadMappingSummary/ListWorkloadMappings";
2809
2695
  const pathParams = {
@@ -2821,8 +2707,6 @@ class ContainerEngineClient {
2821
2707
  };
2822
2708
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2823
2709
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkloadMappingsRequest.retryConfiguration, specRetryConfiguration);
2824
- if (this.logger)
2825
- retrier.logger = this.logger;
2826
2710
  const request = yield oci_common_2.composeRequest({
2827
2711
  baseEndpoint: this._endpoint,
2828
2712
  defaultHeaders: this._defaultHeaders,
@@ -2906,12 +2790,11 @@ class ContainerEngineClient {
2906
2790
  * @param StartCredentialRotationRequest
2907
2791
  * @return StartCredentialRotationResponse
2908
2792
  * @throws OciError when an error occurs
2909
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/StartCredentialRotation.ts.html |here} to see how to use StartCredentialRotation API.
2793
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/StartCredentialRotation.ts.html |here} to see how to use StartCredentialRotation API.
2910
2794
  */
2911
2795
  startCredentialRotation(startCredentialRotationRequest) {
2912
2796
  return __awaiter(this, void 0, void 0, function* () {
2913
- if (this.logger)
2914
- this.logger.debug("Calling operation ContainerEngineClient#startCredentialRotation.");
2797
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#startCredentialRotation.");
2915
2798
  const operationName = "startCredentialRotation";
2916
2799
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/StartCredentialRotation";
2917
2800
  const pathParams = {
@@ -2926,8 +2809,6 @@ class ContainerEngineClient {
2926
2809
  };
2927
2810
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2928
2811
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, startCredentialRotationRequest.retryConfiguration, specRetryConfiguration);
2929
- if (this.logger)
2930
- retrier.logger = this.logger;
2931
2812
  const request = yield oci_common_2.composeRequest({
2932
2813
  baseEndpoint: this._endpoint,
2933
2814
  defaultHeaders: this._defaultHeaders,
@@ -2968,12 +2849,11 @@ class ContainerEngineClient {
2968
2849
  * @param UpdateAddonRequest
2969
2850
  * @return UpdateAddonResponse
2970
2851
  * @throws OciError when an error occurs
2971
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/UpdateAddon.ts.html |here} to see how to use UpdateAddon API.
2852
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/UpdateAddon.ts.html |here} to see how to use UpdateAddon API.
2972
2853
  */
2973
2854
  updateAddon(updateAddonRequest) {
2974
2855
  return __awaiter(this, void 0, void 0, function* () {
2975
- if (this.logger)
2976
- this.logger.debug("Calling operation ContainerEngineClient#updateAddon.");
2856
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#updateAddon.");
2977
2857
  const operationName = "updateAddon";
2978
2858
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/UpdateAddon";
2979
2859
  const pathParams = {
@@ -2988,8 +2868,6 @@ class ContainerEngineClient {
2988
2868
  };
2989
2869
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2990
2870
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateAddonRequest.retryConfiguration, specRetryConfiguration);
2991
- if (this.logger)
2992
- retrier.logger = this.logger;
2993
2871
  const request = yield oci_common_2.composeRequest({
2994
2872
  baseEndpoint: this._endpoint,
2995
2873
  defaultHeaders: this._defaultHeaders,
@@ -3030,12 +2908,11 @@ class ContainerEngineClient {
3030
2908
  * @param UpdateClusterRequest
3031
2909
  * @return UpdateClusterResponse
3032
2910
  * @throws OciError when an error occurs
3033
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/UpdateCluster.ts.html |here} to see how to use UpdateCluster API.
2911
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/UpdateCluster.ts.html |here} to see how to use UpdateCluster API.
3034
2912
  */
3035
2913
  updateCluster(updateClusterRequest) {
3036
2914
  return __awaiter(this, void 0, void 0, function* () {
3037
- if (this.logger)
3038
- this.logger.debug("Calling operation ContainerEngineClient#updateCluster.");
2915
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#updateCluster.");
3039
2916
  const operationName = "updateCluster";
3040
2917
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/UpdateCluster";
3041
2918
  const pathParams = {
@@ -3049,8 +2926,6 @@ class ContainerEngineClient {
3049
2926
  };
3050
2927
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3051
2928
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateClusterRequest.retryConfiguration, specRetryConfiguration);
3052
- if (this.logger)
3053
- retrier.logger = this.logger;
3054
2929
  const request = yield oci_common_2.composeRequest({
3055
2930
  baseEndpoint: this._endpoint,
3056
2931
  defaultHeaders: this._defaultHeaders,
@@ -3091,12 +2966,11 @@ class ContainerEngineClient {
3091
2966
  * @param UpdateClusterEndpointConfigRequest
3092
2967
  * @return UpdateClusterEndpointConfigResponse
3093
2968
  * @throws OciError when an error occurs
3094
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/UpdateClusterEndpointConfig.ts.html |here} to see how to use UpdateClusterEndpointConfig API.
2969
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/UpdateClusterEndpointConfig.ts.html |here} to see how to use UpdateClusterEndpointConfig API.
3095
2970
  */
3096
2971
  updateClusterEndpointConfig(updateClusterEndpointConfigRequest) {
3097
2972
  return __awaiter(this, void 0, void 0, function* () {
3098
- if (this.logger)
3099
- this.logger.debug("Calling operation ContainerEngineClient#updateClusterEndpointConfig.");
2973
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#updateClusterEndpointConfig.");
3100
2974
  const operationName = "updateClusterEndpointConfig";
3101
2975
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/Cluster/UpdateClusterEndpointConfig";
3102
2976
  const pathParams = {
@@ -3110,8 +2984,6 @@ class ContainerEngineClient {
3110
2984
  };
3111
2985
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3112
2986
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateClusterEndpointConfigRequest.retryConfiguration, specRetryConfiguration);
3113
- if (this.logger)
3114
- retrier.logger = this.logger;
3115
2987
  const request = yield oci_common_2.composeRequest({
3116
2988
  baseEndpoint: this._endpoint,
3117
2989
  defaultHeaders: this._defaultHeaders,
@@ -3152,12 +3024,11 @@ class ContainerEngineClient {
3152
3024
  * @param UpdateNodePoolRequest
3153
3025
  * @return UpdateNodePoolResponse
3154
3026
  * @throws OciError when an error occurs
3155
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/UpdateNodePool.ts.html |here} to see how to use UpdateNodePool API.
3027
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/UpdateNodePool.ts.html |here} to see how to use UpdateNodePool API.
3156
3028
  */
3157
3029
  updateNodePool(updateNodePoolRequest) {
3158
3030
  return __awaiter(this, void 0, void 0, function* () {
3159
- if (this.logger)
3160
- this.logger.debug("Calling operation ContainerEngineClient#updateNodePool.");
3031
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#updateNodePool.");
3161
3032
  const operationName = "updateNodePool";
3162
3033
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/NodePool/UpdateNodePool";
3163
3034
  const pathParams = {
@@ -3174,8 +3045,6 @@ class ContainerEngineClient {
3174
3045
  };
3175
3046
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3176
3047
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateNodePoolRequest.retryConfiguration, specRetryConfiguration);
3177
- if (this.logger)
3178
- retrier.logger = this.logger;
3179
3048
  const request = yield oci_common_2.composeRequest({
3180
3049
  baseEndpoint: this._endpoint,
3181
3050
  defaultHeaders: this._defaultHeaders,
@@ -3216,12 +3085,11 @@ class ContainerEngineClient {
3216
3085
  * @param UpdateVirtualNodePoolRequest
3217
3086
  * @return UpdateVirtualNodePoolResponse
3218
3087
  * @throws OciError when an error occurs
3219
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/UpdateVirtualNodePool.ts.html |here} to see how to use UpdateVirtualNodePool API.
3088
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/UpdateVirtualNodePool.ts.html |here} to see how to use UpdateVirtualNodePool API.
3220
3089
  */
3221
3090
  updateVirtualNodePool(updateVirtualNodePoolRequest) {
3222
3091
  return __awaiter(this, void 0, void 0, function* () {
3223
- if (this.logger)
3224
- this.logger.debug("Calling operation ContainerEngineClient#updateVirtualNodePool.");
3092
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#updateVirtualNodePool.");
3225
3093
  const operationName = "updateVirtualNodePool";
3226
3094
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/VirtualNodePool/UpdateVirtualNodePool";
3227
3095
  const pathParams = {
@@ -3235,8 +3103,6 @@ class ContainerEngineClient {
3235
3103
  };
3236
3104
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3237
3105
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateVirtualNodePoolRequest.retryConfiguration, specRetryConfiguration);
3238
- if (this.logger)
3239
- retrier.logger = this.logger;
3240
3106
  const request = yield oci_common_2.composeRequest({
3241
3107
  baseEndpoint: this._endpoint,
3242
3108
  defaultHeaders: this._defaultHeaders,
@@ -3277,12 +3143,11 @@ class ContainerEngineClient {
3277
3143
  * @param UpdateWorkloadMappingRequest
3278
3144
  * @return UpdateWorkloadMappingResponse
3279
3145
  * @throws OciError when an error occurs
3280
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/containerengine/UpdateWorkloadMapping.ts.html |here} to see how to use UpdateWorkloadMapping API.
3146
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/containerengine/UpdateWorkloadMapping.ts.html |here} to see how to use UpdateWorkloadMapping API.
3281
3147
  */
3282
3148
  updateWorkloadMapping(updateWorkloadMappingRequest) {
3283
3149
  return __awaiter(this, void 0, void 0, function* () {
3284
- if (this.logger)
3285
- this.logger.debug("Calling operation ContainerEngineClient#updateWorkloadMapping.");
3150
+ oci_common_2.logger.debug("Calling operation ContainerEngineClient#updateWorkloadMapping.");
3286
3151
  const operationName = "updateWorkloadMapping";
3287
3152
  const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/containerengine/20180222/WorkloadMapping/UpdateWorkloadMapping";
3288
3153
  const pathParams = {
@@ -3297,8 +3162,6 @@ class ContainerEngineClient {
3297
3162
  };
3298
3163
  const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3299
3164
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateWorkloadMappingRequest.retryConfiguration, specRetryConfiguration);
3300
- if (this.logger)
3301
- retrier.logger = this.logger;
3302
3165
  const request = yield oci_common_2.composeRequest({
3303
3166
  baseEndpoint: this._endpoint,
3304
3167
  defaultHeaders: this._defaultHeaders,