oci-containerengine 2.16.0 → 2.19.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 (30) hide show
  1. package/lib/client.d.ts +42 -42
  2. package/lib/client.js +63 -63
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/cluster-endpoints.d.ts +6 -0
  5. package/lib/model/cluster-endpoints.js.map +1 -1
  6. package/lib/model/create-cluster-kubeconfig-content-details.d.ts +2 -1
  7. package/lib/model/create-cluster-kubeconfig-content-details.js +1 -0
  8. package/lib/model/create-cluster-kubeconfig-content-details.js.map +1 -1
  9. package/lib/request/cluster-migrate-to-native-vcn-request.d.ts +1 -1
  10. package/lib/request/create-cluster-request.d.ts +1 -1
  11. package/lib/request/create-kubeconfig-request.d.ts +1 -1
  12. package/lib/request/create-node-pool-request.d.ts +1 -1
  13. package/lib/request/delete-cluster-request.d.ts +1 -1
  14. package/lib/request/delete-node-pool-request.d.ts +1 -1
  15. package/lib/request/delete-work-request-request.d.ts +1 -1
  16. package/lib/request/get-cluster-migrate-to-native-vcn-status-request.d.ts +1 -1
  17. package/lib/request/get-cluster-options-request.d.ts +1 -1
  18. package/lib/request/get-cluster-request.d.ts +1 -1
  19. package/lib/request/get-node-pool-options-request.d.ts +1 -1
  20. package/lib/request/get-node-pool-request.d.ts +1 -1
  21. package/lib/request/get-work-request-request.d.ts +1 -1
  22. package/lib/request/list-clusters-request.d.ts +1 -1
  23. package/lib/request/list-node-pools-request.d.ts +1 -1
  24. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  25. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  26. package/lib/request/list-work-requests-request.d.ts +1 -1
  27. package/lib/request/update-cluster-endpoint-config-request.d.ts +1 -1
  28. package/lib/request/update-cluster-request.d.ts +1 -1
  29. package/lib/request/update-node-pool-request.d.ts +1 -1
  30. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -150,11 +150,11 @@ class ContainerEngineClient {
150
150
  }
151
151
  /**
152
152
  * Initiates cluster migration to use native VCN.
153
- * This operation does not retry by default if the user has not defined a retry configuration.
153
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
154
154
  * @param ClusterMigrateToNativeVcnRequest
155
155
  * @return ClusterMigrateToNativeVcnResponse
156
156
  * @throws OciError when an error occurs
157
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/ClusterMigrateToNativeVcn.ts.html |here} to see how to use ClusterMigrateToNativeVcn API.
157
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/ClusterMigrateToNativeVcn.ts.html |here} to see how to use ClusterMigrateToNativeVcn API.
158
158
  */
