oci-datascience 2.22.0 → 2.26.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 +107 -106
- package/lib/client.js +157 -152
- package/lib/client.js.map +1 -1
- package/lib/request/activate-model-deployment-request.d.ts +1 -1
- package/lib/request/activate-model-request.d.ts +1 -1
- package/lib/request/activate-notebook-session-request.d.ts +1 -1
- package/lib/request/cancel-job-run-request.d.ts +1 -1
- package/lib/request/cancel-work-request-request.d.ts +1 -1
- package/lib/request/change-job-compartment-request.d.ts +1 -1
- package/lib/request/change-job-run-compartment-request.d.ts +1 -1
- package/lib/request/change-model-compartment-request.d.ts +1 -1
- package/lib/request/change-model-deployment-compartment-request.d.ts +1 -1
- package/lib/request/change-notebook-session-compartment-request.d.ts +1 -1
- package/lib/request/change-project-compartment-request.d.ts +1 -1
- package/lib/request/create-job-artifact-request.d.ts +3 -8
- package/lib/request/create-job-request.d.ts +1 -1
- package/lib/request/create-job-run-request.d.ts +1 -1
- package/lib/request/create-model-artifact-request.d.ts +1 -1
- package/lib/request/create-model-deployment-request.d.ts +1 -1
- package/lib/request/create-model-provenance-request.d.ts +1 -1
- package/lib/request/create-model-request.d.ts +1 -1
- package/lib/request/create-notebook-session-request.d.ts +1 -1
- package/lib/request/create-project-request.d.ts +1 -1
- package/lib/request/deactivate-model-deployment-request.d.ts +1 -1
- package/lib/request/deactivate-model-request.d.ts +1 -1
- package/lib/request/deactivate-notebook-session-request.d.ts +1 -1
- package/lib/request/delete-job-request.d.ts +1 -1
- package/lib/request/delete-job-run-request.d.ts +1 -1
- package/lib/request/delete-model-deployment-request.d.ts +1 -1
- package/lib/request/delete-model-request.d.ts +1 -1
- package/lib/request/delete-notebook-session-request.d.ts +1 -1
- package/lib/request/delete-project-request.d.ts +1 -1
- package/lib/request/get-job-artifact-content-request.d.ts +1 -1
- package/lib/request/get-job-request.d.ts +1 -1
- package/lib/request/get-job-run-request.d.ts +1 -1
- package/lib/request/get-model-artifact-content-request.d.ts +1 -1
- package/lib/request/get-model-deployment-request.d.ts +1 -1
- package/lib/request/get-model-provenance-request.d.ts +1 -1
- package/lib/request/get-model-request.d.ts +1 -1
- package/lib/request/get-notebook-session-request.d.ts +1 -1
- package/lib/request/get-project-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/head-job-artifact-request.d.ts +1 -1
- package/lib/request/head-model-artifact-request.d.ts +1 -1
- package/lib/request/list-fast-launch-job-configs-request.d.ts +1 -1
- package/lib/request/list-job-runs-request.d.ts +1 -1
- package/lib/request/list-job-shapes-request.d.ts +1 -1
- package/lib/request/list-jobs-request.d.ts +1 -1
- package/lib/request/list-model-deployment-shapes-request.d.ts +1 -1
- package/lib/request/list-model-deployments-request.d.ts +1 -1
- package/lib/request/list-models-request.d.ts +1 -1
- package/lib/request/list-notebook-session-shapes-request.d.ts +1 -1
- package/lib/request/list-notebook-sessions-request.d.ts +1 -1
- package/lib/request/list-projects-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/update-job-request.d.ts +1 -1
- package/lib/request/update-job-run-request.d.ts +1 -1
- package/lib/request/update-model-deployment-request.d.ts +1 -1
- package/lib/request/update-model-provenance-request.d.ts +1 -1
- package/lib/request/update-model-request.d.ts +1 -1
- package/lib/request/update-notebook-session-request.d.ts +1 -1
- package/lib/request/update-project-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export declare class DataScienceClient {
|
|
|
29
29
|
protected "_waiters": DataScienceWaiter;
|
|
30
30
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
31
31
|
protected _circuitBreaker: null;
|
|
32
|
+
protected _httpOptions: any;
|
|
32
33
|
protected _httpClient: common.HttpClient;
|
|
33
34
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
34
35
|
/**
|
|
@@ -71,11 +72,11 @@ export declare class DataScienceClient {
|
|
|
71
72
|
getWaiters(): DataScienceWaiter;
|
|
72
73
|
/**
|
|
73
74
|
* Activates the model.
|
|
74
|
-
* This operation
|
|
75
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
75
76
|
* @param ActivateModelRequest
|
|
76
77
|
* @return ActivateModelResponse
|
|
77
78
|
* @throws OciError when an error occurs
|
|
78
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
79
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ActivateModel.ts.html |here} to see how to use ActivateModel API.
|
|
79
80
|
*/
|
|
80
81
|
activateModel(activateModelRequest: requests.ActivateModelRequest): Promise<responses.ActivateModelResponse>;
|
|
81
82
|
/**
|
|
@@ -84,7 +85,7 @@ export declare class DataScienceClient {
|
|
|
84
85
|
* @param ActivateModelDeploymentRequest
|
|
85
86
|
* @return ActivateModelDeploymentResponse
|
|
86
87
|
* @throws OciError when an error occurs
|
|
87
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
88
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ActivateModelDeployment.ts.html |here} to see how to use ActivateModelDeployment API.
|
|
88
89
|
*/
|
|
89
90
|
activateModelDeployment(activateModelDeploymentRequest: requests.ActivateModelDeploymentRequest): Promise<responses.ActivateModelDeploymentResponse>;
|
|
90
91
|
/**
|
|
@@ -93,16 +94,16 @@ export declare class DataScienceClient {
|
|
|
93
94
|
* @param ActivateNotebookSessionRequest
|
|
94
95
|
* @return ActivateNotebookSessionResponse
|
|
95
96
|
* @throws OciError when an error occurs
|
|
96
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
97
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ActivateNotebookSession.ts.html |here} to see how to use ActivateNotebookSession API.
|
|
97
98
|
*/
|
|
98
99
|
activateNotebookSession(activateNotebookSessionRequest: requests.ActivateNotebookSessionRequest): Promise<responses.ActivateNotebookSessionResponse>;
|
|
99
100
|
/**
|
|
100
101
|
* Cancels an IN_PROGRESS job run.
|
|
101
|
-
* This operation
|
|
102
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
102
103
|
* @param CancelJobRunRequest
|
|
103
104
|
* @return CancelJobRunResponse
|
|
104
105
|
* @throws OciError when an error occurs
|
|
105
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
106
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/CancelJobRun.ts.html |here} to see how to use CancelJobRun API.
|
|
106
107
|
*/
|
|
107
108
|
cancelJobRun(cancelJobRunRequest: requests.CancelJobRunRequest): Promise<responses.CancelJobRunResponse>;
|
|
108
109
|
/**
|
|
@@ -111,7 +112,7 @@ export declare class DataScienceClient {
|
|
|
111
112
|
* @param CancelWorkRequestRequest
|
|
112
113
|
* @return CancelWorkRequestResponse
|
|
113
114
|
* @throws OciError when an error occurs
|
|
114
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
115
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
|
|
115
116
|
*/
|
|
116
117
|
cancelWorkRequest(cancelWorkRequestRequest: requests.CancelWorkRequestRequest): Promise<responses.CancelWorkRequestResponse>;
|
|
117
118
|
/**
|
|
@@ -120,7 +121,7 @@ export declare class DataScienceClient {
|
|
|
120
121
|
* @param ChangeJobCompartmentRequest
|
|
121
122
|
* @return ChangeJobCompartmentResponse
|
|
122
123
|
* @throws OciError when an error occurs
|
|
123
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
124
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ChangeJobCompartment.ts.html |here} to see how to use ChangeJobCompartment API.
|
|
124
125
|
*/
|
|
125
126
|
changeJobCompartment(changeJobCompartmentRequest: requests.ChangeJobCompartmentRequest): Promise<responses.ChangeJobCompartmentResponse>;
|
|
126
127
|
/**
|
|
@@ -129,7 +130,7 @@ export declare class DataScienceClient {
|
|
|
129
130
|
* @param ChangeJobRunCompartmentRequest
|
|
130
131
|
* @return ChangeJobRunCompartmentResponse
|
|
131
132
|
* @throws OciError when an error occurs
|
|
132
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
133
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ChangeJobRunCompartment.ts.html |here} to see how to use ChangeJobRunCompartment API.
|
|
133
134
|
*/
|
|
134
135
|
changeJobRunCompartment(changeJobRunCompartmentRequest: requests.ChangeJobRunCompartmentRequest): Promise<responses.ChangeJobRunCompartmentResponse>;
|
|
135
136
|
/**
|
|
@@ -138,7 +139,7 @@ export declare class DataScienceClient {
|
|
|
138
139
|
* @param ChangeModelCompartmentRequest
|
|
139
140
|
* @return ChangeModelCompartmentResponse
|
|
140
141
|
* @throws OciError when an error occurs
|
|
141
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
142
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ChangeModelCompartment.ts.html |here} to see how to use ChangeModelCompartment API.
|
|
142
143
|
*/
|
|
143
144
|
changeModelCompartment(changeModelCompartmentRequest: requests.ChangeModelCompartmentRequest): Promise<responses.ChangeModelCompartmentResponse>;
|
|
144
145
|
/**
|
|
@@ -147,7 +148,7 @@ export declare class DataScienceClient {
|
|
|
147
148
|
* @param ChangeModelDeploymentCompartmentRequest
|
|
148
149
|
* @return ChangeModelDeploymentCompartmentResponse
|
|
149
150
|
* @throws OciError when an error occurs
|
|
150
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
151
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ChangeModelDeploymentCompartment.ts.html |here} to see how to use ChangeModelDeploymentCompartment API.
|
|
151
152
|
*/
|
|
152
153
|
changeModelDeploymentCompartment(changeModelDeploymentCompartmentRequest: requests.ChangeModelDeploymentCompartmentRequest): Promise<responses.ChangeModelDeploymentCompartmentResponse>;
|
|
153
154
|
/**
|
|
@@ -156,7 +157,7 @@ export declare class DataScienceClient {
|
|
|
156
157
|
* @param ChangeNotebookSessionCompartmentRequest
|
|
157
158
|
* @return ChangeNotebookSessionCompartmentResponse
|
|
158
159
|
* @throws OciError when an error occurs
|
|
159
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
160
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ChangeNotebookSessionCompartment.ts.html |here} to see how to use ChangeNotebookSessionCompartment API.
|
|
160
161
|
*/
|
|
161
162
|
changeNotebookSessionCompartment(changeNotebookSessionCompartmentRequest: requests.ChangeNotebookSessionCompartmentRequest): Promise<responses.ChangeNotebookSessionCompartmentResponse>;
|
|
162
163
|
/**
|
|
@@ -165,16 +166,16 @@ export declare class DataScienceClient {
|
|
|
165
166
|
* @param ChangeProjectCompartmentRequest
|
|
166
167
|
* @return ChangeProjectCompartmentResponse
|
|
167
168
|
* @throws OciError when an error occurs
|
|
168
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
169
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ChangeProjectCompartment.ts.html |here} to see how to use ChangeProjectCompartment API.
|
|
169
170
|
*/
|
|
170
171
|
changeProjectCompartment(changeProjectCompartmentRequest: requests.ChangeProjectCompartmentRequest): Promise<responses.ChangeProjectCompartmentResponse>;
|
|
171
172
|
/**
|
|
172
173
|
* Creates a job.
|
|
173
|
-
* This operation
|
|
174
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
174
175
|
* @param CreateJobRequest
|
|
175
176
|
* @return CreateJobResponse
|
|
176
177
|
* @throws OciError when an error occurs
|
|
177
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
178
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/CreateJob.ts.html |here} to see how to use CreateJob API.
|
|
178
179
|
*/
|
|
179
180
|
createJob(createJobRequest: requests.CreateJobRequest): Promise<responses.CreateJobResponse>;
|
|
180
181
|
/**
|
|
@@ -183,79 +184,79 @@ export declare class DataScienceClient {
|
|
|
183
184
|
* @param CreateJobArtifactRequest
|
|
184
185
|
* @return CreateJobArtifactResponse
|
|
185
186
|
* @throws OciError when an error occurs
|
|
186
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
187
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/CreateJobArtifact.ts.html |here} to see how to use CreateJobArtifact API.
|
|
187
188
|
*/
|
|
188
189
|
createJobArtifact(createJobArtifactRequest: requests.CreateJobArtifactRequest): Promise<responses.CreateJobArtifactResponse>;
|
|
189
190
|
/**
|
|
190
191
|
* Creates a job run.
|
|
191
|
-
* This operation
|
|
192
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
192
193
|
* @param CreateJobRunRequest
|
|
193
194
|
* @return CreateJobRunResponse
|
|
194
195
|
* @throws OciError when an error occurs
|
|
195
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
196
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/CreateJobRun.ts.html |here} to see how to use CreateJobRun API.
|
|
196
197
|
*/
|
|
197
198
|
createJobRun(createJobRunRequest: requests.CreateJobRunRequest): Promise<responses.CreateJobRunResponse>;
|
|
198
199
|
/**
|
|
199
200
|
* Creates a new model.
|
|
200
|
-
* This operation
|
|
201
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
201
202
|
* @param CreateModelRequest
|
|
202
203
|
* @return CreateModelResponse
|
|
203
204
|
* @throws OciError when an error occurs
|
|
204
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
205
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/CreateModel.ts.html |here} to see how to use CreateModel API.
|
|
205
206
|
*/
|
|
206
207
|
createModel(createModelRequest: requests.CreateModelRequest): Promise<responses.CreateModelResponse>;
|
|
207
208
|
/**
|
|
208
209
|
* Creates model artifact for specified model.
|
|
209
|
-
* This operation
|
|
210
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
210
211
|
* @param CreateModelArtifactRequest
|
|
211
212
|
* @return CreateModelArtifactResponse
|
|
212
213
|
* @throws OciError when an error occurs
|
|
213
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
214
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/CreateModelArtifact.ts.html |here} to see how to use CreateModelArtifact API.
|
|
214
215
|
*/
|
|
215
216
|
createModelArtifact(createModelArtifactRequest: requests.CreateModelArtifactRequest): Promise<responses.CreateModelArtifactResponse>;
|
|
216
217
|
/**
|
|
217
218
|
* Creates a new model deployment.
|
|
218
|
-
* This operation
|
|
219
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
219
220
|
* @param CreateModelDeploymentRequest
|
|
220
221
|
* @return CreateModelDeploymentResponse
|
|
221
222
|
* @throws OciError when an error occurs
|
|
222
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
223
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/CreateModelDeployment.ts.html |here} to see how to use CreateModelDeployment API.
|
|
223
224
|
*/
|
|
224
225
|
createModelDeployment(createModelDeploymentRequest: requests.CreateModelDeploymentRequest): Promise<responses.CreateModelDeploymentResponse>;
|
|
225
226
|
/**
|
|
226
227
|
* Creates provenance information for the specified model.
|
|
227
|
-
* This operation
|
|
228
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
228
229
|
* @param CreateModelProvenanceRequest
|
|
229
230
|
* @return CreateModelProvenanceResponse
|
|
230
231
|
* @throws OciError when an error occurs
|
|
231
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
232
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/CreateModelProvenance.ts.html |here} to see how to use CreateModelProvenance API.
|
|
232
233
|
*/
|
|
233
234
|
createModelProvenance(createModelProvenanceRequest: requests.CreateModelProvenanceRequest): Promise<responses.CreateModelProvenanceResponse>;
|
|
234
235
|
/**
|
|
235
236
|
* Creates a new notebook session.
|
|
236
|
-
* This operation
|
|
237
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
237
238
|
* @param CreateNotebookSessionRequest
|
|
238
239
|
* @return CreateNotebookSessionResponse
|
|
239
240
|
* @throws OciError when an error occurs
|
|
240
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
241
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/CreateNotebookSession.ts.html |here} to see how to use CreateNotebookSession API.
|
|
241
242
|
*/
|
|
242
243
|
createNotebookSession(createNotebookSessionRequest: requests.CreateNotebookSessionRequest): Promise<responses.CreateNotebookSessionResponse>;
|
|
243
244
|
/**
|
|
244
245
|
* Creates a new project.
|
|
245
|
-
* This operation
|
|
246
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
246
247
|
* @param CreateProjectRequest
|
|
247
248
|
* @return CreateProjectResponse
|
|
248
249
|
* @throws OciError when an error occurs
|
|
249
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
250
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/CreateProject.ts.html |here} to see how to use CreateProject API.
|
|
250
251
|
*/
|
|
251
252
|
createProject(createProjectRequest: requests.CreateProjectRequest): Promise<responses.CreateProjectResponse>;
|
|
252
253
|
/**
|
|
253
254
|
* Deactivates the model.
|
|
254
|
-
* This operation
|
|
255
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
255
256
|
* @param DeactivateModelRequest
|
|
256
257
|
* @return DeactivateModelResponse
|
|
257
258
|
* @throws OciError when an error occurs
|
|
258
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
259
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/DeactivateModel.ts.html |here} to see how to use DeactivateModel API.
|
|
259
260
|
*/
|
|
260
261
|
deactivateModel(deactivateModelRequest: requests.DeactivateModelRequest): Promise<responses.DeactivateModelResponse>;
|
|
261
262
|
/**
|
|
@@ -264,7 +265,7 @@ export declare class DataScienceClient {
|
|
|
264
265
|
* @param DeactivateModelDeploymentRequest
|
|
265
266
|
* @return DeactivateModelDeploymentResponse
|
|
266
267
|
* @throws OciError when an error occurs
|
|
267
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
268
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/DeactivateModelDeployment.ts.html |here} to see how to use DeactivateModelDeployment API.
|
|
268
269
|
*/
|
|
269
270
|
deactivateModelDeployment(deactivateModelDeploymentRequest: requests.DeactivateModelDeploymentRequest): Promise<responses.DeactivateModelDeploymentResponse>;
|
|
270
271
|
/**
|
|
@@ -273,142 +274,142 @@ export declare class DataScienceClient {
|
|
|
273
274
|
* @param DeactivateNotebookSessionRequest
|
|
274
275
|
* @return DeactivateNotebookSessionResponse
|
|
275
276
|
* @throws OciError when an error occurs
|
|
276
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
277
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/DeactivateNotebookSession.ts.html |here} to see how to use DeactivateNotebookSession API.
|
|
277
278
|
*/
|
|
278
279
|
deactivateNotebookSession(deactivateNotebookSessionRequest: requests.DeactivateNotebookSessionRequest): Promise<responses.DeactivateNotebookSessionResponse>;
|
|
279
280
|
/**
|
|
280
281
|
* Deletes a job.
|
|
281
|
-
* This operation
|
|
282
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
282
283
|
* @param DeleteJobRequest
|
|
283
284
|
* @return DeleteJobResponse
|
|
284
285
|
* @throws OciError when an error occurs
|
|
285
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
286
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/DeleteJob.ts.html |here} to see how to use DeleteJob API.
|
|
286
287
|
*/
|
|
287
288
|
deleteJob(deleteJobRequest: requests.DeleteJobRequest): Promise<responses.DeleteJobResponse>;
|
|
288
289
|
/**
|
|
289
290
|
* Deletes a job run.
|
|
290
|
-
* This operation
|
|
291
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
291
292
|
* @param DeleteJobRunRequest
|
|
292
293
|
* @return DeleteJobRunResponse
|
|
293
294
|
* @throws OciError when an error occurs
|
|
294
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
295
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/DeleteJobRun.ts.html |here} to see how to use DeleteJobRun API.
|
|
295
296
|
*/
|
|
296
297
|
deleteJobRun(deleteJobRunRequest: requests.DeleteJobRunRequest): Promise<responses.DeleteJobRunResponse>;
|
|
297
298
|
/**
|
|
298
299
|
* Deletes the specified model.
|
|
299
|
-
* This operation
|
|
300
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
300
301
|
* @param DeleteModelRequest
|
|
301
302
|
* @return DeleteModelResponse
|
|
302
303
|
* @throws OciError when an error occurs
|
|
303
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
304
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/DeleteModel.ts.html |here} to see how to use DeleteModel API.
|
|
304
305
|
*/
|
|
305
306
|
deleteModel(deleteModelRequest: requests.DeleteModelRequest): Promise<responses.DeleteModelResponse>;
|
|
306
307
|
/**
|
|
307
308
|
* Deletes the specified model deployment. Any unsaved work in this model deployment is lost.
|
|
308
|
-
* This operation
|
|
309
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
309
310
|
* @param DeleteModelDeploymentRequest
|
|
310
311
|
* @return DeleteModelDeploymentResponse
|
|
311
312
|
* @throws OciError when an error occurs
|
|
312
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
313
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/DeleteModelDeployment.ts.html |here} to see how to use DeleteModelDeployment API.
|
|
313
314
|
*/
|
|
314
315
|
deleteModelDeployment(deleteModelDeploymentRequest: requests.DeleteModelDeploymentRequest): Promise<responses.DeleteModelDeploymentResponse>;
|
|
315
316
|
/**
|
|
316
317
|
* Deletes the specified notebook session. Any unsaved work in this notebook session are lost.
|
|
317
|
-
* This operation
|
|
318
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
318
319
|
* @param DeleteNotebookSessionRequest
|
|
319
320
|
* @return DeleteNotebookSessionResponse
|
|
320
321
|
* @throws OciError when an error occurs
|
|
321
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
322
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/DeleteNotebookSession.ts.html |here} to see how to use DeleteNotebookSession API.
|
|
322
323
|
*/
|
|
323
324
|
deleteNotebookSession(deleteNotebookSessionRequest: requests.DeleteNotebookSessionRequest): Promise<responses.DeleteNotebookSessionResponse>;
|
|
324
325
|
/**
|
|
325
326
|
* 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.
|
|
326
|
-
* This operation
|
|
327
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
327
328
|
* @param DeleteProjectRequest
|
|
328
329
|
* @return DeleteProjectResponse
|
|
329
330
|
* @throws OciError when an error occurs
|
|
330
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
331
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/DeleteProject.ts.html |here} to see how to use DeleteProject API.
|
|
331
332
|
*/
|
|
332
333
|
deleteProject(deleteProjectRequest: requests.DeleteProjectRequest): Promise<responses.DeleteProjectResponse>;
|
|
333
334
|
/**
|
|
334
335
|
* Gets a job.
|
|
335
|
-
* This operation
|
|
336
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
336
337
|
* @param GetJobRequest
|
|
337
338
|
* @return GetJobResponse
|
|
338
339
|
* @throws OciError when an error occurs
|
|
339
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
340
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/GetJob.ts.html |here} to see how to use GetJob API.
|
|
340
341
|
*/
|
|
341
342
|
getJob(getJobRequest: requests.GetJobRequest): Promise<responses.GetJobResponse>;
|
|
342
343
|
/**
|
|
343
344
|
* Downloads job artifact content for specified job.
|
|
344
|
-
* This operation
|
|
345
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
345
346
|
* @param GetJobArtifactContentRequest
|
|
346
347
|
* @return GetJobArtifactContentResponse
|
|
347
348
|
* @throws OciError when an error occurs
|
|
348
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
349
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/GetJobArtifactContent.ts.html |here} to see how to use GetJobArtifactContent API.
|
|
349
350
|
*/
|
|
350
351
|
getJobArtifactContent(getJobArtifactContentRequest: requests.GetJobArtifactContentRequest): Promise<responses.GetJobArtifactContentResponse>;
|
|
351
352
|
/**
|
|
352
353
|
* Gets a job run.
|
|
353
|
-
* This operation
|
|
354
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
354
355
|
* @param GetJobRunRequest
|
|
355
356
|
* @return GetJobRunResponse
|
|
356
357
|
* @throws OciError when an error occurs
|
|
357
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
358
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/GetJobRun.ts.html |here} to see how to use GetJobRun API.
|
|
358
359
|
*/
|
|
359
360
|
getJobRun(getJobRunRequest: requests.GetJobRunRequest): Promise<responses.GetJobRunResponse>;
|
|
360
361
|
/**
|
|
361
362
|
* Gets the specified model's information.
|
|
362
|
-
* This operation
|
|
363
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
363
364
|
* @param GetModelRequest
|
|
364
365
|
* @return GetModelResponse
|
|
365
366
|
* @throws OciError when an error occurs
|
|
366
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
367
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/GetModel.ts.html |here} to see how to use GetModel API.
|
|
367
368
|
*/
|
|
368
369
|
getModel(getModelRequest: requests.GetModelRequest): Promise<responses.GetModelResponse>;
|
|
369
370
|
/**
|
|
370
371
|
* Downloads model artifact content for specified model.
|
|
371
|
-
* This operation
|
|
372
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
372
373
|
* @param GetModelArtifactContentRequest
|
|
373
374
|
* @return GetModelArtifactContentResponse
|
|
374
375
|
* @throws OciError when an error occurs
|
|
375
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
376
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/GetModelArtifactContent.ts.html |here} to see how to use GetModelArtifactContent API.
|
|
376
377
|
*/
|
|
377
378
|
getModelArtifactContent(getModelArtifactContentRequest: requests.GetModelArtifactContentRequest): Promise<responses.GetModelArtifactContentResponse>;
|
|
378
379
|
/**
|
|
379
380
|
* Retrieves the model deployment for the specified `modelDeploymentId`.
|
|
380
|
-
* This operation
|
|
381
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
381
382
|
* @param GetModelDeploymentRequest
|
|
382
383
|
* @return GetModelDeploymentResponse
|
|
383
384
|
* @throws OciError when an error occurs
|
|
384
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
385
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/GetModelDeployment.ts.html |here} to see how to use GetModelDeployment API.
|
|
385
386
|
*/
|
|
386
387
|
getModelDeployment(getModelDeploymentRequest: requests.GetModelDeploymentRequest): Promise<responses.GetModelDeploymentResponse>;
|
|
387
388
|
/**
|
|
388
389
|
* Gets provenance information for specified model.
|
|
389
|
-
* This operation
|
|
390
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
390
391
|
* @param GetModelProvenanceRequest
|
|
391
392
|
* @return GetModelProvenanceResponse
|
|
392
393
|
* @throws OciError when an error occurs
|
|
393
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
394
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/GetModelProvenance.ts.html |here} to see how to use GetModelProvenance API.
|
|
394
395
|
*/
|
|
395
396
|
getModelProvenance(getModelProvenanceRequest: requests.GetModelProvenanceRequest): Promise<responses.GetModelProvenanceResponse>;
|
|
396
397
|
/**
|
|
397
398
|
* Gets the specified notebook session's information.
|
|
398
|
-
* This operation
|
|
399
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
399
400
|
* @param GetNotebookSessionRequest
|
|
400
401
|
* @return GetNotebookSessionResponse
|
|
401
402
|
* @throws OciError when an error occurs
|
|
402
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
403
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/GetNotebookSession.ts.html |here} to see how to use GetNotebookSession API.
|
|
403
404
|
*/
|
|
404
405
|
getNotebookSession(getNotebookSessionRequest: requests.GetNotebookSessionRequest): Promise<responses.GetNotebookSessionResponse>;
|
|
405
406
|
/**
|
|
406
407
|
* Gets the specified project's information.
|
|
407
|
-
* This operation
|
|
408
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
408
409
|
* @param GetProjectRequest
|
|
409
410
|
* @return GetProjectResponse
|
|
410
411
|
* @throws OciError when an error occurs
|
|
411
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
412
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/GetProject.ts.html |here} to see how to use GetProject API.
|
|
412
413
|
*/
|
|
413
414
|
getProject(getProjectRequest: requests.GetProjectRequest): Promise<responses.GetProjectResponse>;
|
|
414
415
|
/**
|
|
@@ -417,34 +418,34 @@ export declare class DataScienceClient {
|
|
|
417
418
|
* @param GetWorkRequestRequest
|
|
418
419
|
* @return GetWorkRequestResponse
|
|
419
420
|
* @throws OciError when an error occurs
|
|
420
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
421
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
421
422
|
*/
|
|
422
423
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
423
424
|
/**
|
|
424
425
|
* Gets job artifact metadata.
|
|
425
|
-
* This operation
|
|
426
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
426
427
|
* @param HeadJobArtifactRequest
|
|
427
428
|
* @return HeadJobArtifactResponse
|
|
428
429
|
* @throws OciError when an error occurs
|
|
429
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
430
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/HeadJobArtifact.ts.html |here} to see how to use HeadJobArtifact API.
|
|
430
431
|
*/
|
|
431
432
|
headJobArtifact(headJobArtifactRequest: requests.HeadJobArtifactRequest): Promise<responses.HeadJobArtifactResponse>;
|
|
432
433
|
/**
|
|
433
434
|
* Gets model artifact metadata for specified model.
|
|
434
|
-
* This operation
|
|
435
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
435
436
|
* @param HeadModelArtifactRequest
|
|
436
437
|
* @return HeadModelArtifactResponse
|
|
437
438
|
* @throws OciError when an error occurs
|
|
438
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
439
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/HeadModelArtifact.ts.html |here} to see how to use HeadModelArtifact API.
|
|
439
440
|
*/
|
|
440
441
|
headModelArtifact(headModelArtifactRequest: requests.HeadModelArtifactRequest): Promise<responses.HeadModelArtifactResponse>;
|
|
441
442
|
/**
|
|
442
443
|
* List fast launch capable job configs in the specified compartment.
|
|
443
|
-
* This operation
|
|
444
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
444
445
|
* @param ListFastLaunchJobConfigsRequest
|
|
445
446
|
* @return ListFastLaunchJobConfigsResponse
|
|
446
447
|
* @throws OciError when an error occurs
|
|
447
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
448
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ListFastLaunchJobConfigs.ts.html |here} to see how to use ListFastLaunchJobConfigs API.
|
|
448
449
|
*/
|
|
449
450
|
listFastLaunchJobConfigs(listFastLaunchJobConfigsRequest: requests.ListFastLaunchJobConfigsRequest): Promise<responses.ListFastLaunchJobConfigsResponse>;
|
|
450
451
|
/**
|
|
@@ -481,11 +482,11 @@ export declare class DataScienceClient {
|
|
|
481
482
|
listFastLaunchJobConfigsResponseIterator(request: requests.ListFastLaunchJobConfigsRequest): AsyncIterableIterator<responses.ListFastLaunchJobConfigsResponse>;
|
|
482
483
|
/**
|
|
483
484
|
* List out job runs.
|
|
484
|
-
* This operation
|
|
485
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
485
486
|
* @param ListJobRunsRequest
|
|
486
487
|
* @return ListJobRunsResponse
|
|
487
488
|
* @throws OciError when an error occurs
|
|
488
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
489
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ListJobRuns.ts.html |here} to see how to use ListJobRuns API.
|
|
489
490
|
*/
|
|
490
491
|
listJobRuns(listJobRunsRequest: requests.ListJobRunsRequest): Promise<responses.ListJobRunsResponse>;
|
|
491
492
|
/**
|
|
@@ -522,11 +523,11 @@ export declare class DataScienceClient {
|
|
|
522
523
|
listJobRunsResponseIterator(request: requests.ListJobRunsRequest): AsyncIterableIterator<responses.ListJobRunsResponse>;
|
|
523
524
|
/**
|
|
524
525
|
* List job shapes available in the specified compartment.
|
|
525
|
-
* This operation
|
|
526
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
526
527
|
* @param ListJobShapesRequest
|
|
527
528
|
* @return ListJobShapesResponse
|
|
528
529
|
* @throws OciError when an error occurs
|
|
529
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
530
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ListJobShapes.ts.html |here} to see how to use ListJobShapes API.
|
|
530
531
|
*/
|
|
531
532
|
listJobShapes(listJobShapesRequest: requests.ListJobShapesRequest): Promise<responses.ListJobShapesResponse>;
|
|
532
533
|
/**
|
|
@@ -563,11 +564,11 @@ export declare class DataScienceClient {
|
|
|
563
564
|
listJobShapesResponseIterator(request: requests.ListJobShapesRequest): AsyncIterableIterator<responses.ListJobShapesResponse>;
|
|
564
565
|
/**
|
|
565
566
|
* List jobs in the specified compartment.
|
|
566
|
-
* This operation
|
|
567
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
567
568
|
* @param ListJobsRequest
|
|
568
569
|
* @return ListJobsResponse
|
|
569
570
|
* @throws OciError when an error occurs
|
|
570
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
571
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ListJobs.ts.html |here} to see how to use ListJobs API.
|
|
571
572
|
*/
|
|
572
573
|
listJobs(listJobsRequest: requests.ListJobsRequest): Promise<responses.ListJobsResponse>;
|
|
573
574
|
/**
|
|
@@ -604,11 +605,11 @@ export declare class DataScienceClient {
|
|
|
604
605
|
listJobsResponseIterator(request: requests.ListJobsRequest): AsyncIterableIterator<responses.ListJobsResponse>;
|
|
605
606
|
/**
|
|
606
607
|
* Lists the valid model deployment shapes.
|
|
607
|
-
* This operation
|
|
608
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
608
609
|
* @param ListModelDeploymentShapesRequest
|
|
609
610
|
* @return ListModelDeploymentShapesResponse
|
|
610
611
|
* @throws OciError when an error occurs
|
|
611
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
612
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ListModelDeploymentShapes.ts.html |here} to see how to use ListModelDeploymentShapes API.
|
|
612
613
|
*/
|
|
613
614
|
listModelDeploymentShapes(listModelDeploymentShapesRequest: requests.ListModelDeploymentShapesRequest): Promise<responses.ListModelDeploymentShapesResponse>;
|
|
614
615
|
/**
|
|
@@ -646,11 +647,11 @@ export declare class DataScienceClient {
|
|
|
646
647
|
/**
|
|
647
648
|
* 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.
|
|
648
649
|
*
|
|
649
|
-
* This operation
|
|
650
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
650
651
|
* @param ListModelDeploymentsRequest
|
|
651
652
|
* @return ListModelDeploymentsResponse
|
|
652
653
|
* @throws OciError when an error occurs
|
|
653
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
654
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ListModelDeployments.ts.html |here} to see how to use ListModelDeployments API.
|
|
654
655
|
*/
|
|
655
656
|
listModelDeployments(listModelDeploymentsRequest: requests.ListModelDeploymentsRequest): Promise<responses.ListModelDeploymentsResponse>;
|
|
656
657
|
/**
|
|
@@ -687,11 +688,11 @@ export declare class DataScienceClient {
|
|
|
687
688
|
listModelDeploymentsResponseIterator(request: requests.ListModelDeploymentsRequest): AsyncIterableIterator<responses.ListModelDeploymentsResponse>;
|
|
688
689
|
/**
|
|
689
690
|
* Lists models in the specified compartment.
|
|
690
|
-
* This operation
|
|
691
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
691
692
|
* @param ListModelsRequest
|
|
692
693
|
* @return ListModelsResponse
|
|
693
694
|
* @throws OciError when an error occurs
|
|
694
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
695
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ListModels.ts.html |here} to see how to use ListModels API.
|
|
695
696
|
*/
|
|
696
697
|
listModels(listModelsRequest: requests.ListModelsRequest): Promise<responses.ListModelsResponse>;
|
|
697
698
|
/**
|
|
@@ -728,11 +729,11 @@ export declare class DataScienceClient {
|
|
|
728
729
|
listModelsResponseIterator(request: requests.ListModelsRequest): AsyncIterableIterator<responses.ListModelsResponse>;
|
|
729
730
|
/**
|
|
730
731
|
* Lists the valid notebook session shapes.
|
|
731
|
-
* This operation
|
|
732
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
732
733
|
* @param ListNotebookSessionShapesRequest
|
|
733
734
|
* @return ListNotebookSessionShapesResponse
|
|
734
735
|
* @throws OciError when an error occurs
|
|
735
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
736
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ListNotebookSessionShapes.ts.html |here} to see how to use ListNotebookSessionShapes API.
|
|
736
737
|
*/
|
|
737
738
|
listNotebookSessionShapes(listNotebookSessionShapesRequest: requests.ListNotebookSessionShapesRequest): Promise<responses.ListNotebookSessionShapesResponse>;
|
|
738
739
|
/**
|
|
@@ -769,11 +770,11 @@ export declare class DataScienceClient {
|
|
|
769
770
|
listNotebookSessionShapesResponseIterator(request: requests.ListNotebookSessionShapesRequest): AsyncIterableIterator<responses.ListNotebookSessionShapesResponse>;
|
|
770
771
|
/**
|
|
771
772
|
* Lists the notebook sessions in the specified compartment.
|
|
772
|
-
* This operation
|
|
773
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
773
774
|
* @param ListNotebookSessionsRequest
|
|
774
775
|
* @return ListNotebookSessionsResponse
|
|
775
776
|
* @throws OciError when an error occurs
|
|
776
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
777
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ListNotebookSessions.ts.html |here} to see how to use ListNotebookSessions API.
|
|
777
778
|
*/
|
|
778
779
|
listNotebookSessions(listNotebookSessionsRequest: requests.ListNotebookSessionsRequest): Promise<responses.ListNotebookSessionsResponse>;
|
|
779
780
|
/**
|
|
@@ -810,11 +811,11 @@ export declare class DataScienceClient {
|
|
|
810
811
|
listNotebookSessionsResponseIterator(request: requests.ListNotebookSessionsRequest): AsyncIterableIterator<responses.ListNotebookSessionsResponse>;
|
|
811
812
|
/**
|
|
812
813
|
* Lists projects in the specified compartment.
|
|
813
|
-
* This operation
|
|
814
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
814
815
|
* @param ListProjectsRequest
|
|
815
816
|
* @return ListProjectsResponse
|
|
816
817
|
* @throws OciError when an error occurs
|
|
817
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
818
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ListProjects.ts.html |here} to see how to use ListProjects API.
|
|
818
819
|
*/
|
|
819
820
|
listProjects(listProjectsRequest: requests.ListProjectsRequest): Promise<responses.ListProjectsResponse>;
|
|
820
821
|
/**
|
|
@@ -855,7 +856,7 @@ export declare class DataScienceClient {
|
|
|
855
856
|
* @param ListWorkRequestErrorsRequest
|
|
856
857
|
* @return ListWorkRequestErrorsResponse
|
|
857
858
|
* @throws OciError when an error occurs
|
|
858
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
859
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
859
860
|
*/
|
|
860
861
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
861
862
|
/**
|
|
@@ -864,7 +865,7 @@ export declare class DataScienceClient {
|
|
|
864
865
|
* @param ListWorkRequestLogsRequest
|
|
865
866
|
* @return ListWorkRequestLogsResponse
|
|
866
867
|
* @throws OciError when an error occurs
|
|
867
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
868
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
868
869
|
*/
|
|
869
870
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
870
871
|
/**
|
|
@@ -873,7 +874,7 @@ export declare class DataScienceClient {
|
|
|
873
874
|
* @param ListWorkRequestsRequest
|
|
874
875
|
* @return ListWorkRequestsResponse
|
|
875
876
|
* @throws OciError when an error occurs
|
|
876
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
877
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
877
878
|
*/
|
|
878
879
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
879
880
|
/**
|
|
@@ -910,29 +911,29 @@ export declare class DataScienceClient {
|
|
|
910
911
|
listWorkRequestsResponseIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
|
|
911
912
|
/**
|
|
912
913
|
* Updates a job.
|
|
913
|
-
* This operation
|
|
914
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
914
915
|
* @param UpdateJobRequest
|
|
915
916
|
* @return UpdateJobResponse
|
|
916
917
|
* @throws OciError when an error occurs
|
|
917
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
918
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/UpdateJob.ts.html |here} to see how to use UpdateJob API.
|
|
918
919
|
*/
|
|
919
920
|
updateJob(updateJobRequest: requests.UpdateJobRequest): Promise<responses.UpdateJobResponse>;
|
|
920
921
|
/**
|
|
921
922
|
* Updates a job run.
|
|
922
|
-
* This operation
|
|
923
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
923
924
|
* @param UpdateJobRunRequest
|
|
924
925
|
* @return UpdateJobRunResponse
|
|
925
926
|
* @throws OciError when an error occurs
|
|
926
|
-
* @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.26.0/datascience/UpdateJobRun.ts.html |here} to see how to use UpdateJobRun API.
|
|
927
928
|
*/
|
|
928
929
|
updateJobRun(updateJobRunRequest: requests.UpdateJobRunRequest): Promise<responses.UpdateJobRunResponse>;
|
|
929
930
|
/**
|
|
930
931
|
* Updates the properties of a model. You can update the `displayName`, `description`, `freeformTags`, and `definedTags` properties.
|
|
931
|
-
* This operation
|
|
932
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
932
933
|
* @param UpdateModelRequest
|
|
933
934
|
* @return UpdateModelResponse
|
|
934
935
|
* @throws OciError when an error occurs
|
|
935
|
-
* @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.26.0/datascience/UpdateModel.ts.html |here} to see how to use UpdateModel API.
|
|
936
937
|
*/
|
|
937
938
|
updateModel(updateModelRequest: requests.UpdateModelRequest): Promise<responses.UpdateModelResponse>;
|
|
938
939
|
/**
|
|
@@ -941,20 +942,20 @@ export declare class DataScienceClient {
|
|
|
941
942
|
* 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
|
|
942
943
|
* deployment is activated.
|
|
943
944
|
*
|
|
944
|
-
* This operation
|
|
945
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
945
946
|
* @param UpdateModelDeploymentRequest
|
|
946
947
|
* @return UpdateModelDeploymentResponse
|
|
947
948
|
* @throws OciError when an error occurs
|
|
948
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
949
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/UpdateModelDeployment.ts.html |here} to see how to use UpdateModelDeployment API.
|
|
949
950
|
*/
|
|
950
951
|
updateModelDeployment(updateModelDeploymentRequest: requests.UpdateModelDeploymentRequest): Promise<responses.UpdateModelDeploymentResponse>;
|
|
951
952
|
/**
|
|
952
953
|
* Updates the provenance information for the specified model.
|
|
953
|
-
* This operation
|
|
954
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
954
955
|
* @param UpdateModelProvenanceRequest
|
|
955
956
|
* @return UpdateModelProvenanceResponse
|
|
956
957
|
* @throws OciError when an error occurs
|
|
957
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
958
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/UpdateModelProvenance.ts.html |here} to see how to use UpdateModelProvenance API.
|
|
958
959
|
*/
|
|
959
960
|
updateModelProvenance(updateModelProvenanceRequest: requests.UpdateModelProvenanceRequest): Promise<responses.UpdateModelProvenanceResponse>;
|
|
960
961
|
/**
|
|
@@ -962,20 +963,20 @@ export declare class DataScienceClient {
|
|
|
962
963
|
* When the notebook session is in the INACTIVE lifecycle state, you can update `notebookSessionConfigurationDetails` and change `shape`, `subnetId`, and `blockStorageSizeInGBs`.
|
|
963
964
|
* Changes to the `notebookSessionConfigurationDetails` take effect the next time the `ActivateNotebookSession` action is invoked on the notebook session resource.
|
|
964
965
|
*
|
|
965
|
-
* This operation
|
|
966
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
966
967
|
* @param UpdateNotebookSessionRequest
|
|
967
968
|
* @return UpdateNotebookSessionResponse
|
|
968
969
|
* @throws OciError when an error occurs
|
|
969
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
970
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/UpdateNotebookSession.ts.html |here} to see how to use UpdateNotebookSession API.
|
|
970
971
|
*/
|
|
971
972
|
updateNotebookSession(updateNotebookSessionRequest: requests.UpdateNotebookSessionRequest): Promise<responses.UpdateNotebookSessionResponse>;
|
|
972
973
|
/**
|
|
973
974
|
* Updates the properties of a project. You can update the `displayName`, `description`, `freeformTags`, and `definedTags` properties.
|
|
974
|
-
* This operation
|
|
975
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
975
976
|
* @param UpdateProjectRequest
|
|
976
977
|
* @return UpdateProjectResponse
|
|
977
978
|
* @throws OciError when an error occurs
|
|
978
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
979
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/datascience/UpdateProject.ts.html |here} to see how to use UpdateProject API.
|
|
979
980
|
*/
|
|
980
981
|
updateProject(updateProjectRequest: requests.UpdateProjectRequest): Promise<responses.UpdateProjectResponse>;
|
|
981
982
|
}
|