oci-datascience 2.5.2 → 2.8.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 +123 -60
- package/lib/client.js +250 -120
- 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 +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-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-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.d.ts
CHANGED
|
@@ -18,6 +18,9 @@ import * as responses from "./response";
|
|
|
18
18
|
import { DataScienceWaiter } from "./datascience-waiter";
|
|
19
19
|
export declare enum DataScienceApiKeys {
|
|
20
20
|
}
|
|
21
|
+
/**
|
|
22
|
+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
|
|
23
|
+
*/
|
|
21
24
|
export declare class DataScienceClient {
|
|
22
25
|
protected static serviceEndpointTemplate: string;
|
|
23
26
|
protected "_endpoint": string;
|
|
@@ -67,338 +70,380 @@ export declare class DataScienceClient {
|
|
|
67
70
|
getWaiters(): DataScienceWaiter;
|
|
68
71
|
/**
|
|
69
72
|
* Activates the model.
|
|
73
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
70
74
|
* @param ActivateModelRequest
|
|
71
75
|
* @return ActivateModelResponse
|
|
72
76
|
* @throws OciError when an error occurs
|
|
73
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
77
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ActivateModel.ts.html |here} to see how to use ActivateModel API.
|
|
74
78
|
*/
|
|
75
79
|
activateModel(activateModelRequest: requests.ActivateModelRequest): Promise<responses.ActivateModelResponse>;
|
|
76
80
|
/**
|
|
77
81
|
* Activates the model deployment.
|
|
82
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
78
83
|
* @param ActivateModelDeploymentRequest
|
|
79
84
|
* @return ActivateModelDeploymentResponse
|
|
80
85
|
* @throws OciError when an error occurs
|
|
81
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
86
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ActivateModelDeployment.ts.html |here} to see how to use ActivateModelDeployment API.
|
|
82
87
|
*/
|
|
83
88
|
activateModelDeployment(activateModelDeploymentRequest: requests.ActivateModelDeploymentRequest): Promise<responses.ActivateModelDeploymentResponse>;
|
|
84
89
|
/**
|
|
85
90
|
* Activates the notebook session.
|
|
91
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
86
92
|
* @param ActivateNotebookSessionRequest
|
|
87
93
|
* @return ActivateNotebookSessionResponse
|
|
88
94
|
* @throws OciError when an error occurs
|
|
89
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
95
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ActivateNotebookSession.ts.html |here} to see how to use ActivateNotebookSession API.
|
|
90
96
|
*/
|
|
91
97
|
activateNotebookSession(activateNotebookSessionRequest: requests.ActivateNotebookSessionRequest): Promise<responses.ActivateNotebookSessionResponse>;
|
|
92
98
|
/**
|
|
93
99
|
* Cancels an IN_PROGRESS job run.
|
|
100
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
94
101
|
* @param CancelJobRunRequest
|
|
95
102
|
* @return CancelJobRunResponse
|
|
96
103
|
* @throws OciError when an error occurs
|
|
97
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
104
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/CancelJobRun.ts.html |here} to see how to use CancelJobRun API.
|
|
98
105
|
*/
|
|
99
106
|
cancelJobRun(cancelJobRunRequest: requests.CancelJobRunRequest): Promise<responses.CancelJobRunResponse>;
|
|
100
107
|
/**
|
|
101
108
|
* Cancels a work request that has not started.
|
|
109
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
102
110
|
* @param CancelWorkRequestRequest
|
|
103
111
|
* @return CancelWorkRequestResponse
|
|
104
112
|
* @throws OciError when an error occurs
|
|
105
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
113
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
|
|
106
114
|
*/
|
|
107
115
|
cancelWorkRequest(cancelWorkRequestRequest: requests.CancelWorkRequestRequest): Promise<responses.CancelWorkRequestResponse>;
|
|
108
116
|
/**
|
|
109
117
|
* Changes a job's compartment
|
|
118
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
110
119
|
* @param ChangeJobCompartmentRequest
|
|
111
120
|
* @return ChangeJobCompartmentResponse
|
|
112
121
|
* @throws OciError when an error occurs
|
|
113
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
122
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ChangeJobCompartment.ts.html |here} to see how to use ChangeJobCompartment API.
|
|
114
123
|
*/
|
|
115
124
|
changeJobCompartment(changeJobCompartmentRequest: requests.ChangeJobCompartmentRequest): Promise<responses.ChangeJobCompartmentResponse>;
|
|
116
125
|
/**
|
|
117
126
|
* Changes a job run's compartment
|
|
127
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
118
128
|
* @param ChangeJobRunCompartmentRequest
|
|
119
129
|
* @return ChangeJobRunCompartmentResponse
|
|
120
130
|
* @throws OciError when an error occurs
|
|
121
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
131
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ChangeJobRunCompartment.ts.html |here} to see how to use ChangeJobRunCompartment API.
|
|
122
132
|
*/
|
|
123
133
|
changeJobRunCompartment(changeJobRunCompartmentRequest: requests.ChangeJobRunCompartmentRequest): Promise<responses.ChangeJobRunCompartmentResponse>;
|
|
124
134
|
/**
|
|
125
135
|
* Moves a model resource into a different compartment.
|
|
136
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
126
137
|
* @param ChangeModelCompartmentRequest
|
|
127
138
|
* @return ChangeModelCompartmentResponse
|
|
128
139
|
* @throws OciError when an error occurs
|
|
129
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
140
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ChangeModelCompartment.ts.html |here} to see how to use ChangeModelCompartment API.
|
|
130
141
|
*/
|
|
131
142
|
changeModelCompartment(changeModelCompartmentRequest: requests.ChangeModelCompartmentRequest): Promise<responses.ChangeModelCompartmentResponse>;
|
|
132
143
|
/**
|
|
133
144
|
* Moves a model deployment into a different compartment. When provided, If-Match is checked against ETag values of the resource.
|
|
145
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
134
146
|
* @param ChangeModelDeploymentCompartmentRequest
|
|
135
147
|
* @return ChangeModelDeploymentCompartmentResponse
|
|
136
148
|
* @throws OciError when an error occurs
|
|
137
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
149
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ChangeModelDeploymentCompartment.ts.html |here} to see how to use ChangeModelDeploymentCompartment API.
|
|
138
150
|
*/
|
|
139
151
|
changeModelDeploymentCompartment(changeModelDeploymentCompartmentRequest: requests.ChangeModelDeploymentCompartmentRequest): Promise<responses.ChangeModelDeploymentCompartmentResponse>;
|
|
140
152
|
/**
|
|
141
153
|
* Moves a notebook session resource into a different compartment.
|
|
154
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
142
155
|
* @param ChangeNotebookSessionCompartmentRequest
|
|
143
156
|
* @return ChangeNotebookSessionCompartmentResponse
|
|
144
157
|
* @throws OciError when an error occurs
|
|
145
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
158
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ChangeNotebookSessionCompartment.ts.html |here} to see how to use ChangeNotebookSessionCompartment API.
|
|
146
159
|
*/
|
|
147
160
|
changeNotebookSessionCompartment(changeNotebookSessionCompartmentRequest: requests.ChangeNotebookSessionCompartmentRequest): Promise<responses.ChangeNotebookSessionCompartmentResponse>;
|
|
148
161
|
/**
|
|
149
162
|
* Moves a project resource into a different compartment.
|
|
163
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
150
164
|
* @param ChangeProjectCompartmentRequest
|
|
151
165
|
* @return ChangeProjectCompartmentResponse
|
|
152
166
|
* @throws OciError when an error occurs
|
|
153
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
167
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ChangeProjectCompartment.ts.html |here} to see how to use ChangeProjectCompartment API.
|
|
154
168
|
*/
|
|
155
169
|
changeProjectCompartment(changeProjectCompartmentRequest: requests.ChangeProjectCompartmentRequest): Promise<responses.ChangeProjectCompartmentResponse>;
|
|
156
170
|
/**
|
|
157
171
|
* Creates a job.
|
|
172
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
158
173
|
* @param CreateJobRequest
|
|
159
174
|
* @return CreateJobResponse
|
|
160
175
|
* @throws OciError when an error occurs
|
|
161
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
176
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/CreateJob.ts.html |here} to see how to use CreateJob API.
|
|
162
177
|
*/
|
|
163
178
|
createJob(createJobRequest: requests.CreateJobRequest): Promise<responses.CreateJobResponse>;
|
|
164
179
|
/**
|
|
165
180
|
* Uploads a job artifact.
|
|
181
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
166
182
|
* @param CreateJobArtifactRequest
|
|
167
183
|
* @return CreateJobArtifactResponse
|
|
168
184
|
* @throws OciError when an error occurs
|
|
169
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
185
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/CreateJobArtifact.ts.html |here} to see how to use CreateJobArtifact API.
|
|
170
186
|
*/
|
|
171
187
|
createJobArtifact(createJobArtifactRequest: requests.CreateJobArtifactRequest): Promise<responses.CreateJobArtifactResponse>;
|
|
172
188
|
/**
|
|
173
189
|
* Creates a job run.
|
|
190
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
174
191
|
* @param CreateJobRunRequest
|
|
175
192
|
* @return CreateJobRunResponse
|
|
176
193
|
* @throws OciError when an error occurs
|
|
177
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
194
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/CreateJobRun.ts.html |here} to see how to use CreateJobRun API.
|
|
178
195
|
*/
|
|
179
196
|
createJobRun(createJobRunRequest: requests.CreateJobRunRequest): Promise<responses.CreateJobRunResponse>;
|
|
180
197
|
/**
|
|
181
198
|
* Creates a new model.
|
|
199
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
182
200
|
* @param CreateModelRequest
|
|
183
201
|
* @return CreateModelResponse
|
|
184
202
|
* @throws OciError when an error occurs
|
|
185
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
203
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/CreateModel.ts.html |here} to see how to use CreateModel API.
|
|
186
204
|
*/
|
|
187
205
|
createModel(createModelRequest: requests.CreateModelRequest): Promise<responses.CreateModelResponse>;
|
|
188
206
|
/**
|
|
189
207
|
* Creates model artifact for specified model.
|
|
208
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
190
209
|
* @param CreateModelArtifactRequest
|
|
191
210
|
* @return CreateModelArtifactResponse
|
|
192
211
|
* @throws OciError when an error occurs
|
|
193
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
212
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/CreateModelArtifact.ts.html |here} to see how to use CreateModelArtifact API.
|
|
194
213
|
*/
|
|
195
214
|
createModelArtifact(createModelArtifactRequest: requests.CreateModelArtifactRequest): Promise<responses.CreateModelArtifactResponse>;
|
|
196
215
|
/**
|
|
197
216
|
* Creates a new model deployment.
|
|
217
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
198
218
|
* @param CreateModelDeploymentRequest
|
|
199
219
|
* @return CreateModelDeploymentResponse
|
|
200
220
|
* @throws OciError when an error occurs
|
|
201
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
221
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/CreateModelDeployment.ts.html |here} to see how to use CreateModelDeployment API.
|
|
202
222
|
*/
|
|
203
223
|
createModelDeployment(createModelDeploymentRequest: requests.CreateModelDeploymentRequest): Promise<responses.CreateModelDeploymentResponse>;
|
|
204
224
|
/**
|
|
205
225
|
* Creates provenance information for the specified model.
|
|
226
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
206
227
|
* @param CreateModelProvenanceRequest
|
|
207
228
|
* @return CreateModelProvenanceResponse
|
|
208
229
|
* @throws OciError when an error occurs
|
|
209
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
230
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/CreateModelProvenance.ts.html |here} to see how to use CreateModelProvenance API.
|
|
210
231
|
*/
|
|
211
232
|
createModelProvenance(createModelProvenanceRequest: requests.CreateModelProvenanceRequest): Promise<responses.CreateModelProvenanceResponse>;
|
|
212
233
|
/**
|
|
213
234
|
* Creates a new notebook session.
|
|
235
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
214
236
|
* @param CreateNotebookSessionRequest
|
|
215
237
|
* @return CreateNotebookSessionResponse
|
|
216
238
|
* @throws OciError when an error occurs
|
|
217
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
239
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/CreateNotebookSession.ts.html |here} to see how to use CreateNotebookSession API.
|
|
218
240
|
*/
|
|
219
241
|
createNotebookSession(createNotebookSessionRequest: requests.CreateNotebookSessionRequest): Promise<responses.CreateNotebookSessionResponse>;
|
|
220
242
|
/**
|
|
221
243
|
* Creates a new project.
|
|
244
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
222
245
|
* @param CreateProjectRequest
|
|
223
246
|
* @return CreateProjectResponse
|
|
224
247
|
* @throws OciError when an error occurs
|
|
225
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
248
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/CreateProject.ts.html |here} to see how to use CreateProject API.
|
|
226
249
|
*/
|
|
227
250
|
createProject(createProjectRequest: requests.CreateProjectRequest): Promise<responses.CreateProjectResponse>;
|
|
228
251
|
/**
|
|
229
252
|
* Deactivates the model.
|
|
253
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
230
254
|
* @param DeactivateModelRequest
|
|
231
255
|
* @return DeactivateModelResponse
|
|
232
256
|
* @throws OciError when an error occurs
|
|
233
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
257
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/DeactivateModel.ts.html |here} to see how to use DeactivateModel API.
|
|
234
258
|
*/
|
|
235
259
|
deactivateModel(deactivateModelRequest: requests.DeactivateModelRequest): Promise<responses.DeactivateModelResponse>;
|
|
236
260
|
/**
|
|
237
261
|
* Deactivates the model deployment.
|
|
262
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
238
263
|
* @param DeactivateModelDeploymentRequest
|
|
239
264
|
* @return DeactivateModelDeploymentResponse
|
|
240
265
|
* @throws OciError when an error occurs
|
|
241
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
266
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/DeactivateModelDeployment.ts.html |here} to see how to use DeactivateModelDeployment API.
|
|
242
267
|
*/
|
|
243
268
|
deactivateModelDeployment(deactivateModelDeploymentRequest: requests.DeactivateModelDeploymentRequest): Promise<responses.DeactivateModelDeploymentResponse>;
|
|
244
269
|
/**
|
|
245
270
|
* Deactivates the notebook session.
|
|
271
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
246
272
|
* @param DeactivateNotebookSessionRequest
|
|
247
273
|
* @return DeactivateNotebookSessionResponse
|
|
248
274
|
* @throws OciError when an error occurs
|
|
249
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
275
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/DeactivateNotebookSession.ts.html |here} to see how to use DeactivateNotebookSession API.
|
|
250
276
|
*/
|
|
251
277
|
deactivateNotebookSession(deactivateNotebookSessionRequest: requests.DeactivateNotebookSessionRequest): Promise<responses.DeactivateNotebookSessionResponse>;
|
|
252
278
|
/**
|
|
253
279
|
* Deletes a job.
|
|
280
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
254
281
|
* @param DeleteJobRequest
|
|
255
282
|
* @return DeleteJobResponse
|
|
256
283
|
* @throws OciError when an error occurs
|
|
257
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
284
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/DeleteJob.ts.html |here} to see how to use DeleteJob API.
|
|
258
285
|
*/
|
|
259
286
|
deleteJob(deleteJobRequest: requests.DeleteJobRequest): Promise<responses.DeleteJobResponse>;
|
|
260
287
|
/**
|
|
261
288
|
* Deletes a job run.
|
|
289
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
262
290
|
* @param DeleteJobRunRequest
|
|
263
291
|
* @return DeleteJobRunResponse
|
|
264
292
|
* @throws OciError when an error occurs
|
|
265
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
293
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/DeleteJobRun.ts.html |here} to see how to use DeleteJobRun API.
|
|
266
294
|
*/
|
|
267
295
|
deleteJobRun(deleteJobRunRequest: requests.DeleteJobRunRequest): Promise<responses.DeleteJobRunResponse>;
|
|
268
296
|
/**
|
|
269
297
|
* Deletes the specified model.
|
|
298
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
270
299
|
* @param DeleteModelRequest
|
|
271
300
|
* @return DeleteModelResponse
|
|
272
301
|
* @throws OciError when an error occurs
|
|
273
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
302
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/DeleteModel.ts.html |here} to see how to use DeleteModel API.
|
|
274
303
|
*/
|
|
275
304
|
deleteModel(deleteModelRequest: requests.DeleteModelRequest): Promise<responses.DeleteModelResponse>;
|
|
276
305
|
/**
|
|
277
306
|
* Deletes the specified model deployment. Any unsaved work in this model deployment is lost.
|
|
307
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
278
308
|
* @param DeleteModelDeploymentRequest
|
|
279
309
|
* @return DeleteModelDeploymentResponse
|
|
280
310
|
* @throws OciError when an error occurs
|
|
281
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
311
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/DeleteModelDeployment.ts.html |here} to see how to use DeleteModelDeployment API.
|
|
282
312
|
*/
|
|
283
313
|
deleteModelDeployment(deleteModelDeploymentRequest: requests.DeleteModelDeploymentRequest): Promise<responses.DeleteModelDeploymentResponse>;
|
|
284
314
|
/**
|
|
285
315
|
* Deletes the specified notebook session. Any unsaved work in this notebook session are lost.
|
|
316
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
286
317
|
* @param DeleteNotebookSessionRequest
|
|
287
318
|
* @return DeleteNotebookSessionResponse
|
|
288
319
|
* @throws OciError when an error occurs
|
|
289
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
320
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/DeleteNotebookSession.ts.html |here} to see how to use DeleteNotebookSession API.
|
|
290
321
|
*/
|
|
291
322
|
deleteNotebookSession(deleteNotebookSessionRequest: requests.DeleteNotebookSessionRequest): Promise<responses.DeleteNotebookSessionResponse>;
|
|
292
323
|
/**
|
|
293
324
|
* 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.
|
|
325
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
294
326
|
* @param DeleteProjectRequest
|
|
295
327
|
* @return DeleteProjectResponse
|
|
296
328
|
* @throws OciError when an error occurs
|
|
297
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
329
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/DeleteProject.ts.html |here} to see how to use DeleteProject API.
|
|
298
330
|
*/
|
|
299
331
|
deleteProject(deleteProjectRequest: requests.DeleteProjectRequest): Promise<responses.DeleteProjectResponse>;
|
|
300
332
|
/**
|
|
301
333
|
* Gets a job.
|
|
334
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
302
335
|
* @param GetJobRequest
|
|
303
336
|
* @return GetJobResponse
|
|
304
337
|
* @throws OciError when an error occurs
|
|
305
|
-
* @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.8.0/datascience/GetJob.ts.html |here} to see how to use GetJob API.
|
|
306
339
|
*/
|
|
307
340
|
getJob(getJobRequest: requests.GetJobRequest): Promise<responses.GetJobResponse>;
|
|
308
341
|
/**
|
|
309
342
|
* Downloads job artifact content for specified job.
|
|
343
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
310
344
|
* @param GetJobArtifactContentRequest
|
|
311
345
|
* @return GetJobArtifactContentResponse
|
|
312
346
|
* @throws OciError when an error occurs
|
|
313
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
347
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/GetJobArtifactContent.ts.html |here} to see how to use GetJobArtifactContent API.
|
|
314
348
|
*/
|
|
315
349
|
getJobArtifactContent(getJobArtifactContentRequest: requests.GetJobArtifactContentRequest): Promise<responses.GetJobArtifactContentResponse>;
|
|
316
350
|
/**
|
|
317
351
|
* Gets a job run.
|
|
352
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
318
353
|
* @param GetJobRunRequest
|
|
319
354
|
* @return GetJobRunResponse
|
|
320
355
|
* @throws OciError when an error occurs
|
|
321
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
356
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/GetJobRun.ts.html |here} to see how to use GetJobRun API.
|
|
322
357
|
*/
|
|
323
358
|
getJobRun(getJobRunRequest: requests.GetJobRunRequest): Promise<responses.GetJobRunResponse>;
|
|
324
359
|
/**
|
|
325
360
|
* Gets the specified model's information.
|
|
361
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
326
362
|
* @param GetModelRequest
|
|
327
363
|
* @return GetModelResponse
|
|
328
364
|
* @throws OciError when an error occurs
|
|
329
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
365
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/GetModel.ts.html |here} to see how to use GetModel API.
|
|
330
366
|
*/
|
|
331
367
|
getModel(getModelRequest: requests.GetModelRequest): Promise<responses.GetModelResponse>;
|
|
332
368
|
/**
|
|
333
369
|
* Downloads model artifact content for specified model.
|
|
370
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
334
371
|
* @param GetModelArtifactContentRequest
|
|
335
372
|
* @return GetModelArtifactContentResponse
|
|
336
373
|
* @throws OciError when an error occurs
|
|
337
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
374
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/GetModelArtifactContent.ts.html |here} to see how to use GetModelArtifactContent API.
|
|
338
375
|
*/
|
|
339
376
|
getModelArtifactContent(getModelArtifactContentRequest: requests.GetModelArtifactContentRequest): Promise<responses.GetModelArtifactContentResponse>;
|
|
340
377
|
/**
|
|
341
378
|
* Retrieves the model deployment for the specified `modelDeploymentId`.
|
|
379
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
342
380
|
* @param GetModelDeploymentRequest
|
|
343
381
|
* @return GetModelDeploymentResponse
|
|
344
382
|
* @throws OciError when an error occurs
|
|
345
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
383
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/GetModelDeployment.ts.html |here} to see how to use GetModelDeployment API.
|
|
346
384
|
*/
|
|
347
385
|
getModelDeployment(getModelDeploymentRequest: requests.GetModelDeploymentRequest): Promise<responses.GetModelDeploymentResponse>;
|
|
348
386
|
/**
|
|
349
387
|
* Gets provenance information for specified model.
|
|
388
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
350
389
|
* @param GetModelProvenanceRequest
|
|
351
390
|
* @return GetModelProvenanceResponse
|
|
352
391
|
* @throws OciError when an error occurs
|
|
353
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
392
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/GetModelProvenance.ts.html |here} to see how to use GetModelProvenance API.
|
|
354
393
|
*/
|
|
355
394
|
getModelProvenance(getModelProvenanceRequest: requests.GetModelProvenanceRequest): Promise<responses.GetModelProvenanceResponse>;
|
|
356
395
|
/**
|
|
357
396
|
* Gets the specified notebook session's information.
|
|
397
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
358
398
|
* @param GetNotebookSessionRequest
|
|
359
399
|
* @return GetNotebookSessionResponse
|
|
360
400
|
* @throws OciError when an error occurs
|
|
361
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
401
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/GetNotebookSession.ts.html |here} to see how to use GetNotebookSession API.
|
|
362
402
|
*/
|
|
363
403
|
getNotebookSession(getNotebookSessionRequest: requests.GetNotebookSessionRequest): Promise<responses.GetNotebookSessionResponse>;
|
|
364
404
|
/**
|
|
365
405
|
* Gets the specified project's information.
|
|
406
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
366
407
|
* @param GetProjectRequest
|
|
367
408
|
* @return GetProjectResponse
|
|
368
409
|
* @throws OciError when an error occurs
|
|
369
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
410
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/GetProject.ts.html |here} to see how to use GetProject API.
|
|
370
411
|
*/
|
|
371
412
|
getProject(getProjectRequest: requests.GetProjectRequest): Promise<responses.GetProjectResponse>;
|
|
372
413
|
/**
|
|
373
414
|
* Gets the specified work request's information.
|
|
415
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
374
416
|
* @param GetWorkRequestRequest
|
|
375
417
|
* @return GetWorkRequestResponse
|
|
376
418
|
* @throws OciError when an error occurs
|
|
377
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
419
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
378
420
|
*/
|
|
379
421
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
380
422
|
/**
|
|
381
423
|
* Gets job artifact metadata.
|
|
424
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
382
425
|
* @param HeadJobArtifactRequest
|
|
383
426
|
* @return HeadJobArtifactResponse
|
|
384
427
|
* @throws OciError when an error occurs
|
|
385
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
428
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/HeadJobArtifact.ts.html |here} to see how to use HeadJobArtifact API.
|
|
386
429
|
*/
|
|
387
430
|
headJobArtifact(headJobArtifactRequest: requests.HeadJobArtifactRequest): Promise<responses.HeadJobArtifactResponse>;
|
|
388
431
|
/**
|
|
389
432
|
* Gets model artifact metadata for specified model.
|
|
433
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
390
434
|
* @param HeadModelArtifactRequest
|
|
391
435
|
* @return HeadModelArtifactResponse
|
|
392
436
|
* @throws OciError when an error occurs
|
|
393
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
437
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/HeadModelArtifact.ts.html |here} to see how to use HeadModelArtifact API.
|
|
394
438
|
*/
|
|
395
439
|
headModelArtifact(headModelArtifactRequest: requests.HeadModelArtifactRequest): Promise<responses.HeadModelArtifactResponse>;
|
|
396
440
|
/**
|
|
397
441
|
* List out job runs.
|
|
442
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
398
443
|
* @param ListJobRunsRequest
|
|
399
444
|
* @return ListJobRunsResponse
|
|
400
445
|
* @throws OciError when an error occurs
|
|
401
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
446
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ListJobRuns.ts.html |here} to see how to use ListJobRuns API.
|
|
402
447
|
*/
|
|
403
448
|
listJobRuns(listJobRunsRequest: requests.ListJobRunsRequest): Promise<responses.ListJobRunsResponse>;
|
|
404
449
|
/**
|
|
@@ -435,10 +480,11 @@ export declare class DataScienceClient {
|
|
|
435
480
|
listJobRunsResponseIterator(request: requests.ListJobRunsRequest): AsyncIterableIterator<responses.ListJobRunsResponse>;
|
|
436
481
|
/**
|
|
437
482
|
* List job shapes available in the specified compartment.
|
|
483
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
438
484
|
* @param ListJobShapesRequest
|
|
439
485
|
* @return ListJobShapesResponse
|
|
440
486
|
* @throws OciError when an error occurs
|
|
441
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
487
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ListJobShapes.ts.html |here} to see how to use ListJobShapes API.
|
|
442
488
|
*/
|
|
443
489
|
listJobShapes(listJobShapesRequest: requests.ListJobShapesRequest): Promise<responses.ListJobShapesResponse>;
|
|
444
490
|
/**
|
|
@@ -475,10 +521,11 @@ export declare class DataScienceClient {
|
|
|
475
521
|
listJobShapesResponseIterator(request: requests.ListJobShapesRequest): AsyncIterableIterator<responses.ListJobShapesResponse>;
|
|
476
522
|
/**
|
|
477
523
|
* List jobs in the specified compartment.
|
|
524
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
478
525
|
* @param ListJobsRequest
|
|
479
526
|
* @return ListJobsResponse
|
|
480
527
|
* @throws OciError when an error occurs
|
|
481
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
528
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ListJobs.ts.html |here} to see how to use ListJobs API.
|
|
482
529
|
*/
|
|
483
530
|
listJobs(listJobsRequest: requests.ListJobsRequest): Promise<responses.ListJobsResponse>;
|
|
484
531
|
/**
|
|
@@ -515,10 +562,11 @@ export declare class DataScienceClient {
|
|
|
515
562
|
listJobsResponseIterator(request: requests.ListJobsRequest): AsyncIterableIterator<responses.ListJobsResponse>;
|
|
516
563
|
/**
|
|
517
564
|
* Lists the valid model deployment shapes.
|
|
565
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
518
566
|
* @param ListModelDeploymentShapesRequest
|
|
519
567
|
* @return ListModelDeploymentShapesResponse
|
|
520
568
|
* @throws OciError when an error occurs
|
|
521
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
569
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ListModelDeploymentShapes.ts.html |here} to see how to use ListModelDeploymentShapes API.
|
|
522
570
|
*/
|
|
523
571
|
listModelDeploymentShapes(listModelDeploymentShapesRequest: requests.ListModelDeploymentShapesRequest): Promise<responses.ListModelDeploymentShapesResponse>;
|
|
524
572
|
/**
|
|
@@ -556,10 +604,11 @@ export declare class DataScienceClient {
|
|
|
556
604
|
/**
|
|
557
605
|
* 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.
|
|
558
606
|
*
|
|
607
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
559
608
|
* @param ListModelDeploymentsRequest
|
|
560
609
|
* @return ListModelDeploymentsResponse
|
|
561
610
|
* @throws OciError when an error occurs
|
|
562
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
611
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ListModelDeployments.ts.html |here} to see how to use ListModelDeployments API.
|
|
563
612
|
*/
|
|
564
613
|
listModelDeployments(listModelDeploymentsRequest: requests.ListModelDeploymentsRequest): Promise<responses.ListModelDeploymentsResponse>;
|
|
565
614
|
/**
|
|
@@ -596,10 +645,11 @@ export declare class DataScienceClient {
|
|
|
596
645
|
listModelDeploymentsResponseIterator(request: requests.ListModelDeploymentsRequest): AsyncIterableIterator<responses.ListModelDeploymentsResponse>;
|
|
597
646
|
/**
|
|
598
647
|
* Lists models in the specified compartment.
|
|
648
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
599
649
|
* @param ListModelsRequest
|
|
600
650
|
* @return ListModelsResponse
|
|
601
651
|
* @throws OciError when an error occurs
|
|
602
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
652
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ListModels.ts.html |here} to see how to use ListModels API.
|
|
603
653
|
*/
|
|
604
654
|
listModels(listModelsRequest: requests.ListModelsRequest): Promise<responses.ListModelsResponse>;
|
|
605
655
|
/**
|
|
@@ -636,10 +686,11 @@ export declare class DataScienceClient {
|
|
|
636
686
|
listModelsResponseIterator(request: requests.ListModelsRequest): AsyncIterableIterator<responses.ListModelsResponse>;
|
|
637
687
|
/**
|
|
638
688
|
* Lists the valid notebook session shapes.
|
|
689
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
639
690
|
* @param ListNotebookSessionShapesRequest
|
|
640
691
|
* @return ListNotebookSessionShapesResponse
|
|
641
692
|
* @throws OciError when an error occurs
|
|
642
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
693
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ListNotebookSessionShapes.ts.html |here} to see how to use ListNotebookSessionShapes API.
|
|
643
694
|
*/
|
|
644
695
|
listNotebookSessionShapes(listNotebookSessionShapesRequest: requests.ListNotebookSessionShapesRequest): Promise<responses.ListNotebookSessionShapesResponse>;
|
|
645
696
|
/**
|
|
@@ -676,10 +727,11 @@ export declare class DataScienceClient {
|
|
|
676
727
|
listNotebookSessionShapesResponseIterator(request: requests.ListNotebookSessionShapesRequest): AsyncIterableIterator<responses.ListNotebookSessionShapesResponse>;
|
|
677
728
|
/**
|
|
678
729
|
* Lists the notebook sessions in the specified compartment.
|
|
730
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
679
731
|
* @param ListNotebookSessionsRequest
|
|
680
732
|
* @return ListNotebookSessionsResponse
|
|
681
733
|
* @throws OciError when an error occurs
|
|
682
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
734
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ListNotebookSessions.ts.html |here} to see how to use ListNotebookSessions API.
|
|
683
735
|
*/
|
|
684
736
|
listNotebookSessions(listNotebookSessionsRequest: requests.ListNotebookSessionsRequest): Promise<responses.ListNotebookSessionsResponse>;
|
|
685
737
|
/**
|
|
@@ -716,10 +768,11 @@ export declare class DataScienceClient {
|
|
|
716
768
|
listNotebookSessionsResponseIterator(request: requests.ListNotebookSessionsRequest): AsyncIterableIterator<responses.ListNotebookSessionsResponse>;
|
|
717
769
|
/**
|
|
718
770
|
* Lists projects in the specified compartment.
|
|
771
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
719
772
|
* @param ListProjectsRequest
|
|
720
773
|
* @return ListProjectsResponse
|
|
721
774
|
* @throws OciError when an error occurs
|
|
722
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
775
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ListProjects.ts.html |here} to see how to use ListProjects API.
|
|
723
776
|
*/
|
|
724
777
|
listProjects(listProjectsRequest: requests.ListProjectsRequest): Promise<responses.ListProjectsResponse>;
|
|
725
778
|
/**
|
|
@@ -756,26 +809,29 @@ export declare class DataScienceClient {
|
|
|
756
809
|
listProjectsResponseIterator(request: requests.ListProjectsRequest): AsyncIterableIterator<responses.ListProjectsResponse>;
|
|
757
810
|
/**
|
|
758
811
|
* Lists work request errors for the specified work request.
|
|
812
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
759
813
|
* @param ListWorkRequestErrorsRequest
|
|
760
814
|
* @return ListWorkRequestErrorsResponse
|
|
761
815
|
* @throws OciError when an error occurs
|
|
762
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
816
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
763
817
|
*/
|
|
764
818
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
765
819
|
/**
|
|
766
820
|
* Lists work request logs for the specified work request.
|
|
821
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
767
822
|
* @param ListWorkRequestLogsRequest
|
|
768
823
|
* @return ListWorkRequestLogsResponse
|
|
769
824
|
* @throws OciError when an error occurs
|
|
770
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
825
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
771
826
|
*/
|
|
772
827
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
773
828
|
/**
|
|
774
829
|
* Lists work requests in the specified compartment.
|
|
830
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
775
831
|
* @param ListWorkRequestsRequest
|
|
776
832
|
* @return ListWorkRequestsResponse
|
|
777
833
|
* @throws OciError when an error occurs
|
|
778
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
834
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
779
835
|
*/
|
|
780
836
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
781
837
|
/**
|
|
@@ -812,26 +868,29 @@ export declare class DataScienceClient {
|
|
|
812
868
|
listWorkRequestsResponseIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
|
|
813
869
|
/**
|
|
814
870
|
* Updates a job.
|
|
871
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
815
872
|
* @param UpdateJobRequest
|
|
816
873
|
* @return UpdateJobResponse
|
|
817
874
|
* @throws OciError when an error occurs
|
|
818
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
875
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/UpdateJob.ts.html |here} to see how to use UpdateJob API.
|
|
819
876
|
*/
|
|
820
877
|
updateJob(updateJobRequest: requests.UpdateJobRequest): Promise<responses.UpdateJobResponse>;
|
|
821
878
|
/**
|
|
822
879
|
* Updates a job run.
|
|
880
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
823
881
|
* @param UpdateJobRunRequest
|
|
824
882
|
* @return UpdateJobRunResponse
|
|
825
883
|
* @throws OciError when an error occurs
|
|
826
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
884
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/UpdateJobRun.ts.html |here} to see how to use UpdateJobRun API.
|
|
827
885
|
*/
|
|
828
886
|
updateJobRun(updateJobRunRequest: requests.UpdateJobRunRequest): Promise<responses.UpdateJobRunResponse>;
|
|
829
887
|
/**
|
|
830
888
|
* Updates the properties of a model. You can update the `displayName`, `description`, `freeformTags`, and `definedTags` properties.
|
|
889
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
831
890
|
* @param UpdateModelRequest
|
|
832
891
|
* @return UpdateModelResponse
|
|
833
892
|
* @throws OciError when an error occurs
|
|
834
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
893
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/UpdateModel.ts.html |here} to see how to use UpdateModel API.
|
|
835
894
|
*/
|
|
836
895
|
updateModel(updateModelRequest: requests.UpdateModelRequest): Promise<responses.UpdateModelResponse>;
|
|
837
896
|
/**
|
|
@@ -840,18 +899,20 @@ export declare class DataScienceClient {
|
|
|
840
899
|
* 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
|
|
841
900
|
* deployment is activated.
|
|
842
901
|
*
|
|
902
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
843
903
|
* @param UpdateModelDeploymentRequest
|
|
844
904
|
* @return UpdateModelDeploymentResponse
|
|
845
905
|
* @throws OciError when an error occurs
|
|
846
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
906
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/UpdateModelDeployment.ts.html |here} to see how to use UpdateModelDeployment API.
|
|
847
907
|
*/
|
|
848
908
|
updateModelDeployment(updateModelDeploymentRequest: requests.UpdateModelDeploymentRequest): Promise<responses.UpdateModelDeploymentResponse>;
|
|
849
909
|
/**
|
|
850
910
|
* Updates the provenance information for the specified model.
|
|
911
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
851
912
|
* @param UpdateModelProvenanceRequest
|
|
852
913
|
* @return UpdateModelProvenanceResponse
|
|
853
914
|
* @throws OciError when an error occurs
|
|
854
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
915
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/UpdateModelProvenance.ts.html |here} to see how to use UpdateModelProvenance API.
|
|
855
916
|
*/
|
|
856
917
|
updateModelProvenance(updateModelProvenanceRequest: requests.UpdateModelProvenanceRequest): Promise<responses.UpdateModelProvenanceResponse>;
|
|
857
918
|
/**
|
|
@@ -859,18 +920,20 @@ export declare class DataScienceClient {
|
|
|
859
920
|
* When the notebook session is in the INACTIVE lifecycle state, you can update `notebookSessionConfigurationDetails` and change `shape`, `subnetId`, and `blockStorageSizeInGBs`.
|
|
860
921
|
* Changes to the `notebookSessionConfigurationDetails` take effect the next time the `ActivateNotebookSession` action is invoked on the notebook session resource.
|
|
861
922
|
*
|
|
923
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
862
924
|
* @param UpdateNotebookSessionRequest
|
|
863
925
|
* @return UpdateNotebookSessionResponse
|
|
864
926
|
* @throws OciError when an error occurs
|
|
865
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
927
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/UpdateNotebookSession.ts.html |here} to see how to use UpdateNotebookSession API.
|
|
866
928
|
*/
|
|
867
929
|
updateNotebookSession(updateNotebookSessionRequest: requests.UpdateNotebookSessionRequest): Promise<responses.UpdateNotebookSessionResponse>;
|
|
868
930
|
/**
|
|
869
931
|
* Updates the properties of a project. You can update the `displayName`, `description`, `freeformTags`, and `definedTags` properties.
|
|
932
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
870
933
|
* @param UpdateProjectRequest
|
|
871
934
|
* @return UpdateProjectResponse
|
|
872
935
|
* @throws OciError when an error occurs
|
|
873
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
936
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/datascience/UpdateProject.ts.html |here} to see how to use UpdateProject API.
|
|
874
937
|
*/
|
|
875
938
|
updateProject(updateProjectRequest: requests.UpdateProjectRequest): Promise<responses.UpdateProjectResponse>;
|
|
876
939
|
}
|