oci-aivision 2.79.1 → 2.81.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 +27 -26
- package/lib/client.js +133 -53
- package/lib/client.js.map +1 -1
- package/lib/model/dataset.js +4 -2
- package/lib/model/dataset.js.map +1 -1
- package/lib/model/document-details.js +4 -2
- package/lib/model/document-details.js.map +1 -1
- package/lib/model/document-feature.js +4 -2
- package/lib/model/document-feature.js.map +1 -1
- package/lib/model/field-value.js +4 -2
- package/lib/model/field-value.js.map +1 -1
- package/lib/model/image-details.js +4 -2
- package/lib/model/image-details.js.map +1 -1
- package/lib/model/image-feature.js +4 -2
- package/lib/model/image-feature.js.map +1 -1
- package/lib/model/input-location.js +4 -2
- package/lib/model/input-location.js.map +1 -1
- package/lib/request/analyze-document-request.d.ts +1 -1
- package/lib/request/analyze-image-request.d.ts +1 -1
- package/lib/request/cancel-document-job-request.d.ts +1 -1
- package/lib/request/cancel-image-job-request.d.ts +1 -1
- package/lib/request/cancel-work-request-request.d.ts +1 -1
- package/lib/request/change-model-compartment-request.d.ts +1 -1
- package/lib/request/change-project-compartment-request.d.ts +1 -1
- package/lib/request/create-document-job-request.d.ts +1 -1
- package/lib/request/create-image-job-request.d.ts +1 -1
- package/lib/request/create-model-request.d.ts +1 -1
- package/lib/request/create-project-request.d.ts +1 -1
- package/lib/request/delete-model-request.d.ts +1 -1
- package/lib/request/delete-project-request.d.ts +1 -1
- package/lib/request/get-document-job-request.d.ts +1 -1
- package/lib/request/get-image-job-request.d.ts +1 -1
- package/lib/request/get-model-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/list-models-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-model-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
|
@@ -23,7 +23,7 @@ export declare enum AIServiceVisionApiKeys {
|
|
|
23
23
|
export declare class AIServiceVisionClient {
|
|
24
24
|
protected static serviceEndpointTemplate: string;
|
|
25
25
|
protected static endpointServiceName: string;
|
|
26
|
-
protected "_realmSpecificEndpointTemplateEnabled": boolean;
|
|
26
|
+
protected "_realmSpecificEndpointTemplateEnabled": boolean | undefined;
|
|
27
27
|
protected "_endpoint": string;
|
|
28
28
|
protected "_defaultHeaders": any;
|
|
29
29
|
protected "_waiters": AIServiceVisionWaiter;
|
|
@@ -46,6 +46,7 @@ export declare class AIServiceVisionClient {
|
|
|
46
46
|
* @param endpoint The endpoint of the service.
|
|
47
47
|
*/
|
|
48
48
|
set endpoint(endpoint: string);
|
|
49
|
+
get logger(): import("oci-common/lib/log").Logger;
|
|
49
50
|
/**
|
|
50
51
|
* Determines whether realm specific endpoint should be used or not.
|
|
51
52
|
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
@@ -91,7 +92,7 @@ export declare class AIServiceVisionClient {
|
|
|
91
92
|
* @param AnalyzeDocumentRequest
|
|
92
93
|
* @return AnalyzeDocumentResponse
|
|
93
94
|
* @throws OciError when an error occurs
|
|
94
|
-
* @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.81.0/aivision/AnalyzeDocument.ts.html |here} to see how to use AnalyzeDocument API.
|
|
95
96
|
*/
|
|
96
97
|
analyzeDocument(analyzeDocumentRequest: requests.AnalyzeDocumentRequest): Promise<responses.AnalyzeDocumentResponse>;
|
|
97
98
|
/**
|
|
@@ -101,7 +102,7 @@ export declare class AIServiceVisionClient {
|
|
|
101
102
|
* @param AnalyzeImageRequest
|
|
102
103
|
* @return AnalyzeImageResponse
|
|
103
104
|
* @throws OciError when an error occurs
|
|
104
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
105
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/AnalyzeImage.ts.html |here} to see how to use AnalyzeImage API.
|
|
105
106
|
*/
|
|
106
107
|
analyzeImage(analyzeImageRequest: requests.AnalyzeImageRequest): Promise<responses.AnalyzeImageResponse>;
|
|
107
108
|
/**
|
|
@@ -111,7 +112,7 @@ export declare class AIServiceVisionClient {
|
|
|
111
112
|
* @param CancelDocumentJobRequest
|
|
112
113
|
* @return CancelDocumentJobResponse
|
|
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.81.0/aivision/CancelDocumentJob.ts.html |here} to see how to use CancelDocumentJob API.
|
|
115
116
|
*/
|
|
116
117
|
cancelDocumentJob(cancelDocumentJobRequest: requests.CancelDocumentJobRequest): Promise<responses.CancelDocumentJobResponse>;
|
|
117
118
|
/**
|
|
@@ -121,7 +122,7 @@ export declare class AIServiceVisionClient {
|
|
|
121
122
|
* @param CancelImageJobRequest
|
|
122
123
|
* @return CancelImageJobResponse
|
|
123
124
|
* @throws OciError when an error occurs
|
|
124
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
125
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/CancelImageJob.ts.html |here} to see how to use CancelImageJob API.
|
|
125
126
|
*/
|
|
126
127
|
cancelImageJob(cancelImageJobRequest: requests.CancelImageJobRequest): Promise<responses.CancelImageJobResponse>;
|
|
127
128
|
/**
|
|
@@ -130,7 +131,7 @@ export declare class AIServiceVisionClient {
|
|
|
130
131
|
* @param CancelWorkRequestRequest
|
|
131
132
|
* @return CancelWorkRequestResponse
|
|
132
133
|
* @throws OciError when an error occurs
|
|
133
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
134
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
|
|
134
135
|
*/
|
|
135
136
|
cancelWorkRequest(cancelWorkRequestRequest: requests.CancelWorkRequestRequest): Promise<responses.CancelWorkRequestResponse>;
|
|
136
137
|
/**
|
|
@@ -139,7 +140,7 @@ export declare class AIServiceVisionClient {
|
|
|
139
140
|
* @param ChangeModelCompartmentRequest
|
|
140
141
|
* @return ChangeModelCompartmentResponse
|
|
141
142
|
* @throws OciError when an error occurs
|
|
142
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
143
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/ChangeModelCompartment.ts.html |here} to see how to use ChangeModelCompartment API.
|
|
143
144
|
*/
|
|
144
145
|
changeModelCompartment(changeModelCompartmentRequest: requests.ChangeModelCompartmentRequest): Promise<responses.ChangeModelCompartmentResponse>;
|
|
145
146
|
/**
|
|
@@ -148,7 +149,7 @@ export declare class AIServiceVisionClient {
|
|
|
148
149
|
* @param ChangeProjectCompartmentRequest
|
|
149
150
|
* @return ChangeProjectCompartmentResponse
|
|
150
151
|
* @throws OciError when an error occurs
|
|
151
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
152
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/ChangeProjectCompartment.ts.html |here} to see how to use ChangeProjectCompartment API.
|
|
152
153
|
*/
|
|
153
154
|
changeProjectCompartment(changeProjectCompartmentRequest: requests.ChangeProjectCompartmentRequest): Promise<responses.ChangeProjectCompartmentResponse>;
|
|
154
155
|
/**
|
|
@@ -158,7 +159,7 @@ export declare class AIServiceVisionClient {
|
|
|
158
159
|
* @param CreateDocumentJobRequest
|
|
159
160
|
* @return CreateDocumentJobResponse
|
|
160
161
|
* @throws OciError when an error occurs
|
|
161
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
162
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/CreateDocumentJob.ts.html |here} to see how to use CreateDocumentJob API.
|
|
162
163
|
*/
|
|
163
164
|
createDocumentJob(createDocumentJobRequest: requests.CreateDocumentJobRequest): Promise<responses.CreateDocumentJobResponse>;
|
|
164
165
|
/**
|
|
@@ -168,7 +169,7 @@ export declare class AIServiceVisionClient {
|
|
|
168
169
|
* @param CreateImageJobRequest
|
|
169
170
|
* @return CreateImageJobResponse
|
|
170
171
|
* @throws OciError when an error occurs
|
|
171
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
172
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/CreateImageJob.ts.html |here} to see how to use CreateImageJob API.
|
|
172
173
|
*/
|
|
173
174
|
createImageJob(createImageJobRequest: requests.CreateImageJobRequest): Promise<responses.CreateImageJobResponse>;
|
|
174
175
|
/**
|
|
@@ -178,7 +179,7 @@ export declare class AIServiceVisionClient {
|
|
|
178
179
|
* @param CreateModelRequest
|
|
179
180
|
* @return CreateModelResponse
|
|
180
181
|
* @throws OciError when an error occurs
|
|
181
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
182
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/CreateModel.ts.html |here} to see how to use CreateModel API.
|
|
182
183
|
*/
|
|
183
184
|
createModel(createModelRequest: requests.CreateModelRequest): Promise<responses.CreateModelResponse>;
|
|
184
185
|
/**
|
|
@@ -188,7 +189,7 @@ export declare class AIServiceVisionClient {
|
|
|
188
189
|
* @param CreateProjectRequest
|
|
189
190
|
* @return CreateProjectResponse
|
|
190
191
|
* @throws OciError when an error occurs
|
|
191
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
192
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/CreateProject.ts.html |here} to see how to use CreateProject API.
|
|
192
193
|
*/
|
|
193
194
|
createProject(createProjectRequest: requests.CreateProjectRequest): Promise<responses.CreateProjectResponse>;
|
|
194
195
|
/**
|
|
@@ -197,7 +198,7 @@ export declare class AIServiceVisionClient {
|
|
|
197
198
|
* @param DeleteModelRequest
|
|
198
199
|
* @return DeleteModelResponse
|
|
199
200
|
* @throws OciError when an error occurs
|
|
200
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
201
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/DeleteModel.ts.html |here} to see how to use DeleteModel API.
|
|
201
202
|
*/
|
|
202
203
|
deleteModel(deleteModelRequest: requests.DeleteModelRequest): Promise<responses.DeleteModelResponse>;
|
|
203
204
|
/**
|
|
@@ -206,7 +207,7 @@ export declare class AIServiceVisionClient {
|
|
|
206
207
|
* @param DeleteProjectRequest
|
|
207
208
|
* @return DeleteProjectResponse
|
|
208
209
|
* @throws OciError when an error occurs
|
|
209
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
210
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/DeleteProject.ts.html |here} to see how to use DeleteProject API.
|
|
210
211
|
*/
|
|
211
212
|
deleteProject(deleteProjectRequest: requests.DeleteProjectRequest): Promise<responses.DeleteProjectResponse>;
|
|
212
213
|
/**
|
|
@@ -216,7 +217,7 @@ export declare class AIServiceVisionClient {
|
|
|
216
217
|
* @param GetDocumentJobRequest
|
|
217
218
|
* @return GetDocumentJobResponse
|
|
218
219
|
* @throws OciError when an error occurs
|
|
219
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
220
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/GetDocumentJob.ts.html |here} to see how to use GetDocumentJob API.
|
|
220
221
|
*/
|
|
221
222
|
getDocumentJob(getDocumentJobRequest: requests.GetDocumentJobRequest): Promise<responses.GetDocumentJobResponse>;
|
|
222
223
|
/**
|
|
@@ -226,7 +227,7 @@ export declare class AIServiceVisionClient {
|
|
|
226
227
|
* @param GetImageJobRequest
|
|
227
228
|
* @return GetImageJobResponse
|
|
228
229
|
* @throws OciError when an error occurs
|
|
229
|
-
* @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.81.0/aivision/GetImageJob.ts.html |here} to see how to use GetImageJob API.
|
|
230
231
|
*/
|
|
231
232
|
getImageJob(getImageJobRequest: requests.GetImageJobRequest): Promise<responses.GetImageJobResponse>;
|
|
232
233
|
/**
|
|
@@ -235,7 +236,7 @@ export declare class AIServiceVisionClient {
|
|
|
235
236
|
* @param GetModelRequest
|
|
236
237
|
* @return GetModelResponse
|
|
237
238
|
* @throws OciError when an error occurs
|
|
238
|
-
* @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.81.0/aivision/GetModel.ts.html |here} to see how to use GetModel API.
|
|
239
240
|
*/
|
|
240
241
|
getModel(getModelRequest: requests.GetModelRequest): Promise<responses.GetModelResponse>;
|
|
241
242
|
/**
|
|
@@ -244,7 +245,7 @@ export declare class AIServiceVisionClient {
|
|
|
244
245
|
* @param GetProjectRequest
|
|
245
246
|
* @return GetProjectResponse
|
|
246
247
|
* @throws OciError when an error occurs
|
|
247
|
-
* @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.81.0/aivision/GetProject.ts.html |here} to see how to use GetProject API.
|
|
248
249
|
*/
|
|
249
250
|
getProject(getProjectRequest: requests.GetProjectRequest): Promise<responses.GetProjectResponse>;
|
|
250
251
|
/**
|
|
@@ -253,7 +254,7 @@ export declare class AIServiceVisionClient {
|
|
|
253
254
|
* @param GetWorkRequestRequest
|
|
254
255
|
* @return GetWorkRequestResponse
|
|
255
256
|
* @throws OciError when an error occurs
|
|
256
|
-
* @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.81.0/aivision/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
257
258
|
*/
|
|
258
259
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
259
260
|
/**
|
|
@@ -263,7 +264,7 @@ export declare class AIServiceVisionClient {
|
|
|
263
264
|
* @param ListModelsRequest
|
|
264
265
|
* @return ListModelsResponse
|
|
265
266
|
* @throws OciError when an error occurs
|
|
266
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
267
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/ListModels.ts.html |here} to see how to use ListModels API.
|
|
267
268
|
*/
|
|
268
269
|
listModels(listModelsRequest: requests.ListModelsRequest): Promise<responses.ListModelsResponse>;
|
|
269
270
|
/**
|
|
@@ -273,7 +274,7 @@ export declare class AIServiceVisionClient {
|
|
|
273
274
|
* @param ListProjectsRequest
|
|
274
275
|
* @return ListProjectsResponse
|
|
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.81.0/aivision/ListProjects.ts.html |here} to see how to use ListProjects API.
|
|
277
278
|
*/
|
|
278
279
|
listProjects(listProjectsRequest: requests.ListProjectsRequest): Promise<responses.ListProjectsResponse>;
|
|
279
280
|
/**
|
|
@@ -283,7 +284,7 @@ export declare class AIServiceVisionClient {
|
|
|
283
284
|
* @param ListWorkRequestErrorsRequest
|
|
284
285
|
* @return ListWorkRequestErrorsResponse
|
|
285
286
|
* @throws OciError when an error occurs
|
|
286
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
287
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
287
288
|
*/
|
|
288
289
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
289
290
|
/**
|
|
@@ -293,7 +294,7 @@ export declare class AIServiceVisionClient {
|
|
|
293
294
|
* @param ListWorkRequestLogsRequest
|
|
294
295
|
* @return ListWorkRequestLogsResponse
|
|
295
296
|
* @throws OciError when an error occurs
|
|
296
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
297
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
297
298
|
*/
|
|
298
299
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
299
300
|
/**
|
|
@@ -303,7 +304,7 @@ export declare class AIServiceVisionClient {
|
|
|
303
304
|
* @param ListWorkRequestsRequest
|
|
304
305
|
* @return ListWorkRequestsResponse
|
|
305
306
|
* @throws OciError when an error occurs
|
|
306
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
307
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
307
308
|
*/
|
|
308
309
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
309
310
|
/**
|
|
@@ -312,7 +313,7 @@ export declare class AIServiceVisionClient {
|
|
|
312
313
|
* @param UpdateModelRequest
|
|
313
314
|
* @return UpdateModelResponse
|
|
314
315
|
* @throws OciError when an error occurs
|
|
315
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
316
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/UpdateModel.ts.html |here} to see how to use UpdateModel API.
|
|
316
317
|
*/
|
|
317
318
|
updateModel(updateModelRequest: requests.UpdateModelRequest): Promise<responses.UpdateModelResponse>;
|
|
318
319
|
/**
|
|
@@ -321,7 +322,7 @@ export declare class AIServiceVisionClient {
|
|
|
321
322
|
* @param UpdateProjectRequest
|
|
322
323
|
* @return UpdateProjectResponse
|
|
323
324
|
* @throws OciError when an error occurs
|
|
324
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
325
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/aivision/UpdateProject.ts.html |here} to see how to use UpdateProject API.
|
|
325
326
|
*/
|
|
326
327
|
updateProject(updateProjectRequest: requests.UpdateProjectRequest): Promise<responses.UpdateProjectResponse>;
|
|
327
328
|
}
|