oci-datascience 2.50.2 → 2.50.3
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 +279 -69
- package/lib/client.js +1290 -156
- package/lib/client.js.map +1 -1
- package/lib/datascience-waiter.d.ts +16 -0
- package/lib/datascience-waiter.js +24 -0
- package/lib/datascience-waiter.js.map +1 -1
- package/lib/model/change-pipeline-compartment-details.d.ts +27 -0
- package/lib/model/change-pipeline-compartment-details.js +30 -0
- package/lib/model/change-pipeline-compartment-details.js.map +1 -0
- package/lib/model/change-pipeline-run-compartment-details.d.ts +27 -0
- package/lib/model/change-pipeline-run-compartment-details.js +30 -0
- package/lib/model/change-pipeline-run-compartment-details.js.map +1 -0
- package/lib/model/create-pipeline-details.d.ts +64 -0
- package/lib/model/create-pipeline-details.js +80 -0
- package/lib/model/create-pipeline-details.js.map +1 -0
- package/lib/model/create-pipeline-run-details.d.ts +73 -0
- package/lib/model/create-pipeline-run-details.js +74 -0
- package/lib/model/create-pipeline-run-details.js.map +1 -0
- package/lib/model/index.d.ts +58 -0
- package/lib/model/index.js +61 -2
- package/lib/model/index.js.map +1 -1
- package/lib/model/pipeline-configuration-details.d.ts +23 -0
- package/lib/model/pipeline-configuration-details.js +69 -0
- package/lib/model/pipeline-configuration-details.js.map +1 -0
- package/lib/model/pipeline-custom-script-step-details.d.ts +30 -0
- package/lib/model/pipeline-custom-script-step-details.js +63 -0
- package/lib/model/pipeline-custom-script-step-details.js.map +1 -0
- package/lib/model/pipeline-custom-script-step-run.d.ts +25 -0
- package/lib/model/pipeline-custom-script-step-run.js +55 -0
- package/lib/model/pipeline-custom-script-step-run.js.map +1 -0
- package/lib/model/pipeline-custom-script-step-update-details.d.ts +25 -0
- package/lib/model/pipeline-custom-script-step-update-details.js +55 -0
- package/lib/model/pipeline-custom-script-step-update-details.js.map +1 -0
- package/lib/model/pipeline-default-configuration-details.d.ts +40 -0
- package/lib/model/pipeline-default-configuration-details.js +55 -0
- package/lib/model/pipeline-default-configuration-details.js.map +1 -0
- package/lib/model/pipeline-infrastructure-configuration-details.d.ts +33 -0
- package/lib/model/pipeline-infrastructure-configuration-details.js +58 -0
- package/lib/model/pipeline-infrastructure-configuration-details.js.map +1 -0
- package/lib/model/pipeline-lifecycle-state.d.ts +32 -0
- package/lib/model/pipeline-lifecycle-state.js +43 -0
- package/lib/model/pipeline-lifecycle-state.js.map +1 -0
- package/lib/model/pipeline-log-configuration-details.d.ts +38 -0
- package/lib/model/pipeline-log-configuration-details.js +30 -0
- package/lib/model/pipeline-log-configuration-details.js.map +1 -0
- package/lib/model/pipeline-ml-job-step-details.d.ts +29 -0
- package/lib/model/pipeline-ml-job-step-details.js +55 -0
- package/lib/model/pipeline-ml-job-step-details.js.map +1 -0
- package/lib/model/pipeline-ml-job-step-run.d.ts +29 -0
- package/lib/model/pipeline-ml-job-step-run.js +53 -0
- package/lib/model/pipeline-ml-job-step-run.js.map +1 -0
- package/lib/model/pipeline-ml-job-step-update-details.d.ts +25 -0
- package/lib/model/pipeline-ml-job-step-update-details.js +55 -0
- package/lib/model/pipeline-ml-job-step-update-details.js.map +1 -0
- package/lib/model/pipeline-run-lifecycle-state.d.ts +35 -0
- package/lib/model/pipeline-run-lifecycle-state.js +46 -0
- package/lib/model/pipeline-run-lifecycle-state.js.map +1 -0
- package/lib/model/pipeline-run-log-details.d.ts +30 -0
- package/lib/model/pipeline-run-log-details.js +30 -0
- package/lib/model/pipeline-run-log-details.js.map +1 -0
- package/lib/model/pipeline-run-summary.d.ts +99 -0
- package/lib/model/pipeline-run-summary.js +30 -0
- package/lib/model/pipeline-run-summary.js.map +1 -0
- package/lib/model/pipeline-run.d.ts +111 -0
- package/lib/model/pipeline-run.js +96 -0
- package/lib/model/pipeline-run.js.map +1 -0
- package/lib/model/pipeline-shape-config-details.d.ts +32 -0
- package/lib/model/pipeline-shape-config-details.js +30 -0
- package/lib/model/pipeline-shape-config-details.js.map +1 -0
- package/lib/model/pipeline-step-configuration-details.d.ts +36 -0
- package/lib/model/pipeline-step-configuration-details.js +30 -0
- package/lib/model/pipeline-step-configuration-details.js.map +1 -0
- package/lib/model/pipeline-step-details.d.ts +37 -0
- package/lib/model/pipeline-step-details.js +81 -0
- package/lib/model/pipeline-step-details.js.map +1 -0
- package/lib/model/pipeline-step-override-details.d.ts +28 -0
- package/lib/model/pipeline-step-override-details.js +58 -0
- package/lib/model/pipeline-step-override-details.js.map +1 -0
- package/lib/model/pipeline-step-run.d.ts +59 -0
- package/lib/model/pipeline-step-run.js +90 -0
- package/lib/model/pipeline-step-run.js.map +1 -0
- package/lib/model/pipeline-step-update-details.d.ts +33 -0
- package/lib/model/pipeline-step-update-details.js +81 -0
- package/lib/model/pipeline-step-update-details.js.map +1 -0
- package/lib/model/pipeline-summary.d.ts +87 -0
- package/lib/model/pipeline-summary.js +30 -0
- package/lib/model/pipeline-summary.js.map +1 -0
- package/lib/model/pipeline.d.ts +102 -0
- package/lib/model/pipeline.js +80 -0
- package/lib/model/pipeline.js.map +1 -0
- package/lib/model/update-pipeline-details.d.ts +55 -0
- package/lib/model/update-pipeline-details.js +74 -0
- package/lib/model/update-pipeline-details.js.map +1 -0
- package/lib/model/update-pipeline-run-details.d.ts +44 -0
- package/lib/model/update-pipeline-run-details.js +30 -0
- package/lib/model/update-pipeline-run-details.js.map +1 -0
- package/lib/model/work-request-operation-type.d.ts +5 -0
- package/lib/model/work-request-operation-type.js +5 -0
- package/lib/model/work-request-operation-type.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-pipeline-run-request.d.ts +41 -0
- package/lib/request/cancel-pipeline-run-request.js +15 -0
- package/lib/request/cancel-pipeline-run-request.js.map +1 -0
- 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-model-version-set-compartment-request.d.ts +1 -1
- package/lib/request/change-notebook-session-compartment-request.d.ts +1 -1
- package/lib/request/change-pipeline-compartment-request.d.ts +41 -0
- package/lib/request/change-pipeline-compartment-request.js +15 -0
- package/lib/request/change-pipeline-compartment-request.js.map +1 -0
- package/lib/request/change-pipeline-run-compartment-request.d.ts +41 -0
- package/lib/request/change-pipeline-run-compartment-request.js +15 -0
- package/lib/request/change-pipeline-run-compartment-request.js.map +1 -0
- package/lib/request/change-project-compartment-request.d.ts +1 -1
- package/lib/request/create-job-artifact-request.d.ts +1 -1
- 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-model-version-set-request.d.ts +1 -1
- package/lib/request/create-notebook-session-request.d.ts +1 -1
- package/lib/request/create-pipeline-request.d.ts +33 -0
- package/lib/request/create-pipeline-request.js +15 -0
- package/lib/request/create-pipeline-request.js.map +1 -0
- package/lib/request/create-pipeline-run-request.d.ts +33 -0
- package/lib/request/create-pipeline-run-request.js +15 -0
- package/lib/request/create-pipeline-run-request.js.map +1 -0
- package/lib/request/create-project-request.d.ts +1 -1
- package/lib/request/create-step-artifact-request.d.ts +57 -0
- package/lib/request/create-step-artifact-request.js +15 -0
- package/lib/request/create-step-artifact-request.js.map +1 -0
- 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-model-version-set-request.d.ts +1 -1
- package/lib/request/delete-notebook-session-request.d.ts +1 -1
- package/lib/request/delete-pipeline-request.d.ts +44 -0
- package/lib/request/delete-pipeline-request.js +15 -0
- package/lib/request/delete-pipeline-request.js.map +1 -0
- package/lib/request/delete-pipeline-run-request.d.ts +40 -0
- package/lib/request/delete-pipeline-run-request.js +15 -0
- package/lib/request/delete-pipeline-run-request.js.map +1 -0
- package/lib/request/delete-project-request.d.ts +1 -1
- package/lib/request/export-model-artifact-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-model-version-set-request.d.ts +1 -1
- package/lib/request/get-notebook-session-request.d.ts +1 -1
- package/lib/request/get-pipeline-request.d.ts +27 -0
- package/lib/request/get-pipeline-request.js +15 -0
- package/lib/request/get-pipeline-request.js.map +1 -0
- package/lib/request/get-pipeline-run-request.d.ts +27 -0
- package/lib/request/get-pipeline-run-request.js +15 -0
- package/lib/request/get-pipeline-run-request.js.map +1 -0
- package/lib/request/get-project-request.d.ts +1 -1
- package/lib/request/get-step-artifact-content-request.d.ts +37 -0
- package/lib/request/get-step-artifact-content-request.js +15 -0
- package/lib/request/get-step-artifact-content-request.js.map +1 -0
- 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/head-step-artifact-request.d.ts +31 -0
- package/lib/request/head-step-artifact-request.js +15 -0
- package/lib/request/head-step-artifact-request.js.map +1 -0
- package/lib/request/import-model-artifact-request.d.ts +1 -1
- package/lib/request/index.d.ts +32 -0
- package/lib/request/index.js +5 -1
- package/lib/request/index.js.map +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-model-version-sets-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-pipeline-runs-request.d.ts +90 -0
- package/lib/request/list-pipeline-runs-request.js +29 -0
- package/lib/request/list-pipeline-runs-request.js.map +1 -0
- package/lib/request/list-pipelines-request.d.ts +90 -0
- package/lib/request/list-pipelines-request.js +29 -0
- package/lib/request/list-pipelines-request.js.map +1 -0
- 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 +7 -2
- package/lib/request/list-work-requests-request.js +5 -0
- package/lib/request/list-work-requests-request.js.map +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-model-version-set-request.d.ts +1 -1
- package/lib/request/update-notebook-session-request.d.ts +1 -1
- package/lib/request/update-pipeline-request.d.ts +41 -0
- package/lib/request/update-pipeline-request.js +15 -0
- package/lib/request/update-pipeline-request.js.map +1 -0
- package/lib/request/update-pipeline-run-request.d.ts +41 -0
- package/lib/request/update-pipeline-run-request.js +15 -0
- package/lib/request/update-pipeline-run-request.js.map +1 -0
- package/lib/request/update-project-request.d.ts +1 -1
- package/lib/response/cancel-pipeline-run-response.d.ts +20 -0
- package/lib/response/cancel-pipeline-run-response.js +15 -0
- package/lib/response/cancel-pipeline-run-response.js.map +1 -0
- package/lib/response/change-pipeline-compartment-response.d.ts +20 -0
- package/lib/response/change-pipeline-compartment-response.js +15 -0
- package/lib/response/change-pipeline-compartment-response.js.map +1 -0
- package/lib/response/change-pipeline-run-compartment-response.d.ts +20 -0
- package/lib/response/change-pipeline-run-compartment-response.js +15 -0
- package/lib/response/change-pipeline-run-compartment-response.js.map +1 -0
- package/lib/response/create-pipeline-response.d.ts +30 -0
- package/lib/response/create-pipeline-response.js +15 -0
- package/lib/response/create-pipeline-response.js.map +1 -0
- package/lib/response/create-pipeline-run-response.d.ts +35 -0
- package/lib/response/create-pipeline-run-response.js +15 -0
- package/lib/response/create-pipeline-run-response.js.map +1 -0
- package/lib/response/create-step-artifact-response.d.ts +20 -0
- package/lib/response/create-step-artifact-response.js +15 -0
- package/lib/response/create-step-artifact-response.js.map +1 -0
- package/lib/response/delete-pipeline-response.d.ts +26 -0
- package/lib/response/delete-pipeline-response.js +15 -0
- package/lib/response/delete-pipeline-response.js.map +1 -0
- package/lib/response/delete-pipeline-run-response.d.ts +20 -0
- package/lib/response/delete-pipeline-run-response.js +15 -0
- package/lib/response/delete-pipeline-run-response.js.map +1 -0
- package/lib/response/get-pipeline-response.d.ts +30 -0
- package/lib/response/get-pipeline-response.js +15 -0
- package/lib/response/get-pipeline-response.js.map +1 -0
- package/lib/response/get-pipeline-run-response.d.ts +30 -0
- package/lib/response/get-pipeline-run-response.js +15 -0
- package/lib/response/get-pipeline-run-response.js.map +1 -0
- package/lib/response/get-step-artifact-content-response.d.ts +52 -0
- package/lib/response/get-step-artifact-content-response.js +15 -0
- package/lib/response/get-step-artifact-content-response.js.map +1 -0
- package/lib/response/head-step-artifact-response.d.ts +46 -0
- package/lib/response/head-step-artifact-response.js +15 -0
- package/lib/response/head-step-artifact-response.js.map +1 -0
- package/lib/response/index.d.ts +32 -0
- package/lib/response/list-pipeline-runs-response.d.ts +35 -0
- package/lib/response/list-pipeline-runs-response.js +15 -0
- package/lib/response/list-pipeline-runs-response.js.map +1 -0
- package/lib/response/list-pipelines-response.d.ts +35 -0
- package/lib/response/list-pipelines-response.js +15 -0
- package/lib/response/list-pipelines-response.js.map +1 -0
- package/lib/response/update-pipeline-response.d.ts +30 -0
- package/lib/response/update-pipeline-response.js +15 -0
- package/lib/response/update-pipeline-response.js.map +1 -0
- package/lib/response/update-pipeline-run-response.d.ts +30 -0
- package/lib/response/update-pipeline-run-response.js +15 -0
- package/lib/response/update-pipeline-run-response.js.map +1 -0
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -77,7 +77,7 @@ export declare class DataScienceClient {
|
|
|
77
77
|
* @param ActivateModelRequest
|
|
78
78
|
* @return ActivateModelResponse
|
|
79
79
|
* @throws OciError when an error occurs
|
|
80
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
80
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ActivateModel.ts.html |here} to see how to use ActivateModel API.
|
|
81
81
|
*/
|
|
82
82
|
activateModel(activateModelRequest: requests.ActivateModelRequest): Promise<responses.ActivateModelResponse>;
|
|
83
83
|
/**
|
|
@@ -86,7 +86,7 @@ export declare class DataScienceClient {
|
|
|
86
86
|
* @param ActivateModelDeploymentRequest
|
|
87
87
|
* @return ActivateModelDeploymentResponse
|
|
88
88
|
* @throws OciError when an error occurs
|
|
89
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
89
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ActivateModelDeployment.ts.html |here} to see how to use ActivateModelDeployment API.
|
|
90
90
|
*/
|
|
91
91
|
activateModelDeployment(activateModelDeploymentRequest: requests.ActivateModelDeploymentRequest): Promise<responses.ActivateModelDeploymentResponse>;
|
|
92
92
|
/**
|
|
@@ -95,7 +95,7 @@ export declare class DataScienceClient {
|
|
|
95
95
|
* @param ActivateNotebookSessionRequest
|
|
96
96
|
* @return ActivateNotebookSessionResponse
|
|
97
97
|
* @throws OciError when an error occurs
|
|
98
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
98
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ActivateNotebookSession.ts.html |here} to see how to use ActivateNotebookSession API.
|
|
99
99
|
*/
|
|
100
100
|
activateNotebookSession(activateNotebookSessionRequest: requests.ActivateNotebookSessionRequest): Promise<responses.ActivateNotebookSessionResponse>;
|
|
101
101
|
/**
|
|
@@ -104,16 +104,25 @@ export declare class DataScienceClient {
|
|
|
104
104
|
* @param CancelJobRunRequest
|
|
105
105
|
* @return CancelJobRunResponse
|
|
106
106
|
* @throws OciError when an error occurs
|
|
107
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
107
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CancelJobRun.ts.html |here} to see how to use CancelJobRun API.
|
|
108
108
|
*/
|
|
109
109
|
cancelJobRun(cancelJobRunRequest: requests.CancelJobRunRequest): Promise<responses.CancelJobRunResponse>;
|
|
110
|
+
/**
|
|
111
|
+
* Cancel a PipelineRun.
|
|
112
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
113
|
+
* @param CancelPipelineRunRequest
|
|
114
|
+
* @return CancelPipelineRunResponse
|
|
115
|
+
* @throws OciError when an error occurs
|
|
116
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CancelPipelineRun.ts.html |here} to see how to use CancelPipelineRun API.
|
|
117
|
+
*/
|
|
118
|
+
cancelPipelineRun(cancelPipelineRunRequest: requests.CancelPipelineRunRequest): Promise<responses.CancelPipelineRunResponse>;
|
|
110
119
|
/**
|
|
111
120
|
* Cancels a work request that has not started.
|
|
112
121
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
113
122
|
* @param CancelWorkRequestRequest
|
|
114
123
|
* @return CancelWorkRequestResponse
|
|
115
124
|
* @throws OciError when an error occurs
|
|
116
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
125
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
|
|
117
126
|
*/
|
|
118
127
|
cancelWorkRequest(cancelWorkRequestRequest: requests.CancelWorkRequestRequest): Promise<responses.CancelWorkRequestResponse>;
|
|
119
128
|
/**
|
|
@@ -122,7 +131,7 @@ export declare class DataScienceClient {
|
|
|
122
131
|
* @param ChangeJobCompartmentRequest
|
|
123
132
|
* @return ChangeJobCompartmentResponse
|
|
124
133
|
* @throws OciError when an error occurs
|
|
125
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
134
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ChangeJobCompartment.ts.html |here} to see how to use ChangeJobCompartment API.
|
|
126
135
|
*/
|
|
127
136
|
changeJobCompartment(changeJobCompartmentRequest: requests.ChangeJobCompartmentRequest): Promise<responses.ChangeJobCompartmentResponse>;
|
|
128
137
|
/**
|
|
@@ -131,7 +140,7 @@ export declare class DataScienceClient {
|
|
|
131
140
|
* @param ChangeJobRunCompartmentRequest
|
|
132
141
|
* @return ChangeJobRunCompartmentResponse
|
|
133
142
|
* @throws OciError when an error occurs
|
|
134
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
143
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ChangeJobRunCompartment.ts.html |here} to see how to use ChangeJobRunCompartment API.
|
|
135
144
|
*/
|
|
136
145
|
changeJobRunCompartment(changeJobRunCompartmentRequest: requests.ChangeJobRunCompartmentRequest): Promise<responses.ChangeJobRunCompartmentResponse>;
|
|
137
146
|
/**
|
|
@@ -140,7 +149,7 @@ export declare class DataScienceClient {
|
|
|
140
149
|
* @param ChangeModelCompartmentRequest
|
|
141
150
|
* @return ChangeModelCompartmentResponse
|
|
142
151
|
* @throws OciError when an error occurs
|
|
143
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
152
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ChangeModelCompartment.ts.html |here} to see how to use ChangeModelCompartment API.
|
|
144
153
|
*/
|
|
145
154
|
changeModelCompartment(changeModelCompartmentRequest: requests.ChangeModelCompartmentRequest): Promise<responses.ChangeModelCompartmentResponse>;
|
|
146
155
|
/**
|
|
@@ -149,7 +158,7 @@ export declare class DataScienceClient {
|
|
|
149
158
|
* @param ChangeModelDeploymentCompartmentRequest
|
|
150
159
|
* @return ChangeModelDeploymentCompartmentResponse
|
|
151
160
|
* @throws OciError when an error occurs
|
|
152
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
161
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ChangeModelDeploymentCompartment.ts.html |here} to see how to use ChangeModelDeploymentCompartment API.
|
|
153
162
|
*/
|
|
154
163
|
changeModelDeploymentCompartment(changeModelDeploymentCompartmentRequest: requests.ChangeModelDeploymentCompartmentRequest): Promise<responses.ChangeModelDeploymentCompartmentResponse>;
|
|
155
164
|
/**
|
|
@@ -158,7 +167,7 @@ export declare class DataScienceClient {
|
|
|
158
167
|
* @param ChangeModelVersionSetCompartmentRequest
|
|
159
168
|
* @return ChangeModelVersionSetCompartmentResponse
|
|
160
169
|
* @throws OciError when an error occurs
|
|
161
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
170
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ChangeModelVersionSetCompartment.ts.html |here} to see how to use ChangeModelVersionSetCompartment API.
|
|
162
171
|
*/
|
|
163
172
|
changeModelVersionSetCompartment(changeModelVersionSetCompartmentRequest: requests.ChangeModelVersionSetCompartmentRequest): Promise<responses.ChangeModelVersionSetCompartmentResponse>;
|
|
164
173
|
/**
|
|
@@ -167,16 +176,34 @@ export declare class DataScienceClient {
|
|
|
167
176
|
* @param ChangeNotebookSessionCompartmentRequest
|
|
168
177
|
* @return ChangeNotebookSessionCompartmentResponse
|
|
169
178
|
* @throws OciError when an error occurs
|
|
170
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
179
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ChangeNotebookSessionCompartment.ts.html |here} to see how to use ChangeNotebookSessionCompartment API.
|
|
171
180
|
*/
|
|
172
181
|
changeNotebookSessionCompartment(changeNotebookSessionCompartmentRequest: requests.ChangeNotebookSessionCompartmentRequest): Promise<responses.ChangeNotebookSessionCompartmentResponse>;
|
|
182
|
+
/**
|
|
183
|
+
* Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource.
|
|
184
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
185
|
+
* @param ChangePipelineCompartmentRequest
|
|
186
|
+
* @return ChangePipelineCompartmentResponse
|
|
187
|
+
* @throws OciError when an error occurs
|
|
188
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ChangePipelineCompartment.ts.html |here} to see how to use ChangePipelineCompartment API.
|
|
189
|
+
*/
|
|
190
|
+
changePipelineCompartment(changePipelineCompartmentRequest: requests.ChangePipelineCompartmentRequest): Promise<responses.ChangePipelineCompartmentResponse>;
|
|
191
|
+
/**
|
|
192
|
+
* Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource.
|
|
193
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
194
|
+
* @param ChangePipelineRunCompartmentRequest
|
|
195
|
+
* @return ChangePipelineRunCompartmentResponse
|
|
196
|
+
* @throws OciError when an error occurs
|
|
197
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ChangePipelineRunCompartment.ts.html |here} to see how to use ChangePipelineRunCompartment API.
|
|
198
|
+
*/
|
|
199
|
+
changePipelineRunCompartment(changePipelineRunCompartmentRequest: requests.ChangePipelineRunCompartmentRequest): Promise<responses.ChangePipelineRunCompartmentResponse>;
|
|
173
200
|
/**
|
|
174
201
|
* Moves a project resource into a different compartment.
|
|
175
202
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
176
203
|
* @param ChangeProjectCompartmentRequest
|
|
177
204
|
* @return ChangeProjectCompartmentResponse
|
|
178
205
|
* @throws OciError when an error occurs
|
|
179
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
206
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ChangeProjectCompartment.ts.html |here} to see how to use ChangeProjectCompartment API.
|
|
180
207
|
*/
|
|
181
208
|
changeProjectCompartment(changeProjectCompartmentRequest: requests.ChangeProjectCompartmentRequest): Promise<responses.ChangeProjectCompartmentResponse>;
|
|
182
209
|
/**
|
|
@@ -185,7 +212,7 @@ export declare class DataScienceClient {
|
|
|
185
212
|
* @param CreateJobRequest
|
|
186
213
|
* @return CreateJobResponse
|
|
187
214
|
* @throws OciError when an error occurs
|
|
188
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
215
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CreateJob.ts.html |here} to see how to use CreateJob API.
|
|
189
216
|
*/
|
|
190
217
|
createJob(createJobRequest: requests.CreateJobRequest): Promise<responses.CreateJobResponse>;
|
|
191
218
|
/**
|
|
@@ -194,7 +221,7 @@ export declare class DataScienceClient {
|
|
|
194
221
|
* @param CreateJobArtifactRequest
|
|
195
222
|
* @return CreateJobArtifactResponse
|
|
196
223
|
* @throws OciError when an error occurs
|
|
197
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
224
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CreateJobArtifact.ts.html |here} to see how to use CreateJobArtifact API.
|
|
198
225
|
*/
|
|
199
226
|
createJobArtifact(createJobArtifactRequest: requests.CreateJobArtifactRequest): Promise<responses.CreateJobArtifactResponse>;
|
|
200
227
|
/**
|
|
@@ -203,7 +230,7 @@ export declare class DataScienceClient {
|
|
|
203
230
|
* @param CreateJobRunRequest
|
|
204
231
|
* @return CreateJobRunResponse
|
|
205
232
|
* @throws OciError when an error occurs
|
|
206
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
233
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CreateJobRun.ts.html |here} to see how to use CreateJobRun API.
|
|
207
234
|
*/
|
|
208
235
|
createJobRun(createJobRunRequest: requests.CreateJobRunRequest): Promise<responses.CreateJobRunResponse>;
|
|
209
236
|
/**
|
|
@@ -212,7 +239,7 @@ export declare class DataScienceClient {
|
|
|
212
239
|
* @param CreateModelRequest
|
|
213
240
|
* @return CreateModelResponse
|
|
214
241
|
* @throws OciError when an error occurs
|
|
215
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
242
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CreateModel.ts.html |here} to see how to use CreateModel API.
|
|
216
243
|
*/
|
|
217
244
|
createModel(createModelRequest: requests.CreateModelRequest): Promise<responses.CreateModelResponse>;
|
|
218
245
|
/**
|
|
@@ -221,7 +248,7 @@ export declare class DataScienceClient {
|
|
|
221
248
|
* @param CreateModelArtifactRequest
|
|
222
249
|
* @return CreateModelArtifactResponse
|
|
223
250
|
* @throws OciError when an error occurs
|
|
224
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
251
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CreateModelArtifact.ts.html |here} to see how to use CreateModelArtifact API.
|
|
225
252
|
*/
|
|
226
253
|
createModelArtifact(createModelArtifactRequest: requests.CreateModelArtifactRequest): Promise<responses.CreateModelArtifactResponse>;
|
|
227
254
|
/**
|
|
@@ -230,7 +257,7 @@ export declare class DataScienceClient {
|
|
|
230
257
|
* @param CreateModelDeploymentRequest
|
|
231
258
|
* @return CreateModelDeploymentResponse
|
|
232
259
|
* @throws OciError when an error occurs
|
|
233
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
260
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CreateModelDeployment.ts.html |here} to see how to use CreateModelDeployment API.
|
|
234
261
|
*/
|
|
235
262
|
createModelDeployment(createModelDeploymentRequest: requests.CreateModelDeploymentRequest): Promise<responses.CreateModelDeploymentResponse>;
|
|
236
263
|
/**
|
|
@@ -239,7 +266,7 @@ export declare class DataScienceClient {
|
|
|
239
266
|
* @param CreateModelProvenanceRequest
|
|
240
267
|
* @return CreateModelProvenanceResponse
|
|
241
268
|
* @throws OciError when an error occurs
|
|
242
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
269
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CreateModelProvenance.ts.html |here} to see how to use CreateModelProvenance API.
|
|
243
270
|
*/
|
|
244
271
|
createModelProvenance(createModelProvenanceRequest: requests.CreateModelProvenanceRequest): Promise<responses.CreateModelProvenanceResponse>;
|
|
245
272
|
/**
|
|
@@ -248,7 +275,7 @@ export declare class DataScienceClient {
|
|
|
248
275
|
* @param CreateModelVersionSetRequest
|
|
249
276
|
* @return CreateModelVersionSetResponse
|
|
250
277
|
* @throws OciError when an error occurs
|
|
251
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
278
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CreateModelVersionSet.ts.html |here} to see how to use CreateModelVersionSet API.
|
|
252
279
|
*/
|
|
253
280
|
createModelVersionSet(createModelVersionSetRequest: requests.CreateModelVersionSetRequest): Promise<responses.CreateModelVersionSetResponse>;
|
|
254
281
|
/**
|
|
@@ -257,25 +284,54 @@ export declare class DataScienceClient {
|
|
|
257
284
|
* @param CreateNotebookSessionRequest
|
|
258
285
|
* @return CreateNotebookSessionResponse
|
|
259
286
|
* @throws OciError when an error occurs
|
|
260
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
287
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CreateNotebookSession.ts.html |here} to see how to use CreateNotebookSession API.
|
|
261
288
|
*/
|
|
262
289
|
createNotebookSession(createNotebookSessionRequest: requests.CreateNotebookSessionRequest): Promise<responses.CreateNotebookSessionResponse>;
|
|
290
|
+
/**
|
|
291
|
+
* Creates a new Pipeline.
|
|
292
|
+
*
|
|
293
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
294
|
+
* @param CreatePipelineRequest
|
|
295
|
+
* @return CreatePipelineResponse
|
|
296
|
+
* @throws OciError when an error occurs
|
|
297
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CreatePipeline.ts.html |here} to see how to use CreatePipeline API.
|
|
298
|
+
*/
|
|
299
|
+
createPipeline(createPipelineRequest: requests.CreatePipelineRequest): Promise<responses.CreatePipelineResponse>;
|
|
300
|
+
/**
|
|
301
|
+
* Creates a new PipelineRun.
|
|
302
|
+
*
|
|
303
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
304
|
+
* @param CreatePipelineRunRequest
|
|
305
|
+
* @return CreatePipelineRunResponse
|
|
306
|
+
* @throws OciError when an error occurs
|
|
307
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CreatePipelineRun.ts.html |here} to see how to use CreatePipelineRun API.
|
|
308
|
+
*/
|
|
309
|
+
createPipelineRun(createPipelineRunRequest: requests.CreatePipelineRunRequest): Promise<responses.CreatePipelineRunResponse>;
|
|
263
310
|
/**
|
|
264
311
|
* Creates a new project.
|
|
265
312
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
266
313
|
* @param CreateProjectRequest
|
|
267
314
|
* @return CreateProjectResponse
|
|
268
315
|
* @throws OciError when an error occurs
|
|
269
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
316
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CreateProject.ts.html |here} to see how to use CreateProject API.
|
|
270
317
|
*/
|
|
271
318
|
createProject(createProjectRequest: requests.CreateProjectRequest): Promise<responses.CreateProjectResponse>;
|
|
319
|
+
/**
|
|
320
|
+
* Upload the artifact for a step in the pipeline.
|
|
321
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
322
|
+
* @param CreateStepArtifactRequest
|
|
323
|
+
* @return CreateStepArtifactResponse
|
|
324
|
+
* @throws OciError when an error occurs
|
|
325
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/CreateStepArtifact.ts.html |here} to see how to use CreateStepArtifact API.
|
|
326
|
+
*/
|
|
327
|
+
createStepArtifact(createStepArtifactRequest: requests.CreateStepArtifactRequest): Promise<responses.CreateStepArtifactResponse>;
|
|
272
328
|
/**
|
|
273
329
|
* Deactivates the model.
|
|
274
330
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
275
331
|
* @param DeactivateModelRequest
|
|
276
332
|
* @return DeactivateModelResponse
|
|
277
333
|
* @throws OciError when an error occurs
|
|
278
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
334
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/DeactivateModel.ts.html |here} to see how to use DeactivateModel API.
|
|
279
335
|
*/
|
|
280
336
|
deactivateModel(deactivateModelRequest: requests.DeactivateModelRequest): Promise<responses.DeactivateModelResponse>;
|
|
281
337
|
/**
|
|
@@ -284,7 +340,7 @@ export declare class DataScienceClient {
|
|
|
284
340
|
* @param DeactivateModelDeploymentRequest
|
|
285
341
|
* @return DeactivateModelDeploymentResponse
|
|
286
342
|
* @throws OciError when an error occurs
|
|
287
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
343
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/DeactivateModelDeployment.ts.html |here} to see how to use DeactivateModelDeployment API.
|
|
288
344
|
*/
|
|
289
345
|
deactivateModelDeployment(deactivateModelDeploymentRequest: requests.DeactivateModelDeploymentRequest): Promise<responses.DeactivateModelDeploymentResponse>;
|
|
290
346
|
/**
|
|
@@ -293,7 +349,7 @@ export declare class DataScienceClient {
|
|
|
293
349
|
* @param DeactivateNotebookSessionRequest
|
|
294
350
|
* @return DeactivateNotebookSessionResponse
|
|
295
351
|
* @throws OciError when an error occurs
|
|
296
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
352
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/DeactivateNotebookSession.ts.html |here} to see how to use DeactivateNotebookSession API.
|
|
297
353
|
*/
|
|
298
354
|
deactivateNotebookSession(deactivateNotebookSessionRequest: requests.DeactivateNotebookSessionRequest): Promise<responses.DeactivateNotebookSessionResponse>;
|
|
299
355
|
/**
|
|
@@ -302,7 +358,7 @@ export declare class DataScienceClient {
|
|
|
302
358
|
* @param DeleteJobRequest
|
|
303
359
|
* @return DeleteJobResponse
|
|
304
360
|
* @throws OciError when an error occurs
|
|
305
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
361
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/DeleteJob.ts.html |here} to see how to use DeleteJob API.
|
|
306
362
|
*/
|
|
307
363
|
deleteJob(deleteJobRequest: requests.DeleteJobRequest): Promise<responses.DeleteJobResponse>;
|
|
308
364
|
/**
|
|
@@ -311,7 +367,7 @@ export declare class DataScienceClient {
|
|
|
311
367
|
* @param DeleteJobRunRequest
|
|
312
368
|
* @return DeleteJobRunResponse
|
|
313
369
|
* @throws OciError when an error occurs
|
|
314
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
370
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/DeleteJobRun.ts.html |here} to see how to use DeleteJobRun API.
|
|
315
371
|
*/
|
|
316
372
|
deleteJobRun(deleteJobRunRequest: requests.DeleteJobRunRequest): Promise<responses.DeleteJobRunResponse>;
|
|
317
373
|
/**
|
|
@@ -320,7 +376,7 @@ export declare class DataScienceClient {
|
|
|
320
376
|
* @param DeleteModelRequest
|
|
321
377
|
* @return DeleteModelResponse
|
|
322
378
|
* @throws OciError when an error occurs
|
|
323
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
379
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/DeleteModel.ts.html |here} to see how to use DeleteModel API.
|
|
324
380
|
*/
|
|
325
381
|
deleteModel(deleteModelRequest: requests.DeleteModelRequest): Promise<responses.DeleteModelResponse>;
|
|
326
382
|
/**
|
|
@@ -329,7 +385,7 @@ export declare class DataScienceClient {
|
|
|
329
385
|
* @param DeleteModelDeploymentRequest
|
|
330
386
|
* @return DeleteModelDeploymentResponse
|
|
331
387
|
* @throws OciError when an error occurs
|
|
332
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
388
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/DeleteModelDeployment.ts.html |here} to see how to use DeleteModelDeployment API.
|
|
333
389
|
*/
|
|
334
390
|
deleteModelDeployment(deleteModelDeploymentRequest: requests.DeleteModelDeploymentRequest): Promise<responses.DeleteModelDeploymentResponse>;
|
|
335
391
|
/**
|
|
@@ -338,7 +394,7 @@ export declare class DataScienceClient {
|
|
|
338
394
|
* @param DeleteModelVersionSetRequest
|
|
339
395
|
* @return DeleteModelVersionSetResponse
|
|
340
396
|
* @throws OciError when an error occurs
|
|
341
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
397
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/DeleteModelVersionSet.ts.html |here} to see how to use DeleteModelVersionSet API.
|
|
342
398
|
*/
|
|
343
399
|
deleteModelVersionSet(deleteModelVersionSetRequest: requests.DeleteModelVersionSetRequest): Promise<responses.DeleteModelVersionSetResponse>;
|
|
344
400
|
/**
|
|
@@ -347,16 +403,34 @@ export declare class DataScienceClient {
|
|
|
347
403
|
* @param DeleteNotebookSessionRequest
|
|
348
404
|
* @return DeleteNotebookSessionResponse
|
|
349
405
|
* @throws OciError when an error occurs
|
|
350
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
406
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/DeleteNotebookSession.ts.html |here} to see how to use DeleteNotebookSession API.
|
|
351
407
|
*/
|
|
352
408
|
deleteNotebookSession(deleteNotebookSessionRequest: requests.DeleteNotebookSessionRequest): Promise<responses.DeleteNotebookSessionResponse>;
|
|
409
|
+
/**
|
|
410
|
+
* Deletes a Pipeline resource by identifier.
|
|
411
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
412
|
+
* @param DeletePipelineRequest
|
|
413
|
+
* @return DeletePipelineResponse
|
|
414
|
+
* @throws OciError when an error occurs
|
|
415
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/DeletePipeline.ts.html |here} to see how to use DeletePipeline API.
|
|
416
|
+
*/
|
|
417
|
+
deletePipeline(deletePipelineRequest: requests.DeletePipelineRequest): Promise<responses.DeletePipelineResponse>;
|
|
418
|
+
/**
|
|
419
|
+
* Deletes a PipelineRun resource by identifier.
|
|
420
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
421
|
+
* @param DeletePipelineRunRequest
|
|
422
|
+
* @return DeletePipelineRunResponse
|
|
423
|
+
* @throws OciError when an error occurs
|
|
424
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/DeletePipelineRun.ts.html |here} to see how to use DeletePipelineRun API.
|
|
425
|
+
*/
|
|
426
|
+
deletePipelineRun(deletePipelineRunRequest: requests.DeletePipelineRunRequest): Promise<responses.DeletePipelineRunResponse>;
|
|
353
427
|
/**
|
|
354
428
|
* 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.
|
|
355
429
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
356
430
|
* @param DeleteProjectRequest
|
|
357
431
|
* @return DeleteProjectResponse
|
|
358
432
|
* @throws OciError when an error occurs
|
|
359
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
433
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/DeleteProject.ts.html |here} to see how to use DeleteProject API.
|
|
360
434
|
*/
|
|
361
435
|
deleteProject(deleteProjectRequest: requests.DeleteProjectRequest): Promise<responses.DeleteProjectResponse>;
|
|
362
436
|
/**
|
|
@@ -365,7 +439,7 @@ export declare class DataScienceClient {
|
|
|
365
439
|
* @param ExportModelArtifactRequest
|
|
366
440
|
* @return ExportModelArtifactResponse
|
|
367
441
|
* @throws OciError when an error occurs
|
|
368
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
442
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ExportModelArtifact.ts.html |here} to see how to use ExportModelArtifact API.
|
|
369
443
|
*/
|
|
370
444
|
exportModelArtifact(exportModelArtifactRequest: requests.ExportModelArtifactRequest): Promise<responses.ExportModelArtifactResponse>;
|
|
371
445
|
/**
|
|
@@ -374,7 +448,7 @@ export declare class DataScienceClient {
|
|
|
374
448
|
* @param GetJobRequest
|
|
375
449
|
* @return GetJobResponse
|
|
376
450
|
* @throws OciError when an error occurs
|
|
377
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
451
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetJob.ts.html |here} to see how to use GetJob API.
|
|
378
452
|
*/
|
|
379
453
|
getJob(getJobRequest: requests.GetJobRequest): Promise<responses.GetJobResponse>;
|
|
380
454
|
/**
|
|
@@ -383,7 +457,7 @@ export declare class DataScienceClient {
|
|
|
383
457
|
* @param GetJobArtifactContentRequest
|
|
384
458
|
* @return GetJobArtifactContentResponse
|
|
385
459
|
* @throws OciError when an error occurs
|
|
386
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
460
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetJobArtifactContent.ts.html |here} to see how to use GetJobArtifactContent API.
|
|
387
461
|
*/
|
|
388
462
|
getJobArtifactContent(getJobArtifactContentRequest: requests.GetJobArtifactContentRequest): Promise<responses.GetJobArtifactContentResponse>;
|
|
389
463
|
/**
|
|
@@ -392,7 +466,7 @@ export declare class DataScienceClient {
|
|
|
392
466
|
* @param GetJobRunRequest
|
|
393
467
|
* @return GetJobRunResponse
|
|
394
468
|
* @throws OciError when an error occurs
|
|
395
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
469
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetJobRun.ts.html |here} to see how to use GetJobRun API.
|
|
396
470
|
*/
|
|
397
471
|
getJobRun(getJobRunRequest: requests.GetJobRunRequest): Promise<responses.GetJobRunResponse>;
|
|
398
472
|
/**
|
|
@@ -401,7 +475,7 @@ export declare class DataScienceClient {
|
|
|
401
475
|
* @param GetModelRequest
|
|
402
476
|
* @return GetModelResponse
|
|
403
477
|
* @throws OciError when an error occurs
|
|
404
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
478
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetModel.ts.html |here} to see how to use GetModel API.
|
|
405
479
|
*/
|
|
406
480
|
getModel(getModelRequest: requests.GetModelRequest): Promise<responses.GetModelResponse>;
|
|
407
481
|
/**
|
|
@@ -410,7 +484,7 @@ export declare class DataScienceClient {
|
|
|
410
484
|
* @param GetModelArtifactContentRequest
|
|
411
485
|
* @return GetModelArtifactContentResponse
|
|
412
486
|
* @throws OciError when an error occurs
|
|
413
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
487
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetModelArtifactContent.ts.html |here} to see how to use GetModelArtifactContent API.
|
|
414
488
|
*/
|
|
415
489
|
getModelArtifactContent(getModelArtifactContentRequest: requests.GetModelArtifactContentRequest): Promise<responses.GetModelArtifactContentResponse>;
|
|
416
490
|
/**
|
|
@@ -419,7 +493,7 @@ export declare class DataScienceClient {
|
|
|
419
493
|
* @param GetModelDeploymentRequest
|
|
420
494
|
* @return GetModelDeploymentResponse
|
|
421
495
|
* @throws OciError when an error occurs
|
|
422
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
496
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetModelDeployment.ts.html |here} to see how to use GetModelDeployment API.
|
|
423
497
|
*/
|
|
424
498
|
getModelDeployment(getModelDeploymentRequest: requests.GetModelDeploymentRequest): Promise<responses.GetModelDeploymentResponse>;
|
|
425
499
|
/**
|
|
@@ -428,7 +502,7 @@ export declare class DataScienceClient {
|
|
|
428
502
|
* @param GetModelProvenanceRequest
|
|
429
503
|
* @return GetModelProvenanceResponse
|
|
430
504
|
* @throws OciError when an error occurs
|
|
431
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
505
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetModelProvenance.ts.html |here} to see how to use GetModelProvenance API.
|
|
432
506
|
*/
|
|
433
507
|
getModelProvenance(getModelProvenanceRequest: requests.GetModelProvenanceRequest): Promise<responses.GetModelProvenanceResponse>;
|
|
434
508
|
/**
|
|
@@ -437,7 +511,7 @@ export declare class DataScienceClient {
|
|
|
437
511
|
* @param GetModelVersionSetRequest
|
|
438
512
|
* @return GetModelVersionSetResponse
|
|
439
513
|
* @throws OciError when an error occurs
|
|
440
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
514
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetModelVersionSet.ts.html |here} to see how to use GetModelVersionSet API.
|
|
441
515
|
*/
|
|
442
516
|
getModelVersionSet(getModelVersionSetRequest: requests.GetModelVersionSetRequest): Promise<responses.GetModelVersionSetResponse>;
|
|
443
517
|
/**
|
|
@@ -446,25 +520,52 @@ export declare class DataScienceClient {
|
|
|
446
520
|
* @param GetNotebookSessionRequest
|
|
447
521
|
* @return GetNotebookSessionResponse
|
|
448
522
|
* @throws OciError when an error occurs
|
|
449
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
523
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetNotebookSession.ts.html |here} to see how to use GetNotebookSession API.
|
|
450
524
|
*/
|
|
451
525
|
getNotebookSession(getNotebookSessionRequest: requests.GetNotebookSessionRequest): Promise<responses.GetNotebookSessionResponse>;
|
|
526
|
+
/**
|
|
527
|
+
* Gets a Pipeline by identifier.
|
|
528
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
529
|
+
* @param GetPipelineRequest
|
|
530
|
+
* @return GetPipelineResponse
|
|
531
|
+
* @throws OciError when an error occurs
|
|
532
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetPipeline.ts.html |here} to see how to use GetPipeline API.
|
|
533
|
+
*/
|
|
534
|
+
getPipeline(getPipelineRequest: requests.GetPipelineRequest): Promise<responses.GetPipelineResponse>;
|
|
535
|
+
/**
|
|
536
|
+
* Gets a PipelineRun by identifier.
|
|
537
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
538
|
+
* @param GetPipelineRunRequest
|
|
539
|
+
* @return GetPipelineRunResponse
|
|
540
|
+
* @throws OciError when an error occurs
|
|
541
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetPipelineRun.ts.html |here} to see how to use GetPipelineRun API.
|
|
542
|
+
*/
|
|
543
|
+
getPipelineRun(getPipelineRunRequest: requests.GetPipelineRunRequest): Promise<responses.GetPipelineRunResponse>;
|
|
452
544
|
/**
|
|
453
545
|
* Gets the specified project's information.
|
|
454
546
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
455
547
|
* @param GetProjectRequest
|
|
456
548
|
* @return GetProjectResponse
|
|
457
549
|
* @throws OciError when an error occurs
|
|
458
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
550
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetProject.ts.html |here} to see how to use GetProject API.
|
|
459
551
|
*/
|
|
460
552
|
getProject(getProjectRequest: requests.GetProjectRequest): Promise<responses.GetProjectResponse>;
|
|
553
|
+
/**
|
|
554
|
+
* Download the artifact for a step in the pipeline.
|
|
555
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
556
|
+
* @param GetStepArtifactContentRequest
|
|
557
|
+
* @return GetStepArtifactContentResponse
|
|
558
|
+
* @throws OciError when an error occurs
|
|
559
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetStepArtifactContent.ts.html |here} to see how to use GetStepArtifactContent API.
|
|
560
|
+
*/
|
|
561
|
+
getStepArtifactContent(getStepArtifactContentRequest: requests.GetStepArtifactContentRequest): Promise<responses.GetStepArtifactContentResponse>;
|
|
461
562
|
/**
|
|
462
563
|
* Gets the specified work request's information.
|
|
463
564
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
464
565
|
* @param GetWorkRequestRequest
|
|
465
566
|
* @return GetWorkRequestResponse
|
|
466
567
|
* @throws OciError when an error occurs
|
|
467
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
568
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
468
569
|
*/
|
|
469
570
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
470
571
|
/**
|
|
@@ -473,7 +574,7 @@ export declare class DataScienceClient {
|
|
|
473
574
|
* @param HeadJobArtifactRequest
|
|
474
575
|
* @return HeadJobArtifactResponse
|
|
475
576
|
* @throws OciError when an error occurs
|
|
476
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
577
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/HeadJobArtifact.ts.html |here} to see how to use HeadJobArtifact API.
|
|
477
578
|
*/
|
|
478
579
|
headJobArtifact(headJobArtifactRequest: requests.HeadJobArtifactRequest): Promise<responses.HeadJobArtifactResponse>;
|
|
479
580
|
/**
|
|
@@ -482,16 +583,25 @@ export declare class DataScienceClient {
|
|
|
482
583
|
* @param HeadModelArtifactRequest
|
|
483
584
|
* @return HeadModelArtifactResponse
|
|
484
585
|
* @throws OciError when an error occurs
|
|
485
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
586
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/HeadModelArtifact.ts.html |here} to see how to use HeadModelArtifact API.
|
|
486
587
|
*/
|
|
487
588
|
headModelArtifact(headModelArtifactRequest: requests.HeadModelArtifactRequest): Promise<responses.HeadModelArtifactResponse>;
|
|
589
|
+
/**
|
|
590
|
+
* Get the artifact metadata for a step in the pipeline.
|
|
591
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
592
|
+
* @param HeadStepArtifactRequest
|
|
593
|
+
* @return HeadStepArtifactResponse
|
|
594
|
+
* @throws OciError when an error occurs
|
|
595
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/HeadStepArtifact.ts.html |here} to see how to use HeadStepArtifact API.
|
|
596
|
+
*/
|
|
597
|
+
headStepArtifact(headStepArtifactRequest: requests.HeadStepArtifactRequest): Promise<responses.HeadStepArtifactResponse>;
|
|
488
598
|
/**
|
|
489
599
|
* Import model artifact from service bucket
|
|
490
600
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
491
601
|
* @param ImportModelArtifactRequest
|
|
492
602
|
* @return ImportModelArtifactResponse
|
|
493
603
|
* @throws OciError when an error occurs
|
|
494
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
604
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ImportModelArtifact.ts.html |here} to see how to use ImportModelArtifact API.
|
|
495
605
|
*/
|
|
496
606
|
importModelArtifact(importModelArtifactRequest: requests.ImportModelArtifactRequest): Promise<responses.ImportModelArtifactResponse>;
|
|
497
607
|
/**
|
|
@@ -500,7 +610,7 @@ export declare class DataScienceClient {
|
|
|
500
610
|
* @param ListFastLaunchJobConfigsRequest
|
|
501
611
|
* @return ListFastLaunchJobConfigsResponse
|
|
502
612
|
* @throws OciError when an error occurs
|
|
503
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
613
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListFastLaunchJobConfigs.ts.html |here} to see how to use ListFastLaunchJobConfigs API.
|
|
504
614
|
*/
|
|
505
615
|
listFastLaunchJobConfigs(listFastLaunchJobConfigsRequest: requests.ListFastLaunchJobConfigsRequest): Promise<responses.ListFastLaunchJobConfigsResponse>;
|
|
506
616
|
/**
|
|
@@ -541,7 +651,7 @@ export declare class DataScienceClient {
|
|
|
541
651
|
* @param ListJobRunsRequest
|
|
542
652
|
* @return ListJobRunsResponse
|
|
543
653
|
* @throws OciError when an error occurs
|
|
544
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
654
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListJobRuns.ts.html |here} to see how to use ListJobRuns API.
|
|
545
655
|
*/
|
|
546
656
|
listJobRuns(listJobRunsRequest: requests.ListJobRunsRequest): Promise<responses.ListJobRunsResponse>;
|
|
547
657
|
/**
|
|
@@ -582,7 +692,7 @@ export declare class DataScienceClient {
|
|
|
582
692
|
* @param ListJobShapesRequest
|
|
583
693
|
* @return ListJobShapesResponse
|
|
584
694
|
* @throws OciError when an error occurs
|
|
585
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
695
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListJobShapes.ts.html |here} to see how to use ListJobShapes API.
|
|
586
696
|
*/
|
|
587
697
|
listJobShapes(listJobShapesRequest: requests.ListJobShapesRequest): Promise<responses.ListJobShapesResponse>;
|
|
588
698
|
/**
|
|
@@ -623,7 +733,7 @@ export declare class DataScienceClient {
|
|
|
623
733
|
* @param ListJobsRequest
|
|
624
734
|
* @return ListJobsResponse
|
|
625
735
|
* @throws OciError when an error occurs
|
|
626
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
736
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListJobs.ts.html |here} to see how to use ListJobs API.
|
|
627
737
|
*/
|
|
628
738
|
listJobs(listJobsRequest: requests.ListJobsRequest): Promise<responses.ListJobsResponse>;
|
|
629
739
|
/**
|
|
@@ -664,7 +774,7 @@ export declare class DataScienceClient {
|
|
|
664
774
|
* @param ListModelDeploymentShapesRequest
|
|
665
775
|
* @return ListModelDeploymentShapesResponse
|
|
666
776
|
* @throws OciError when an error occurs
|
|
667
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
777
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListModelDeploymentShapes.ts.html |here} to see how to use ListModelDeploymentShapes API.
|
|
668
778
|
*/
|
|
669
779
|
listModelDeploymentShapes(listModelDeploymentShapesRequest: requests.ListModelDeploymentShapesRequest): Promise<responses.ListModelDeploymentShapesResponse>;
|
|
670
780
|
/**
|
|
@@ -706,7 +816,7 @@ export declare class DataScienceClient {
|
|
|
706
816
|
* @param ListModelDeploymentsRequest
|
|
707
817
|
* @return ListModelDeploymentsResponse
|
|
708
818
|
* @throws OciError when an error occurs
|
|
709
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
819
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListModelDeployments.ts.html |here} to see how to use ListModelDeployments API.
|
|
710
820
|
*/
|
|
711
821
|
listModelDeployments(listModelDeploymentsRequest: requests.ListModelDeploymentsRequest): Promise<responses.ListModelDeploymentsResponse>;
|
|
712
822
|
/**
|
|
@@ -747,7 +857,7 @@ export declare class DataScienceClient {
|
|
|
747
857
|
* @param ListModelVersionSetsRequest
|
|
748
858
|
* @return ListModelVersionSetsResponse
|
|
749
859
|
* @throws OciError when an error occurs
|
|
750
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
860
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListModelVersionSets.ts.html |here} to see how to use ListModelVersionSets API.
|
|
751
861
|
*/
|
|
752
862
|
listModelVersionSets(listModelVersionSetsRequest: requests.ListModelVersionSetsRequest): Promise<responses.ListModelVersionSetsResponse>;
|
|
753
863
|
/**
|
|
@@ -788,7 +898,7 @@ export declare class DataScienceClient {
|
|
|
788
898
|
* @param ListModelsRequest
|
|
789
899
|
* @return ListModelsResponse
|
|
790
900
|
* @throws OciError when an error occurs
|
|
791
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
901
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListModels.ts.html |here} to see how to use ListModels API.
|
|
792
902
|
*/
|
|
793
903
|
listModels(listModelsRequest: requests.ListModelsRequest): Promise<responses.ListModelsResponse>;
|
|
794
904
|
/**
|
|
@@ -829,7 +939,7 @@ export declare class DataScienceClient {
|
|
|
829
939
|
* @param ListNotebookSessionShapesRequest
|
|
830
940
|
* @return ListNotebookSessionShapesResponse
|
|
831
941
|
* @throws OciError when an error occurs
|
|
832
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
942
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListNotebookSessionShapes.ts.html |here} to see how to use ListNotebookSessionShapes API.
|
|
833
943
|
*/
|
|
834
944
|
listNotebookSessionShapes(listNotebookSessionShapesRequest: requests.ListNotebookSessionShapesRequest): Promise<responses.ListNotebookSessionShapesResponse>;
|
|
835
945
|
/**
|
|
@@ -870,7 +980,7 @@ export declare class DataScienceClient {
|
|
|
870
980
|
* @param ListNotebookSessionsRequest
|
|
871
981
|
* @return ListNotebookSessionsResponse
|
|
872
982
|
* @throws OciError when an error occurs
|
|
873
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
983
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListNotebookSessions.ts.html |here} to see how to use ListNotebookSessions API.
|
|
874
984
|
*/
|
|
875
985
|
listNotebookSessions(listNotebookSessionsRequest: requests.ListNotebookSessionsRequest): Promise<responses.ListNotebookSessionsResponse>;
|
|
876
986
|
/**
|
|
@@ -905,13 +1015,95 @@ export declare class DataScienceClient {
|
|
|
905
1015
|
* @param request a request which can be sent to the service operation
|
|
906
1016
|
*/
|
|
907
1017
|
listNotebookSessionsResponseIterator(request: requests.ListNotebookSessionsRequest): AsyncIterableIterator<responses.ListNotebookSessionsResponse>;
|
|
1018
|
+
/**
|
|
1019
|
+
* Returns a list of PipelineRuns.
|
|
1020
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1021
|
+
* @param ListPipelineRunsRequest
|
|
1022
|
+
* @return ListPipelineRunsResponse
|
|
1023
|
+
* @throws OciError when an error occurs
|
|
1024
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListPipelineRuns.ts.html |here} to see how to use ListPipelineRuns API.
|
|
1025
|
+
*/
|
|
1026
|
+
listPipelineRuns(listPipelineRunsRequest: requests.ListPipelineRunsRequest): Promise<responses.ListPipelineRunsResponse>;
|
|
1027
|
+
/**
|
|
1028
|
+
* NOTE: This function is deprecated in favor of listPipelineRunsRecordIterator function.
|
|
1029
|
+
* Creates a new async iterator which will iterate over the models.PipelineRunSummary objects
|
|
1030
|
+
* contained in responses from the listPipelineRuns operation. This iterator will fetch more data from the
|
|
1031
|
+
* server as needed.
|
|
1032
|
+
*
|
|
1033
|
+
* @param request a request which can be sent to the service operation
|
|
1034
|
+
*/
|
|
1035
|
+
listAllPipelineRuns(request: requests.ListPipelineRunsRequest): AsyncIterableIterator<model.PipelineRunSummary>;
|
|
1036
|
+
/**
|
|
1037
|
+
* NOTE: This function is deprecated in favor of listPipelineRunsResponseIterator function.
|
|
1038
|
+
* Creates a new async iterator which will iterate over the responses received from the listPipelineRuns operation. This iterator
|
|
1039
|
+
* will fetch more data from the server as needed.
|
|
1040
|
+
*
|
|
1041
|
+
* @param request a request which can be sent to the service operation
|
|
1042
|
+
*/
|
|
1043
|
+
listAllPipelineRunsResponses(request: requests.ListPipelineRunsRequest): AsyncIterableIterator<responses.ListPipelineRunsResponse>;
|
|
1044
|
+
/**
|
|
1045
|
+
* Creates a new async iterator which will iterate over the models.PipelineRunSummary objects
|
|
1046
|
+
* contained in responses from the listPipelineRuns operation. This iterator will fetch more data from the
|
|
1047
|
+
* server as needed.
|
|
1048
|
+
*
|
|
1049
|
+
* @param request a request which can be sent to the service operation
|
|
1050
|
+
*/
|
|
1051
|
+
listPipelineRunsRecordIterator(request: requests.ListPipelineRunsRequest): AsyncIterableIterator<model.PipelineRunSummary>;
|
|
1052
|
+
/**
|
|
1053
|
+
* Creates a new async iterator which will iterate over the responses received from the listPipelineRuns operation. This iterator
|
|
1054
|
+
* will fetch more data from the server as needed.
|
|
1055
|
+
*
|
|
1056
|
+
* @param request a request which can be sent to the service operation
|
|
1057
|
+
*/
|
|
1058
|
+
listPipelineRunsResponseIterator(request: requests.ListPipelineRunsRequest): AsyncIterableIterator<responses.ListPipelineRunsResponse>;
|
|
1059
|
+
/**
|
|
1060
|
+
* Returns a list of Pipelines.
|
|
1061
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1062
|
+
* @param ListPipelinesRequest
|
|
1063
|
+
* @return ListPipelinesResponse
|
|
1064
|
+
* @throws OciError when an error occurs
|
|
1065
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListPipelines.ts.html |here} to see how to use ListPipelines API.
|
|
1066
|
+
*/
|
|
1067
|
+
listPipelines(listPipelinesRequest: requests.ListPipelinesRequest): Promise<responses.ListPipelinesResponse>;
|
|
1068
|
+
/**
|
|
1069
|
+
* NOTE: This function is deprecated in favor of listPipelinesRecordIterator function.
|
|
1070
|
+
* Creates a new async iterator which will iterate over the models.PipelineSummary objects
|
|
1071
|
+
* contained in responses from the listPipelines operation. This iterator will fetch more data from the
|
|
1072
|
+
* server as needed.
|
|
1073
|
+
*
|
|
1074
|
+
* @param request a request which can be sent to the service operation
|
|
1075
|
+
*/
|
|
1076
|
+
listAllPipelines(request: requests.ListPipelinesRequest): AsyncIterableIterator<model.PipelineSummary>;
|
|
1077
|
+
/**
|
|
1078
|
+
* NOTE: This function is deprecated in favor of listPipelinesResponseIterator function.
|
|
1079
|
+
* Creates a new async iterator which will iterate over the responses received from the listPipelines operation. This iterator
|
|
1080
|
+
* will fetch more data from the server as needed.
|
|
1081
|
+
*
|
|
1082
|
+
* @param request a request which can be sent to the service operation
|
|
1083
|
+
*/
|
|
1084
|
+
listAllPipelinesResponses(request: requests.ListPipelinesRequest): AsyncIterableIterator<responses.ListPipelinesResponse>;
|
|
1085
|
+
/**
|
|
1086
|
+
* Creates a new async iterator which will iterate over the models.PipelineSummary objects
|
|
1087
|
+
* contained in responses from the listPipelines operation. This iterator will fetch more data from the
|
|
1088
|
+
* server as needed.
|
|
1089
|
+
*
|
|
1090
|
+
* @param request a request which can be sent to the service operation
|
|
1091
|
+
*/
|
|
1092
|
+
listPipelinesRecordIterator(request: requests.ListPipelinesRequest): AsyncIterableIterator<model.PipelineSummary>;
|
|
1093
|
+
/**
|
|
1094
|
+
* Creates a new async iterator which will iterate over the responses received from the listPipelines operation. This iterator
|
|
1095
|
+
* will fetch more data from the server as needed.
|
|
1096
|
+
*
|
|
1097
|
+
* @param request a request which can be sent to the service operation
|
|
1098
|
+
*/
|
|
1099
|
+
listPipelinesResponseIterator(request: requests.ListPipelinesRequest): AsyncIterableIterator<responses.ListPipelinesResponse>;
|
|
908
1100
|
/**
|
|
909
1101
|
* Lists projects in the specified compartment.
|
|
910
1102
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
911
1103
|
* @param ListProjectsRequest
|
|
912
1104
|
* @return ListProjectsResponse
|
|
913
1105
|
* @throws OciError when an error occurs
|
|
914
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
1106
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListProjects.ts.html |here} to see how to use ListProjects API.
|
|
915
1107
|
*/
|
|
916
1108
|
listProjects(listProjectsRequest: requests.ListProjectsRequest): Promise<responses.ListProjectsResponse>;
|
|
917
1109
|
/**
|
|
@@ -952,7 +1144,7 @@ export declare class DataScienceClient {
|
|
|
952
1144
|
* @param ListWorkRequestErrorsRequest
|
|
953
1145
|
* @return ListWorkRequestErrorsResponse
|
|
954
1146
|
* @throws OciError when an error occurs
|
|
955
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
1147
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
956
1148
|
*/
|
|
957
1149
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
958
1150
|
/**
|
|
@@ -961,7 +1153,7 @@ export declare class DataScienceClient {
|
|
|
961
1153
|
* @param ListWorkRequestLogsRequest
|
|
962
1154
|
* @return ListWorkRequestLogsResponse
|
|
963
1155
|
* @throws OciError when an error occurs
|
|
964
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
1156
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
965
1157
|
*/
|
|
966
1158
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
967
1159
|
/**
|
|
@@ -970,7 +1162,7 @@ export declare class DataScienceClient {
|
|
|
970
1162
|
* @param ListWorkRequestsRequest
|
|
971
1163
|
* @return ListWorkRequestsResponse
|
|
972
1164
|
* @throws OciError when an error occurs
|
|
973
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
1165
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
974
1166
|
*/
|
|
975
1167
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
976
1168
|
/**
|
|
@@ -1011,7 +1203,7 @@ export declare class DataScienceClient {
|
|
|
1011
1203
|
* @param UpdateJobRequest
|
|
1012
1204
|
* @return UpdateJobResponse
|
|
1013
1205
|
* @throws OciError when an error occurs
|
|
1014
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
1206
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/UpdateJob.ts.html |here} to see how to use UpdateJob API.
|
|
1015
1207
|
*/
|
|
1016
1208
|
updateJob(updateJobRequest: requests.UpdateJobRequest): Promise<responses.UpdateJobResponse>;
|
|
1017
1209
|
/**
|
|
@@ -1020,7 +1212,7 @@ export declare class DataScienceClient {
|
|
|
1020
1212
|
* @param UpdateJobRunRequest
|
|
1021
1213
|
* @return UpdateJobRunResponse
|
|
1022
1214
|
* @throws OciError when an error occurs
|
|
1023
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
1215
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/UpdateJobRun.ts.html |here} to see how to use UpdateJobRun API.
|
|
1024
1216
|
*/
|
|
1025
1217
|
updateJobRun(updateJobRunRequest: requests.UpdateJobRunRequest): Promise<responses.UpdateJobRunResponse>;
|
|
1026
1218
|
/**
|
|
@@ -1029,7 +1221,7 @@ export declare class DataScienceClient {
|
|
|
1029
1221
|
* @param UpdateModelRequest
|
|
1030
1222
|
* @return UpdateModelResponse
|
|
1031
1223
|
* @throws OciError when an error occurs
|
|
1032
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
1224
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/UpdateModel.ts.html |here} to see how to use UpdateModel API.
|
|
1033
1225
|
*/
|
|
1034
1226
|
updateModel(updateModelRequest: requests.UpdateModelRequest): Promise<responses.UpdateModelResponse>;
|
|
1035
1227
|
/**
|
|
@@ -1042,7 +1234,7 @@ export declare class DataScienceClient {
|
|
|
1042
1234
|
* @param UpdateModelDeploymentRequest
|
|
1043
1235
|
* @return UpdateModelDeploymentResponse
|
|
1044
1236
|
* @throws OciError when an error occurs
|
|
1045
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
1237
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/UpdateModelDeployment.ts.html |here} to see how to use UpdateModelDeployment API.
|
|
1046
1238
|
*/
|
|
1047
1239
|
updateModelDeployment(updateModelDeploymentRequest: requests.UpdateModelDeploymentRequest): Promise<responses.UpdateModelDeploymentResponse>;
|
|
1048
1240
|
/**
|
|
@@ -1051,7 +1243,7 @@ export declare class DataScienceClient {
|
|
|
1051
1243
|
* @param UpdateModelProvenanceRequest
|
|
1052
1244
|
* @return UpdateModelProvenanceResponse
|
|
1053
1245
|
* @throws OciError when an error occurs
|
|
1054
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
1246
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/UpdateModelProvenance.ts.html |here} to see how to use UpdateModelProvenance API.
|
|
1055
1247
|
*/
|
|
1056
1248
|
updateModelProvenance(updateModelProvenanceRequest: requests.UpdateModelProvenanceRequest): Promise<responses.UpdateModelProvenanceResponse>;
|
|
1057
1249
|
/**
|
|
@@ -1060,7 +1252,7 @@ export declare class DataScienceClient {
|
|
|
1060
1252
|
* @param UpdateModelVersionSetRequest
|
|
1061
1253
|
* @return UpdateModelVersionSetResponse
|
|
1062
1254
|
* @throws OciError when an error occurs
|
|
1063
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
1255
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/UpdateModelVersionSet.ts.html |here} to see how to use UpdateModelVersionSet API.
|
|
1064
1256
|
*/
|
|
1065
1257
|
updateModelVersionSet(updateModelVersionSetRequest: requests.UpdateModelVersionSetRequest): Promise<responses.UpdateModelVersionSetResponse>;
|
|
1066
1258
|
/**
|
|
@@ -1072,16 +1264,34 @@ export declare class DataScienceClient {
|
|
|
1072
1264
|
* @param UpdateNotebookSessionRequest
|
|
1073
1265
|
* @return UpdateNotebookSessionResponse
|
|
1074
1266
|
* @throws OciError when an error occurs
|
|
1075
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
1267
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/UpdateNotebookSession.ts.html |here} to see how to use UpdateNotebookSession API.
|
|
1076
1268
|
*/
|
|
1077
1269
|
updateNotebookSession(updateNotebookSessionRequest: requests.UpdateNotebookSessionRequest): Promise<responses.UpdateNotebookSessionResponse>;
|
|
1270
|
+
/**
|
|
1271
|
+
* Updates the Pipeline.
|
|
1272
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1273
|
+
* @param UpdatePipelineRequest
|
|
1274
|
+
* @return UpdatePipelineResponse
|
|
1275
|
+
* @throws OciError when an error occurs
|
|
1276
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/UpdatePipeline.ts.html |here} to see how to use UpdatePipeline API.
|
|
1277
|
+
*/
|
|
1278
|
+
updatePipeline(updatePipelineRequest: requests.UpdatePipelineRequest): Promise<responses.UpdatePipelineResponse>;
|
|
1279
|
+
/**
|
|
1280
|
+
* Updates the PipelineRun.
|
|
1281
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1282
|
+
* @param UpdatePipelineRunRequest
|
|
1283
|
+
* @return UpdatePipelineRunResponse
|
|
1284
|
+
* @throws OciError when an error occurs
|
|
1285
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/UpdatePipelineRun.ts.html |here} to see how to use UpdatePipelineRun API.
|
|
1286
|
+
*/
|
|
1287
|
+
updatePipelineRun(updatePipelineRunRequest: requests.UpdatePipelineRunRequest): Promise<responses.UpdatePipelineRunResponse>;
|
|
1078
1288
|
/**
|
|
1079
1289
|
* Updates the properties of a project. You can update the `displayName`, `description`, `freeformTags`, and `definedTags` properties.
|
|
1080
1290
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1081
1291
|
* @param UpdateProjectRequest
|
|
1082
1292
|
* @return UpdateProjectResponse
|
|
1083
1293
|
* @throws OciError when an error occurs
|
|
1084
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
1294
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.3/datascience/UpdateProject.ts.html |here} to see how to use UpdateProject API.
|
|
1085
1295
|
*/
|
|
1086
1296
|
updateProject(updateProjectRequest: requests.UpdateProjectRequest): Promise<responses.UpdateProjectResponse>;
|
|
1087
1297
|
}
|