oci-datascience 2.4.0 → 2.6.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/LICENSE.txt +6 -0
- package/lib/client.d.ts +293 -60
- package/lib/client.js +460 -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 does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
23
|
+
*/
|
|
21
24
|
export declare class DataScienceClient {
|
|
22
25
|
protected static serviceEndpointTemplate: string;
|
|
23
26
|
protected "_endpoint": string;
|
|
@@ -67,341 +70,384 @@ 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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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
|
/**
|
|
450
|
+
* NOTE: This function is deprecated in favor of listJobRunsRecordIterator function.
|
|
405
451
|
* Creates a new async iterator which will iterate over the models.JobRunSummary objects
|
|
406
452
|
* contained in responses from the listJobRuns operation. This iterator will fetch more data from the
|
|
407
453
|
* server as needed.
|
|
@@ -410,21 +456,39 @@ export declare class DataScienceClient {
|
|
|
410
456
|
*/
|
|
411
457
|
listAllJobRuns(request: requests.ListJobRunsRequest): AsyncIterableIterator<model.JobRunSummary>;
|
|
412
458
|
/**
|
|
459
|
+
* NOTE: This function is deprecated in favor of listJobRunsResponseIterator function.
|
|
413
460
|
* Creates a new async iterator which will iterate over the responses received from the listJobRuns operation. This iterator
|
|
414
461
|
* will fetch more data from the server as needed.
|
|
415
462
|
*
|
|
416
463
|
* @param request a request which can be sent to the service operation
|
|
417
464
|
*/
|
|
418
465
|
listAllJobRunsResponses(request: requests.ListJobRunsRequest): AsyncIterableIterator<responses.ListJobRunsResponse>;
|
|
466
|
+
/**
|
|
467
|
+
* Creates a new async iterator which will iterate over the models.JobRunSummary objects
|
|
468
|
+
* contained in responses from the listJobRuns operation. This iterator will fetch more data from the
|
|
469
|
+
* server as needed.
|
|
470
|
+
*
|
|
471
|
+
* @param request a request which can be sent to the service operation
|
|
472
|
+
*/
|
|
473
|
+
listJobRunsRecordIterator(request: requests.ListJobRunsRequest): AsyncIterableIterator<model.JobRunSummary>;
|
|
474
|
+
/**
|
|
475
|
+
* Creates a new async iterator which will iterate over the responses received from the listJobRuns operation. This iterator
|
|
476
|
+
* will fetch more data from the server as needed.
|
|
477
|
+
*
|
|
478
|
+
* @param request a request which can be sent to the service operation
|
|
479
|
+
*/
|
|
480
|
+
listJobRunsResponseIterator(request: requests.ListJobRunsRequest): AsyncIterableIterator<responses.ListJobRunsResponse>;
|
|
419
481
|
/**
|
|
420
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.
|
|
421
484
|
* @param ListJobShapesRequest
|
|
422
485
|
* @return ListJobShapesResponse
|
|
423
486
|
* @throws OciError when an error occurs
|
|
424
|
-
* @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.6.0/datascience/ListJobShapes.ts.html |here} to see how to use ListJobShapes API.
|
|
425
488
|
*/
|
|
426
489
|
listJobShapes(listJobShapesRequest: requests.ListJobShapesRequest): Promise<responses.ListJobShapesResponse>;
|
|
427
490
|
/**
|
|
491
|
+
* NOTE: This function is deprecated in favor of listJobShapesRecordIterator function.
|
|
428
492
|
* Creates a new async iterator which will iterate over the models.JobShapeSummary objects
|
|
429
493
|
* contained in responses from the listJobShapes operation. This iterator will fetch more data from the
|
|
430
494
|
* server as needed.
|
|
@@ -433,21 +497,39 @@ export declare class DataScienceClient {
|
|
|
433
497
|
*/
|
|
434
498
|
listAllJobShapes(request: requests.ListJobShapesRequest): AsyncIterableIterator<model.JobShapeSummary>;
|
|
435
499
|
/**
|
|
500
|
+
* NOTE: This function is deprecated in favor of listJobShapesResponseIterator function.
|
|
436
501
|
* Creates a new async iterator which will iterate over the responses received from the listJobShapes operation. This iterator
|
|
437
502
|
* will fetch more data from the server as needed.
|
|
438
503
|
*
|
|
439
504
|
* @param request a request which can be sent to the service operation
|
|
440
505
|
*/
|
|
441
506
|
listAllJobShapesResponses(request: requests.ListJobShapesRequest): AsyncIterableIterator<responses.ListJobShapesResponse>;
|
|
507
|
+
/**
|
|
508
|
+
* Creates a new async iterator which will iterate over the models.JobShapeSummary objects
|
|
509
|
+
* contained in responses from the listJobShapes operation. This iterator will fetch more data from the
|
|
510
|
+
* server as needed.
|
|
511
|
+
*
|
|
512
|
+
* @param request a request which can be sent to the service operation
|
|
513
|
+
*/
|
|
514
|
+
listJobShapesRecordIterator(request: requests.ListJobShapesRequest): AsyncIterableIterator<model.JobShapeSummary>;
|
|
515
|
+
/**
|
|
516
|
+
* Creates a new async iterator which will iterate over the responses received from the listJobShapes operation. This iterator
|
|
517
|
+
* will fetch more data from the server as needed.
|
|
518
|
+
*
|
|
519
|
+
* @param request a request which can be sent to the service operation
|
|
520
|
+
*/
|
|
521
|
+
listJobShapesResponseIterator(request: requests.ListJobShapesRequest): AsyncIterableIterator<responses.ListJobShapesResponse>;
|
|
442
522
|
/**
|
|
443
523
|
* List jobs in the specified compartment.
|
|
524
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
444
525
|
* @param ListJobsRequest
|
|
445
526
|
* @return ListJobsResponse
|
|
446
527
|
* @throws OciError when an error occurs
|
|
447
|
-
* @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.6.0/datascience/ListJobs.ts.html |here} to see how to use ListJobs API.
|
|
448
529
|
*/
|
|
449
530
|
listJobs(listJobsRequest: requests.ListJobsRequest): Promise<responses.ListJobsResponse>;
|
|
450
531
|
/**
|
|
532
|
+
* NOTE: This function is deprecated in favor of listJobsRecordIterator function.
|
|
451
533
|
* Creates a new async iterator which will iterate over the models.JobSummary objects
|
|
452
534
|
* contained in responses from the listJobs operation. This iterator will fetch more data from the
|
|
453
535
|
* server as needed.
|
|
@@ -456,21 +538,39 @@ export declare class DataScienceClient {
|
|
|
456
538
|
*/
|
|
457
539
|
listAllJobs(request: requests.ListJobsRequest): AsyncIterableIterator<model.JobSummary>;
|
|
458
540
|
/**
|
|
541
|
+
* NOTE: This function is deprecated in favor of listJobsResponseIterator function.
|
|
459
542
|
* Creates a new async iterator which will iterate over the responses received from the listJobs operation. This iterator
|
|
460
543
|
* will fetch more data from the server as needed.
|
|
461
544
|
*
|
|
462
545
|
* @param request a request which can be sent to the service operation
|
|
463
546
|
*/
|
|
464
547
|
listAllJobsResponses(request: requests.ListJobsRequest): AsyncIterableIterator<responses.ListJobsResponse>;
|
|
548
|
+
/**
|
|
549
|
+
* Creates a new async iterator which will iterate over the models.JobSummary objects
|
|
550
|
+
* contained in responses from the listJobs operation. This iterator will fetch more data from the
|
|
551
|
+
* server as needed.
|
|
552
|
+
*
|
|
553
|
+
* @param request a request which can be sent to the service operation
|
|
554
|
+
*/
|
|
555
|
+
listJobsRecordIterator(request: requests.ListJobsRequest): AsyncIterableIterator<model.JobSummary>;
|
|
556
|
+
/**
|
|
557
|
+
* Creates a new async iterator which will iterate over the responses received from the listJobs operation. This iterator
|
|
558
|
+
* will fetch more data from the server as needed.
|
|
559
|
+
*
|
|
560
|
+
* @param request a request which can be sent to the service operation
|
|
561
|
+
*/
|
|
562
|
+
listJobsResponseIterator(request: requests.ListJobsRequest): AsyncIterableIterator<responses.ListJobsResponse>;
|
|
465
563
|
/**
|
|
466
564
|
* Lists the valid model deployment shapes.
|
|
565
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
467
566
|
* @param ListModelDeploymentShapesRequest
|
|
468
567
|
* @return ListModelDeploymentShapesResponse
|
|
469
568
|
* @throws OciError when an error occurs
|
|
470
|
-
* @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.6.0/datascience/ListModelDeploymentShapes.ts.html |here} to see how to use ListModelDeploymentShapes API.
|
|
471
570
|
*/
|
|
472
571
|
listModelDeploymentShapes(listModelDeploymentShapesRequest: requests.ListModelDeploymentShapesRequest): Promise<responses.ListModelDeploymentShapesResponse>;
|
|
473
572
|
/**
|
|
573
|
+
* NOTE: This function is deprecated in favor of listModelDeploymentShapesRecordIterator function.
|
|
474
574
|
* Creates a new async iterator which will iterate over the models.ModelDeploymentShapeSummary objects
|
|
475
575
|
* contained in responses from the listModelDeploymentShapes operation. This iterator will fetch more data from the
|
|
476
576
|
* server as needed.
|
|
@@ -479,22 +579,40 @@ export declare class DataScienceClient {
|
|
|
479
579
|
*/
|
|
480
580
|
listAllModelDeploymentShapes(request: requests.ListModelDeploymentShapesRequest): AsyncIterableIterator<model.ModelDeploymentShapeSummary>;
|
|
481
581
|
/**
|
|
582
|
+
* NOTE: This function is deprecated in favor of listModelDeploymentShapesResponseIterator function.
|
|
482
583
|
* Creates a new async iterator which will iterate over the responses received from the listModelDeploymentShapes operation. This iterator
|
|
483
584
|
* will fetch more data from the server as needed.
|
|
484
585
|
*
|
|
485
586
|
* @param request a request which can be sent to the service operation
|
|
486
587
|
*/
|
|
487
588
|
listAllModelDeploymentShapesResponses(request: requests.ListModelDeploymentShapesRequest): AsyncIterableIterator<responses.ListModelDeploymentShapesResponse>;
|
|
589
|
+
/**
|
|
590
|
+
* Creates a new async iterator which will iterate over the models.ModelDeploymentShapeSummary objects
|
|
591
|
+
* contained in responses from the listModelDeploymentShapes operation. This iterator will fetch more data from the
|
|
592
|
+
* server as needed.
|
|
593
|
+
*
|
|
594
|
+
* @param request a request which can be sent to the service operation
|
|
595
|
+
*/
|
|
596
|
+
listModelDeploymentShapesRecordIterator(request: requests.ListModelDeploymentShapesRequest): AsyncIterableIterator<model.ModelDeploymentShapeSummary>;
|
|
597
|
+
/**
|
|
598
|
+
* Creates a new async iterator which will iterate over the responses received from the listModelDeploymentShapes operation. This iterator
|
|
599
|
+
* will fetch more data from the server as needed.
|
|
600
|
+
*
|
|
601
|
+
* @param request a request which can be sent to the service operation
|
|
602
|
+
*/
|
|
603
|
+
listModelDeploymentShapesResponseIterator(request: requests.ListModelDeploymentShapesRequest): AsyncIterableIterator<responses.ListModelDeploymentShapesResponse>;
|
|
488
604
|
/**
|
|
489
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.
|
|
490
606
|
*
|
|
607
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
491
608
|
* @param ListModelDeploymentsRequest
|
|
492
609
|
* @return ListModelDeploymentsResponse
|
|
493
610
|
* @throws OciError when an error occurs
|
|
494
|
-
* @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.6.0/datascience/ListModelDeployments.ts.html |here} to see how to use ListModelDeployments API.
|
|
495
612
|
*/
|
|
496
613
|
listModelDeployments(listModelDeploymentsRequest: requests.ListModelDeploymentsRequest): Promise<responses.ListModelDeploymentsResponse>;
|
|
497
614
|
/**
|
|
615
|
+
* NOTE: This function is deprecated in favor of listModelDeploymentsRecordIterator function.
|
|
498
616
|
* Creates a new async iterator which will iterate over the models.ModelDeploymentSummary objects
|
|
499
617
|
* contained in responses from the listModelDeployments operation. This iterator will fetch more data from the
|
|
500
618
|
* server as needed.
|
|
@@ -503,21 +621,39 @@ export declare class DataScienceClient {
|
|
|
503
621
|
*/
|
|
504
622
|
listAllModelDeployments(request: requests.ListModelDeploymentsRequest): AsyncIterableIterator<model.ModelDeploymentSummary>;
|
|
505
623
|
/**
|
|
624
|
+
* NOTE: This function is deprecated in favor of listModelDeploymentsResponseIterator function.
|
|
506
625
|
* Creates a new async iterator which will iterate over the responses received from the listModelDeployments operation. This iterator
|
|
507
626
|
* will fetch more data from the server as needed.
|
|
508
627
|
*
|
|
509
628
|
* @param request a request which can be sent to the service operation
|
|
510
629
|
*/
|
|
511
630
|
listAllModelDeploymentsResponses(request: requests.ListModelDeploymentsRequest): AsyncIterableIterator<responses.ListModelDeploymentsResponse>;
|
|
631
|
+
/**
|
|
632
|
+
* Creates a new async iterator which will iterate over the models.ModelDeploymentSummary objects
|
|
633
|
+
* contained in responses from the listModelDeployments operation. This iterator will fetch more data from the
|
|
634
|
+
* server as needed.
|
|
635
|
+
*
|
|
636
|
+
* @param request a request which can be sent to the service operation
|
|
637
|
+
*/
|
|
638
|
+
listModelDeploymentsRecordIterator(request: requests.ListModelDeploymentsRequest): AsyncIterableIterator<model.ModelDeploymentSummary>;
|
|
639
|
+
/**
|
|
640
|
+
* Creates a new async iterator which will iterate over the responses received from the listModelDeployments operation. This iterator
|
|
641
|
+
* will fetch more data from the server as needed.
|
|
642
|
+
*
|
|
643
|
+
* @param request a request which can be sent to the service operation
|
|
644
|
+
*/
|
|
645
|
+
listModelDeploymentsResponseIterator(request: requests.ListModelDeploymentsRequest): AsyncIterableIterator<responses.ListModelDeploymentsResponse>;
|
|
512
646
|
/**
|
|
513
647
|
* Lists models in the specified compartment.
|
|
648
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
514
649
|
* @param ListModelsRequest
|
|
515
650
|
* @return ListModelsResponse
|
|
516
651
|
* @throws OciError when an error occurs
|
|
517
|
-
* @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.6.0/datascience/ListModels.ts.html |here} to see how to use ListModels API.
|
|
518
653
|
*/
|
|
519
654
|
listModels(listModelsRequest: requests.ListModelsRequest): Promise<responses.ListModelsResponse>;
|
|
520
655
|
/**
|
|
656
|
+
* NOTE: This function is deprecated in favor of listModelsRecordIterator function.
|
|
521
657
|
* Creates a new async iterator which will iterate over the models.ModelSummary objects
|
|
522
658
|
* contained in responses from the listModels operation. This iterator will fetch more data from the
|
|
523
659
|
* server as needed.
|
|
@@ -526,21 +662,39 @@ export declare class DataScienceClient {
|
|
|
526
662
|
*/
|
|
527
663
|
listAllModels(request: requests.ListModelsRequest): AsyncIterableIterator<model.ModelSummary>;
|
|
528
664
|
/**
|
|
665
|
+
* NOTE: This function is deprecated in favor of listModelsResponseIterator function.
|
|
529
666
|
* Creates a new async iterator which will iterate over the responses received from the listModels operation. This iterator
|
|
530
667
|
* will fetch more data from the server as needed.
|
|
531
668
|
*
|
|
532
669
|
* @param request a request which can be sent to the service operation
|
|
533
670
|
*/
|
|
534
671
|
listAllModelsResponses(request: requests.ListModelsRequest): AsyncIterableIterator<responses.ListModelsResponse>;
|
|
672
|
+
/**
|
|
673
|
+
* Creates a new async iterator which will iterate over the models.ModelSummary objects
|
|
674
|
+
* contained in responses from the listModels operation. This iterator will fetch more data from the
|
|
675
|
+
* server as needed.
|
|
676
|
+
*
|
|
677
|
+
* @param request a request which can be sent to the service operation
|
|
678
|
+
*/
|
|
679
|
+
listModelsRecordIterator(request: requests.ListModelsRequest): AsyncIterableIterator<model.ModelSummary>;
|
|
680
|
+
/**
|
|
681
|
+
* Creates a new async iterator which will iterate over the responses received from the listModels operation. This iterator
|
|
682
|
+
* will fetch more data from the server as needed.
|
|
683
|
+
*
|
|
684
|
+
* @param request a request which can be sent to the service operation
|
|
685
|
+
*/
|
|
686
|
+
listModelsResponseIterator(request: requests.ListModelsRequest): AsyncIterableIterator<responses.ListModelsResponse>;
|
|
535
687
|
/**
|
|
536
688
|
* Lists the valid notebook session shapes.
|
|
689
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
537
690
|
* @param ListNotebookSessionShapesRequest
|
|
538
691
|
* @return ListNotebookSessionShapesResponse
|
|
539
692
|
* @throws OciError when an error occurs
|
|
540
|
-
* @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.6.0/datascience/ListNotebookSessionShapes.ts.html |here} to see how to use ListNotebookSessionShapes API.
|
|
541
694
|
*/
|
|
542
695
|
listNotebookSessionShapes(listNotebookSessionShapesRequest: requests.ListNotebookSessionShapesRequest): Promise<responses.ListNotebookSessionShapesResponse>;
|
|
543
696
|
/**
|
|
697
|
+
* NOTE: This function is deprecated in favor of listNotebookSessionShapesRecordIterator function.
|
|
544
698
|
* Creates a new async iterator which will iterate over the models.NotebookSessionShapeSummary objects
|
|
545
699
|
* contained in responses from the listNotebookSessionShapes operation. This iterator will fetch more data from the
|
|
546
700
|
* server as needed.
|
|
@@ -549,21 +703,39 @@ export declare class DataScienceClient {
|
|
|
549
703
|
*/
|
|
550
704
|
listAllNotebookSessionShapes(request: requests.ListNotebookSessionShapesRequest): AsyncIterableIterator<model.NotebookSessionShapeSummary>;
|
|
551
705
|
/**
|
|
706
|
+
* NOTE: This function is deprecated in favor of listNotebookSessionShapesResponseIterator function.
|
|
552
707
|
* Creates a new async iterator which will iterate over the responses received from the listNotebookSessionShapes operation. This iterator
|
|
553
708
|
* will fetch more data from the server as needed.
|
|
554
709
|
*
|
|
555
710
|
* @param request a request which can be sent to the service operation
|
|
556
711
|
*/
|
|
557
712
|
listAllNotebookSessionShapesResponses(request: requests.ListNotebookSessionShapesRequest): AsyncIterableIterator<responses.ListNotebookSessionShapesResponse>;
|
|
713
|
+
/**
|
|
714
|
+
* Creates a new async iterator which will iterate over the models.NotebookSessionShapeSummary objects
|
|
715
|
+
* contained in responses from the listNotebookSessionShapes operation. This iterator will fetch more data from the
|
|
716
|
+
* server as needed.
|
|
717
|
+
*
|
|
718
|
+
* @param request a request which can be sent to the service operation
|
|
719
|
+
*/
|
|
720
|
+
listNotebookSessionShapesRecordIterator(request: requests.ListNotebookSessionShapesRequest): AsyncIterableIterator<model.NotebookSessionShapeSummary>;
|
|
721
|
+
/**
|
|
722
|
+
* Creates a new async iterator which will iterate over the responses received from the listNotebookSessionShapes operation. This iterator
|
|
723
|
+
* will fetch more data from the server as needed.
|
|
724
|
+
*
|
|
725
|
+
* @param request a request which can be sent to the service operation
|
|
726
|
+
*/
|
|
727
|
+
listNotebookSessionShapesResponseIterator(request: requests.ListNotebookSessionShapesRequest): AsyncIterableIterator<responses.ListNotebookSessionShapesResponse>;
|
|
558
728
|
/**
|
|
559
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.
|
|
560
731
|
* @param ListNotebookSessionsRequest
|
|
561
732
|
* @return ListNotebookSessionsResponse
|
|
562
733
|
* @throws OciError when an error occurs
|
|
563
|
-
* @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.6.0/datascience/ListNotebookSessions.ts.html |here} to see how to use ListNotebookSessions API.
|
|
564
735
|
*/
|
|
565
736
|
listNotebookSessions(listNotebookSessionsRequest: requests.ListNotebookSessionsRequest): Promise<responses.ListNotebookSessionsResponse>;
|
|
566
737
|
/**
|
|
738
|
+
* NOTE: This function is deprecated in favor of listNotebookSessionsRecordIterator function.
|
|
567
739
|
* Creates a new async iterator which will iterate over the models.NotebookSessionSummary objects
|
|
568
740
|
* contained in responses from the listNotebookSessions operation. This iterator will fetch more data from the
|
|
569
741
|
* server as needed.
|
|
@@ -572,21 +744,39 @@ export declare class DataScienceClient {
|
|
|
572
744
|
*/
|
|
573
745
|
listAllNotebookSessions(request: requests.ListNotebookSessionsRequest): AsyncIterableIterator<model.NotebookSessionSummary>;
|
|
574
746
|
/**
|
|
747
|
+
* NOTE: This function is deprecated in favor of listNotebookSessionsResponseIterator function.
|
|
575
748
|
* Creates a new async iterator which will iterate over the responses received from the listNotebookSessions operation. This iterator
|
|
576
749
|
* will fetch more data from the server as needed.
|
|
577
750
|
*
|
|
578
751
|
* @param request a request which can be sent to the service operation
|
|
579
752
|
*/
|
|
580
753
|
listAllNotebookSessionsResponses(request: requests.ListNotebookSessionsRequest): AsyncIterableIterator<responses.ListNotebookSessionsResponse>;
|
|
754
|
+
/**
|
|
755
|
+
* Creates a new async iterator which will iterate over the models.NotebookSessionSummary objects
|
|
756
|
+
* contained in responses from the listNotebookSessions operation. This iterator will fetch more data from the
|
|
757
|
+
* server as needed.
|
|
758
|
+
*
|
|
759
|
+
* @param request a request which can be sent to the service operation
|
|
760
|
+
*/
|
|
761
|
+
listNotebookSessionsRecordIterator(request: requests.ListNotebookSessionsRequest): AsyncIterableIterator<model.NotebookSessionSummary>;
|
|
762
|
+
/**
|
|
763
|
+
* Creates a new async iterator which will iterate over the responses received from the listNotebookSessions operation. This iterator
|
|
764
|
+
* will fetch more data from the server as needed.
|
|
765
|
+
*
|
|
766
|
+
* @param request a request which can be sent to the service operation
|
|
767
|
+
*/
|
|
768
|
+
listNotebookSessionsResponseIterator(request: requests.ListNotebookSessionsRequest): AsyncIterableIterator<responses.ListNotebookSessionsResponse>;
|
|
581
769
|
/**
|
|
582
770
|
* Lists projects in the specified compartment.
|
|
771
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
583
772
|
* @param ListProjectsRequest
|
|
584
773
|
* @return ListProjectsResponse
|
|
585
774
|
* @throws OciError when an error occurs
|
|
586
|
-
* @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.6.0/datascience/ListProjects.ts.html |here} to see how to use ListProjects API.
|
|
587
776
|
*/
|
|
588
777
|
listProjects(listProjectsRequest: requests.ListProjectsRequest): Promise<responses.ListProjectsResponse>;
|
|
589
778
|
/**
|
|
779
|
+
* NOTE: This function is deprecated in favor of listProjectsRecordIterator function.
|
|
590
780
|
* Creates a new async iterator which will iterate over the models.ProjectSummary objects
|
|
591
781
|
* contained in responses from the listProjects operation. This iterator will fetch more data from the
|
|
592
782
|
* server as needed.
|
|
@@ -595,37 +785,57 @@ export declare class DataScienceClient {
|
|
|
595
785
|
*/
|
|
596
786
|
listAllProjects(request: requests.ListProjectsRequest): AsyncIterableIterator<model.ProjectSummary>;
|
|
597
787
|
/**
|
|
788
|
+
* NOTE: This function is deprecated in favor of listProjectsResponseIterator function.
|
|
598
789
|
* Creates a new async iterator which will iterate over the responses received from the listProjects operation. This iterator
|
|
599
790
|
* will fetch more data from the server as needed.
|
|
600
791
|
*
|
|
601
792
|
* @param request a request which can be sent to the service operation
|
|
602
793
|
*/
|
|
603
794
|
listAllProjectsResponses(request: requests.ListProjectsRequest): AsyncIterableIterator<responses.ListProjectsResponse>;
|
|
795
|
+
/**
|
|
796
|
+
* Creates a new async iterator which will iterate over the models.ProjectSummary objects
|
|
797
|
+
* contained in responses from the listProjects operation. This iterator will fetch more data from the
|
|
798
|
+
* server as needed.
|
|
799
|
+
*
|
|
800
|
+
* @param request a request which can be sent to the service operation
|
|
801
|
+
*/
|
|
802
|
+
listProjectsRecordIterator(request: requests.ListProjectsRequest): AsyncIterableIterator<model.ProjectSummary>;
|
|
803
|
+
/**
|
|
804
|
+
* Creates a new async iterator which will iterate over the responses received from the listProjects operation. This iterator
|
|
805
|
+
* will fetch more data from the server as needed.
|
|
806
|
+
*
|
|
807
|
+
* @param request a request which can be sent to the service operation
|
|
808
|
+
*/
|
|
809
|
+
listProjectsResponseIterator(request: requests.ListProjectsRequest): AsyncIterableIterator<responses.ListProjectsResponse>;
|
|
604
810
|
/**
|
|
605
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.
|
|
606
813
|
* @param ListWorkRequestErrorsRequest
|
|
607
814
|
* @return ListWorkRequestErrorsResponse
|
|
608
815
|
* @throws OciError when an error occurs
|
|
609
|
-
* @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.6.0/datascience/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
610
817
|
*/
|
|
611
818
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
612
819
|
/**
|
|
613
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.
|
|
614
822
|
* @param ListWorkRequestLogsRequest
|
|
615
823
|
* @return ListWorkRequestLogsResponse
|
|
616
824
|
* @throws OciError when an error occurs
|
|
617
|
-
* @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.6.0/datascience/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
618
826
|
*/
|
|
619
827
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
620
828
|
/**
|
|
621
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.
|
|
622
831
|
* @param ListWorkRequestsRequest
|
|
623
832
|
* @return ListWorkRequestsResponse
|
|
624
833
|
* @throws OciError when an error occurs
|
|
625
|
-
* @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.6.0/datascience/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
626
835
|
*/
|
|
627
836
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
628
837
|
/**
|
|
838
|
+
* NOTE: This function is deprecated in favor of listWorkRequestsRecordIterator function.
|
|
629
839
|
* Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
|
|
630
840
|
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
|
|
631
841
|
* server as needed.
|
|
@@ -634,34 +844,53 @@ export declare class DataScienceClient {
|
|
|
634
844
|
*/
|
|
635
845
|
listAllWorkRequests(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequestSummary>;
|
|
636
846
|
/**
|
|
847
|
+
* NOTE: This function is deprecated in favor of listWorkRequestsResponseIterator function.
|
|
637
848
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
|
|
638
849
|
* will fetch more data from the server as needed.
|
|
639
850
|
*
|
|
640
851
|
* @param request a request which can be sent to the service operation
|
|
641
852
|
*/
|
|
642
853
|
listAllWorkRequestsResponses(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
|
|
854
|
+
/**
|
|
855
|
+
* Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
|
|
856
|
+
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
|
|
857
|
+
* server as needed.
|
|
858
|
+
*
|
|
859
|
+
* @param request a request which can be sent to the service operation
|
|
860
|
+
*/
|
|
861
|
+
listWorkRequestsRecordIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequestSummary>;
|
|
862
|
+
/**
|
|
863
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
|
|
864
|
+
* will fetch more data from the server as needed.
|
|
865
|
+
*
|
|
866
|
+
* @param request a request which can be sent to the service operation
|
|
867
|
+
*/
|
|
868
|
+
listWorkRequestsResponseIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
|
|
643
869
|
/**
|
|
644
870
|
* Updates a job.
|
|
871
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
645
872
|
* @param UpdateJobRequest
|
|
646
873
|
* @return UpdateJobResponse
|
|
647
874
|
* @throws OciError when an error occurs
|
|
648
|
-
* @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.6.0/datascience/UpdateJob.ts.html |here} to see how to use UpdateJob API.
|
|
649
876
|
*/
|
|
650
877
|
updateJob(updateJobRequest: requests.UpdateJobRequest): Promise<responses.UpdateJobResponse>;
|
|
651
878
|
/**
|
|
652
879
|
* Updates a job run.
|
|
880
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
653
881
|
* @param UpdateJobRunRequest
|
|
654
882
|
* @return UpdateJobRunResponse
|
|
655
883
|
* @throws OciError when an error occurs
|
|
656
|
-
* @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.6.0/datascience/UpdateJobRun.ts.html |here} to see how to use UpdateJobRun API.
|
|
657
885
|
*/
|
|
658
886
|
updateJobRun(updateJobRunRequest: requests.UpdateJobRunRequest): Promise<responses.UpdateJobRunResponse>;
|
|
659
887
|
/**
|
|
660
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.
|
|
661
890
|
* @param UpdateModelRequest
|
|
662
891
|
* @return UpdateModelResponse
|
|
663
892
|
* @throws OciError when an error occurs
|
|
664
|
-
* @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.6.0/datascience/UpdateModel.ts.html |here} to see how to use UpdateModel API.
|
|
665
894
|
*/
|
|
666
895
|
updateModel(updateModelRequest: requests.UpdateModelRequest): Promise<responses.UpdateModelResponse>;
|
|
667
896
|
/**
|
|
@@ -670,18 +899,20 @@ export declare class DataScienceClient {
|
|
|
670
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
|
|
671
900
|
* deployment is activated.
|
|
672
901
|
*
|
|
902
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
673
903
|
* @param UpdateModelDeploymentRequest
|
|
674
904
|
* @return UpdateModelDeploymentResponse
|
|
675
905
|
* @throws OciError when an error occurs
|
|
676
|
-
* @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.6.0/datascience/UpdateModelDeployment.ts.html |here} to see how to use UpdateModelDeployment API.
|
|
677
907
|
*/
|
|
678
908
|
updateModelDeployment(updateModelDeploymentRequest: requests.UpdateModelDeploymentRequest): Promise<responses.UpdateModelDeploymentResponse>;
|
|
679
909
|
/**
|
|
680
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.
|
|
681
912
|
* @param UpdateModelProvenanceRequest
|
|
682
913
|
* @return UpdateModelProvenanceResponse
|
|
683
914
|
* @throws OciError when an error occurs
|
|
684
|
-
* @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.6.0/datascience/UpdateModelProvenance.ts.html |here} to see how to use UpdateModelProvenance API.
|
|
685
916
|
*/
|
|
686
917
|
updateModelProvenance(updateModelProvenanceRequest: requests.UpdateModelProvenanceRequest): Promise<responses.UpdateModelProvenanceResponse>;
|
|
687
918
|
/**
|
|
@@ -689,18 +920,20 @@ export declare class DataScienceClient {
|
|
|
689
920
|
* When the notebook session is in the INACTIVE lifecycle state, you can update `notebookSessionConfigurationDetails` and change `shape`, `subnetId`, and `blockStorageSizeInGBs`.
|
|
690
921
|
* Changes to the `notebookSessionConfigurationDetails` take effect the next time the `ActivateNotebookSession` action is invoked on the notebook session resource.
|
|
691
922
|
*
|
|
923
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
692
924
|
* @param UpdateNotebookSessionRequest
|
|
693
925
|
* @return UpdateNotebookSessionResponse
|
|
694
926
|
* @throws OciError when an error occurs
|
|
695
|
-
* @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.6.0/datascience/UpdateNotebookSession.ts.html |here} to see how to use UpdateNotebookSession API.
|
|
696
928
|
*/
|
|
697
929
|
updateNotebookSession(updateNotebookSessionRequest: requests.UpdateNotebookSessionRequest): Promise<responses.UpdateNotebookSessionResponse>;
|
|
698
930
|
/**
|
|
699
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.
|
|
700
933
|
* @param UpdateProjectRequest
|
|
701
934
|
* @return UpdateProjectResponse
|
|
702
935
|
* @throws OciError when an error occurs
|
|
703
|
-
* @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.6.0/datascience/UpdateProject.ts.html |here} to see how to use UpdateProject API.
|
|
704
937
|
*/
|
|
705
938
|
updateProject(updateProjectRequest: requests.UpdateProjectRequest): Promise<responses.UpdateProjectResponse>;
|
|
706
939
|
}
|