159
159
  clusterMigrateToNativeVcn(clusterMigrateToNativeVcnRequest) {
160
160
  return __awaiter(this, void 0, void 0, function* () {
@@ -169,7 +169,7 @@ class ContainerEngineClient {
169
169
  "if-match": clusterMigrateToNativeVcnRequest.ifMatch,
170
170
  "opc-request-id": clusterMigrateToNativeVcnRequest.opcRequestId
171
171
  };
172
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
172
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
173
173
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, clusterMigrateToNativeVcnRequest.retryConfiguration, specRetryConfiguration);
174
174
  if (this.logger)
175
175
  retrier.logger = this.logger;
@@ -209,11 +209,11 @@ class ContainerEngineClient {
209
209
  }
210
210
  /**
211
211
  * Create a new cluster.
212
- * This operation does not retry by default if the user has not defined a retry configuration.
212
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
213
213
  * @param CreateClusterRequest
214
214
  * @return CreateClusterResponse
215
215
  * @throws OciError when an error occurs
216
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/CreateCluster.ts.html |here} to see how to use CreateCluster API.
216
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/CreateCluster.ts.html |here} to see how to use CreateCluster API.
217
217
  */
218
218
  createCluster(createClusterRequest) {
219
219
  return __awaiter(this, void 0, void 0, function* () {
@@ -226,7 +226,7 @@ class ContainerEngineClient {
226
226
  "opc-retry-token": createClusterRequest.opcRetryToken,
227
227
  "opc-request-id": createClusterRequest.opcRequestId
228
228
  };
229
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
229
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
230
230
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createClusterRequest.retryConfiguration, specRetryConfiguration);
231
231
  if (this.logger)
232
232
  retrier.logger = this.logger;
@@ -266,11 +266,11 @@ class ContainerEngineClient {
266
266
  }
267
267
  /**
268
268
  * Create the Kubeconfig YAML for a cluster.
269
- * This operation does not retry by default if the user has not defined a retry configuration.
269
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
270
270
  * @param CreateKubeconfigRequest
271
271
  * @return CreateKubeconfigResponse
272
272
  * @throws OciError when an error occurs
273
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/CreateKubeconfig.ts.html |here} to see how to use CreateKubeconfig API.
273
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/CreateKubeconfig.ts.html |here} to see how to use CreateKubeconfig API.
274
274
  */
275
275
  createKubeconfig(createKubeconfigRequest) {
276
276
  return __awaiter(this, void 0, void 0, function* () {
@@ -284,7 +284,7 @@ class ContainerEngineClient {
284
284
  "Content-Type": common.Constants.APPLICATION_JSON,
285
285
  "opc-request-id": createKubeconfigRequest.opcRequestId
286
286
  };
287
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
287
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
288
288
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createKubeconfigRequest.retryConfiguration, specRetryConfiguration);
289
289
  if (this.logger)
290
290
  retrier.logger = this.logger;
@@ -322,11 +322,11 @@ class ContainerEngineClient {
322
322
  }
323
323
  /**
324
324
  * Create a new node pool.
325
- * This operation does not retry by default if the user has not defined a retry configuration.
325
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
326
326
  * @param CreateNodePoolRequest
327
327
  * @return CreateNodePoolResponse
328
328
  * @throws OciError when an error occurs
329
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/CreateNodePool.ts.html |here} to see how to use CreateNodePool API.
329
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/CreateNodePool.ts.html |here} to see how to use CreateNodePool API.
330
330
  */
331
331
  createNodePool(createNodePoolRequest) {
332
332
  return __awaiter(this, void 0, void 0, function* () {
@@ -339,7 +339,7 @@ class ContainerEngineClient {
339
339
  "opc-retry-token": createNodePoolRequest.opcRetryToken,
340
340
  "opc-request-id": createNodePoolRequest.opcRequestId
341
341
  };
342
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
342
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
343
343
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createNodePoolRequest.retryConfiguration, specRetryConfiguration);
344
344
  if (this.logger)
345
345
  retrier.logger = this.logger;
@@ -379,11 +379,11 @@ class ContainerEngineClient {
379
379
  }
380
380
  /**
381
381
  * Delete a cluster.
382
- * This operation does not retry by default if the user has not defined a retry configuration.
382
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
383
383
  * @param DeleteClusterRequest
384
384
  * @return DeleteClusterResponse
385
385
  * @throws OciError when an error occurs
386
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/DeleteCluster.ts.html |here} to see how to use DeleteCluster API.
386
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/DeleteCluster.ts.html |here} to see how to use DeleteCluster API.
387
387
  */
388
388
  deleteCluster(deleteClusterRequest) {
389
389
  return __awaiter(this, void 0, void 0, function* () {
@@ -398,7 +398,7 @@ class ContainerEngineClient {
398
398
  "if-match": deleteClusterRequest.ifMatch,
399
399
  "opc-request-id": deleteClusterRequest.opcRequestId
400
400
  };
401
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
401
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
402
402
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteClusterRequest.retryConfiguration, specRetryConfiguration);
403
403
  if (this.logger)
404
404
  retrier.logger = this.logger;
@@ -437,11 +437,11 @@ class ContainerEngineClient {
437
437
  }
438
438
  /**
439
439
  * Delete a node pool.
440
- * This operation does not retry by default if the user has not defined a retry configuration.
440
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
441
441
  * @param DeleteNodePoolRequest
442
442
  * @return DeleteNodePoolResponse
443
443
  * @throws OciError when an error occurs
444
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/DeleteNodePool.ts.html |here} to see how to use DeleteNodePool API.
444
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/DeleteNodePool.ts.html |here} to see how to use DeleteNodePool API.
445
445
  */
446
446
  deleteNodePool(deleteNodePoolRequest) {
447
447
  return __awaiter(this, void 0, void 0, function* () {
@@ -456,7 +456,7 @@ class ContainerEngineClient {
456
456
  "if-match": deleteNodePoolRequest.ifMatch,
457
457
  "opc-request-id": deleteNodePoolRequest.opcRequestId
458
458
  };
459
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
459
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
460
460
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteNodePoolRequest.retryConfiguration, specRetryConfiguration);
461
461
  if (this.logger)
462
462
  retrier.logger = this.logger;
@@ -495,11 +495,11 @@ class ContainerEngineClient {
495
495
  }
496
496
  /**
497
497
  * Cancel a work request that has not started.
498
- * This operation does not retry by default if the user has not defined a retry configuration.
498
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
499
499
  * @param DeleteWorkRequestRequest
500
500
  * @return DeleteWorkRequestResponse
501
501
  * @throws OciError when an error occurs
502
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
502
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
503
503
  */
504
504
  deleteWorkRequest(deleteWorkRequestRequest) {
505
505
  return __awaiter(this, void 0, void 0, function* () {
@@ -514,7 +514,7 @@ class ContainerEngineClient {
514
514
  "if-match": deleteWorkRequestRequest.ifMatch,
515
515
  "opc-request-id": deleteWorkRequestRequest.opcRequestId
516
516
  };
517
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
517
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
518
518
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteWorkRequestRequest.retryConfiguration, specRetryConfiguration);
519
519
  if (this.logger)
520
520
  retrier.logger = this.logger;
@@ -548,11 +548,11 @@ class ContainerEngineClient {
548
548
  }
549
549
  /**
550
550
  * Get the details of a cluster.
551
- * This operation does not retry by default if the user has not defined a retry configuration.
551
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
552
552
  * @param GetClusterRequest
553
553
  * @return GetClusterResponse
554
554
  * @throws OciError when an error occurs
555
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/GetCluster.ts.html |here} to see how to use GetCluster API.
555
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/GetCluster.ts.html |here} to see how to use GetCluster API.
556
556
  */
557
557
  getCluster(getClusterRequest) {
558
558
  return __awaiter(this, void 0, void 0, function* () {
@@ -566,7 +566,7 @@ class ContainerEngineClient {
566
566
  "Content-Type": common.Constants.APPLICATION_JSON,
567
567
  "opc-request-id": getClusterRequest.opcRequestId
568
568
  };
569
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
569
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
570
570
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getClusterRequest.retryConfiguration, specRetryConfiguration);
571
571
  if (this.logger)
572
572
  retrier.logger = this.logger;
@@ -609,11 +609,11 @@ class ContainerEngineClient {
609
609
  }
610
610
  /**
611
611
  * Get details on a cluster's migration to native VCN.
612
- * This operation does not retry by default if the user has not defined a retry configuration.
612
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
613
613
  * @param GetClusterMigrateToNativeVcnStatusRequest
614
614
  * @return GetClusterMigrateToNativeVcnStatusResponse
615
615
  * @throws OciError when an error occurs
616
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/GetClusterMigrateToNativeVcnStatus.ts.html |here} to see how to use GetClusterMigrateToNativeVcnStatus API.
616
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/GetClusterMigrateToNativeVcnStatus.ts.html |here} to see how to use GetClusterMigrateToNativeVcnStatus API.
617
617
  */
618
618
  getClusterMigrateToNativeVcnStatus(getClusterMigrateToNativeVcnStatusRequest) {
619
619
  return __awaiter(this, void 0, void 0, function* () {
@@ -627,7 +627,7 @@ class ContainerEngineClient {
627
627
  "Content-Type": common.Constants.APPLICATION_JSON,
628
628
  "opc-request-id": getClusterMigrateToNativeVcnStatusRequest.opcRequestId
629
629
  };
630
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
630
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
631
631
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getClusterMigrateToNativeVcnStatusRequest.retryConfiguration, specRetryConfiguration);
632
632
  if (this.logger)
633
633
  retrier.logger = this.logger;
@@ -670,11 +670,11 @@ class ContainerEngineClient {
670
670
  }
671
671
  /**
672
672
  * Get options available for clusters.
673
- * This operation does not retry by default if the user has not defined a retry configuration.
673
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
674
674
  * @param GetClusterOptionsRequest
675
675
  * @return GetClusterOptionsResponse
676
676
  * @throws OciError when an error occurs
677
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/GetClusterOptions.ts.html |here} to see how to use GetClusterOptions API.
677
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/GetClusterOptions.ts.html |here} to see how to use GetClusterOptions API.
678
678
  */
679
679
  getClusterOptions(getClusterOptionsRequest) {
680
680
  return __awaiter(this, void 0, void 0, function* () {
@@ -690,7 +690,7 @@ class ContainerEngineClient {
690
690
  "Content-Type": common.Constants.APPLICATION_JSON,
691
691
  "opc-request-id": getClusterOptionsRequest.opcRequestId
692
692
  };
693
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
693
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
694
694
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getClusterOptionsRequest.retryConfiguration, specRetryConfiguration);
695
695
  if (this.logger)
696
696
  retrier.logger = this.logger;
@@ -728,11 +728,11 @@ class ContainerEngineClient {
728
728
  }
729
729
  /**
730
730
  * Get the details of a node pool.
731
- * This operation does not retry by default if the user has not defined a retry configuration.
731
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
732
732
  * @param GetNodePoolRequest
733
733
  * @return GetNodePoolResponse
734
734
  * @throws OciError when an error occurs
735
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/GetNodePool.ts.html |here} to see how to use GetNodePool API.
735
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/GetNodePool.ts.html |here} to see how to use GetNodePool API.
736
736
  */
737
737
  getNodePool(getNodePoolRequest) {
738
738
  return __awaiter(this, void 0, void 0, function* () {
@@ -746,7 +746,7 @@ class ContainerEngineClient {
746
746
  "Content-Type": common.Constants.APPLICATION_JSON,
747
747
  "opc-request-id": getNodePoolRequest.opcRequestId
748
748
  };
749
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
749
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
750
750
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getNodePoolRequest.retryConfiguration, specRetryConfiguration);
751
751
  if (this.logger)
752
752
  retrier.logger = this.logger;
@@ -789,11 +789,11 @@ class ContainerEngineClient {
789
789
  }
790
790
  /**
791
791
  * Get options available for node pools.
792
- * This operation does not retry by default if the user has not defined a retry configuration.
792
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
793
793
  * @param GetNodePoolOptionsRequest
794
794
  * @return GetNodePoolOptionsResponse
795
795
  * @throws OciError when an error occurs
796
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/GetNodePoolOptions.ts.html |here} to see how to use GetNodePoolOptions API.
796
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/GetNodePoolOptions.ts.html |here} to see how to use GetNodePoolOptions API.
797
797
  */
798
798
  getNodePoolOptions(getNodePoolOptionsRequest) {
799
799
  return __awaiter(this, void 0, void 0, function* () {
@@ -809,7 +809,7 @@ class ContainerEngineClient {
809
809
  "Content-Type": common.Constants.APPLICATION_JSON,
810
810
  "opc-request-id": getNodePoolOptionsRequest.opcRequestId
811
811
  };
812
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
812
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
813
813
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getNodePoolOptionsRequest.retryConfiguration, specRetryConfiguration);
814
814
  if (this.logger)
815
815
  retrier.logger = this.logger;
@@ -847,11 +847,11 @@ class ContainerEngineClient {
847
847
  }
848
848
  /**
849
849
  * Get the details of a work request.
850
- * This operation does not retry by default if the user has not defined a retry configuration.
850
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
851
851
  * @param GetWorkRequestRequest
852
852
  * @return GetWorkRequestResponse
853
853
  * @throws OciError when an error occurs
854
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
854
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
855
855
  */
856
856
  getWorkRequest(getWorkRequestRequest) {
857
857
  return __awaiter(this, void 0, void 0, function* () {
@@ -865,7 +865,7 @@ class ContainerEngineClient {
865
865
  "Content-Type": common.Constants.APPLICATION_JSON,
866
866
  "opc-request-id": getWorkRequestRequest.opcRequestId
867
867
  };
868
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
868
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
869
869
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
870
870
  if (this.logger)
871
871
  retrier.logger = this.logger;
@@ -913,11 +913,11 @@ class ContainerEngineClient {
913
913
  }
914
914
  /**
915
915
  * List all the cluster objects in a compartment.
916
- * This operation does not retry by default if the user has not defined a retry configuration.
916
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
917
917
  * @param ListClustersRequest
918
918
  * @return ListClustersResponse
919
919
  * @throws OciError when an error occurs
920
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/ListClusters.ts.html |here} to see how to use ListClusters API.
920
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/ListClusters.ts.html |here} to see how to use ListClusters API.
921
921
  */
922
922
  listClusters(listClustersRequest) {
923
923
  return __awaiter(this, void 0, void 0, function* () {
@@ -937,7 +937,7 @@ class ContainerEngineClient {
937
937
  "Content-Type": common.Constants.APPLICATION_JSON,
938
938
  "opc-request-id": listClustersRequest.opcRequestId
939
939
  };
940
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
940
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
941
941
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listClustersRequest.retryConfiguration, specRetryConfiguration);
942
942
  if (this.logger)
943
943
  retrier.logger = this.logger;
@@ -1020,11 +1020,11 @@ class ContainerEngineClient {
1020
1020
  }
1021
1021
  /**
1022
1022
  * List all the node pools in a compartment, and optionally filter by cluster.
1023
- * This operation does not retry by default if the user has not defined a retry configuration.
1023
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1024
1024
  * @param ListNodePoolsRequest
1025
1025
  * @return ListNodePoolsResponse
1026
1026
  * @throws OciError when an error occurs
1027
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/ListNodePools.ts.html |here} to see how to use ListNodePools API.
1027
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/ListNodePools.ts.html |here} to see how to use ListNodePools API.
1028
1028
  */
1029
1029
  listNodePools(listNodePoolsRequest) {
1030
1030
  return __awaiter(this, void 0, void 0, function* () {
@@ -1044,7 +1044,7 @@ class ContainerEngineClient {
1044
1044
  "Content-Type": common.Constants.APPLICATION_JSON,
1045
1045
  "opc-request-id": listNodePoolsRequest.opcRequestId
1046
1046
  };
1047
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1047
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1048
1048
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listNodePoolsRequest.retryConfiguration, specRetryConfiguration);
1049
1049
  if (this.logger)
1050
1050
  retrier.logger = this.logger;
@@ -1127,11 +1127,11 @@ class ContainerEngineClient {
1127
1127
  }
1128
1128
  /**
1129
1129
  * Get the errors of a work request.
1130
- * This operation does not retry by default if the user has not defined a retry configuration.
1130
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1131
1131
  * @param ListWorkRequestErrorsRequest
1132
1132
  * @return ListWorkRequestErrorsResponse
1133
1133
  * @throws OciError when an error occurs
1134
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1134
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1135
1135
  */
1136
1136
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
1137
1137
  return __awaiter(this, void 0, void 0, function* () {
@@ -1147,7 +1147,7 @@ class ContainerEngineClient {
1147
1147
  "Content-Type": common.Constants.APPLICATION_JSON,
1148
1148
  "opc-request-id": listWorkRequestErrorsRequest.opcRequestId
1149
1149
  };
1150
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1150
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1151
1151
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestErrorsRequest.retryConfiguration, specRetryConfiguration);
1152
1152
  if (this.logger)
1153
1153
  retrier.logger = this.logger;
@@ -1185,11 +1185,11 @@ class ContainerEngineClient {
1185
1185
  }
1186
1186
  /**
1187
1187
  * Get the logs of a work request.
1188
- * This operation does not retry by default if the user has not defined a retry configuration.
1188
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1189
1189
  * @param ListWorkRequestLogsRequest
1190
1190
  * @return ListWorkRequestLogsResponse
1191
1191
  * @throws OciError when an error occurs
1192
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1192
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1193
1193
  */
1194
1194
  listWorkRequestLogs(listWorkRequestLogsRequest) {
1195
1195
  return __awaiter(this, void 0, void 0, function* () {
@@ -1205,7 +1205,7 @@ class ContainerEngineClient {
1205
1205
  "Content-Type": common.Constants.APPLICATION_JSON,
1206
1206
  "opc-request-id": listWorkRequestLogsRequest.opcRequestId
1207
1207
  };
1208
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1208
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1209
1209
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestLogsRequest.retryConfiguration, specRetryConfiguration);
1210
1210
  if (this.logger)
1211
1211
  retrier.logger = this.logger;
@@ -1243,11 +1243,11 @@ class ContainerEngineClient {
1243
1243
  }
1244
1244
  /**
1245
1245
  * List all work requests in a compartment.
1246
- * This operation does not retry by default if the user has not defined a retry configuration.
1246
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1247
1247
  * @param ListWorkRequestsRequest
1248
1248
  * @return ListWorkRequestsResponse
1249
1249
  * @throws OciError when an error occurs
1250
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1250
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1251
1251
  */
1252
1252
  listWorkRequests(listWorkRequestsRequest) {
1253
1253
  return __awaiter(this, void 0, void 0, function* () {
@@ -1269,7 +1269,7 @@ class ContainerEngineClient {
1269
1269
  "Content-Type": common.Constants.APPLICATION_JSON,
1270
1270
  "opc-request-id": listWorkRequestsRequest.opcRequestId
1271
1271
  };
1272
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1272
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1273
1273
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
1274
1274
  if (this.logger)
1275
1275
  retrier.logger = this.logger;
@@ -1352,11 +1352,11 @@ class ContainerEngineClient {
1352
1352
  }
1353
1353
  /**
1354
1354
  * Update the details of a cluster.
1355
- * This operation does not retry by default if the user has not defined a retry configuration.
1355
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1356
1356
  * @param UpdateClusterRequest
1357
1357
  * @return UpdateClusterResponse
1358
1358
  * @throws OciError when an error occurs
1359
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/UpdateCluster.ts.html |here} to see how to use UpdateCluster API.
1359
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/UpdateCluster.ts.html |here} to see how to use UpdateCluster API.
1360
1360
  */
1361
1361
  updateCluster(updateClusterRequest) {
1362
1362
  return __awaiter(this, void 0, void 0, function* () {
@@ -1371,7 +1371,7 @@ class ContainerEngineClient {
1371
1371
  "if-match": updateClusterRequest.ifMatch,
1372
1372
  "opc-request-id": updateClusterRequest.opcRequestId
1373
1373
  };
1374
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1374
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1375
1375
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateClusterRequest.retryConfiguration, specRetryConfiguration);
1376
1376
  if (this.logger)
1377
1377
  retrier.logger = this.logger;
@@ -1411,11 +1411,11 @@ class ContainerEngineClient {
1411
1411
  }
1412
1412
  /**
1413
1413
  * Update the details of the cluster endpoint configuration.
1414
- * This operation does not retry by default if the user has not defined a retry configuration.
1414
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1415
1415
  * @param UpdateClusterEndpointConfigRequest
1416
1416
  * @return UpdateClusterEndpointConfigResponse
1417
1417
  * @throws OciError when an error occurs
1418
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/UpdateClusterEndpointConfig.ts.html |here} to see how to use UpdateClusterEndpointConfig API.
1418
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/UpdateClusterEndpointConfig.ts.html |here} to see how to use UpdateClusterEndpointConfig API.
1419
1419
  */
1420
1420
  updateClusterEndpointConfig(updateClusterEndpointConfigRequest) {
1421
1421
  return __awaiter(this, void 0, void 0, function* () {
@@ -1430,7 +1430,7 @@ class ContainerEngineClient {
1430
1430
  "if-match": updateClusterEndpointConfigRequest.ifMatch,
1431
1431
  "opc-request-id": updateClusterEndpointConfigRequest.opcRequestId
1432
1432
  };
1433
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1433
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1434
1434
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateClusterEndpointConfigRequest.retryConfiguration, specRetryConfiguration);
1435
1435
  if (this.logger)
1436
1436
  retrier.logger = this.logger;
@@ -1470,11 +1470,11 @@ class ContainerEngineClient {
1470
1470
  }
1471
1471
  /**
1472
1472
  * Update the details of a node pool.
1473
- * This operation does not retry by default if the user has not defined a retry configuration.
1473
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1474
1474
  * @param UpdateNodePoolRequest
1475
1475
  * @return UpdateNodePoolResponse
1476
1476
  * @throws OciError when an error occurs
1477
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/UpdateNodePool.ts.html |here} to see how to use UpdateNodePool API.
1477
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/UpdateNodePool.ts.html |here} to see how to use UpdateNodePool API.
1478
1478
  */
1479
1479
  updateNodePool(updateNodePoolRequest) {
1480
1480
  return __awaiter(this, void 0, void 0, function* () {
@@ -1489,7 +1489,7 @@ class ContainerEngineClient {
1489
1489
  "if-match": updateNodePoolRequest.ifMatch,
1490
1490
  "opc-request-id": updateNodePoolRequest.opcRequestId
1491
1491
  };
1492
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1492
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1493
1493
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateNodePoolRequest.retryConfiguration, specRetryConfiguration);
1494
1494
  if (this.logger)
1495
1495
  retrier.logger = this.logger;