oci-aivision 2.27.0 → 2.28.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 +26 -25
- package/lib/client.js +101 -50
- package/lib/client.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
|
@@ -28,6 +28,7 @@ export declare class AIServiceVisionClient {
|
|
|
28
28
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
29
29
|
protected _circuitBreaker: null;
|
|
30
30
|
protected _httpOptions: any;
|
|
31
|
+
targetService: string;
|
|
31
32
|
protected _httpClient: common.HttpClient;
|
|
32
33
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
33
34
|
/**
|
|
@@ -75,7 +76,7 @@ export declare class AIServiceVisionClient {
|
|
|
75
76
|
* @param AnalyzeDocumentRequest
|
|
76
77
|
* @return AnalyzeDocumentResponse
|
|
77
78
|
* @throws OciError when an error occurs
|
|
78
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
79
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/AnalyzeDocument.ts.html |here} to see how to use AnalyzeDocument API.
|
|
79
80
|
*/
|
|
80
81
|
analyzeDocument(analyzeDocumentRequest: requests.AnalyzeDocumentRequest): Promise<responses.AnalyzeDocumentResponse>;
|
|
81
82
|
/**
|
|
@@ -85,7 +86,7 @@ export declare class AIServiceVisionClient {
|
|
|
85
86
|
* @param AnalyzeImageRequest
|
|
86
87
|
* @return AnalyzeImageResponse
|
|
87
88
|
* @throws OciError when an error occurs
|
|
88
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
89
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/AnalyzeImage.ts.html |here} to see how to use AnalyzeImage API.
|
|
89
90
|
*/
|
|
90
91
|
analyzeImage(analyzeImageRequest: requests.AnalyzeImageRequest): Promise<responses.AnalyzeImageResponse>;
|
|
91
92
|
/**
|
|
@@ -95,7 +96,7 @@ export declare class AIServiceVisionClient {
|
|
|
95
96
|
* @param CancelDocumentJobRequest
|
|
96
97
|
* @return CancelDocumentJobResponse
|
|
97
98
|
* @throws OciError when an error occurs
|
|
98
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
99
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/CancelDocumentJob.ts.html |here} to see how to use CancelDocumentJob API.
|
|
99
100
|
*/
|
|
100
101
|
cancelDocumentJob(cancelDocumentJobRequest: requests.CancelDocumentJobRequest): Promise<responses.CancelDocumentJobResponse>;
|
|
101
102
|
/**
|
|
@@ -105,7 +106,7 @@ export declare class AIServiceVisionClient {
|
|
|
105
106
|
* @param CancelImageJobRequest
|
|
106
107
|
* @return CancelImageJobResponse
|
|
107
108
|
* @throws OciError when an error occurs
|
|
108
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
109
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/CancelImageJob.ts.html |here} to see how to use CancelImageJob API.
|
|
109
110
|
*/
|
|
110
111
|
cancelImageJob(cancelImageJobRequest: requests.CancelImageJobRequest): Promise<responses.CancelImageJobResponse>;
|
|
111
112
|
/**
|
|
@@ -114,7 +115,7 @@ export declare class AIServiceVisionClient {
|
|
|
114
115
|
* @param CancelWorkRequestRequest
|
|
115
116
|
* @return CancelWorkRequestResponse
|
|
116
117
|
* @throws OciError when an error occurs
|
|
117
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
118
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
|
|
118
119
|
*/
|
|
119
120
|
cancelWorkRequest(cancelWorkRequestRequest: requests.CancelWorkRequestRequest): Promise<responses.CancelWorkRequestResponse>;
|
|
120
121
|
/**
|
|
@@ -123,7 +124,7 @@ export declare class AIServiceVisionClient {
|
|
|
123
124
|
* @param ChangeModelCompartmentRequest
|
|
124
125
|
* @return ChangeModelCompartmentResponse
|
|
125
126
|
* @throws OciError when an error occurs
|
|
126
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
127
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/ChangeModelCompartment.ts.html |here} to see how to use ChangeModelCompartment API.
|
|
127
128
|
*/
|
|
128
129
|
changeModelCompartment(changeModelCompartmentRequest: requests.ChangeModelCompartmentRequest): Promise<responses.ChangeModelCompartmentResponse>;
|
|
129
130
|
/**
|
|
@@ -132,7 +133,7 @@ export declare class AIServiceVisionClient {
|
|
|
132
133
|
* @param ChangeProjectCompartmentRequest
|
|
133
134
|
* @return ChangeProjectCompartmentResponse
|
|
134
135
|
* @throws OciError when an error occurs
|
|
135
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
136
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/ChangeProjectCompartment.ts.html |here} to see how to use ChangeProjectCompartment API.
|
|
136
137
|
*/
|
|
137
138
|
changeProjectCompartment(changeProjectCompartmentRequest: requests.ChangeProjectCompartmentRequest): Promise<responses.ChangeProjectCompartmentResponse>;
|
|
138
139
|
/**
|
|
@@ -142,7 +143,7 @@ export declare class AIServiceVisionClient {
|
|
|
142
143
|
* @param CreateDocumentJobRequest
|
|
143
144
|
* @return CreateDocumentJobResponse
|
|
144
145
|
* @throws OciError when an error occurs
|
|
145
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
146
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/CreateDocumentJob.ts.html |here} to see how to use CreateDocumentJob API.
|
|
146
147
|
*/
|
|
147
148
|
createDocumentJob(createDocumentJobRequest: requests.CreateDocumentJobRequest): Promise<responses.CreateDocumentJobResponse>;
|
|
148
149
|
/**
|
|
@@ -152,7 +153,7 @@ export declare class AIServiceVisionClient {
|
|
|
152
153
|
* @param CreateImageJobRequest
|
|
153
154
|
* @return CreateImageJobResponse
|
|
154
155
|
* @throws OciError when an error occurs
|
|
155
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
156
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/CreateImageJob.ts.html |here} to see how to use CreateImageJob API.
|
|
156
157
|
*/
|
|
157
158
|
createImageJob(createImageJobRequest: requests.CreateImageJobRequest): Promise<responses.CreateImageJobResponse>;
|
|
158
159
|
/**
|
|
@@ -162,7 +163,7 @@ export declare class AIServiceVisionClient {
|
|
|
162
163
|
* @param CreateModelRequest
|
|
163
164
|
* @return CreateModelResponse
|
|
164
165
|
* @throws OciError when an error occurs
|
|
165
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
166
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/CreateModel.ts.html |here} to see how to use CreateModel API.
|
|
166
167
|
*/
|
|
167
168
|
createModel(createModelRequest: requests.CreateModelRequest): Promise<responses.CreateModelResponse>;
|
|
168
169
|
/**
|
|
@@ -172,7 +173,7 @@ export declare class AIServiceVisionClient {
|
|
|
172
173
|
* @param CreateProjectRequest
|
|
173
174
|
* @return CreateProjectResponse
|
|
174
175
|
* @throws OciError when an error occurs
|
|
175
|
-
* @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.28.0/aivision/CreateProject.ts.html |here} to see how to use CreateProject API.
|
|
176
177
|
*/
|
|
177
178
|
createProject(createProjectRequest: requests.CreateProjectRequest): Promise<responses.CreateProjectResponse>;
|
|
178
179
|
/**
|
|
@@ -181,7 +182,7 @@ export declare class AIServiceVisionClient {
|
|
|
181
182
|
* @param DeleteModelRequest
|
|
182
183
|
* @return DeleteModelResponse
|
|
183
184
|
* @throws OciError when an error occurs
|
|
184
|
-
* @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.28.0/aivision/DeleteModel.ts.html |here} to see how to use DeleteModel API.
|
|
185
186
|
*/
|
|
186
187
|
deleteModel(deleteModelRequest: requests.DeleteModelRequest): Promise<responses.DeleteModelResponse>;
|
|
187
188
|
/**
|
|
@@ -190,7 +191,7 @@ export declare class AIServiceVisionClient {
|
|
|
190
191
|
* @param DeleteProjectRequest
|
|
191
192
|
* @return DeleteProjectResponse
|
|
192
193
|
* @throws OciError when an error occurs
|
|
193
|
-
* @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.28.0/aivision/DeleteProject.ts.html |here} to see how to use DeleteProject API.
|
|
194
195
|
*/
|
|
195
196
|
deleteProject(deleteProjectRequest: requests.DeleteProjectRequest): Promise<responses.DeleteProjectResponse>;
|
|
196
197
|
/**
|
|
@@ -200,7 +201,7 @@ export declare class AIServiceVisionClient {
|
|
|
200
201
|
* @param GetDocumentJobRequest
|
|
201
202
|
* @return GetDocumentJobResponse
|
|
202
203
|
* @throws OciError when an error occurs
|
|
203
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
204
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/GetDocumentJob.ts.html |here} to see how to use GetDocumentJob API.
|
|
204
205
|
*/
|
|
205
206
|
getDocumentJob(getDocumentJobRequest: requests.GetDocumentJobRequest): Promise<responses.GetDocumentJobResponse>;
|
|
206
207
|
/**
|
|
@@ -210,7 +211,7 @@ export declare class AIServiceVisionClient {
|
|
|
210
211
|
* @param GetImageJobRequest
|
|
211
212
|
* @return GetImageJobResponse
|
|
212
213
|
* @throws OciError when an error occurs
|
|
213
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
214
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/GetImageJob.ts.html |here} to see how to use GetImageJob API.
|
|
214
215
|
*/
|
|
215
216
|
getImageJob(getImageJobRequest: requests.GetImageJobRequest): Promise<responses.GetImageJobResponse>;
|
|
216
217
|
/**
|
|
@@ -219,7 +220,7 @@ export declare class AIServiceVisionClient {
|
|
|
219
220
|
* @param GetModelRequest
|
|
220
221
|
* @return GetModelResponse
|
|
221
222
|
* @throws OciError when an error occurs
|
|
222
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
223
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/GetModel.ts.html |here} to see how to use GetModel API.
|
|
223
224
|
*/
|
|
224
225
|
getModel(getModelRequest: requests.GetModelRequest): Promise<responses.GetModelResponse>;
|
|
225
226
|
/**
|
|
@@ -228,7 +229,7 @@ export declare class AIServiceVisionClient {
|
|
|
228
229
|
* @param GetProjectRequest
|
|
229
230
|
* @return GetProjectResponse
|
|
230
231
|
* @throws OciError when an error occurs
|
|
231
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
232
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/GetProject.ts.html |here} to see how to use GetProject API.
|
|
232
233
|
*/
|
|
233
234
|
getProject(getProjectRequest: requests.GetProjectRequest): Promise<responses.GetProjectResponse>;
|
|
234
235
|
/**
|
|
@@ -237,7 +238,7 @@ export declare class AIServiceVisionClient {
|
|
|
237
238
|
* @param GetWorkRequestRequest
|
|
238
239
|
* @return GetWorkRequestResponse
|
|
239
240
|
* @throws OciError when an error occurs
|
|
240
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
241
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
241
242
|
*/
|
|
242
243
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
243
244
|
/**
|
|
@@ -247,7 +248,7 @@ export declare class AIServiceVisionClient {
|
|
|
247
248
|
* @param ListModelsRequest
|
|
248
249
|
* @return ListModelsResponse
|
|
249
250
|
* @throws OciError when an error occurs
|
|
250
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
251
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/ListModels.ts.html |here} to see how to use ListModels API.
|
|
251
252
|
*/
|
|
252
253
|
listModels(listModelsRequest: requests.ListModelsRequest): Promise<responses.ListModelsResponse>;
|
|
253
254
|
/**
|
|
@@ -257,7 +258,7 @@ export declare class AIServiceVisionClient {
|
|
|
257
258
|
* @param ListProjectsRequest
|
|
258
259
|
* @return ListProjectsResponse
|
|
259
260
|
* @throws OciError when an error occurs
|
|
260
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
261
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/ListProjects.ts.html |here} to see how to use ListProjects API.
|
|
261
262
|
*/
|
|
262
263
|
listProjects(listProjectsRequest: requests.ListProjectsRequest): Promise<responses.ListProjectsResponse>;
|
|
263
264
|
/**
|
|
@@ -267,7 +268,7 @@ export declare class AIServiceVisionClient {
|
|
|
267
268
|
* @param ListWorkRequestErrorsRequest
|
|
268
269
|
* @return ListWorkRequestErrorsResponse
|
|
269
270
|
* @throws OciError when an error occurs
|
|
270
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
271
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
271
272
|
*/
|
|
272
273
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
273
274
|
/**
|
|
@@ -277,7 +278,7 @@ export declare class AIServiceVisionClient {
|
|
|
277
278
|
* @param ListWorkRequestLogsRequest
|
|
278
279
|
* @return ListWorkRequestLogsResponse
|
|
279
280
|
* @throws OciError when an error occurs
|
|
280
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
281
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
281
282
|
*/
|
|
282
283
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
283
284
|
/**
|
|
@@ -287,7 +288,7 @@ export declare class AIServiceVisionClient {
|
|
|
287
288
|
* @param ListWorkRequestsRequest
|
|
288
289
|
* @return ListWorkRequestsResponse
|
|
289
290
|
* @throws OciError when an error occurs
|
|
290
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
291
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
291
292
|
*/
|
|
292
293
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
293
294
|
/**
|
|
@@ -296,7 +297,7 @@ export declare class AIServiceVisionClient {
|
|
|
296
297
|
* @param UpdateModelRequest
|
|
297
298
|
* @return UpdateModelResponse
|
|
298
299
|
* @throws OciError when an error occurs
|
|
299
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
300
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/UpdateModel.ts.html |here} to see how to use UpdateModel API.
|
|
300
301
|
*/
|
|
301
302
|
updateModel(updateModelRequest: requests.UpdateModelRequest): Promise<responses.UpdateModelResponse>;
|
|
302
303
|
/**
|
|
@@ -305,7 +306,7 @@ export declare class AIServiceVisionClient {
|
|
|
305
306
|
* @param UpdateProjectRequest
|
|
306
307
|
* @return UpdateProjectResponse
|
|
307
308
|
* @throws OciError when an error occurs
|
|
308
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
309
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/aivision/UpdateProject.ts.html |here} to see how to use UpdateProject API.
|
|
309
310
|
*/
|
|
310
311
|
updateProject(updateProjectRequest: requests.UpdateProjectRequest): Promise<responses.UpdateProjectResponse>;
|
|
311
312
|
}
|