oci-datascience 2.21.0 → 2.25.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 (65) hide show
  1. package/lib/client.d.ts +107 -106
  2. package/lib/client.js +157 -152
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/activate-model-deployment-request.d.ts +1 -1
  5. package/lib/request/activate-model-request.d.ts +1 -1
  6. package/lib/request/activate-notebook-session-request.d.ts +1 -1
  7. package/lib/request/cancel-job-run-request.d.ts +1 -1
  8. package/lib/request/cancel-work-request-request.d.ts +1 -1
  9. package/lib/request/change-job-compartment-request.d.ts +1 -1
  10. package/lib/request/change-job-run-compartment-request.d.ts +1 -1
  11. package/lib/request/change-model-compartment-request.d.ts +1 -1
  12. package/lib/request/change-model-deployment-compartment-request.d.ts +1 -1
  13. package/lib/request/change-notebook-session-compartment-request.d.ts +1 -1
  14. package/lib/request/change-project-compartment-request.d.ts +1 -1
  15. package/lib/request/create-job-artifact-request.d.ts +3 -8
  16. package/lib/request/create-job-request.d.ts +1 -1
  17. package/lib/request/create-job-run-request.d.ts +1 -1
  18. package/lib/request/create-model-artifact-request.d.ts +1 -1
  19. package/lib/request/create-model-deployment-request.d.ts +1 -1
  20. package/lib/request/create-model-provenance-request.d.ts +1 -1
  21. package/lib/request/create-model-request.d.ts +1 -1
  22. package/lib/request/create-notebook-session-request.d.ts +1 -1
  23. package/lib/request/create-project-request.d.ts +1 -1
  24. package/lib/request/deactivate-model-deployment-request.d.ts +1 -1
  25. package/lib/request/deactivate-model-request.d.ts +1 -1
  26. package/lib/request/deactivate-notebook-session-request.d.ts +1 -1
  27. package/lib/request/delete-job-request.d.ts +1 -1
  28. package/lib/request/delete-job-run-request.d.ts +1 -1
  29. package/lib/request/delete-model-deployment-request.d.ts +1 -1
  30. package/lib/request/delete-model-request.d.ts +1 -1
  31. package/lib/request/delete-notebook-session-request.d.ts +1 -1
  32. package/lib/request/delete-project-request.d.ts +1 -1
  33. package/lib/request/get-job-artifact-content-request.d.ts +1 -1
  34. package/lib/request/get-job-request.d.ts +1 -1
  35. package/lib/request/get-job-run-request.d.ts +1 -1
  36. package/lib/request/get-model-artifact-content-request.d.ts +1 -1
  37. package/lib/request/get-model-deployment-request.d.ts +1 -1
  38. package/lib/request/get-model-provenance-request.d.ts +1 -1
  39. package/lib/request/get-model-request.d.ts +1 -1
  40. package/lib/request/get-notebook-session-request.d.ts +1 -1
  41. package/lib/request/get-project-request.d.ts +1 -1
  42. package/lib/request/get-work-request-request.d.ts +1 -1
  43. package/lib/request/head-job-artifact-request.d.ts +1 -1
  44. package/lib/request/head-model-artifact-request.d.ts +1 -1
  45. package/lib/request/list-fast-launch-job-configs-request.d.ts +1 -1
  46. package/lib/request/list-job-runs-request.d.ts +1 -1
  47. package/lib/request/list-job-shapes-request.d.ts +1 -1
  48. package/lib/request/list-jobs-request.d.ts +1 -1
  49. package/lib/request/list-model-deployment-shapes-request.d.ts +1 -1
  50. package/lib/request/list-model-deployments-request.d.ts +1 -1
  51. package/lib/request/list-models-request.d.ts +1 -1
  52. package/lib/request/list-notebook-session-shapes-request.d.ts +1 -1
  53. package/lib/request/list-notebook-sessions-request.d.ts +1 -1
  54. package/lib/request/list-projects-request.d.ts +1 -1
  55. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  56. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  57. package/lib/request/list-work-requests-request.d.ts +1 -1
  58. package/lib/request/update-job-request.d.ts +1 -1
  59. package/lib/request/update-job-run-request.d.ts +1 -1
  60. package/lib/request/update-model-deployment-request.d.ts +1 -1
  61. package/lib/request/update-model-provenance-request.d.ts +1 -1
  62. package/lib/request/update-model-request.d.ts +1 -1
  63. package/lib/request/update-notebook-session-request.d.ts +1 -1
  64. package/lib/request/update-project-request.d.ts +1 -1
  65. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -61,6 +61,7 @@ class DataScienceClient {
61
61
  this["_endpoint"] = "";
62
62
  this["_defaultHeaders"] = {};
63
63
  this._circuitBreaker = null;
64
+ this._httpOptions = undefined;
64
65
  const requestSigner = params.authenticationDetailsProvider
65
66
  ? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
66
67
  : null;
@@ -69,6 +70,9 @@ class DataScienceClient {
69
70
  this._circuitBreaker = clientConfiguration.circuitBreaker
70
71
  ? clientConfiguration.circuitBreaker.circuit
71
72
  : null;
73
+ this._httpOptions = clientConfiguration.httpOptions
74
+ ? clientConfiguration.httpOptions
75
+ : undefined;
72
76
  }
73
77
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
74
78
  const specCircuitBreakerEnabled = true;
@@ -78,7 +82,8 @@ class DataScienceClient {
78
82
  this._circuitBreaker = new common.CircuitBreaker().circuit;
79
83
  }
80
84
  this._httpClient =
81
- params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
85
+ params.httpClient ||
86
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
82
87
  if (params.authenticationDetailsProvider &&
83
88
  common.isRegionProvider(params.authenticationDetailsProvider)) {
84
89
  const provider = params.authenticationDetailsProvider;
@@ -148,11 +153,11 @@ class DataScienceClient {
148
153
  }
149
154
  /**
150
155
  * Activates the model.
151
- * This operation does not retry by default if the user has not defined a retry configuration.
156
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
152
157
  * @param ActivateModelRequest
153
158
  * @return ActivateModelResponse
154
159
  * @throws OciError when an error occurs
155
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ActivateModel.ts.html |here} to see how to use ActivateModel API.
160
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ActivateModel.ts.html |here} to see how to use ActivateModel API.
156
161
  */
157
162
  activateModel(activateModelRequest) {
158
163
  return __awaiter(this, void 0, void 0, function* () {
@@ -167,7 +172,7 @@ class DataScienceClient {
167
172
  "if-match": activateModelRequest.ifMatch,
168
173
  "opc-request-id": activateModelRequest.opcRequestId
169
174
  };
170
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
175
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
171
176
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, activateModelRequest.retryConfiguration, specRetryConfiguration);
172
177
  if (this.logger)
173
178
  retrier.logger = this.logger;
@@ -214,7 +219,7 @@ class DataScienceClient {
214
219
  * @param ActivateModelDeploymentRequest
215
220
  * @return ActivateModelDeploymentResponse
216
221
  * @throws OciError when an error occurs
217
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ActivateModelDeployment.ts.html |here} to see how to use ActivateModelDeployment API.
222
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ActivateModelDeployment.ts.html |here} to see how to use ActivateModelDeployment API.
218
223
  */
219
224
  activateModelDeployment(activateModelDeploymentRequest) {
220
225
  return __awaiter(this, void 0, void 0, function* () {
@@ -272,7 +277,7 @@ class DataScienceClient {
272
277
  * @param ActivateNotebookSessionRequest
273
278
  * @return ActivateNotebookSessionResponse
274
279
  * @throws OciError when an error occurs
275
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ActivateNotebookSession.ts.html |here} to see how to use ActivateNotebookSession API.
280
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ActivateNotebookSession.ts.html |here} to see how to use ActivateNotebookSession API.
276
281
  */
277
282
  activateNotebookSession(activateNotebookSessionRequest) {
278
283
  return __awaiter(this, void 0, void 0, function* () {
@@ -326,11 +331,11 @@ class DataScienceClient {
326
331
  }
327
332
  /**
328
333
  * Cancels an IN_PROGRESS job run.
329
- * This operation does not retry by default if the user has not defined a retry configuration.
334
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
330
335
  * @param CancelJobRunRequest
331
336
  * @return CancelJobRunResponse
332
337
  * @throws OciError when an error occurs
333
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/CancelJobRun.ts.html |here} to see how to use CancelJobRun API.
338
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/CancelJobRun.ts.html |here} to see how to use CancelJobRun API.
334
339
  */
335
340
  cancelJobRun(cancelJobRunRequest) {
336
341
  return __awaiter(this, void 0, void 0, function* () {
@@ -345,7 +350,7 @@ class DataScienceClient {
345
350
  "opc-request-id": cancelJobRunRequest.opcRequestId,
346
351
  "if-match": cancelJobRunRequest.ifMatch
347
352
  };
348
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
353
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
349
354
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, cancelJobRunRequest.retryConfiguration, specRetryConfiguration);
350
355
  if (this.logger)
351
356
  retrier.logger = this.logger;
@@ -383,7 +388,7 @@ class DataScienceClient {
383
388
  * @param CancelWorkRequestRequest
384
389
  * @return CancelWorkRequestResponse
385
390
  * @throws OciError when an error occurs
386
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
391
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
387
392
  */
388
393
  cancelWorkRequest(cancelWorkRequestRequest) {
389
394
  return __awaiter(this, void 0, void 0, function* () {
@@ -436,7 +441,7 @@ class DataScienceClient {
436
441
  * @param ChangeJobCompartmentRequest
437
442
  * @return ChangeJobCompartmentResponse
438
443
  * @throws OciError when an error occurs
439
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ChangeJobCompartment.ts.html |here} to see how to use ChangeJobCompartment API.
444
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ChangeJobCompartment.ts.html |here} to see how to use ChangeJobCompartment API.
440
445
  */
441
446
  changeJobCompartment(changeJobCompartmentRequest) {
442
447
  return __awaiter(this, void 0, void 0, function* () {
@@ -490,7 +495,7 @@ class DataScienceClient {
490
495
  * @param ChangeJobRunCompartmentRequest
491
496
  * @return ChangeJobRunCompartmentResponse
492
497
  * @throws OciError when an error occurs
493
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ChangeJobRunCompartment.ts.html |here} to see how to use ChangeJobRunCompartment API.
498
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ChangeJobRunCompartment.ts.html |here} to see how to use ChangeJobRunCompartment API.
494
499
  */
495
500
  changeJobRunCompartment(changeJobRunCompartmentRequest) {
496
501
  return __awaiter(this, void 0, void 0, function* () {
@@ -544,7 +549,7 @@ class DataScienceClient {
544
549
  * @param ChangeModelCompartmentRequest
545
550
  * @return ChangeModelCompartmentResponse
546
551
  * @throws OciError when an error occurs
547
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ChangeModelCompartment.ts.html |here} to see how to use ChangeModelCompartment API.
552
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ChangeModelCompartment.ts.html |here} to see how to use ChangeModelCompartment API.
548
553
  */
549
554
  changeModelCompartment(changeModelCompartmentRequest) {
550
555
  return __awaiter(this, void 0, void 0, function* () {
@@ -599,7 +604,7 @@ class DataScienceClient {
599
604
  * @param ChangeModelDeploymentCompartmentRequest
600
605
  * @return ChangeModelDeploymentCompartmentResponse
601
606
  * @throws OciError when an error occurs
602
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ChangeModelDeploymentCompartment.ts.html |here} to see how to use ChangeModelDeploymentCompartment API.
607
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ChangeModelDeploymentCompartment.ts.html |here} to see how to use ChangeModelDeploymentCompartment API.
603
608
  */
604
609
  changeModelDeploymentCompartment(changeModelDeploymentCompartmentRequest) {
605
610
  return __awaiter(this, void 0, void 0, function* () {
@@ -654,7 +659,7 @@ class DataScienceClient {
654
659
  * @param ChangeNotebookSessionCompartmentRequest
655
660
  * @return ChangeNotebookSessionCompartmentResponse
656
661
  * @throws OciError when an error occurs
657
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ChangeNotebookSessionCompartment.ts.html |here} to see how to use ChangeNotebookSessionCompartment API.
662
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ChangeNotebookSessionCompartment.ts.html |here} to see how to use ChangeNotebookSessionCompartment API.
658
663
  */
659
664
  changeNotebookSessionCompartment(changeNotebookSessionCompartmentRequest) {
660
665
  return __awaiter(this, void 0, void 0, function* () {
@@ -709,7 +714,7 @@ class DataScienceClient {
709
714
  * @param ChangeProjectCompartmentRequest
710
715
  * @return ChangeProjectCompartmentResponse
711
716
  * @throws OciError when an error occurs
712
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ChangeProjectCompartment.ts.html |here} to see how to use ChangeProjectCompartment API.
717
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ChangeProjectCompartment.ts.html |here} to see how to use ChangeProjectCompartment API.
713
718
  */
714
719
  changeProjectCompartment(changeProjectCompartmentRequest) {
715
720
  return __awaiter(this, void 0, void 0, function* () {
@@ -760,11 +765,11 @@ class DataScienceClient {
760
765
  }
761
766
  /**
762
767
  * Creates a job.
763
- * This operation does not retry by default if the user has not defined a retry configuration.
768
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
764
769
  * @param CreateJobRequest
765
770
  * @return CreateJobResponse
766
771
  * @throws OciError when an error occurs
767
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/CreateJob.ts.html |here} to see how to use CreateJob API.
772
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/CreateJob.ts.html |here} to see how to use CreateJob API.
768
773
  */
769
774
  createJob(createJobRequest) {
770
775
  return __awaiter(this, void 0, void 0, function* () {
@@ -777,7 +782,7 @@ class DataScienceClient {
777
782
  "opc-request-id": createJobRequest.opcRequestId,
778
783
  "opc-retry-token": createJobRequest.opcRetryToken
779
784
  };
780
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
785
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
781
786
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createJobRequest.retryConfiguration, specRetryConfiguration);
782
787
  if (this.logger)
783
788
  retrier.logger = this.logger;
@@ -825,7 +830,7 @@ class DataScienceClient {
825
830
  * @param CreateJobArtifactRequest
826
831
  * @return CreateJobArtifactResponse
827
832
  * @throws OciError when an error occurs
828
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/CreateJobArtifact.ts.html |here} to see how to use CreateJobArtifact API.
833
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/CreateJobArtifact.ts.html |here} to see how to use CreateJobArtifact API.
829
834
  */
830
835
  createJobArtifact(createJobArtifactRequest) {
831
836
  return __awaiter(this, void 0, void 0, function* () {
@@ -882,11 +887,11 @@ class DataScienceClient {
882
887
  }
883
888
  /**
884
889
  * Creates a job run.
885
- * This operation does not retry by default if the user has not defined a retry configuration.
890
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
886
891
  * @param CreateJobRunRequest
887
892
  * @return CreateJobRunResponse
888
893
  * @throws OciError when an error occurs
889
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/CreateJobRun.ts.html |here} to see how to use CreateJobRun API.
894
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/CreateJobRun.ts.html |here} to see how to use CreateJobRun API.
890
895
  */
891
896
  createJobRun(createJobRunRequest) {
892
897
  return __awaiter(this, void 0, void 0, function* () {
@@ -899,7 +904,7 @@ class DataScienceClient {
899
904
  "opc-request-id": createJobRunRequest.opcRequestId,
900
905
  "opc-retry-token": createJobRunRequest.opcRetryToken
901
906
  };
902
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
907
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
903
908
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createJobRunRequest.retryConfiguration, specRetryConfiguration);
904
909
  if (this.logger)
905
910
  retrier.logger = this.logger;
@@ -943,11 +948,11 @@ class DataScienceClient {
943
948
  }
944
949
  /**
945
950
  * Creates a new model.
946
- * This operation does not retry by default if the user has not defined a retry configuration.
951
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
947
952
  * @param CreateModelRequest
948
953
  * @return CreateModelResponse
949
954
  * @throws OciError when an error occurs
950
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/CreateModel.ts.html |here} to see how to use CreateModel API.
955
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/CreateModel.ts.html |here} to see how to use CreateModel API.
951
956
  */
952
957
  createModel(createModelRequest) {
953
958
  return __awaiter(this, void 0, void 0, function* () {
@@ -960,7 +965,7 @@ class DataScienceClient {
960
965
  "opc-request-id": createModelRequest.opcRequestId,
961
966
  "opc-retry-token": createModelRequest.opcRetryToken
962
967
  };
963
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
968
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
964
969
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createModelRequest.retryConfiguration, specRetryConfiguration);
965
970
  if (this.logger)
966
971
  retrier.logger = this.logger;
@@ -1004,11 +1009,11 @@ class DataScienceClient {
1004
1009
  }
1005
1010
  /**
1006
1011
  * Creates model artifact for specified model.
1007
- * This operation does not retry by default if the user has not defined a retry configuration.
1012
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1008
1013
  * @param CreateModelArtifactRequest
1009
1014
  * @return CreateModelArtifactResponse
1010
1015
  * @throws OciError when an error occurs
1011
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/CreateModelArtifact.ts.html |here} to see how to use CreateModelArtifact API.
1016
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/CreateModelArtifact.ts.html |here} to see how to use CreateModelArtifact API.
1012
1017
  */
1013
1018
  createModelArtifact(createModelArtifactRequest) {
1014
1019
  return __awaiter(this, void 0, void 0, function* () {
@@ -1024,7 +1029,7 @@ class DataScienceClient {
1024
1029
  "content-length": createModelArtifactRequest.contentLength,
1025
1030
  "content-disposition": createModelArtifactRequest.contentDisposition
1026
1031
  };
1027
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1032
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1028
1033
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createModelArtifactRequest.retryConfiguration, specRetryConfiguration);
1029
1034
  if (this.logger)
1030
1035
  retrier.logger = this.logger;
@@ -1065,11 +1070,11 @@ class DataScienceClient {
1065
1070
  }
1066
1071
  /**
1067
1072
  * Creates a new model deployment.
1068
- * This operation does not retry by default if the user has not defined a retry configuration.
1073
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1069
1074
  * @param CreateModelDeploymentRequest
1070
1075
  * @return CreateModelDeploymentResponse
1071
1076
  * @throws OciError when an error occurs
1072
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/CreateModelDeployment.ts.html |here} to see how to use CreateModelDeployment API.
1077
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/CreateModelDeployment.ts.html |here} to see how to use CreateModelDeployment API.
1073
1078
  */
1074
1079
  createModelDeployment(createModelDeploymentRequest) {
1075
1080
  return __awaiter(this, void 0, void 0, function* () {
@@ -1082,7 +1087,7 @@ class DataScienceClient {
1082
1087
  "opc-request-id": createModelDeploymentRequest.opcRequestId,
1083
1088
  "opc-retry-token": createModelDeploymentRequest.opcRetryToken
1084
1089
  };
1085
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1090
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1086
1091
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createModelDeploymentRequest.retryConfiguration, specRetryConfiguration);
1087
1092
  if (this.logger)
1088
1093
  retrier.logger = this.logger;
@@ -1136,11 +1141,11 @@ class DataScienceClient {
1136
1141
  }
1137
1142
  /**
1138
1143
  * Creates provenance information for the specified model.
1139
- * This operation does not retry by default if the user has not defined a retry configuration.
1144
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1140
1145
  * @param CreateModelProvenanceRequest
1141
1146
  * @return CreateModelProvenanceResponse
1142
1147
  * @throws OciError when an error occurs
1143
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/CreateModelProvenance.ts.html |here} to see how to use CreateModelProvenance API.
1148
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/CreateModelProvenance.ts.html |here} to see how to use CreateModelProvenance API.
1144
1149
  */
1145
1150
  createModelProvenance(createModelProvenanceRequest) {
1146
1151
  return __awaiter(this, void 0, void 0, function* () {
@@ -1155,7 +1160,7 @@ class DataScienceClient {
1155
1160
  "opc-request-id": createModelProvenanceRequest.opcRequestId,
1156
1161
  "opc-retry-token": createModelProvenanceRequest.opcRetryToken
1157
1162
  };
1158
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1163
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1159
1164
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createModelProvenanceRequest.retryConfiguration, specRetryConfiguration);
1160
1165
  if (this.logger)
1161
1166
  retrier.logger = this.logger;
@@ -1199,11 +1204,11 @@ class DataScienceClient {
1199
1204
  }
1200
1205
  /**
1201
1206
  * Creates a new notebook session.
1202
- * This operation does not retry by default if the user has not defined a retry configuration.
1207
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1203
1208
  * @param CreateNotebookSessionRequest
1204
1209
  * @return CreateNotebookSessionResponse
1205
1210
  * @throws OciError when an error occurs
1206
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/CreateNotebookSession.ts.html |here} to see how to use CreateNotebookSession API.
1211
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/CreateNotebookSession.ts.html |here} to see how to use CreateNotebookSession API.
1207
1212
  */
1208
1213
  createNotebookSession(createNotebookSessionRequest) {
1209
1214
  return __awaiter(this, void 0, void 0, function* () {
@@ -1216,7 +1221,7 @@ class DataScienceClient {
1216
1221
  "opc-request-id": createNotebookSessionRequest.opcRequestId,
1217
1222
  "opc-retry-token": createNotebookSessionRequest.opcRetryToken
1218
1223
  };
1219
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1224
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1220
1225
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createNotebookSessionRequest.retryConfiguration, specRetryConfiguration);
1221
1226
  if (this.logger)
1222
1227
  retrier.logger = this.logger;
@@ -1270,11 +1275,11 @@ class DataScienceClient {
1270
1275
  }
1271
1276
  /**
1272
1277
  * Creates a new project.
1273
- * This operation does not retry by default if the user has not defined a retry configuration.
1278
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1274
1279
  * @param CreateProjectRequest
1275
1280
  * @return CreateProjectResponse
1276
1281
  * @throws OciError when an error occurs
1277
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/CreateProject.ts.html |here} to see how to use CreateProject API.
1282
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/CreateProject.ts.html |here} to see how to use CreateProject API.
1278
1283
  */
1279
1284
  createProject(createProjectRequest) {
1280
1285
  return __awaiter(this, void 0, void 0, function* () {
@@ -1287,7 +1292,7 @@ class DataScienceClient {
1287
1292
  "opc-request-id": createProjectRequest.opcRequestId,
1288
1293
  "opc-retry-token": createProjectRequest.opcRetryToken
1289
1294
  };
1290
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1295
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1291
1296
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createProjectRequest.retryConfiguration, specRetryConfiguration);
1292
1297
  if (this.logger)
1293
1298
  retrier.logger = this.logger;
@@ -1331,11 +1336,11 @@ class DataScienceClient {
1331
1336
  }
1332
1337
  /**
1333
1338
  * Deactivates the model.
1334
- * This operation does not retry by default if the user has not defined a retry configuration.
1339
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1335
1340
  * @param DeactivateModelRequest
1336
1341
  * @return DeactivateModelResponse
1337
1342
  * @throws OciError when an error occurs
1338
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/DeactivateModel.ts.html |here} to see how to use DeactivateModel API.
1343
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/DeactivateModel.ts.html |here} to see how to use DeactivateModel API.
1339
1344
  */
1340
1345
  deactivateModel(deactivateModelRequest) {
1341
1346
  return __awaiter(this, void 0, void 0, function* () {
@@ -1350,7 +1355,7 @@ class DataScienceClient {
1350
1355
  "if-match": deactivateModelRequest.ifMatch,
1351
1356
  "opc-request-id": deactivateModelRequest.opcRequestId
1352
1357
  };
1353
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1358
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1354
1359
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deactivateModelRequest.retryConfiguration, specRetryConfiguration);
1355
1360
  if (this.logger)
1356
1361
  retrier.logger = this.logger;
@@ -1397,7 +1402,7 @@ class DataScienceClient {
1397
1402
  * @param DeactivateModelDeploymentRequest
1398
1403
  * @return DeactivateModelDeploymentResponse
1399
1404
  * @throws OciError when an error occurs
1400
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/DeactivateModelDeployment.ts.html |here} to see how to use DeactivateModelDeployment API.
1405
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/DeactivateModelDeployment.ts.html |here} to see how to use DeactivateModelDeployment API.
1401
1406
  */
1402
1407
  deactivateModelDeployment(deactivateModelDeploymentRequest) {
1403
1408
  return __awaiter(this, void 0, void 0, function* () {
@@ -1455,7 +1460,7 @@ class DataScienceClient {
1455
1460
  * @param DeactivateNotebookSessionRequest
1456
1461
  * @return DeactivateNotebookSessionResponse
1457
1462
  * @throws OciError when an error occurs
1458
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/DeactivateNotebookSession.ts.html |here} to see how to use DeactivateNotebookSession API.
1463
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/DeactivateNotebookSession.ts.html |here} to see how to use DeactivateNotebookSession API.
1459
1464
  */
1460
1465
  deactivateNotebookSession(deactivateNotebookSessionRequest) {
1461
1466
  return __awaiter(this, void 0, void 0, function* () {
@@ -1509,11 +1514,11 @@ class DataScienceClient {
1509
1514
  }
1510
1515
  /**
1511
1516
  * Deletes a job.
1512
- * This operation does not retry by default if the user has not defined a retry configuration.
1517
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1513
1518
  * @param DeleteJobRequest
1514
1519
  * @return DeleteJobResponse
1515
1520
  * @throws OciError when an error occurs
1516
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/DeleteJob.ts.html |here} to see how to use DeleteJob API.
1521
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/DeleteJob.ts.html |here} to see how to use DeleteJob API.
1517
1522
  */
1518
1523
  deleteJob(deleteJobRequest) {
1519
1524
  return __awaiter(this, void 0, void 0, function* () {
@@ -1530,7 +1535,7 @@ class DataScienceClient {
1530
1535
  "if-match": deleteJobRequest.ifMatch,
1531
1536
  "opc-request-id": deleteJobRequest.opcRequestId
1532
1537
  };
1533
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1538
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1534
1539
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteJobRequest.retryConfiguration, specRetryConfiguration);
1535
1540
  if (this.logger)
1536
1541
  retrier.logger = this.logger;
@@ -1569,11 +1574,11 @@ class DataScienceClient {
1569
1574
  }
1570
1575
  /**
1571
1576
  * Deletes a job run.
1572
- * This operation does not retry by default if the user has not defined a retry configuration.
1577
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1573
1578
  * @param DeleteJobRunRequest
1574
1579
  * @return DeleteJobRunResponse
1575
1580
  * @throws OciError when an error occurs
1576
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/DeleteJobRun.ts.html |here} to see how to use DeleteJobRun API.
1581
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/DeleteJobRun.ts.html |here} to see how to use DeleteJobRun API.
1577
1582
  */
1578
1583
  deleteJobRun(deleteJobRunRequest) {
1579
1584
  return __awaiter(this, void 0, void 0, function* () {
@@ -1588,7 +1593,7 @@ class DataScienceClient {
1588
1593
  "if-match": deleteJobRunRequest.ifMatch,
1589
1594
  "opc-request-id": deleteJobRunRequest.opcRequestId
1590
1595
  };
1591
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1596
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1592
1597
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteJobRunRequest.retryConfiguration, specRetryConfiguration);
1593
1598
  if (this.logger)
1594
1599
  retrier.logger = this.logger;
@@ -1622,11 +1627,11 @@ class DataScienceClient {
1622
1627
  }
1623
1628
  /**
1624
1629
  * Deletes the specified model.
1625
- * This operation does not retry by default if the user has not defined a retry configuration.
1630
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1626
1631
  * @param DeleteModelRequest
1627
1632
  * @return DeleteModelResponse
1628
1633
  * @throws OciError when an error occurs
1629
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/DeleteModel.ts.html |here} to see how to use DeleteModel API.
1634
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/DeleteModel.ts.html |here} to see how to use DeleteModel API.
1630
1635
  */
1631
1636
  deleteModel(deleteModelRequest) {
1632
1637
  return __awaiter(this, void 0, void 0, function* () {
@@ -1641,7 +1646,7 @@ class DataScienceClient {
1641
1646
  "if-match": deleteModelRequest.ifMatch,
1642
1647
  "opc-request-id": deleteModelRequest.opcRequestId
1643
1648
  };
1644
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1649
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1645
1650
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteModelRequest.retryConfiguration, specRetryConfiguration);
1646
1651
  if (this.logger)
1647
1652
  retrier.logger = this.logger;
@@ -1675,11 +1680,11 @@ class DataScienceClient {
1675
1680
  }
1676
1681
  /**
1677
1682
  * Deletes the specified model deployment. Any unsaved work in this model deployment is lost.
1678
- * This operation does not retry by default if the user has not defined a retry configuration.
1683
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1679
1684
  * @param DeleteModelDeploymentRequest
1680
1685
  * @return DeleteModelDeploymentResponse
1681
1686
  * @throws OciError when an error occurs
1682
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/DeleteModelDeployment.ts.html |here} to see how to use DeleteModelDeployment API.
1687
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/DeleteModelDeployment.ts.html |here} to see how to use DeleteModelDeployment API.
1683
1688
  */
1684
1689
  deleteModelDeployment(deleteModelDeploymentRequest) {
1685
1690
  return __awaiter(this, void 0, void 0, function* () {
@@ -1694,7 +1699,7 @@ class DataScienceClient {
1694
1699
  "if-match": deleteModelDeploymentRequest.ifMatch,
1695
1700
  "opc-request-id": deleteModelDeploymentRequest.opcRequestId
1696
1701
  };
1697
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1702
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1698
1703
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteModelDeploymentRequest.retryConfiguration, specRetryConfiguration);
1699
1704
  if (this.logger)
1700
1705
  retrier.logger = this.logger;
@@ -1733,11 +1738,11 @@ class DataScienceClient {
1733
1738
  }
1734
1739
  /**
1735
1740
  * Deletes the specified notebook session. Any unsaved work in this notebook session are lost.
1736
- * This operation does not retry by default if the user has not defined a retry configuration.
1741
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1737
1742
  * @param DeleteNotebookSessionRequest
1738
1743
  * @return DeleteNotebookSessionResponse
1739
1744
  * @throws OciError when an error occurs
1740
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/DeleteNotebookSession.ts.html |here} to see how to use DeleteNotebookSession API.
1745
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/DeleteNotebookSession.ts.html |here} to see how to use DeleteNotebookSession API.
1741
1746
  */
1742
1747
  deleteNotebookSession(deleteNotebookSessionRequest) {
1743
1748
  return __awaiter(this, void 0, void 0, function* () {
@@ -1752,7 +1757,7 @@ class DataScienceClient {
1752
1757
  "if-match": deleteNotebookSessionRequest.ifMatch,
1753
1758
  "opc-request-id": deleteNotebookSessionRequest.opcRequestId
1754
1759
  };
1755
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1760
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1756
1761
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteNotebookSessionRequest.retryConfiguration, specRetryConfiguration);
1757
1762
  if (this.logger)
1758
1763
  retrier.logger = this.logger;
@@ -1791,11 +1796,11 @@ class DataScienceClient {
1791
1796
  }
1792
1797
  /**
1793
1798
  * Deletes the specified project. This operation fails unless all associated resources (notebook sessions or models) are in a DELETED state. You must delete all associated resources before deleting a project.
1794
- * This operation does not retry by default if the user has not defined a retry configuration.
1799
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1795
1800
  * @param DeleteProjectRequest
1796
1801
  * @return DeleteProjectResponse
1797
1802
  * @throws OciError when an error occurs
1798
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/DeleteProject.ts.html |here} to see how to use DeleteProject API.
1803
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/DeleteProject.ts.html |here} to see how to use DeleteProject API.
1799
1804
  */
1800
1805
  deleteProject(deleteProjectRequest) {
1801
1806
  return __awaiter(this, void 0, void 0, function* () {
@@ -1810,7 +1815,7 @@ class DataScienceClient {
1810
1815
  "if-match": deleteProjectRequest.ifMatch,
1811
1816
  "opc-request-id": deleteProjectRequest.opcRequestId
1812
1817
  };
1813
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1818
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1814
1819
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteProjectRequest.retryConfiguration, specRetryConfiguration);
1815
1820
  if (this.logger)
1816
1821
  retrier.logger = this.logger;
@@ -1849,11 +1854,11 @@ class DataScienceClient {
1849
1854
  }
1850
1855
  /**
1851
1856
  * Gets a job.
1852
- * This operation does not retry by default if the user has not defined a retry configuration.
1857
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1853
1858
  * @param GetJobRequest
1854
1859
  * @return GetJobResponse
1855
1860
  * @throws OciError when an error occurs
1856
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/GetJob.ts.html |here} to see how to use GetJob API.
1861
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/GetJob.ts.html |here} to see how to use GetJob API.
1857
1862
  */
1858
1863
  getJob(getJobRequest) {
1859
1864
  return __awaiter(this, void 0, void 0, function* () {
@@ -1867,7 +1872,7 @@ class DataScienceClient {
1867
1872
  "Content-Type": common.Constants.APPLICATION_JSON,
1868
1873
  "opc-request-id": getJobRequest.opcRequestId
1869
1874
  };
1870
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1875
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1871
1876
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getJobRequest.retryConfiguration, specRetryConfiguration);
1872
1877
  if (this.logger)
1873
1878
  retrier.logger = this.logger;
@@ -1910,11 +1915,11 @@ class DataScienceClient {
1910
1915
  }
1911
1916
  /**
1912
1917
  * Downloads job artifact content for specified job.
1913
- * This operation does not retry by default if the user has not defined a retry configuration.
1918
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1914
1919
  * @param GetJobArtifactContentRequest
1915
1920
  * @return GetJobArtifactContentResponse
1916
1921
  * @throws OciError when an error occurs
1917
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/GetJobArtifactContent.ts.html |here} to see how to use GetJobArtifactContent API.
1922
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/GetJobArtifactContent.ts.html |here} to see how to use GetJobArtifactContent API.
1918
1923
  */
1919
1924
  getJobArtifactContent(getJobArtifactContentRequest) {
1920
1925
  return __awaiter(this, void 0, void 0, function* () {
@@ -1929,7 +1934,7 @@ class DataScienceClient {
1929
1934
  "opc-request-id": getJobArtifactContentRequest.opcRequestId,
1930
1935
  "range": getJobArtifactContentRequest.range
1931
1936
  };
1932
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
1937
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
1933
1938
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getJobArtifactContentRequest.retryConfiguration, specRetryConfiguration);
1934
1939
  if (this.logger)
1935
1940
  retrier.logger = this.logger;
@@ -1991,11 +1996,11 @@ class DataScienceClient {
1991
1996
  }
1992
1997
  /**
1993
1998
  * Gets a job run.
1994
- * This operation does not retry by default if the user has not defined a retry configuration.
1999
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1995
2000
  * @param GetJobRunRequest
1996
2001
  * @return GetJobRunResponse
1997
2002
  * @throws OciError when an error occurs
1998
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/GetJobRun.ts.html |here} to see how to use GetJobRun API.
2003
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/GetJobRun.ts.html |here} to see how to use GetJobRun API.
1999
2004
  */
2000
2005
  getJobRun(getJobRunRequest) {
2001
2006
  return __awaiter(this, void 0, void 0, function* () {
@@ -2009,7 +2014,7 @@ class DataScienceClient {
2009
2014
  "Content-Type": common.Constants.APPLICATION_JSON,
2010
2015
  "opc-request-id": getJobRunRequest.opcRequestId
2011
2016
  };
2012
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2017
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2013
2018
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getJobRunRequest.retryConfiguration, specRetryConfiguration);
2014
2019
  if (this.logger)
2015
2020
  retrier.logger = this.logger;
@@ -2052,11 +2057,11 @@ class DataScienceClient {
2052
2057
  }
2053
2058
  /**
2054
2059
  * Gets the specified model's information.
2055
- * This operation does not retry by default if the user has not defined a retry configuration.
2060
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2056
2061
  * @param GetModelRequest
2057
2062
  * @return GetModelResponse
2058
2063
  * @throws OciError when an error occurs
2059
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/GetModel.ts.html |here} to see how to use GetModel API.
2064
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/GetModel.ts.html |here} to see how to use GetModel API.
2060
2065
  */
2061
2066
  getModel(getModelRequest) {
2062
2067
  return __awaiter(this, void 0, void 0, function* () {
@@ -2070,7 +2075,7 @@ class DataScienceClient {
2070
2075
  "Content-Type": common.Constants.APPLICATION_JSON,
2071
2076
  "opc-request-id": getModelRequest.opcRequestId
2072
2077
  };
2073
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2078
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2074
2079
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getModelRequest.retryConfiguration, specRetryConfiguration);
2075
2080
  if (this.logger)
2076
2081
  retrier.logger = this.logger;
@@ -2113,11 +2118,11 @@ class DataScienceClient {
2113
2118
  }
2114
2119
  /**
2115
2120
  * Downloads model artifact content for specified model.
2116
- * This operation does not retry by default if the user has not defined a retry configuration.
2121
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2117
2122
  * @param GetModelArtifactContentRequest
2118
2123
  * @return GetModelArtifactContentResponse
2119
2124
  * @throws OciError when an error occurs
2120
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/GetModelArtifactContent.ts.html |here} to see how to use GetModelArtifactContent API.
2125
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/GetModelArtifactContent.ts.html |here} to see how to use GetModelArtifactContent API.
2121
2126
  */
2122
2127
  getModelArtifactContent(getModelArtifactContentRequest) {
2123
2128
  return __awaiter(this, void 0, void 0, function* () {
@@ -2132,7 +2137,7 @@ class DataScienceClient {
2132
2137
  "opc-request-id": getModelArtifactContentRequest.opcRequestId,
2133
2138
  "range": getModelArtifactContentRequest.range
2134
2139
  };
2135
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2140
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2136
2141
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getModelArtifactContentRequest.retryConfiguration, specRetryConfiguration);
2137
2142
  if (this.logger)
2138
2143
  retrier.logger = this.logger;
@@ -2194,11 +2199,11 @@ class DataScienceClient {
2194
2199
  }
2195
2200
  /**
2196
2201
  * Retrieves the model deployment for the specified `modelDeploymentId`.
2197
- * This operation does not retry by default if the user has not defined a retry configuration.
2202
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2198
2203
  * @param GetModelDeploymentRequest
2199
2204
  * @return GetModelDeploymentResponse
2200
2205
  * @throws OciError when an error occurs
2201
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/GetModelDeployment.ts.html |here} to see how to use GetModelDeployment API.
2206
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/GetModelDeployment.ts.html |here} to see how to use GetModelDeployment API.
2202
2207
  */
2203
2208
  getModelDeployment(getModelDeploymentRequest) {
2204
2209
  return __awaiter(this, void 0, void 0, function* () {
@@ -2212,7 +2217,7 @@ class DataScienceClient {
2212
2217
  "Content-Type": common.Constants.APPLICATION_JSON,
2213
2218
  "opc-request-id": getModelDeploymentRequest.opcRequestId
2214
2219
  };
2215
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2220
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2216
2221
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getModelDeploymentRequest.retryConfiguration, specRetryConfiguration);
2217
2222
  if (this.logger)
2218
2223
  retrier.logger = this.logger;
@@ -2255,11 +2260,11 @@ class DataScienceClient {
2255
2260
  }
2256
2261
  /**
2257
2262
  * Gets provenance information for specified model.
2258
- * This operation does not retry by default if the user has not defined a retry configuration.
2263
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2259
2264
  * @param GetModelProvenanceRequest
2260
2265
  * @return GetModelProvenanceResponse
2261
2266
  * @throws OciError when an error occurs
2262
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/GetModelProvenance.ts.html |here} to see how to use GetModelProvenance API.
2267
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/GetModelProvenance.ts.html |here} to see how to use GetModelProvenance API.
2263
2268
  */
2264
2269
  getModelProvenance(getModelProvenanceRequest) {
2265
2270
  return __awaiter(this, void 0, void 0, function* () {
@@ -2273,7 +2278,7 @@ class DataScienceClient {
2273
2278
  "Content-Type": common.Constants.APPLICATION_JSON,
2274
2279
  "opc-request-id": getModelProvenanceRequest.opcRequestId
2275
2280
  };
2276
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2281
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2277
2282
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getModelProvenanceRequest.retryConfiguration, specRetryConfiguration);
2278
2283
  if (this.logger)
2279
2284
  retrier.logger = this.logger;
@@ -2316,11 +2321,11 @@ class DataScienceClient {
2316
2321
  }
2317
2322
  /**
2318
2323
  * Gets the specified notebook session's information.
2319
- * This operation does not retry by default if the user has not defined a retry configuration.
2324
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2320
2325
  * @param GetNotebookSessionRequest
2321
2326
  * @return GetNotebookSessionResponse
2322
2327
  * @throws OciError when an error occurs
2323
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/GetNotebookSession.ts.html |here} to see how to use GetNotebookSession API.
2328
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/GetNotebookSession.ts.html |here} to see how to use GetNotebookSession API.
2324
2329
  */
2325
2330
  getNotebookSession(getNotebookSessionRequest) {
2326
2331
  return __awaiter(this, void 0, void 0, function* () {
@@ -2334,7 +2339,7 @@ class DataScienceClient {
2334
2339
  "Content-Type": common.Constants.APPLICATION_JSON,
2335
2340
  "opc-request-id": getNotebookSessionRequest.opcRequestId
2336
2341
  };
2337
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2342
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2338
2343
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getNotebookSessionRequest.retryConfiguration, specRetryConfiguration);
2339
2344
  if (this.logger)
2340
2345
  retrier.logger = this.logger;
@@ -2377,11 +2382,11 @@ class DataScienceClient {
2377
2382
  }
2378
2383
  /**
2379
2384
  * Gets the specified project's information.
2380
- * This operation does not retry by default if the user has not defined a retry configuration.
2385
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2381
2386
  * @param GetProjectRequest
2382
2387
  * @return GetProjectResponse
2383
2388
  * @throws OciError when an error occurs
2384
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/GetProject.ts.html |here} to see how to use GetProject API.
2389
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/GetProject.ts.html |here} to see how to use GetProject API.
2385
2390
  */
2386
2391
  getProject(getProjectRequest) {
2387
2392
  return __awaiter(this, void 0, void 0, function* () {
@@ -2395,7 +2400,7 @@ class DataScienceClient {
2395
2400
  "Content-Type": common.Constants.APPLICATION_JSON,
2396
2401
  "opc-request-id": getProjectRequest.opcRequestId
2397
2402
  };
2398
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2403
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2399
2404
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getProjectRequest.retryConfiguration, specRetryConfiguration);
2400
2405
  if (this.logger)
2401
2406
  retrier.logger = this.logger;
@@ -2442,7 +2447,7 @@ class DataScienceClient {
2442
2447
  * @param GetWorkRequestRequest
2443
2448
  * @return GetWorkRequestResponse
2444
2449
  * @throws OciError when an error occurs
2445
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2450
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2446
2451
  */
2447
2452
  getWorkRequest(getWorkRequestRequest) {
2448
2453
  return __awaiter(this, void 0, void 0, function* () {
@@ -2504,11 +2509,11 @@ class DataScienceClient {
2504
2509
  }
2505
2510
  /**
2506
2511
  * Gets job artifact metadata.
2507
- * This operation does not retry by default if the user has not defined a retry configuration.
2512
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2508
2513
  * @param HeadJobArtifactRequest
2509
2514
  * @return HeadJobArtifactResponse
2510
2515
  * @throws OciError when an error occurs
2511
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/HeadJobArtifact.ts.html |here} to see how to use HeadJobArtifact API.
2516
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/HeadJobArtifact.ts.html |here} to see how to use HeadJobArtifact API.
2512
2517
  */
2513
2518
  headJobArtifact(headJobArtifactRequest) {
2514
2519
  return __awaiter(this, void 0, void 0, function* () {
@@ -2522,7 +2527,7 @@ class DataScienceClient {
2522
2527
  "Content-Type": common.Constants.APPLICATION_JSON,
2523
2528
  "opc-request-id": headJobArtifactRequest.opcRequestId
2524
2529
  };
2525
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2530
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2526
2531
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, headJobArtifactRequest.retryConfiguration, specRetryConfiguration);
2527
2532
  if (this.logger)
2528
2533
  retrier.logger = this.logger;
@@ -2581,11 +2586,11 @@ class DataScienceClient {
2581
2586
  }
2582
2587
  /**
2583
2588
  * Gets model artifact metadata for specified model.
2584
- * This operation does not retry by default if the user has not defined a retry configuration.
2589
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2585
2590
  * @param HeadModelArtifactRequest
2586
2591
  * @return HeadModelArtifactResponse
2587
2592
  * @throws OciError when an error occurs
2588
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/HeadModelArtifact.ts.html |here} to see how to use HeadModelArtifact API.
2593
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/HeadModelArtifact.ts.html |here} to see how to use HeadModelArtifact API.
2589
2594
  */
2590
2595
  headModelArtifact(headModelArtifactRequest) {
2591
2596
  return __awaiter(this, void 0, void 0, function* () {
@@ -2599,7 +2604,7 @@ class DataScienceClient {
2599
2604
  "Content-Type": common.Constants.APPLICATION_JSON,
2600
2605
  "opc-request-id": headModelArtifactRequest.opcRequestId
2601
2606
  };
2602
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2607
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2603
2608
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, headModelArtifactRequest.retryConfiguration, specRetryConfiguration);
2604
2609
  if (this.logger)
2605
2610
  retrier.logger = this.logger;
@@ -2658,11 +2663,11 @@ class DataScienceClient {
2658
2663
  }
2659
2664
  /**
2660
2665
  * List fast launch capable job configs in the specified compartment.
2661
- * This operation does not retry by default if the user has not defined a retry configuration.
2666
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2662
2667
  * @param ListFastLaunchJobConfigsRequest
2663
2668
  * @return ListFastLaunchJobConfigsResponse
2664
2669
  * @throws OciError when an error occurs
2665
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ListFastLaunchJobConfigs.ts.html |here} to see how to use ListFastLaunchJobConfigs API.
2670
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ListFastLaunchJobConfigs.ts.html |here} to see how to use ListFastLaunchJobConfigs API.
2666
2671
  */
2667
2672
  listFastLaunchJobConfigs(listFastLaunchJobConfigsRequest) {
2668
2673
  return __awaiter(this, void 0, void 0, function* () {
@@ -2678,7 +2683,7 @@ class DataScienceClient {
2678
2683
  "Content-Type": common.Constants.APPLICATION_JSON,
2679
2684
  "opc-request-id": listFastLaunchJobConfigsRequest.opcRequestId
2680
2685
  };
2681
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2686
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2682
2687
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listFastLaunchJobConfigsRequest.retryConfiguration, specRetryConfiguration);
2683
2688
  if (this.logger)
2684
2689
  retrier.logger = this.logger;
@@ -2766,11 +2771,11 @@ class DataScienceClient {
2766
2771
  }
2767
2772
  /**
2768
2773
  * List out job runs.
2769
- * This operation does not retry by default if the user has not defined a retry configuration.
2774
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2770
2775
  * @param ListJobRunsRequest
2771
2776
  * @return ListJobRunsResponse
2772
2777
  * @throws OciError when an error occurs
2773
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ListJobRuns.ts.html |here} to see how to use ListJobRuns API.
2778
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ListJobRuns.ts.html |here} to see how to use ListJobRuns API.
2774
2779
  */
2775
2780
  listJobRuns(listJobRunsRequest) {
2776
2781
  return __awaiter(this, void 0, void 0, function* () {
@@ -2793,7 +2798,7 @@ class DataScienceClient {
2793
2798
  "Content-Type": common.Constants.APPLICATION_JSON,
2794
2799
  "opc-request-id": listJobRunsRequest.opcRequestId
2795
2800
  };
2796
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2801
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2797
2802
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listJobRunsRequest.retryConfiguration, specRetryConfiguration);
2798
2803
  if (this.logger)
2799
2804
  retrier.logger = this.logger;
@@ -2881,11 +2886,11 @@ class DataScienceClient {
2881
2886
  }
2882
2887
  /**
2883
2888
  * List job shapes available in the specified compartment.
2884
- * This operation does not retry by default if the user has not defined a retry configuration.
2889
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2885
2890
  * @param ListJobShapesRequest
2886
2891
  * @return ListJobShapesResponse
2887
2892
  * @throws OciError when an error occurs
2888
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ListJobShapes.ts.html |here} to see how to use ListJobShapes API.
2893
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ListJobShapes.ts.html |here} to see how to use ListJobShapes API.
2889
2894
  */
2890
2895
  listJobShapes(listJobShapesRequest) {
2891
2896
  return __awaiter(this, void 0, void 0, function* () {
@@ -2901,7 +2906,7 @@ class DataScienceClient {
2901
2906
  "Content-Type": common.Constants.APPLICATION_JSON,
2902
2907
  "opc-request-id": listJobShapesRequest.opcRequestId
2903
2908
  };
2904
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
2909
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
2905
2910
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listJobShapesRequest.retryConfiguration, specRetryConfiguration);
2906
2911
  if (this.logger)
2907
2912
  retrier.logger = this.logger;
@@ -2989,11 +2994,11 @@ class DataScienceClient {
2989
2994
  }
2990
2995
  /**
2991
2996
  * List jobs in the specified compartment.
2992
- * This operation does not retry by default if the user has not defined a retry configuration.
2997
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
2993
2998
  * @param ListJobsRequest
2994
2999
  * @return ListJobsResponse
2995
3000
  * @throws OciError when an error occurs
2996
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ListJobs.ts.html |here} to see how to use ListJobs API.
3001
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ListJobs.ts.html |here} to see how to use ListJobs API.
2997
3002
  */
2998
3003
  listJobs(listJobsRequest) {
2999
3004
  return __awaiter(this, void 0, void 0, function* () {
@@ -3016,7 +3021,7 @@ class DataScienceClient {
3016
3021
  "Content-Type": common.Constants.APPLICATION_JSON,
3017
3022
  "opc-request-id": listJobsRequest.opcRequestId
3018
3023
  };
3019
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3024
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3020
3025
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listJobsRequest.retryConfiguration, specRetryConfiguration);
3021
3026
  if (this.logger)
3022
3027
  retrier.logger = this.logger;
@@ -3104,11 +3109,11 @@ class DataScienceClient {
3104
3109
  }
3105
3110
  /**
3106
3111
  * Lists the valid model deployment shapes.
3107
- * This operation does not retry by default if the user has not defined a retry configuration.
3112
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3108
3113
  * @param ListModelDeploymentShapesRequest
3109
3114
  * @return ListModelDeploymentShapesResponse
3110
3115
  * @throws OciError when an error occurs
3111
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ListModelDeploymentShapes.ts.html |here} to see how to use ListModelDeploymentShapes API.
3116
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ListModelDeploymentShapes.ts.html |here} to see how to use ListModelDeploymentShapes API.
3112
3117
  */
3113
3118
  listModelDeploymentShapes(listModelDeploymentShapesRequest) {
3114
3119
  return __awaiter(this, void 0, void 0, function* () {
@@ -3124,7 +3129,7 @@ class DataScienceClient {
3124
3129
  "Content-Type": common.Constants.APPLICATION_JSON,
3125
3130
  "opc-request-id": listModelDeploymentShapesRequest.opcRequestId
3126
3131
  };
3127
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3132
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3128
3133
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listModelDeploymentShapesRequest.retryConfiguration, specRetryConfiguration);
3129
3134
  if (this.logger)
3130
3135
  retrier.logger = this.logger;
@@ -3213,11 +3218,11 @@ class DataScienceClient {
3213
3218
  /**
3214
3219
  * Lists all model deployments in the specified compartment. Only one parameter other than compartmentId may also be included in a query. The query must include compartmentId. If the query does not include compartmentId, or includes compartmentId but two or more other parameters an error is returned.
3215
3220
  *
3216
- * This operation does not retry by default if the user has not defined a retry configuration.
3221
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3217
3222
  * @param ListModelDeploymentsRequest
3218
3223
  * @return ListModelDeploymentsResponse
3219
3224
  * @throws OciError when an error occurs
3220
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ListModelDeployments.ts.html |here} to see how to use ListModelDeployments API.
3225
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ListModelDeployments.ts.html |here} to see how to use ListModelDeployments API.
3221
3226
  */
3222
3227
  listModelDeployments(listModelDeploymentsRequest) {
3223
3228
  return __awaiter(this, void 0, void 0, function* () {
@@ -3240,7 +3245,7 @@ class DataScienceClient {
3240
3245
  "Content-Type": common.Constants.APPLICATION_JSON,
3241
3246
  "opc-request-id": listModelDeploymentsRequest.opcRequestId
3242
3247
  };
3243
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3248
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3244
3249
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listModelDeploymentsRequest.retryConfiguration, specRetryConfiguration);
3245
3250
  if (this.logger)
3246
3251
  retrier.logger = this.logger;
@@ -3328,11 +3333,11 @@ class DataScienceClient {
3328
3333
  }
3329
3334
  /**
3330
3335
  * Lists models in the specified compartment.
3331
- * This operation does not retry by default if the user has not defined a retry configuration.
3336
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3332
3337
  * @param ListModelsRequest
3333
3338
  * @return ListModelsResponse
3334
3339
  * @throws OciError when an error occurs
3335
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ListModels.ts.html |here} to see how to use ListModels API.
3340
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ListModels.ts.html |here} to see how to use ListModels API.
3336
3341
  */
3337
3342
  listModels(listModelsRequest) {
3338
3343
  return __awaiter(this, void 0, void 0, function* () {
@@ -3355,7 +3360,7 @@ class DataScienceClient {
3355
3360
  "Content-Type": common.Constants.APPLICATION_JSON,
3356
3361
  "opc-request-id": listModelsRequest.opcRequestId
3357
3362
  };
3358
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3363
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3359
3364
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listModelsRequest.retryConfiguration, specRetryConfiguration);
3360
3365
  if (this.logger)
3361
3366
  retrier.logger = this.logger;
@@ -3443,11 +3448,11 @@ class DataScienceClient {
3443
3448
  }
3444
3449
  /**
3445
3450
  * Lists the valid notebook session shapes.
3446
- * This operation does not retry by default if the user has not defined a retry configuration.
3451
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3447
3452
  * @param ListNotebookSessionShapesRequest
3448
3453
  * @return ListNotebookSessionShapesResponse
3449
3454
  * @throws OciError when an error occurs
3450
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ListNotebookSessionShapes.ts.html |here} to see how to use ListNotebookSessionShapes API.
3455
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ListNotebookSessionShapes.ts.html |here} to see how to use ListNotebookSessionShapes API.
3451
3456
  */
3452
3457
  listNotebookSessionShapes(listNotebookSessionShapesRequest) {
3453
3458
  return __awaiter(this, void 0, void 0, function* () {
@@ -3463,7 +3468,7 @@ class DataScienceClient {
3463
3468
  "Content-Type": common.Constants.APPLICATION_JSON,
3464
3469
  "opc-request-id": listNotebookSessionShapesRequest.opcRequestId
3465
3470
  };
3466
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3471
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3467
3472
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listNotebookSessionShapesRequest.retryConfiguration, specRetryConfiguration);
3468
3473
  if (this.logger)
3469
3474
  retrier.logger = this.logger;
@@ -3551,11 +3556,11 @@ class DataScienceClient {
3551
3556
  }
3552
3557
  /**
3553
3558
  * Lists the notebook sessions in the specified compartment.
3554
- * This operation does not retry by default if the user has not defined a retry configuration.
3559
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3555
3560
  * @param ListNotebookSessionsRequest
3556
3561
  * @return ListNotebookSessionsResponse
3557
3562
  * @throws OciError when an error occurs
3558
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ListNotebookSessions.ts.html |here} to see how to use ListNotebookSessions API.
3563
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ListNotebookSessions.ts.html |here} to see how to use ListNotebookSessions API.
3559
3564
  */
3560
3565
  listNotebookSessions(listNotebookSessionsRequest) {
3561
3566
  return __awaiter(this, void 0, void 0, function* () {
@@ -3578,7 +3583,7 @@ class DataScienceClient {
3578
3583
  "Content-Type": common.Constants.APPLICATION_JSON,
3579
3584
  "opc-request-id": listNotebookSessionsRequest.opcRequestId
3580
3585
  };
3581
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3586
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3582
3587
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listNotebookSessionsRequest.retryConfiguration, specRetryConfiguration);
3583
3588
  if (this.logger)
3584
3589
  retrier.logger = this.logger;
@@ -3666,11 +3671,11 @@ class DataScienceClient {
3666
3671
  }
3667
3672
  /**
3668
3673
  * Lists projects in the specified compartment.
3669
- * This operation does not retry by default if the user has not defined a retry configuration.
3674
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3670
3675
  * @param ListProjectsRequest
3671
3676
  * @return ListProjectsResponse
3672
3677
  * @throws OciError when an error occurs
3673
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ListProjects.ts.html |here} to see how to use ListProjects API.
3678
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ListProjects.ts.html |here} to see how to use ListProjects API.
3674
3679
  */
3675
3680
  listProjects(listProjectsRequest) {
3676
3681
  return __awaiter(this, void 0, void 0, function* () {
@@ -3692,7 +3697,7 @@ class DataScienceClient {
3692
3697
  "Content-Type": common.Constants.APPLICATION_JSON,
3693
3698
  "opc-request-id": listProjectsRequest.opcRequestId
3694
3699
  };
3695
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
3700
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
3696
3701
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listProjectsRequest.retryConfiguration, specRetryConfiguration);
3697
3702
  if (this.logger)
3698
3703
  retrier.logger = this.logger;
@@ -3784,7 +3789,7 @@ class DataScienceClient {
3784
3789
  * @param ListWorkRequestErrorsRequest
3785
3790
  * @return ListWorkRequestErrorsResponse
3786
3791
  * @throws OciError when an error occurs
3787
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
3792
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
3788
3793
  */
3789
3794
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
3790
3795
  return __awaiter(this, void 0, void 0, function* () {
@@ -3840,7 +3845,7 @@ class DataScienceClient {
3840
3845
  * @param ListWorkRequestLogsRequest
3841
3846
  * @return ListWorkRequestLogsResponse
3842
3847
  * @throws OciError when an error occurs
3843
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
3848
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
3844
3849
  */
3845
3850
  listWorkRequestLogs(listWorkRequestLogsRequest) {
3846
3851
  return __awaiter(this, void 0, void 0, function* () {
@@ -3896,7 +3901,7 @@ class DataScienceClient {
3896
3901
  * @param ListWorkRequestsRequest
3897
3902
  * @return ListWorkRequestsResponse
3898
3903
  * @throws OciError when an error occurs
3899
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3904
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3900
3905
  */
3901
3906
  listWorkRequests(listWorkRequestsRequest) {
3902
3907
  return __awaiter(this, void 0, void 0, function* () {
@@ -4005,11 +4010,11 @@ class DataScienceClient {
4005
4010
  }
4006
4011
  /**
4007
4012
  * Updates a job.
4008
- * This operation does not retry by default if the user has not defined a retry configuration.
4013
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
4009
4014
  * @param UpdateJobRequest
4010
4015
  * @return UpdateJobResponse
4011
4016
  * @throws OciError when an error occurs
4012
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/UpdateJob.ts.html |here} to see how to use UpdateJob API.
4017
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/UpdateJob.ts.html |here} to see how to use UpdateJob API.
4013
4018
  */
4014
4019
  updateJob(updateJobRequest) {
4015
4020
  return __awaiter(this, void 0, void 0, function* () {
@@ -4024,7 +4029,7 @@ class DataScienceClient {
4024
4029
  "opc-request-id": updateJobRequest.opcRequestId,
4025
4030
  "if-match": updateJobRequest.ifMatch
4026
4031
  };
4027
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
4032
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
4028
4033
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateJobRequest.retryConfiguration, specRetryConfiguration);
4029
4034
  if (this.logger)
4030
4035
  retrier.logger = this.logger;
@@ -4068,11 +4073,11 @@ class DataScienceClient {
4068
4073
  }
4069
4074
  /**
4070
4075
  * Updates a job run.
4071
- * This operation does not retry by default if the user has not defined a retry configuration.
4076
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
4072
4077
  * @param UpdateJobRunRequest
4073
4078
  * @return UpdateJobRunResponse
4074
4079
  * @throws OciError when an error occurs
4075
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/UpdateJobRun.ts.html |here} to see how to use UpdateJobRun API.
4080
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/UpdateJobRun.ts.html |here} to see how to use UpdateJobRun API.
4076
4081
  */
4077
4082
  updateJobRun(updateJobRunRequest) {
4078
4083
  return __awaiter(this, void 0, void 0, function* () {
@@ -4087,7 +4092,7 @@ class DataScienceClient {
4087
4092
  "opc-request-id": updateJobRunRequest.opcRequestId,
4088
4093
  "if-match": updateJobRunRequest.ifMatch
4089
4094
  };
4090
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
4095
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
4091
4096
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateJobRunRequest.retryConfiguration, specRetryConfiguration);
4092
4097
  if (this.logger)
4093
4098
  retrier.logger = this.logger;
@@ -4131,11 +4136,11 @@ class DataScienceClient {
4131
4136
  }
4132
4137
  /**
4133
4138
  * Updates the properties of a model. You can update the `displayName`, `description`, `freeformTags`, and `definedTags` properties.
4134
- * This operation does not retry by default if the user has not defined a retry configuration.
4139
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
4135
4140
  * @param UpdateModelRequest
4136
4141
  * @return UpdateModelResponse
4137
4142
  * @throws OciError when an error occurs
4138
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/UpdateModel.ts.html |here} to see how to use UpdateModel API.
4143
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/UpdateModel.ts.html |here} to see how to use UpdateModel API.
4139
4144
  */
4140
4145
  updateModel(updateModelRequest) {
4141
4146
  return __awaiter(this, void 0, void 0, function* () {
@@ -4150,7 +4155,7 @@ class DataScienceClient {
4150
4155
  "if-match": updateModelRequest.ifMatch,
4151
4156
  "opc-request-id": updateModelRequest.opcRequestId
4152
4157
  };
4153
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
4158
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
4154
4159
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateModelRequest.retryConfiguration, specRetryConfiguration);
4155
4160
  if (this.logger)
4156
4161
  retrier.logger = this.logger;
@@ -4198,11 +4203,11 @@ class DataScienceClient {
4198
4203
  * can also be updated independently. All of the fields can be updated when the deployment is in the INACTIVE lifecycle state. Changes will take effect the next time the model
4199
4204
  * deployment is activated.
4200
4205
  *
4201
- * This operation does not retry by default if the user has not defined a retry configuration.
4206
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
4202
4207
  * @param UpdateModelDeploymentRequest
4203
4208
  * @return UpdateModelDeploymentResponse
4204
4209
  * @throws OciError when an error occurs
4205
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/UpdateModelDeployment.ts.html |here} to see how to use UpdateModelDeployment API.
4210
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/UpdateModelDeployment.ts.html |here} to see how to use UpdateModelDeployment API.
4206
4211
  */
4207
4212
  updateModelDeployment(updateModelDeploymentRequest) {
4208
4213
  return __awaiter(this, void 0, void 0, function* () {
@@ -4217,7 +4222,7 @@ class DataScienceClient {
4217
4222
  "if-match": updateModelDeploymentRequest.ifMatch,
4218
4223
  "opc-request-id": updateModelDeploymentRequest.opcRequestId
4219
4224
  };
4220
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
4225
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
4221
4226
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateModelDeploymentRequest.retryConfiguration, specRetryConfiguration);
4222
4227
  if (this.logger)
4223
4228
  retrier.logger = this.logger;
@@ -4257,11 +4262,11 @@ class DataScienceClient {
4257
4262
  }
4258
4263
  /**
4259
4264
  * Updates the provenance information for the specified model.
4260
- * This operation does not retry by default if the user has not defined a retry configuration.
4265
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
4261
4266
  * @param UpdateModelProvenanceRequest
4262
4267
  * @return UpdateModelProvenanceResponse
4263
4268
  * @throws OciError when an error occurs
4264
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/UpdateModelProvenance.ts.html |here} to see how to use UpdateModelProvenance API.
4269
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/UpdateModelProvenance.ts.html |here} to see how to use UpdateModelProvenance API.
4265
4270
  */
4266
4271
  updateModelProvenance(updateModelProvenanceRequest) {
4267
4272
  return __awaiter(this, void 0, void 0, function* () {
@@ -4276,7 +4281,7 @@ class DataScienceClient {
4276
4281
  "opc-request-id": updateModelProvenanceRequest.opcRequestId,
4277
4282
  "if-match": updateModelProvenanceRequest.ifMatch
4278
4283
  };
4279
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
4284
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
4280
4285
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateModelProvenanceRequest.retryConfiguration, specRetryConfiguration);
4281
4286
  if (this.logger)
4282
4287
  retrier.logger = this.logger;
@@ -4323,11 +4328,11 @@ class DataScienceClient {
4323
4328
  * When the notebook session is in the INACTIVE lifecycle state, you can update `notebookSessionConfigurationDetails` and change `shape`, `subnetId`, and `blockStorageSizeInGBs`.
4324
4329
  * Changes to the `notebookSessionConfigurationDetails` take effect the next time the `ActivateNotebookSession` action is invoked on the notebook session resource.
4325
4330
  *
4326
- * This operation does not retry by default if the user has not defined a retry configuration.
4331
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
4327
4332
  * @param UpdateNotebookSessionRequest
4328
4333
  * @return UpdateNotebookSessionResponse
4329
4334
  * @throws OciError when an error occurs
4330
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/UpdateNotebookSession.ts.html |here} to see how to use UpdateNotebookSession API.
4335
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/UpdateNotebookSession.ts.html |here} to see how to use UpdateNotebookSession API.
4331
4336
  */
4332
4337
  updateNotebookSession(updateNotebookSessionRequest) {
4333
4338
  return __awaiter(this, void 0, void 0, function* () {
@@ -4342,7 +4347,7 @@ class DataScienceClient {
4342
4347
  "if-match": updateNotebookSessionRequest.ifMatch,
4343
4348
  "opc-request-id": updateNotebookSessionRequest.opcRequestId
4344
4349
  };
4345
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
4350
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
4346
4351
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateNotebookSessionRequest.retryConfiguration, specRetryConfiguration);
4347
4352
  if (this.logger)
4348
4353
  retrier.logger = this.logger;
@@ -4386,11 +4391,11 @@ class DataScienceClient {
4386
4391
  }
4387
4392
  /**
4388
4393
  * Updates the properties of a project. You can update the `displayName`, `description`, `freeformTags`, and `definedTags` properties.
4389
- * This operation does not retry by default if the user has not defined a retry configuration.
4394
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
4390
4395
  * @param UpdateProjectRequest
4391
4396
  * @return UpdateProjectResponse
4392
4397
  * @throws OciError when an error occurs
4393
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/datascience/UpdateProject.ts.html |here} to see how to use UpdateProject API.
4398
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.25.0/datascience/UpdateProject.ts.html |here} to see how to use UpdateProject API.
4394
4399
  */
4395
4400
  updateProject(updateProjectRequest) {
4396
4401
  return __awaiter(this, void 0, void 0, function* () {
@@ -4405,7 +4410,7 @@ class DataScienceClient {
4405
4410
  "if-match": updateProjectRequest.ifMatch,
4406
4411
  "opc-request-id": updateProjectRequest.opcRequestId
4407
4412
  };
4408
- const specRetryConfiguration = common.NoRetryConfigurationDetails;
4413
+ const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
4409
4414
  const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateProjectRequest.retryConfiguration, specRetryConfiguration);
4410
4415
  if (this.logger)
4411
4416
  retrier.logger = this.logger;