oci-datascience 2.24.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.
- package/lib/client.d.ts +106 -106
- package/lib/client.js +151 -151
- package/lib/client.js.map +1 -1
- package/lib/request/activate-model-deployment-request.d.ts +1 -1
- package/lib/request/activate-model-request.d.ts +1 -1
- package/lib/request/activate-notebook-session-request.d.ts +1 -1
- package/lib/request/cancel-job-run-request.d.ts +1 -1
- package/lib/request/cancel-work-request-request.d.ts +1 -1
- package/lib/request/change-job-compartment-request.d.ts +1 -1
- package/lib/request/change-job-run-compartment-request.d.ts +1 -1
- package/lib/request/change-model-compartment-request.d.ts +1 -1
- package/lib/request/change-model-deployment-compartment-request.d.ts +1 -1
- package/lib/request/change-notebook-session-compartment-request.d.ts +1 -1
- package/lib/request/change-project-compartment-request.d.ts +1 -1
- package/lib/request/create-job-artifact-request.d.ts +3 -8
- package/lib/request/create-job-request.d.ts +1 -1
- package/lib/request/create-job-run-request.d.ts +1 -1
- package/lib/request/create-model-artifact-request.d.ts +1 -1
- package/lib/request/create-model-deployment-request.d.ts +1 -1
- package/lib/request/create-model-provenance-request.d.ts +1 -1
- package/lib/request/create-model-request.d.ts +1 -1
- package/lib/request/create-notebook-session-request.d.ts +1 -1
- package/lib/request/create-project-request.d.ts +1 -1
- package/lib/request/deactivate-model-deployment-request.d.ts +1 -1
- package/lib/request/deactivate-model-request.d.ts +1 -1
- package/lib/request/deactivate-notebook-session-request.d.ts +1 -1
- package/lib/request/delete-job-request.d.ts +1 -1
- package/lib/request/delete-job-run-request.d.ts +1 -1
- package/lib/request/delete-model-deployment-request.d.ts +1 -1
- package/lib/request/delete-model-request.d.ts +1 -1
- package/lib/request/delete-notebook-session-request.d.ts +1 -1
- package/lib/request/delete-project-request.d.ts +1 -1
- package/lib/request/get-job-artifact-content-request.d.ts +1 -1
- package/lib/request/get-job-request.d.ts +1 -1
- package/lib/request/get-job-run-request.d.ts +1 -1
- package/lib/request/get-model-artifact-content-request.d.ts +1 -1
- package/lib/request/get-model-deployment-request.d.ts +1 -1
- package/lib/request/get-model-provenance-request.d.ts +1 -1
- package/lib/request/get-model-request.d.ts +1 -1
- package/lib/request/get-notebook-session-request.d.ts +1 -1
- package/lib/request/get-project-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/head-job-artifact-request.d.ts +1 -1
- package/lib/request/head-model-artifact-request.d.ts +1 -1
- package/lib/request/list-fast-launch-job-configs-request.d.ts +1 -1
- package/lib/request/list-job-runs-request.d.ts +1 -1
- package/lib/request/list-job-shapes-request.d.ts +1 -1
- package/lib/request/list-jobs-request.d.ts +1 -1
- package/lib/request/list-model-deployment-shapes-request.d.ts +1 -1
- package/lib/request/list-model-deployments-request.d.ts +1 -1
- package/lib/request/list-models-request.d.ts +1 -1
- package/lib/request/list-notebook-session-shapes-request.d.ts +1 -1
- package/lib/request/list-notebook-sessions-request.d.ts +1 -1
- package/lib/request/list-projects-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/update-job-request.d.ts +1 -1
- package/lib/request/update-job-run-request.d.ts +1 -1
- package/lib/request/update-model-deployment-request.d.ts +1 -1
- package/lib/request/update-model-provenance-request.d.ts +1 -1
- package/lib/request/update-model-request.d.ts +1 -1
- package/lib/request/update-notebook-session-request.d.ts +1 -1
- package/lib/request/update-project-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -153,11 +153,11 @@ class DataScienceClient {
|
|
|
153
153
|
}
|
|
154
154
|
/**
|
|
155
155
|
* Activates the model.
|
|
156
|
-
* This operation
|
|
156
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
157
157
|
* @param ActivateModelRequest
|
|
158
158
|
* @return ActivateModelResponse
|
|
159
159
|
* @throws OciError when an error occurs
|
|
160
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
161
161
|
*/
|
|
162
162
|
activateModel(activateModelRequest) {
|
|
163
163
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -172,7 +172,7 @@ class DataScienceClient {
|
|
|
172
172
|
"if-match": activateModelRequest.ifMatch,
|
|
173
173
|
"opc-request-id": activateModelRequest.opcRequestId
|
|
174
174
|
};
|
|
175
|
-
const specRetryConfiguration = common.
|
|
175
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
176
176
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, activateModelRequest.retryConfiguration, specRetryConfiguration);
|
|
177
177
|
if (this.logger)
|
|
178
178
|
retrier.logger = this.logger;
|
|
@@ -219,7 +219,7 @@ class DataScienceClient {
|
|
|
219
219
|
* @param ActivateModelDeploymentRequest
|
|
220
220
|
* @return ActivateModelDeploymentResponse
|
|
221
221
|
* @throws OciError when an error occurs
|
|
222
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
223
223
|
*/
|
|
224
224
|
activateModelDeployment(activateModelDeploymentRequest) {
|
|
225
225
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -277,7 +277,7 @@ class DataScienceClient {
|
|
|
277
277
|
* @param ActivateNotebookSessionRequest
|
|
278
278
|
* @return ActivateNotebookSessionResponse
|
|
279
279
|
* @throws OciError when an error occurs
|
|
280
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
281
281
|
*/
|
|
282
282
|
activateNotebookSession(activateNotebookSessionRequest) {
|
|
283
283
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -331,11 +331,11 @@ class DataScienceClient {
|
|
|
331
331
|
}
|
|
332
332
|
/**
|
|
333
333
|
* Cancels an IN_PROGRESS job run.
|
|
334
|
-
* This operation
|
|
334
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
335
335
|
* @param CancelJobRunRequest
|
|
336
336
|
* @return CancelJobRunResponse
|
|
337
337
|
* @throws OciError when an error occurs
|
|
338
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
339
339
|
*/
|
|
340
340
|
cancelJobRun(cancelJobRunRequest) {
|
|
341
341
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -350,7 +350,7 @@ class DataScienceClient {
|
|
|
350
350
|
"opc-request-id": cancelJobRunRequest.opcRequestId,
|
|
351
351
|
"if-match": cancelJobRunRequest.ifMatch
|
|
352
352
|
};
|
|
353
|
-
const specRetryConfiguration = common.
|
|
353
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
354
354
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, cancelJobRunRequest.retryConfiguration, specRetryConfiguration);
|
|
355
355
|
if (this.logger)
|
|
356
356
|
retrier.logger = this.logger;
|
|
@@ -388,7 +388,7 @@ class DataScienceClient {
|
|
|
388
388
|
* @param CancelWorkRequestRequest
|
|
389
389
|
* @return CancelWorkRequestResponse
|
|
390
390
|
* @throws OciError when an error occurs
|
|
391
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
392
392
|
*/
|
|
393
393
|
cancelWorkRequest(cancelWorkRequestRequest) {
|
|
394
394
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -441,7 +441,7 @@ class DataScienceClient {
|
|
|
441
441
|
* @param ChangeJobCompartmentRequest
|
|
442
442
|
* @return ChangeJobCompartmentResponse
|
|
443
443
|
* @throws OciError when an error occurs
|
|
444
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
445
445
|
*/
|
|
446
446
|
changeJobCompartment(changeJobCompartmentRequest) {
|
|
447
447
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -495,7 +495,7 @@ class DataScienceClient {
|
|
|
495
495
|
* @param ChangeJobRunCompartmentRequest
|
|
496
496
|
* @return ChangeJobRunCompartmentResponse
|
|
497
497
|
* @throws OciError when an error occurs
|
|
498
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
499
499
|
*/
|
|
500
500
|
changeJobRunCompartment(changeJobRunCompartmentRequest) {
|
|
501
501
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -549,7 +549,7 @@ class DataScienceClient {
|
|
|
549
549
|
* @param ChangeModelCompartmentRequest
|
|
550
550
|
* @return ChangeModelCompartmentResponse
|
|
551
551
|
* @throws OciError when an error occurs
|
|
552
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
553
553
|
*/
|
|
554
554
|
changeModelCompartment(changeModelCompartmentRequest) {
|
|
555
555
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -604,7 +604,7 @@ class DataScienceClient {
|
|
|
604
604
|
* @param ChangeModelDeploymentCompartmentRequest
|
|
605
605
|
* @return ChangeModelDeploymentCompartmentResponse
|
|
606
606
|
* @throws OciError when an error occurs
|
|
607
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
608
608
|
*/
|
|
609
609
|
changeModelDeploymentCompartment(changeModelDeploymentCompartmentRequest) {
|
|
610
610
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -659,7 +659,7 @@ class DataScienceClient {
|
|
|
659
659
|
* @param ChangeNotebookSessionCompartmentRequest
|
|
660
660
|
* @return ChangeNotebookSessionCompartmentResponse
|
|
661
661
|
* @throws OciError when an error occurs
|
|
662
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
663
663
|
*/
|
|
664
664
|
changeNotebookSessionCompartment(changeNotebookSessionCompartmentRequest) {
|
|
665
665
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -714,7 +714,7 @@ class DataScienceClient {
|
|
|
714
714
|
* @param ChangeProjectCompartmentRequest
|
|
715
715
|
* @return ChangeProjectCompartmentResponse
|
|
716
716
|
* @throws OciError when an error occurs
|
|
717
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
718
718
|
*/
|
|
719
719
|
changeProjectCompartment(changeProjectCompartmentRequest) {
|
|
720
720
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -765,11 +765,11 @@ class DataScienceClient {
|
|
|
765
765
|
}
|
|
766
766
|
/**
|
|
767
767
|
* Creates a job.
|
|
768
|
-
* This operation
|
|
768
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
769
769
|
* @param CreateJobRequest
|
|
770
770
|
* @return CreateJobResponse
|
|
771
771
|
* @throws OciError when an error occurs
|
|
772
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
773
773
|
*/
|
|
774
774
|
createJob(createJobRequest) {
|
|
775
775
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -782,7 +782,7 @@ class DataScienceClient {
|
|
|
782
782
|
"opc-request-id": createJobRequest.opcRequestId,
|
|
783
783
|
"opc-retry-token": createJobRequest.opcRetryToken
|
|
784
784
|
};
|
|
785
|
-
const specRetryConfiguration = common.
|
|
785
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
786
786
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createJobRequest.retryConfiguration, specRetryConfiguration);
|
|
787
787
|
if (this.logger)
|
|
788
788
|
retrier.logger = this.logger;
|
|
@@ -830,7 +830,7 @@ class DataScienceClient {
|
|
|
830
830
|
* @param CreateJobArtifactRequest
|
|
831
831
|
* @return CreateJobArtifactResponse
|
|
832
832
|
* @throws OciError when an error occurs
|
|
833
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
834
834
|
*/
|
|
835
835
|
createJobArtifact(createJobArtifactRequest) {
|
|
836
836
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -887,11 +887,11 @@ class DataScienceClient {
|
|
|
887
887
|
}
|
|
888
888
|
/**
|
|
889
889
|
* Creates a job run.
|
|
890
|
-
* This operation
|
|
890
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
891
891
|
* @param CreateJobRunRequest
|
|
892
892
|
* @return CreateJobRunResponse
|
|
893
893
|
* @throws OciError when an error occurs
|
|
894
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
895
895
|
*/
|
|
896
896
|
createJobRun(createJobRunRequest) {
|
|
897
897
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -904,7 +904,7 @@ class DataScienceClient {
|
|
|
904
904
|
"opc-request-id": createJobRunRequest.opcRequestId,
|
|
905
905
|
"opc-retry-token": createJobRunRequest.opcRetryToken
|
|
906
906
|
};
|
|
907
|
-
const specRetryConfiguration = common.
|
|
907
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
908
908
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createJobRunRequest.retryConfiguration, specRetryConfiguration);
|
|
909
909
|
if (this.logger)
|
|
910
910
|
retrier.logger = this.logger;
|
|
@@ -948,11 +948,11 @@ class DataScienceClient {
|
|
|
948
948
|
}
|
|
949
949
|
/**
|
|
950
950
|
* Creates a new model.
|
|
951
|
-
* This operation
|
|
951
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
952
952
|
* @param CreateModelRequest
|
|
953
953
|
* @return CreateModelResponse
|
|
954
954
|
* @throws OciError when an error occurs
|
|
955
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
956
956
|
*/
|
|
957
957
|
createModel(createModelRequest) {
|
|
958
958
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -965,7 +965,7 @@ class DataScienceClient {
|
|
|
965
965
|
"opc-request-id": createModelRequest.opcRequestId,
|
|
966
966
|
"opc-retry-token": createModelRequest.opcRetryToken
|
|
967
967
|
};
|
|
968
|
-
const specRetryConfiguration = common.
|
|
968
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
969
969
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createModelRequest.retryConfiguration, specRetryConfiguration);
|
|
970
970
|
if (this.logger)
|
|
971
971
|
retrier.logger = this.logger;
|
|
@@ -1009,11 +1009,11 @@ class DataScienceClient {
|
|
|
1009
1009
|
}
|
|
1010
1010
|
/**
|
|
1011
1011
|
* Creates model artifact for specified model.
|
|
1012
|
-
* This operation
|
|
1012
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1013
1013
|
* @param CreateModelArtifactRequest
|
|
1014
1014
|
* @return CreateModelArtifactResponse
|
|
1015
1015
|
* @throws OciError when an error occurs
|
|
1016
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1017
1017
|
*/
|
|
1018
1018
|
createModelArtifact(createModelArtifactRequest) {
|
|
1019
1019
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1029,7 +1029,7 @@ class DataScienceClient {
|
|
|
1029
1029
|
"content-length": createModelArtifactRequest.contentLength,
|
|
1030
1030
|
"content-disposition": createModelArtifactRequest.contentDisposition
|
|
1031
1031
|
};
|
|
1032
|
-
const specRetryConfiguration = common.
|
|
1032
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1033
1033
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createModelArtifactRequest.retryConfiguration, specRetryConfiguration);
|
|
1034
1034
|
if (this.logger)
|
|
1035
1035
|
retrier.logger = this.logger;
|
|
@@ -1070,11 +1070,11 @@ class DataScienceClient {
|
|
|
1070
1070
|
}
|
|
1071
1071
|
/**
|
|
1072
1072
|
* Creates a new model deployment.
|
|
1073
|
-
* This operation
|
|
1073
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1074
1074
|
* @param CreateModelDeploymentRequest
|
|
1075
1075
|
* @return CreateModelDeploymentResponse
|
|
1076
1076
|
* @throws OciError when an error occurs
|
|
1077
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1078
1078
|
*/
|
|
1079
1079
|
createModelDeployment(createModelDeploymentRequest) {
|
|
1080
1080
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1087,7 +1087,7 @@ class DataScienceClient {
|
|
|
1087
1087
|
"opc-request-id": createModelDeploymentRequest.opcRequestId,
|
|
1088
1088
|
"opc-retry-token": createModelDeploymentRequest.opcRetryToken
|
|
1089
1089
|
};
|
|
1090
|
-
const specRetryConfiguration = common.
|
|
1090
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1091
1091
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createModelDeploymentRequest.retryConfiguration, specRetryConfiguration);
|
|
1092
1092
|
if (this.logger)
|
|
1093
1093
|
retrier.logger = this.logger;
|
|
@@ -1141,11 +1141,11 @@ class DataScienceClient {
|
|
|
1141
1141
|
}
|
|
1142
1142
|
/**
|
|
1143
1143
|
* Creates provenance information for the specified model.
|
|
1144
|
-
* This operation
|
|
1144
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1145
1145
|
* @param CreateModelProvenanceRequest
|
|
1146
1146
|
* @return CreateModelProvenanceResponse
|
|
1147
1147
|
* @throws OciError when an error occurs
|
|
1148
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1149
1149
|
*/
|
|
1150
1150
|
createModelProvenance(createModelProvenanceRequest) {
|
|
1151
1151
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1160,7 +1160,7 @@ class DataScienceClient {
|
|
|
1160
1160
|
"opc-request-id": createModelProvenanceRequest.opcRequestId,
|
|
1161
1161
|
"opc-retry-token": createModelProvenanceRequest.opcRetryToken
|
|
1162
1162
|
};
|
|
1163
|
-
const specRetryConfiguration = common.
|
|
1163
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1164
1164
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createModelProvenanceRequest.retryConfiguration, specRetryConfiguration);
|
|
1165
1165
|
if (this.logger)
|
|
1166
1166
|
retrier.logger = this.logger;
|
|
@@ -1204,11 +1204,11 @@ class DataScienceClient {
|
|
|
1204
1204
|
}
|
|
1205
1205
|
/**
|
|
1206
1206
|
* Creates a new notebook session.
|
|
1207
|
-
* This operation
|
|
1207
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1208
1208
|
* @param CreateNotebookSessionRequest
|
|
1209
1209
|
* @return CreateNotebookSessionResponse
|
|
1210
1210
|
* @throws OciError when an error occurs
|
|
1211
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1212
1212
|
*/
|
|
1213
1213
|
createNotebookSession(createNotebookSessionRequest) {
|
|
1214
1214
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1221,7 +1221,7 @@ class DataScienceClient {
|
|
|
1221
1221
|
"opc-request-id": createNotebookSessionRequest.opcRequestId,
|
|
1222
1222
|
"opc-retry-token": createNotebookSessionRequest.opcRetryToken
|
|
1223
1223
|
};
|
|
1224
|
-
const specRetryConfiguration = common.
|
|
1224
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1225
1225
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createNotebookSessionRequest.retryConfiguration, specRetryConfiguration);
|
|
1226
1226
|
if (this.logger)
|
|
1227
1227
|
retrier.logger = this.logger;
|
|
@@ -1275,11 +1275,11 @@ class DataScienceClient {
|
|
|
1275
1275
|
}
|
|
1276
1276
|
/**
|
|
1277
1277
|
* Creates a new project.
|
|
1278
|
-
* This operation
|
|
1278
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1279
1279
|
* @param CreateProjectRequest
|
|
1280
1280
|
* @return CreateProjectResponse
|
|
1281
1281
|
* @throws OciError when an error occurs
|
|
1282
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1283
1283
|
*/
|
|
1284
1284
|
createProject(createProjectRequest) {
|
|
1285
1285
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1292,7 +1292,7 @@ class DataScienceClient {
|
|
|
1292
1292
|
"opc-request-id": createProjectRequest.opcRequestId,
|
|
1293
1293
|
"opc-retry-token": createProjectRequest.opcRetryToken
|
|
1294
1294
|
};
|
|
1295
|
-
const specRetryConfiguration = common.
|
|
1295
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1296
1296
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createProjectRequest.retryConfiguration, specRetryConfiguration);
|
|
1297
1297
|
if (this.logger)
|
|
1298
1298
|
retrier.logger = this.logger;
|
|
@@ -1336,11 +1336,11 @@ class DataScienceClient {
|
|
|
1336
1336
|
}
|
|
1337
1337
|
/**
|
|
1338
1338
|
* Deactivates the model.
|
|
1339
|
-
* This operation
|
|
1339
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1340
1340
|
* @param DeactivateModelRequest
|
|
1341
1341
|
* @return DeactivateModelResponse
|
|
1342
1342
|
* @throws OciError when an error occurs
|
|
1343
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1344
1344
|
*/
|
|
1345
1345
|
deactivateModel(deactivateModelRequest) {
|
|
1346
1346
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1355,7 +1355,7 @@ class DataScienceClient {
|
|
|
1355
1355
|
"if-match": deactivateModelRequest.ifMatch,
|
|
1356
1356
|
"opc-request-id": deactivateModelRequest.opcRequestId
|
|
1357
1357
|
};
|
|
1358
|
-
const specRetryConfiguration = common.
|
|
1358
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1359
1359
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deactivateModelRequest.retryConfiguration, specRetryConfiguration);
|
|
1360
1360
|
if (this.logger)
|
|
1361
1361
|
retrier.logger = this.logger;
|
|
@@ -1402,7 +1402,7 @@ class DataScienceClient {
|
|
|
1402
1402
|
* @param DeactivateModelDeploymentRequest
|
|
1403
1403
|
* @return DeactivateModelDeploymentResponse
|
|
1404
1404
|
* @throws OciError when an error occurs
|
|
1405
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1406
1406
|
*/
|
|
1407
1407
|
deactivateModelDeployment(deactivateModelDeploymentRequest) {
|
|
1408
1408
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1460,7 +1460,7 @@ class DataScienceClient {
|
|
|
1460
1460
|
* @param DeactivateNotebookSessionRequest
|
|
1461
1461
|
* @return DeactivateNotebookSessionResponse
|
|
1462
1462
|
* @throws OciError when an error occurs
|
|
1463
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1464
1464
|
*/
|
|
1465
1465
|
deactivateNotebookSession(deactivateNotebookSessionRequest) {
|
|
1466
1466
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1514,11 +1514,11 @@ class DataScienceClient {
|
|
|
1514
1514
|
}
|
|
1515
1515
|
/**
|
|
1516
1516
|
* Deletes a job.
|
|
1517
|
-
* This operation
|
|
1517
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1518
1518
|
* @param DeleteJobRequest
|
|
1519
1519
|
* @return DeleteJobResponse
|
|
1520
1520
|
* @throws OciError when an error occurs
|
|
1521
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1522
1522
|
*/
|
|
1523
1523
|
deleteJob(deleteJobRequest) {
|
|
1524
1524
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1535,7 +1535,7 @@ class DataScienceClient {
|
|
|
1535
1535
|
"if-match": deleteJobRequest.ifMatch,
|
|
1536
1536
|
"opc-request-id": deleteJobRequest.opcRequestId
|
|
1537
1537
|
};
|
|
1538
|
-
const specRetryConfiguration = common.
|
|
1538
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1539
1539
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteJobRequest.retryConfiguration, specRetryConfiguration);
|
|
1540
1540
|
if (this.logger)
|
|
1541
1541
|
retrier.logger = this.logger;
|
|
@@ -1574,11 +1574,11 @@ class DataScienceClient {
|
|
|
1574
1574
|
}
|
|
1575
1575
|
/**
|
|
1576
1576
|
* Deletes a job run.
|
|
1577
|
-
* This operation
|
|
1577
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1578
1578
|
* @param DeleteJobRunRequest
|
|
1579
1579
|
* @return DeleteJobRunResponse
|
|
1580
1580
|
* @throws OciError when an error occurs
|
|
1581
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1582
1582
|
*/
|
|
1583
1583
|
deleteJobRun(deleteJobRunRequest) {
|
|
1584
1584
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1593,7 +1593,7 @@ class DataScienceClient {
|
|
|
1593
1593
|
"if-match": deleteJobRunRequest.ifMatch,
|
|
1594
1594
|
"opc-request-id": deleteJobRunRequest.opcRequestId
|
|
1595
1595
|
};
|
|
1596
|
-
const specRetryConfiguration = common.
|
|
1596
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1597
1597
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteJobRunRequest.retryConfiguration, specRetryConfiguration);
|
|
1598
1598
|
if (this.logger)
|
|
1599
1599
|
retrier.logger = this.logger;
|
|
@@ -1627,11 +1627,11 @@ class DataScienceClient {
|
|
|
1627
1627
|
}
|
|
1628
1628
|
/**
|
|
1629
1629
|
* Deletes the specified model.
|
|
1630
|
-
* This operation
|
|
1630
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1631
1631
|
* @param DeleteModelRequest
|
|
1632
1632
|
* @return DeleteModelResponse
|
|
1633
1633
|
* @throws OciError when an error occurs
|
|
1634
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1635
1635
|
*/
|
|
1636
1636
|
deleteModel(deleteModelRequest) {
|
|
1637
1637
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1646,7 +1646,7 @@ class DataScienceClient {
|
|
|
1646
1646
|
"if-match": deleteModelRequest.ifMatch,
|
|
1647
1647
|
"opc-request-id": deleteModelRequest.opcRequestId
|
|
1648
1648
|
};
|
|
1649
|
-
const specRetryConfiguration = common.
|
|
1649
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1650
1650
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteModelRequest.retryConfiguration, specRetryConfiguration);
|
|
1651
1651
|
if (this.logger)
|
|
1652
1652
|
retrier.logger = this.logger;
|
|
@@ -1680,11 +1680,11 @@ class DataScienceClient {
|
|
|
1680
1680
|
}
|
|
1681
1681
|
/**
|
|
1682
1682
|
* Deletes the specified model deployment. Any unsaved work in this model deployment is lost.
|
|
1683
|
-
* This operation
|
|
1683
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1684
1684
|
* @param DeleteModelDeploymentRequest
|
|
1685
1685
|
* @return DeleteModelDeploymentResponse
|
|
1686
1686
|
* @throws OciError when an error occurs
|
|
1687
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1688
1688
|
*/
|
|
1689
1689
|
deleteModelDeployment(deleteModelDeploymentRequest) {
|
|
1690
1690
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1699,7 +1699,7 @@ class DataScienceClient {
|
|
|
1699
1699
|
"if-match": deleteModelDeploymentRequest.ifMatch,
|
|
1700
1700
|
"opc-request-id": deleteModelDeploymentRequest.opcRequestId
|
|
1701
1701
|
};
|
|
1702
|
-
const specRetryConfiguration = common.
|
|
1702
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1703
1703
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteModelDeploymentRequest.retryConfiguration, specRetryConfiguration);
|
|
1704
1704
|
if (this.logger)
|
|
1705
1705
|
retrier.logger = this.logger;
|
|
@@ -1738,11 +1738,11 @@ class DataScienceClient {
|
|
|
1738
1738
|
}
|
|
1739
1739
|
/**
|
|
1740
1740
|
* Deletes the specified notebook session. Any unsaved work in this notebook session are lost.
|
|
1741
|
-
* This operation
|
|
1741
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1742
1742
|
* @param DeleteNotebookSessionRequest
|
|
1743
1743
|
* @return DeleteNotebookSessionResponse
|
|
1744
1744
|
* @throws OciError when an error occurs
|
|
1745
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1746
1746
|
*/
|
|
1747
1747
|
deleteNotebookSession(deleteNotebookSessionRequest) {
|
|
1748
1748
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1757,7 +1757,7 @@ class DataScienceClient {
|
|
|
1757
1757
|
"if-match": deleteNotebookSessionRequest.ifMatch,
|
|
1758
1758
|
"opc-request-id": deleteNotebookSessionRequest.opcRequestId
|
|
1759
1759
|
};
|
|
1760
|
-
const specRetryConfiguration = common.
|
|
1760
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1761
1761
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteNotebookSessionRequest.retryConfiguration, specRetryConfiguration);
|
|
1762
1762
|
if (this.logger)
|
|
1763
1763
|
retrier.logger = this.logger;
|
|
@@ -1796,11 +1796,11 @@ class DataScienceClient {
|
|
|
1796
1796
|
}
|
|
1797
1797
|
/**
|
|
1798
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.
|
|
1799
|
-
* This operation
|
|
1799
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1800
1800
|
* @param DeleteProjectRequest
|
|
1801
1801
|
* @return DeleteProjectResponse
|
|
1802
1802
|
* @throws OciError when an error occurs
|
|
1803
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1804
1804
|
*/
|
|
1805
1805
|
deleteProject(deleteProjectRequest) {
|
|
1806
1806
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1815,7 +1815,7 @@ class DataScienceClient {
|
|
|
1815
1815
|
"if-match": deleteProjectRequest.ifMatch,
|
|
1816
1816
|
"opc-request-id": deleteProjectRequest.opcRequestId
|
|
1817
1817
|
};
|
|
1818
|
-
const specRetryConfiguration = common.
|
|
1818
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1819
1819
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteProjectRequest.retryConfiguration, specRetryConfiguration);
|
|
1820
1820
|
if (this.logger)
|
|
1821
1821
|
retrier.logger = this.logger;
|
|
@@ -1854,11 +1854,11 @@ class DataScienceClient {
|
|
|
1854
1854
|
}
|
|
1855
1855
|
/**
|
|
1856
1856
|
* Gets a job.
|
|
1857
|
-
* This operation
|
|
1857
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1858
1858
|
* @param GetJobRequest
|
|
1859
1859
|
* @return GetJobResponse
|
|
1860
1860
|
* @throws OciError when an error occurs
|
|
1861
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1862
1862
|
*/
|
|
1863
1863
|
getJob(getJobRequest) {
|
|
1864
1864
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1872,7 +1872,7 @@ class DataScienceClient {
|
|
|
1872
1872
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1873
1873
|
"opc-request-id": getJobRequest.opcRequestId
|
|
1874
1874
|
};
|
|
1875
|
-
const specRetryConfiguration = common.
|
|
1875
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1876
1876
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getJobRequest.retryConfiguration, specRetryConfiguration);
|
|
1877
1877
|
if (this.logger)
|
|
1878
1878
|
retrier.logger = this.logger;
|
|
@@ -1915,11 +1915,11 @@ class DataScienceClient {
|
|
|
1915
1915
|
}
|
|
1916
1916
|
/**
|
|
1917
1917
|
* Downloads job artifact content for specified job.
|
|
1918
|
-
* This operation
|
|
1918
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1919
1919
|
* @param GetJobArtifactContentRequest
|
|
1920
1920
|
* @return GetJobArtifactContentResponse
|
|
1921
1921
|
* @throws OciError when an error occurs
|
|
1922
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
1923
1923
|
*/
|
|
1924
1924
|
getJobArtifactContent(getJobArtifactContentRequest) {
|
|
1925
1925
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1934,7 +1934,7 @@ class DataScienceClient {
|
|
|
1934
1934
|
"opc-request-id": getJobArtifactContentRequest.opcRequestId,
|
|
1935
1935
|
"range": getJobArtifactContentRequest.range
|
|
1936
1936
|
};
|
|
1937
|
-
const specRetryConfiguration = common.
|
|
1937
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1938
1938
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getJobArtifactContentRequest.retryConfiguration, specRetryConfiguration);
|
|
1939
1939
|
if (this.logger)
|
|
1940
1940
|
retrier.logger = this.logger;
|
|
@@ -1996,11 +1996,11 @@ class DataScienceClient {
|
|
|
1996
1996
|
}
|
|
1997
1997
|
/**
|
|
1998
1998
|
* Gets a job run.
|
|
1999
|
-
* This operation
|
|
1999
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
2000
2000
|
* @param GetJobRunRequest
|
|
2001
2001
|
* @return GetJobRunResponse
|
|
2002
2002
|
* @throws OciError when an error occurs
|
|
2003
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
2004
2004
|
*/
|
|
2005
2005
|
getJobRun(getJobRunRequest) {
|
|
2006
2006
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2014,7 +2014,7 @@ class DataScienceClient {
|
|
|
2014
2014
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2015
2015
|
"opc-request-id": getJobRunRequest.opcRequestId
|
|
2016
2016
|
};
|
|
2017
|
-
const specRetryConfiguration = common.
|
|
2017
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2018
2018
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getJobRunRequest.retryConfiguration, specRetryConfiguration);
|
|
2019
2019
|
if (this.logger)
|
|
2020
2020
|
retrier.logger = this.logger;
|
|
@@ -2057,11 +2057,11 @@ class DataScienceClient {
|
|
|
2057
2057
|
}
|
|
2058
2058
|
/**
|
|
2059
2059
|
* Gets the specified model's information.
|
|
2060
|
-
* This operation
|
|
2060
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
2061
2061
|
* @param GetModelRequest
|
|
2062
2062
|
* @return GetModelResponse
|
|
2063
2063
|
* @throws OciError when an error occurs
|
|
2064
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
2065
2065
|
*/
|
|
2066
2066
|
getModel(getModelRequest) {
|
|
2067
2067
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2075,7 +2075,7 @@ class DataScienceClient {
|
|
|
2075
2075
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2076
2076
|
"opc-request-id": getModelRequest.opcRequestId
|
|
2077
2077
|
};
|
|
2078
|
-
const specRetryConfiguration = common.
|
|
2078
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2079
2079
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getModelRequest.retryConfiguration, specRetryConfiguration);
|
|
2080
2080
|
if (this.logger)
|
|
2081
2081
|
retrier.logger = this.logger;
|
|
@@ -2118,11 +2118,11 @@ class DataScienceClient {
|
|
|
2118
2118
|
}
|
|
2119
2119
|
/**
|
|
2120
2120
|
* Downloads model artifact content for specified model.
|
|
2121
|
-
* This operation
|
|
2121
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
2122
2122
|
* @param GetModelArtifactContentRequest
|
|
2123
2123
|
* @return GetModelArtifactContentResponse
|
|
2124
2124
|
* @throws OciError when an error occurs
|
|
2125
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
2126
2126
|
*/
|
|
2127
2127
|
getModelArtifactContent(getModelArtifactContentRequest) {
|
|
2128
2128
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2137,7 +2137,7 @@ class DataScienceClient {
|
|
|
2137
2137
|
"opc-request-id": getModelArtifactContentRequest.opcRequestId,
|
|
2138
2138
|
"range": getModelArtifactContentRequest.range
|
|
2139
2139
|
};
|
|
2140
|
-
const specRetryConfiguration = common.
|
|
2140
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2141
2141
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getModelArtifactContentRequest.retryConfiguration, specRetryConfiguration);
|
|
2142
2142
|
if (this.logger)
|
|
2143
2143
|
retrier.logger = this.logger;
|
|
@@ -2199,11 +2199,11 @@ class DataScienceClient {
|
|
|
2199
2199
|
}
|
|
2200
2200
|
/**
|
|
2201
2201
|
* Retrieves the model deployment for the specified `modelDeploymentId`.
|
|
2202
|
-
* This operation
|
|
2202
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
2203
2203
|
* @param GetModelDeploymentRequest
|
|
2204
2204
|
* @return GetModelDeploymentResponse
|
|
2205
2205
|
* @throws OciError when an error occurs
|
|
2206
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
2207
2207
|
*/
|
|
2208
2208
|
getModelDeployment(getModelDeploymentRequest) {
|
|
2209
2209
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2217,7 +2217,7 @@ class DataScienceClient {
|
|
|
2217
2217
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2218
2218
|
"opc-request-id": getModelDeploymentRequest.opcRequestId
|
|
2219
2219
|
};
|
|
2220
|
-
const specRetryConfiguration = common.
|
|
2220
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2221
2221
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getModelDeploymentRequest.retryConfiguration, specRetryConfiguration);
|
|
2222
2222
|
if (this.logger)
|
|
2223
2223
|
retrier.logger = this.logger;
|
|
@@ -2260,11 +2260,11 @@ class DataScienceClient {
|
|
|
2260
2260
|
}
|
|
2261
2261
|
/**
|
|
2262
2262
|
* Gets provenance information for specified model.
|
|
2263
|
-
* This operation
|
|
2263
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
2264
2264
|
* @param GetModelProvenanceRequest
|
|
2265
2265
|
* @return GetModelProvenanceResponse
|
|
2266
2266
|
* @throws OciError when an error occurs
|
|
2267
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
2268
2268
|
*/
|
|
2269
2269
|
getModelProvenance(getModelProvenanceRequest) {
|
|
2270
2270
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2278,7 +2278,7 @@ class DataScienceClient {
|
|
|
2278
2278
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2279
2279
|
"opc-request-id": getModelProvenanceRequest.opcRequestId
|
|
2280
2280
|
};
|
|
2281
|
-
const specRetryConfiguration = common.
|
|
2281
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2282
2282
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getModelProvenanceRequest.retryConfiguration, specRetryConfiguration);
|
|
2283
2283
|
if (this.logger)
|
|
2284
2284
|
retrier.logger = this.logger;
|
|
@@ -2321,11 +2321,11 @@ class DataScienceClient {
|
|
|
2321
2321
|
}
|
|
2322
2322
|
/**
|
|
2323
2323
|
* Gets the specified notebook session's information.
|
|
2324
|
-
* This operation
|
|
2324
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
2325
2325
|
* @param GetNotebookSessionRequest
|
|
2326
2326
|
* @return GetNotebookSessionResponse
|
|
2327
2327
|
* @throws OciError when an error occurs
|
|
2328
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
2329
2329
|
*/
|
|
2330
2330
|
getNotebookSession(getNotebookSessionRequest) {
|
|
2331
2331
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2339,7 +2339,7 @@ class DataScienceClient {
|
|
|
2339
2339
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2340
2340
|
"opc-request-id": getNotebookSessionRequest.opcRequestId
|
|
2341
2341
|
};
|
|
2342
|
-
const specRetryConfiguration = common.
|
|
2342
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2343
2343
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getNotebookSessionRequest.retryConfiguration, specRetryConfiguration);
|
|
2344
2344
|
if (this.logger)
|
|
2345
2345
|
retrier.logger = this.logger;
|
|
@@ -2382,11 +2382,11 @@ class DataScienceClient {
|
|
|
2382
2382
|
}
|
|
2383
2383
|
/**
|
|
2384
2384
|
* Gets the specified project's information.
|
|
2385
|
-
* This operation
|
|
2385
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
2386
2386
|
* @param GetProjectRequest
|
|
2387
2387
|
* @return GetProjectResponse
|
|
2388
2388
|
* @throws OciError when an error occurs
|
|
2389
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
2390
2390
|
*/
|
|
2391
2391
|
getProject(getProjectRequest) {
|
|
2392
2392
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2400,7 +2400,7 @@ class DataScienceClient {
|
|
|
2400
2400
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2401
2401
|
"opc-request-id": getProjectRequest.opcRequestId
|
|
2402
2402
|
};
|
|
2403
|
-
const specRetryConfiguration = common.
|
|
2403
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2404
2404
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getProjectRequest.retryConfiguration, specRetryConfiguration);
|
|
2405
2405
|
if (this.logger)
|
|
2406
2406
|
retrier.logger = this.logger;
|
|
@@ -2447,7 +2447,7 @@ class DataScienceClient {
|
|
|
2447
2447
|
* @param GetWorkRequestRequest
|
|
2448
2448
|
* @return GetWorkRequestResponse
|
|
2449
2449
|
* @throws OciError when an error occurs
|
|
2450
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
2451
2451
|
*/
|
|
2452
2452
|
getWorkRequest(getWorkRequestRequest) {
|
|
2453
2453
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2509,11 +2509,11 @@ class DataScienceClient {
|
|
|
2509
2509
|
}
|
|
2510
2510
|
/**
|
|
2511
2511
|
* Gets job artifact metadata.
|
|
2512
|
-
* This operation
|
|
2512
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
2513
2513
|
* @param HeadJobArtifactRequest
|
|
2514
2514
|
* @return HeadJobArtifactResponse
|
|
2515
2515
|
* @throws OciError when an error occurs
|
|
2516
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
2517
2517
|
*/
|
|
2518
2518
|
headJobArtifact(headJobArtifactRequest) {
|
|
2519
2519
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2527,7 +2527,7 @@ class DataScienceClient {
|
|
|
2527
2527
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2528
2528
|
"opc-request-id": headJobArtifactRequest.opcRequestId
|
|
2529
2529
|
};
|
|
2530
|
-
const specRetryConfiguration = common.
|
|
2530
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2531
2531
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, headJobArtifactRequest.retryConfiguration, specRetryConfiguration);
|
|
2532
2532
|
if (this.logger)
|
|
2533
2533
|
retrier.logger = this.logger;
|
|
@@ -2586,11 +2586,11 @@ class DataScienceClient {
|
|
|
2586
2586
|
}
|
|
2587
2587
|
/**
|
|
2588
2588
|
* Gets model artifact metadata for specified model.
|
|
2589
|
-
* This operation
|
|
2589
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
2590
2590
|
* @param HeadModelArtifactRequest
|
|
2591
2591
|
* @return HeadModelArtifactResponse
|
|
2592
2592
|
* @throws OciError when an error occurs
|
|
2593
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
2594
2594
|
*/
|
|
2595
2595
|
headModelArtifact(headModelArtifactRequest) {
|
|
2596
2596
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2604,7 +2604,7 @@ class DataScienceClient {
|
|
|
2604
2604
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2605
2605
|
"opc-request-id": headModelArtifactRequest.opcRequestId
|
|
2606
2606
|
};
|
|
2607
|
-
const specRetryConfiguration = common.
|
|
2607
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2608
2608
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, headModelArtifactRequest.retryConfiguration, specRetryConfiguration);
|
|
2609
2609
|
if (this.logger)
|
|
2610
2610
|
retrier.logger = this.logger;
|
|
@@ -2663,11 +2663,11 @@ class DataScienceClient {
|
|
|
2663
2663
|
}
|
|
2664
2664
|
/**
|
|
2665
2665
|
* List fast launch capable job configs in the specified compartment.
|
|
2666
|
-
* This operation
|
|
2666
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
2667
2667
|
* @param ListFastLaunchJobConfigsRequest
|
|
2668
2668
|
* @return ListFastLaunchJobConfigsResponse
|
|
2669
2669
|
* @throws OciError when an error occurs
|
|
2670
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
2671
2671
|
*/
|
|
2672
2672
|
listFastLaunchJobConfigs(listFastLaunchJobConfigsRequest) {
|
|
2673
2673
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2683,7 +2683,7 @@ class DataScienceClient {
|
|
|
2683
2683
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2684
2684
|
"opc-request-id": listFastLaunchJobConfigsRequest.opcRequestId
|
|
2685
2685
|
};
|
|
2686
|
-
const specRetryConfiguration = common.
|
|
2686
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2687
2687
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listFastLaunchJobConfigsRequest.retryConfiguration, specRetryConfiguration);
|
|
2688
2688
|
if (this.logger)
|
|
2689
2689
|
retrier.logger = this.logger;
|
|
@@ -2771,11 +2771,11 @@ class DataScienceClient {
|
|
|
2771
2771
|
}
|
|
2772
2772
|
/**
|
|
2773
2773
|
* List out job runs.
|
|
2774
|
-
* This operation
|
|
2774
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
2775
2775
|
* @param ListJobRunsRequest
|
|
2776
2776
|
* @return ListJobRunsResponse
|
|
2777
2777
|
* @throws OciError when an error occurs
|
|
2778
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
2779
2779
|
*/
|
|
2780
2780
|
listJobRuns(listJobRunsRequest) {
|
|
2781
2781
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2798,7 +2798,7 @@ class DataScienceClient {
|
|
|
2798
2798
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2799
2799
|
"opc-request-id": listJobRunsRequest.opcRequestId
|
|
2800
2800
|
};
|
|
2801
|
-
const specRetryConfiguration = common.
|
|
2801
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2802
2802
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listJobRunsRequest.retryConfiguration, specRetryConfiguration);
|
|
2803
2803
|
if (this.logger)
|
|
2804
2804
|
retrier.logger = this.logger;
|
|
@@ -2886,11 +2886,11 @@ class DataScienceClient {
|
|
|
2886
2886
|
}
|
|
2887
2887
|
/**
|
|
2888
2888
|
* List job shapes available in the specified compartment.
|
|
2889
|
-
* This operation
|
|
2889
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
2890
2890
|
* @param ListJobShapesRequest
|
|
2891
2891
|
* @return ListJobShapesResponse
|
|
2892
2892
|
* @throws OciError when an error occurs
|
|
2893
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
2894
2894
|
*/
|
|
2895
2895
|
listJobShapes(listJobShapesRequest) {
|
|
2896
2896
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2906,7 +2906,7 @@ class DataScienceClient {
|
|
|
2906
2906
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2907
2907
|
"opc-request-id": listJobShapesRequest.opcRequestId
|
|
2908
2908
|
};
|
|
2909
|
-
const specRetryConfiguration = common.
|
|
2909
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2910
2910
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listJobShapesRequest.retryConfiguration, specRetryConfiguration);
|
|
2911
2911
|
if (this.logger)
|
|
2912
2912
|
retrier.logger = this.logger;
|
|
@@ -2994,11 +2994,11 @@ class DataScienceClient {
|
|
|
2994
2994
|
}
|
|
2995
2995
|
/**
|
|
2996
2996
|
* List jobs in the specified compartment.
|
|
2997
|
-
* This operation
|
|
2997
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
2998
2998
|
* @param ListJobsRequest
|
|
2999
2999
|
* @return ListJobsResponse
|
|
3000
3000
|
* @throws OciError when an error occurs
|
|
3001
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
3002
3002
|
*/
|
|
3003
3003
|
listJobs(listJobsRequest) {
|
|
3004
3004
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3021,7 +3021,7 @@ class DataScienceClient {
|
|
|
3021
3021
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3022
3022
|
"opc-request-id": listJobsRequest.opcRequestId
|
|
3023
3023
|
};
|
|
3024
|
-
const specRetryConfiguration = common.
|
|
3024
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
3025
3025
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listJobsRequest.retryConfiguration, specRetryConfiguration);
|
|
3026
3026
|
if (this.logger)
|
|
3027
3027
|
retrier.logger = this.logger;
|
|
@@ -3109,11 +3109,11 @@ class DataScienceClient {
|
|
|
3109
3109
|
}
|
|
3110
3110
|
/**
|
|
3111
3111
|
* Lists the valid model deployment shapes.
|
|
3112
|
-
* This operation
|
|
3112
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
3113
3113
|
* @param ListModelDeploymentShapesRequest
|
|
3114
3114
|
* @return ListModelDeploymentShapesResponse
|
|
3115
3115
|
* @throws OciError when an error occurs
|
|
3116
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
3117
3117
|
*/
|
|
3118
3118
|
listModelDeploymentShapes(listModelDeploymentShapesRequest) {
|
|
3119
3119
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3129,7 +3129,7 @@ class DataScienceClient {
|
|
|
3129
3129
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3130
3130
|
"opc-request-id": listModelDeploymentShapesRequest.opcRequestId
|
|
3131
3131
|
};
|
|
3132
|
-
const specRetryConfiguration = common.
|
|
3132
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
3133
3133
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listModelDeploymentShapesRequest.retryConfiguration, specRetryConfiguration);
|
|
3134
3134
|
if (this.logger)
|
|
3135
3135
|
retrier.logger = this.logger;
|
|
@@ -3218,11 +3218,11 @@ class DataScienceClient {
|
|
|
3218
3218
|
/**
|
|
3219
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.
|
|
3220
3220
|
*
|
|
3221
|
-
* This operation
|
|
3221
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
3222
3222
|
* @param ListModelDeploymentsRequest
|
|
3223
3223
|
* @return ListModelDeploymentsResponse
|
|
3224
3224
|
* @throws OciError when an error occurs
|
|
3225
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
3226
3226
|
*/
|
|
3227
3227
|
listModelDeployments(listModelDeploymentsRequest) {
|
|
3228
3228
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3245,7 +3245,7 @@ class DataScienceClient {
|
|
|
3245
3245
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3246
3246
|
"opc-request-id": listModelDeploymentsRequest.opcRequestId
|
|
3247
3247
|
};
|
|
3248
|
-
const specRetryConfiguration = common.
|
|
3248
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
3249
3249
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listModelDeploymentsRequest.retryConfiguration, specRetryConfiguration);
|
|
3250
3250
|
if (this.logger)
|
|
3251
3251
|
retrier.logger = this.logger;
|
|
@@ -3333,11 +3333,11 @@ class DataScienceClient {
|
|
|
3333
3333
|
}
|
|
3334
3334
|
/**
|
|
3335
3335
|
* Lists models in the specified compartment.
|
|
3336
|
-
* This operation
|
|
3336
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
3337
3337
|
* @param ListModelsRequest
|
|
3338
3338
|
* @return ListModelsResponse
|
|
3339
3339
|
* @throws OciError when an error occurs
|
|
3340
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
3341
3341
|
*/
|
|
3342
3342
|
listModels(listModelsRequest) {
|
|
3343
3343
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3360,7 +3360,7 @@ class DataScienceClient {
|
|
|
3360
3360
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3361
3361
|
"opc-request-id": listModelsRequest.opcRequestId
|
|
3362
3362
|
};
|
|
3363
|
-
const specRetryConfiguration = common.
|
|
3363
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
3364
3364
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listModelsRequest.retryConfiguration, specRetryConfiguration);
|
|
3365
3365
|
if (this.logger)
|
|
3366
3366
|
retrier.logger = this.logger;
|
|
@@ -3448,11 +3448,11 @@ class DataScienceClient {
|
|
|
3448
3448
|
}
|
|
3449
3449
|
/**
|
|
3450
3450
|
* Lists the valid notebook session shapes.
|
|
3451
|
-
* This operation
|
|
3451
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
3452
3452
|
* @param ListNotebookSessionShapesRequest
|
|
3453
3453
|
* @return ListNotebookSessionShapesResponse
|
|
3454
3454
|
* @throws OciError when an error occurs
|
|
3455
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
3456
3456
|
*/
|
|
3457
3457
|
listNotebookSessionShapes(listNotebookSessionShapesRequest) {
|
|
3458
3458
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3468,7 +3468,7 @@ class DataScienceClient {
|
|
|
3468
3468
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3469
3469
|
"opc-request-id": listNotebookSessionShapesRequest.opcRequestId
|
|
3470
3470
|
};
|
|
3471
|
-
const specRetryConfiguration = common.
|
|
3471
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
3472
3472
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listNotebookSessionShapesRequest.retryConfiguration, specRetryConfiguration);
|
|
3473
3473
|
if (this.logger)
|
|
3474
3474
|
retrier.logger = this.logger;
|
|
@@ -3556,11 +3556,11 @@ class DataScienceClient {
|
|
|
3556
3556
|
}
|
|
3557
3557
|
/**
|
|
3558
3558
|
* Lists the notebook sessions in the specified compartment.
|
|
3559
|
-
* This operation
|
|
3559
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
3560
3560
|
* @param ListNotebookSessionsRequest
|
|
3561
3561
|
* @return ListNotebookSessionsResponse
|
|
3562
3562
|
* @throws OciError when an error occurs
|
|
3563
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
3564
3564
|
*/
|
|
3565
3565
|
listNotebookSessions(listNotebookSessionsRequest) {
|
|
3566
3566
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3583,7 +3583,7 @@ class DataScienceClient {
|
|
|
3583
3583
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3584
3584
|
"opc-request-id": listNotebookSessionsRequest.opcRequestId
|
|
3585
3585
|
};
|
|
3586
|
-
const specRetryConfiguration = common.
|
|
3586
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
3587
3587
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listNotebookSessionsRequest.retryConfiguration, specRetryConfiguration);
|
|
3588
3588
|
if (this.logger)
|
|
3589
3589
|
retrier.logger = this.logger;
|
|
@@ -3671,11 +3671,11 @@ class DataScienceClient {
|
|
|
3671
3671
|
}
|
|
3672
3672
|
/**
|
|
3673
3673
|
* Lists projects in the specified compartment.
|
|
3674
|
-
* This operation
|
|
3674
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
3675
3675
|
* @param ListProjectsRequest
|
|
3676
3676
|
* @return ListProjectsResponse
|
|
3677
3677
|
* @throws OciError when an error occurs
|
|
3678
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
3679
3679
|
*/
|
|
3680
3680
|
listProjects(listProjectsRequest) {
|
|
3681
3681
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3697,7 +3697,7 @@ class DataScienceClient {
|
|
|
3697
3697
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3698
3698
|
"opc-request-id": listProjectsRequest.opcRequestId
|
|
3699
3699
|
};
|
|
3700
|
-
const specRetryConfiguration = common.
|
|
3700
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
3701
3701
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listProjectsRequest.retryConfiguration, specRetryConfiguration);
|
|
3702
3702
|
if (this.logger)
|
|
3703
3703
|
retrier.logger = this.logger;
|
|
@@ -3789,7 +3789,7 @@ class DataScienceClient {
|
|
|
3789
3789
|
* @param ListWorkRequestErrorsRequest
|
|
3790
3790
|
* @return ListWorkRequestErrorsResponse
|
|
3791
3791
|
* @throws OciError when an error occurs
|
|
3792
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
3793
3793
|
*/
|
|
3794
3794
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
3795
3795
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3845,7 +3845,7 @@ class DataScienceClient {
|
|
|
3845
3845
|
* @param ListWorkRequestLogsRequest
|
|
3846
3846
|
* @return ListWorkRequestLogsResponse
|
|
3847
3847
|
* @throws OciError when an error occurs
|
|
3848
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
3849
3849
|
*/
|
|
3850
3850
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
3851
3851
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3901,7 +3901,7 @@ class DataScienceClient {
|
|
|
3901
3901
|
* @param ListWorkRequestsRequest
|
|
3902
3902
|
* @return ListWorkRequestsResponse
|
|
3903
3903
|
* @throws OciError when an error occurs
|
|
3904
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
3905
3905
|
*/
|
|
3906
3906
|
listWorkRequests(listWorkRequestsRequest) {
|
|
3907
3907
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4010,11 +4010,11 @@ class DataScienceClient {
|
|
|
4010
4010
|
}
|
|
4011
4011
|
/**
|
|
4012
4012
|
* Updates a job.
|
|
4013
|
-
* This operation
|
|
4013
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
4014
4014
|
* @param UpdateJobRequest
|
|
4015
4015
|
* @return UpdateJobResponse
|
|
4016
4016
|
* @throws OciError when an error occurs
|
|
4017
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
4018
4018
|
*/
|
|
4019
4019
|
updateJob(updateJobRequest) {
|
|
4020
4020
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4029,7 +4029,7 @@ class DataScienceClient {
|
|
|
4029
4029
|
"opc-request-id": updateJobRequest.opcRequestId,
|
|
4030
4030
|
"if-match": updateJobRequest.ifMatch
|
|
4031
4031
|
};
|
|
4032
|
-
const specRetryConfiguration = common.
|
|
4032
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
4033
4033
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateJobRequest.retryConfiguration, specRetryConfiguration);
|
|
4034
4034
|
if (this.logger)
|
|
4035
4035
|
retrier.logger = this.logger;
|
|
@@ -4073,11 +4073,11 @@ class DataScienceClient {
|
|
|
4073
4073
|
}
|
|
4074
4074
|
/**
|
|
4075
4075
|
* Updates a job run.
|
|
4076
|
-
* This operation
|
|
4076
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
4077
4077
|
* @param UpdateJobRunRequest
|
|
4078
4078
|
* @return UpdateJobRunResponse
|
|
4079
4079
|
* @throws OciError when an error occurs
|
|
4080
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
4081
4081
|
*/
|
|
4082
4082
|
updateJobRun(updateJobRunRequest) {
|
|
4083
4083
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4092,7 +4092,7 @@ class DataScienceClient {
|
|
|
4092
4092
|
"opc-request-id": updateJobRunRequest.opcRequestId,
|
|
4093
4093
|
"if-match": updateJobRunRequest.ifMatch
|
|
4094
4094
|
};
|
|
4095
|
-
const specRetryConfiguration = common.
|
|
4095
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
4096
4096
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateJobRunRequest.retryConfiguration, specRetryConfiguration);
|
|
4097
4097
|
if (this.logger)
|
|
4098
4098
|
retrier.logger = this.logger;
|
|
@@ -4136,11 +4136,11 @@ class DataScienceClient {
|
|
|
4136
4136
|
}
|
|
4137
4137
|
/**
|
|
4138
4138
|
* Updates the properties of a model. You can update the `displayName`, `description`, `freeformTags`, and `definedTags` properties.
|
|
4139
|
-
* This operation
|
|
4139
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
4140
4140
|
* @param UpdateModelRequest
|
|
4141
4141
|
* @return UpdateModelResponse
|
|
4142
4142
|
* @throws OciError when an error occurs
|
|
4143
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
4144
4144
|
*/
|
|
4145
4145
|
updateModel(updateModelRequest) {
|
|
4146
4146
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4155,7 +4155,7 @@ class DataScienceClient {
|
|
|
4155
4155
|
"if-match": updateModelRequest.ifMatch,
|
|
4156
4156
|
"opc-request-id": updateModelRequest.opcRequestId
|
|
4157
4157
|
};
|
|
4158
|
-
const specRetryConfiguration = common.
|
|
4158
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
4159
4159
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateModelRequest.retryConfiguration, specRetryConfiguration);
|
|
4160
4160
|
if (this.logger)
|
|
4161
4161
|
retrier.logger = this.logger;
|
|
@@ -4203,11 +4203,11 @@ class DataScienceClient {
|
|
|
4203
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
|
|
4204
4204
|
* deployment is activated.
|
|
4205
4205
|
*
|
|
4206
|
-
* This operation
|
|
4206
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
4207
4207
|
* @param UpdateModelDeploymentRequest
|
|
4208
4208
|
* @return UpdateModelDeploymentResponse
|
|
4209
4209
|
* @throws OciError when an error occurs
|
|
4210
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
4211
4211
|
*/
|
|
4212
4212
|
updateModelDeployment(updateModelDeploymentRequest) {
|
|
4213
4213
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4222,7 +4222,7 @@ class DataScienceClient {
|
|
|
4222
4222
|
"if-match": updateModelDeploymentRequest.ifMatch,
|
|
4223
4223
|
"opc-request-id": updateModelDeploymentRequest.opcRequestId
|
|
4224
4224
|
};
|
|
4225
|
-
const specRetryConfiguration = common.
|
|
4225
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
4226
4226
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateModelDeploymentRequest.retryConfiguration, specRetryConfiguration);
|
|
4227
4227
|
if (this.logger)
|
|
4228
4228
|
retrier.logger = this.logger;
|
|
@@ -4262,11 +4262,11 @@ class DataScienceClient {
|
|
|
4262
4262
|
}
|
|
4263
4263
|
/**
|
|
4264
4264
|
* Updates the provenance information for the specified model.
|
|
4265
|
-
* This operation
|
|
4265
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
4266
4266
|
* @param UpdateModelProvenanceRequest
|
|
4267
4267
|
* @return UpdateModelProvenanceResponse
|
|
4268
4268
|
* @throws OciError when an error occurs
|
|
4269
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
4270
4270
|
*/
|
|
4271
4271
|
updateModelProvenance(updateModelProvenanceRequest) {
|
|
4272
4272
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4281,7 +4281,7 @@ class DataScienceClient {
|
|
|
4281
4281
|
"opc-request-id": updateModelProvenanceRequest.opcRequestId,
|
|
4282
4282
|
"if-match": updateModelProvenanceRequest.ifMatch
|
|
4283
4283
|
};
|
|
4284
|
-
const specRetryConfiguration = common.
|
|
4284
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
4285
4285
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateModelProvenanceRequest.retryConfiguration, specRetryConfiguration);
|
|
4286
4286
|
if (this.logger)
|
|
4287
4287
|
retrier.logger = this.logger;
|
|
@@ -4328,11 +4328,11 @@ class DataScienceClient {
|
|
|
4328
4328
|
* When the notebook session is in the INACTIVE lifecycle state, you can update `notebookSessionConfigurationDetails` and change `shape`, `subnetId`, and `blockStorageSizeInGBs`.
|
|
4329
4329
|
* Changes to the `notebookSessionConfigurationDetails` take effect the next time the `ActivateNotebookSession` action is invoked on the notebook session resource.
|
|
4330
4330
|
*
|
|
4331
|
-
* This operation
|
|
4331
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
4332
4332
|
* @param UpdateNotebookSessionRequest
|
|
4333
4333
|
* @return UpdateNotebookSessionResponse
|
|
4334
4334
|
* @throws OciError when an error occurs
|
|
4335
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
4336
4336
|
*/
|
|
4337
4337
|
updateNotebookSession(updateNotebookSessionRequest) {
|
|
4338
4338
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4347,7 +4347,7 @@ class DataScienceClient {
|
|
|
4347
4347
|
"if-match": updateNotebookSessionRequest.ifMatch,
|
|
4348
4348
|
"opc-request-id": updateNotebookSessionRequest.opcRequestId
|
|
4349
4349
|
};
|
|
4350
|
-
const specRetryConfiguration = common.
|
|
4350
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
4351
4351
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateNotebookSessionRequest.retryConfiguration, specRetryConfiguration);
|
|
4352
4352
|
if (this.logger)
|
|
4353
4353
|
retrier.logger = this.logger;
|
|
@@ -4391,11 +4391,11 @@ class DataScienceClient {
|
|
|
4391
4391
|
}
|
|
4392
4392
|
/**
|
|
4393
4393
|
* Updates the properties of a project. You can update the `displayName`, `description`, `freeformTags`, and `definedTags` properties.
|
|
4394
|
-
* This operation
|
|
4394
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
4395
4395
|
* @param UpdateProjectRequest
|
|
4396
4396
|
* @return UpdateProjectResponse
|
|
4397
4397
|
* @throws OciError when an error occurs
|
|
4398
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
4399
4399
|
*/
|
|
4400
4400
|
updateProject(updateProjectRequest) {
|
|
4401
4401
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4410,7 +4410,7 @@ class DataScienceClient {
|
|
|
4410
4410
|
"if-match": updateProjectRequest.ifMatch,
|
|
4411
4411
|
"opc-request-id": updateProjectRequest.opcRequestId
|
|
4412
4412
|
};
|
|
4413
|
-
const specRetryConfiguration = common.
|
|
4413
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
4414
4414
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateProjectRequest.retryConfiguration, specRetryConfiguration);
|
|
4415
4415
|
if (this.logger)
|
|
4416
4416
|
retrier.logger = this.logger;
|