oci-datascience 2.22.0 → 2.24.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 +62 -61
  2. package/lib/client.js +67 -62
  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 +1 -1
  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;
@@ -152,7 +157,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -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.22.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.24.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.22.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.24.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* () {
@@ -330,7 +335,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -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.22.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.24.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.22.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.24.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.22.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.24.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.22.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.24.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.22.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.24.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.22.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.24.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.22.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.24.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* () {
@@ -764,7 +769,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -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.22.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.24.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* () {
@@ -886,7 +891,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -947,7 +952,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1008,7 +1013,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1069,7 +1074,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1140,7 +1145,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1203,7 +1208,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1274,7 +1279,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1335,7 +1340,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -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.22.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.24.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.22.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.24.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* () {
@@ -1513,7 +1518,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1573,7 +1578,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1626,7 +1631,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1679,7 +1684,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1737,7 +1742,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1795,7 +1800,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1853,7 +1858,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1914,7 +1919,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -1995,7 +2000,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -2056,7 +2061,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -2117,7 +2122,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -2198,7 +2203,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -2259,7 +2264,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -2320,7 +2325,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -2381,7 +2386,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -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.22.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.24.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* () {
@@ -2508,7 +2513,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -2585,7 +2590,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -2662,7 +2667,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -2770,7 +2775,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -2885,7 +2890,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -2993,7 +2998,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -3108,7 +3113,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -3217,7 +3222,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -3332,7 +3337,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -3447,7 +3452,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -3555,7 +3560,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -3670,7 +3675,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -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.22.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.24.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.22.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.24.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.22.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.24.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* () {
@@ -4009,7 +4014,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -4072,7 +4077,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -4135,7 +4140,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -4202,7 +4207,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -4261,7 +4266,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -4327,7 +4332,7 @@ class DataScienceClient {
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.22.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.24.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* () {
@@ -4390,7 +4395,7 @@ class DataScienceClient {
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.22.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.24.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* () {