oci-aivision 2.70.0 → 2.70.1
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 +25 -25
- package/lib/client.js +25 -25
- package/lib/model/analyze-image-result.d.ts +8 -0
- package/lib/model/analyze-image-result.js +10 -0
- package/lib/model/analyze-image-result.js.map +1 -1
- package/lib/model/data-science-labeling-dataset.d.ts +1 -1
- package/lib/model/face-detection-feature.d.ts +32 -0
- package/lib/model/face-detection-feature.js +52 -0
- package/lib/model/face-detection-feature.js.map +1 -0
- package/lib/model/face.d.ts +35 -0
- package/lib/model/face.js +67 -0
- package/lib/model/face.js.map +1 -0
- package/lib/model/image-feature.js +4 -0
- package/lib/model/image-feature.js.map +1 -1
- package/lib/model/index.d.ts +6 -0
- package/lib/model/index.js +8 -2
- package/lib/model/index.js.map +1 -1
- package/lib/model/landmark.d.ts +45 -0
- package/lib/model/landmark.js +42 -0
- package/lib/model/landmark.js.map +1 -0
- package/lib/model/object-storage-dataset.d.ts +3 -3
- 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 +2 -2
- package/lib/request/cancel-image-job-request.d.ts +2 -2
- 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 +2 -2
- package/lib/request/get-image-job-request.d.ts +2 -2
- 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
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Vision API
|
|
3
|
+
* Using Vision, you can upload images to detect and classify objects in them. If you have lots of images, you can process them in batch using asynchronous API endpoints. Vision's features are thematically split between Document AI for document-centric images, and Image Analysis for object and scene-based images. Pretrained models and custom models are supported.
|
|
4
|
+
* OpenAPI spec version: 20220125
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
/**
|
|
15
|
+
* The detected face.
|
|
16
|
+
*/
|
|
17
|
+
export interface Face {
|
|
18
|
+
/**
|
|
19
|
+
* The confidence score, between 0 and 1. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
20
|
+
*/
|
|
21
|
+
"confidence": number;
|
|
22
|
+
"boundingPolygon": model.BoundingPolygon;
|
|
23
|
+
/**
|
|
24
|
+
* The quality score of the face detected, between 0 and 1. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
25
|
+
*/
|
|
26
|
+
"qualityScore": number;
|
|
27
|
+
/**
|
|
28
|
+
* A point of interest within a face.
|
|
29
|
+
*/
|
|
30
|
+
"landmarks"?: Array<model.Landmark>;
|
|
31
|
+
}
|
|
32
|
+
export declare namespace Face {
|
|
33
|
+
function getJsonObj(obj: Face): object;
|
|
34
|
+
function getDeserializedJsonObj(obj: Face): object;
|
|
35
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Vision API
|
|
4
|
+
* Using Vision, you can upload images to detect and classify objects in them. If you have lots of images, you can process them in batch using asynchronous API endpoints. Vision's features are thematically split between Document AI for document-centric images, and Image Analysis for object and scene-based images. Pretrained models and custom models are supported.
|
|
5
|
+
* OpenAPI spec version: 20220125
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.Face = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
36
|
+
var Face;
|
|
37
|
+
(function (Face) {
|
|
38
|
+
function getJsonObj(obj) {
|
|
39
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
40
|
+
"boundingPolygon": obj.boundingPolygon
|
|
41
|
+
? model.BoundingPolygon.getJsonObj(obj.boundingPolygon)
|
|
42
|
+
: undefined,
|
|
43
|
+
"landmarks": obj.landmarks
|
|
44
|
+
? obj.landmarks.map(item => {
|
|
45
|
+
return model.Landmark.getJsonObj(item);
|
|
46
|
+
})
|
|
47
|
+
: undefined
|
|
48
|
+
});
|
|
49
|
+
return jsonObj;
|
|
50
|
+
}
|
|
51
|
+
Face.getJsonObj = getJsonObj;
|
|
52
|
+
function getDeserializedJsonObj(obj) {
|
|
53
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
54
|
+
"boundingPolygon": obj.boundingPolygon
|
|
55
|
+
? model.BoundingPolygon.getDeserializedJsonObj(obj.boundingPolygon)
|
|
56
|
+
: undefined,
|
|
57
|
+
"landmarks": obj.landmarks
|
|
58
|
+
? obj.landmarks.map(item => {
|
|
59
|
+
return model.Landmark.getDeserializedJsonObj(item);
|
|
60
|
+
})
|
|
61
|
+
: undefined
|
|
62
|
+
});
|
|
63
|
+
return jsonObj;
|
|
64
|
+
}
|
|
65
|
+
Face.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
66
|
+
})(Face = exports.Face || (exports.Face = {}));
|
|
67
|
+
//# sourceMappingURL=face.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"face.js","sourceRoot":"","sources":["../../../../../lib/aivision/lib/model/face.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAsBlC,IAAiB,IAAI,CAqCpB;AArCD,WAAiB,IAAI;IACnB,SAAgB,UAAU,CAAC,GAAS;QAClC,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,UAAU,CAAC,GAAG,CAAC,eAAe,CAAC;gBACvD,CAAC,CAAC,SAAS;YAEb,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACvB,OAAO,KAAK,CAAC,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACzC,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAjBe,eAAU,aAiBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAS;QAC9C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,sBAAsB,CAAC,GAAG,CAAC,eAAe,CAAC;gBACnE,CAAC,CAAC,SAAS;YAEb,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACvB,OAAO,KAAK,CAAC,QAAQ,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACrD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAjBe,2BAAsB,yBAiBrC,CAAA;AACH,CAAC,EArCgB,IAAI,GAAJ,YAAI,KAAJ,YAAI,QAqCpB"}
|
|
@@ -42,6 +42,8 @@ var ImageFeature;
|
|
|
42
42
|
switch (obj.featureType) {
|
|
43
43
|
case "TEXT_DETECTION":
|
|
44
44
|
return model.ImageTextDetectionFeature.getJsonObj(jsonObj, true);
|
|
45
|
+
case "FACE_DETECTION":
|
|
46
|
+
return model.FaceDetectionFeature.getJsonObj(jsonObj, true);
|
|
45
47
|
case "OBJECT_DETECTION":
|
|
46
48
|
return model.ImageObjectDetectionFeature.getJsonObj(jsonObj, true);
|
|
47
49
|
case "IMAGE_CLASSIFICATION":
|
|
@@ -60,6 +62,8 @@ var ImageFeature;
|
|
|
60
62
|
switch (obj.featureType) {
|
|
61
63
|
case "TEXT_DETECTION":
|
|
62
64
|
return model.ImageTextDetectionFeature.getDeserializedJsonObj(jsonObj, true);
|
|
65
|
+
case "FACE_DETECTION":
|
|
66
|
+
return model.FaceDetectionFeature.getDeserializedJsonObj(jsonObj, true);
|
|
63
67
|
case "OBJECT_DETECTION":
|
|
64
68
|
return model.ImageObjectDetectionFeature.getDeserializedJsonObj(jsonObj, true);
|
|
65
69
|
case "IMAGE_CLASSIFICATION":
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image-feature.js","sourceRoot":"","sources":["../../../../../lib/aivision/lib/model/image-feature.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAClC,qCAAsC;AAStC,IAAiB,YAAY,
|
|
1
|
+
{"version":3,"file":"image-feature.js","sourceRoot":"","sources":["../../../../../lib/aivision/lib/model/image-feature.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAClC,qCAAsC;AAStC,IAAiB,YAAY,CA+D5B;AA/DD,WAAiB,YAAY;IAC3B,SAAgB,UAAU,CAAC,GAAiB;QAC1C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,IAAI,GAAG,IAAI,aAAa,IAAI,GAAG,IAAI,GAAG,CAAC,WAAW,EAAE;YAClD,QAAQ,GAAG,CAAC,WAAW,EAAE;gBACvB,KAAK,gBAAgB;oBACnB,OAAO,KAAK,CAAC,yBAAyB,CAAC,UAAU,CACL,OAAQ,EAClD,IAAI,CACL,CAAC;gBACJ,KAAK,gBAAgB;oBACnB,OAAO,KAAK,CAAC,oBAAoB,CAAC,UAAU,CACL,OAAQ,EAC7C,IAAI,CACL,CAAC;gBACJ,KAAK,kBAAkB;oBACrB,OAAO,KAAK,CAAC,2BAA2B,CAAC,UAAU,CACL,OAAQ,EACpD,IAAI,CACL,CAAC;gBACJ,KAAK,sBAAsB;oBACzB,OAAO,KAAK,CAAC,0BAA0B,CAAC,UAAU,CACL,OAAQ,EACnD,IAAI,CACL,CAAC;gBACJ;oBACE,IAAI,MAAM,CAAC,GAAG,CAAC,MAAM;wBAAE,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,sBAAsB,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC;aAC1F;SACF;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IA9Be,uBAAU,aA8BzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAiB;QACtD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,IAAI,GAAG,IAAI,aAAa,IAAI,GAAG,IAAI,GAAG,CAAC,WAAW,EAAE;YAClD,QAAQ,GAAG,CAAC,WAAW,EAAE;gBACvB,KAAK,gBAAgB;oBACnB,OAAO,KAAK,CAAC,yBAAyB,CAAC,sBAAsB,CACjB,OAAQ,EAClD,IAAI,CACL,CAAC;gBACJ,KAAK,gBAAgB;oBACnB,OAAO,KAAK,CAAC,oBAAoB,CAAC,sBAAsB,CACjB,OAAQ,EAC7C,IAAI,CACL,CAAC;gBACJ,KAAK,kBAAkB;oBACrB,OAAO,KAAK,CAAC,2BAA2B,CAAC,sBAAsB,CACjB,OAAQ,EACpD,IAAI,CACL,CAAC;gBACJ,KAAK,sBAAsB;oBACzB,OAAO,KAAK,CAAC,0BAA0B,CAAC,sBAAsB,CACjB,OAAQ,EACnD,IAAI,CACL,CAAC;gBACJ;oBACE,IAAI,MAAM,CAAC,GAAG,CAAC,MAAM;wBAAE,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,sBAAsB,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC;aAC1F;SACF;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IA9Be,mCAAsB,yBA8BrC,CAAA;AACH,CAAC,EA/DgB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QA+D5B"}
|
package/lib/model/index.d.ts
CHANGED
|
@@ -58,6 +58,8 @@ import * as DocumentMetadata from "./document-metadata";
|
|
|
58
58
|
export import DocumentMetadata = DocumentMetadata.DocumentMetadata;
|
|
59
59
|
import * as DocumentType from "./document-type";
|
|
60
60
|
export import DocumentType = DocumentType.DocumentType;
|
|
61
|
+
import * as Face from "./face";
|
|
62
|
+
export import Face = Face.Face;
|
|
61
63
|
import * as FieldLabel from "./field-label";
|
|
62
64
|
export import FieldLabel = FieldLabel.FieldLabel;
|
|
63
65
|
import * as FieldName from "./field-name";
|
|
@@ -78,6 +80,8 @@ import * as InputLocation from "./input-location";
|
|
|
78
80
|
export import InputLocation = InputLocation.InputLocation;
|
|
79
81
|
import * as Label from "./label";
|
|
80
82
|
export import Label = Label.Label;
|
|
83
|
+
import * as Landmark from "./landmark";
|
|
84
|
+
export import Landmark = Landmark.Landmark;
|
|
81
85
|
import * as Line from "./line";
|
|
82
86
|
export import Line = Line.Line;
|
|
83
87
|
import * as Model from "./model";
|
|
@@ -148,6 +152,8 @@ import * as DocumentTableDetectionFeature from "./document-table-detection-featu
|
|
|
148
152
|
export import DocumentTableDetectionFeature = DocumentTableDetectionFeature.DocumentTableDetectionFeature;
|
|
149
153
|
import * as DocumentTextDetectionFeature from "./document-text-detection-feature";
|
|
150
154
|
export import DocumentTextDetectionFeature = DocumentTextDetectionFeature.DocumentTextDetectionFeature;
|
|
155
|
+
import * as FaceDetectionFeature from "./face-detection-feature";
|
|
156
|
+
export import FaceDetectionFeature = FaceDetectionFeature.FaceDetectionFeature;
|
|
151
157
|
import * as ImageClassificationFeature from "./image-classification-feature";
|
|
152
158
|
export import ImageClassificationFeature = ImageClassificationFeature.ImageClassificationFeature;
|
|
153
159
|
import * as ImageObjectDetectionFeature from "./image-object-detection-feature";
|
package/lib/model/index.js
CHANGED
|
@@ -31,8 +31,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
31
31
|
return result;
|
|
32
32
|
};
|
|
33
33
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
-
exports.
|
|
35
|
-
exports.ValueTime = exports.ValueString = exports.ValuePhoneNumber = exports.ValueNumber = exports.ValueInteger = exports.ValueDate = exports.ValueArray = exports.ObjectStorageImageDetails = exports.ObjectStorageDocumentDetails = exports.ObjectStorageDataset = exports.ObjectListInlineInputLocation = exports.InlineImageDetails = exports.InlineDocumentDetails = exports.ImageTextDetectionFeature = exports.ImageObjectDetectionFeature = exports.ImageClassificationFeature = exports.DocumentTextDetectionFeature = exports.DocumentTableDetectionFeature = exports.DocumentLanguageClassificationFeature = exports.DocumentKeyValueDetectionFeature = exports.DocumentClassificationFeature = exports.DataScienceLabelingDataset = exports.WorkRequestSummaryCollection = exports.WorkRequestSummary = exports.WorkRequestResource = exports.WorkRequestLogEntryCollection = exports.WorkRequestLogEntry = exports.WorkRequestErrorCollection = exports.WorkRequestError = exports.WorkRequest = exports.Word = exports.UpdateProjectDetails = exports.UpdateModelDetails = exports.TableRow = exports.Table = void 0;
|
|
34
|
+
exports.ProjectCollection = exports.Project = exports.ProcessingError = exports.Page = exports.OutputLocation = exports.OperationType = exports.OperationStatus = exports.OntologyClass = exports.ObjectLocation = exports.NormalizedVertex = exports.ModelSummary = exports.ModelCollection = exports.Model = exports.Line = exports.Landmark = exports.Label = exports.InputLocation = exports.ImageText = exports.ImageObject = exports.ImageJob = exports.ImageFeature = exports.ImageDetails = exports.FieldValue = exports.FieldName = exports.FieldLabel = exports.Face = exports.DocumentType = exports.DocumentMetadata = exports.DocumentLanguage = exports.DocumentJob = exports.DocumentField = exports.DocumentFeature = exports.DocumentDetails = exports.Dimensions = exports.DetectedLanguage = exports.DetectedDocumentType = exports.Dataset = exports.CreateProjectDetails = exports.CreateModelDetails = exports.CreateImageJobDetails = exports.CreateDocumentJobDetails = exports.ChangeProjectCompartmentDetails = exports.ChangeModelCompartmentDetails = exports.Cell = exports.BoundingPolygon = exports.AnalyzeImageResult = exports.AnalyzeImageDetails = exports.AnalyzeDocumentResult = exports.AnalyzeDocumentDetails = exports.ActionType = void 0;
|
|
35
|
+
exports.ValueTime = exports.ValueString = exports.ValuePhoneNumber = exports.ValueNumber = exports.ValueInteger = exports.ValueDate = exports.ValueArray = exports.ObjectStorageImageDetails = exports.ObjectStorageDocumentDetails = exports.ObjectStorageDataset = exports.ObjectListInlineInputLocation = exports.InlineImageDetails = exports.InlineDocumentDetails = exports.ImageTextDetectionFeature = exports.ImageObjectDetectionFeature = exports.ImageClassificationFeature = exports.FaceDetectionFeature = exports.DocumentTextDetectionFeature = exports.DocumentTableDetectionFeature = exports.DocumentLanguageClassificationFeature = exports.DocumentKeyValueDetectionFeature = exports.DocumentClassificationFeature = exports.DataScienceLabelingDataset = exports.WorkRequestSummaryCollection = exports.WorkRequestSummary = exports.WorkRequestResource = exports.WorkRequestLogEntryCollection = exports.WorkRequestLogEntry = exports.WorkRequestErrorCollection = exports.WorkRequestError = exports.WorkRequest = exports.Word = exports.UpdateProjectDetails = exports.UpdateModelDetails = exports.TableRow = exports.Table = exports.SortOrder = exports.ProjectSummary = void 0;
|
|
36
36
|
const ActionType = __importStar(require("./action-type"));
|
|
37
37
|
exports.ActionType = ActionType.ActionType;
|
|
38
38
|
const AnalyzeDocumentDetails = __importStar(require("./analyze-document-details"));
|
|
@@ -81,6 +81,8 @@ const DocumentMetadata = __importStar(require("./document-metadata"));
|
|
|
81
81
|
exports.DocumentMetadata = DocumentMetadata.DocumentMetadata;
|
|
82
82
|
const DocumentType = __importStar(require("./document-type"));
|
|
83
83
|
exports.DocumentType = DocumentType.DocumentType;
|
|
84
|
+
const Face = __importStar(require("./face"));
|
|
85
|
+
exports.Face = Face.Face;
|
|
84
86
|
const FieldLabel = __importStar(require("./field-label"));
|
|
85
87
|
exports.FieldLabel = FieldLabel.FieldLabel;
|
|
86
88
|
const FieldName = __importStar(require("./field-name"));
|
|
@@ -101,6 +103,8 @@ const InputLocation = __importStar(require("./input-location"));
|
|
|
101
103
|
exports.InputLocation = InputLocation.InputLocation;
|
|
102
104
|
const Label = __importStar(require("./label"));
|
|
103
105
|
exports.Label = Label.Label;
|
|
106
|
+
const Landmark = __importStar(require("./landmark"));
|
|
107
|
+
exports.Landmark = Landmark.Landmark;
|
|
104
108
|
const Line = __importStar(require("./line"));
|
|
105
109
|
exports.Line = Line.Line;
|
|
106
110
|
const Model = __importStar(require("./model"));
|
|
@@ -171,6 +175,8 @@ const DocumentTableDetectionFeature = __importStar(require("./document-table-det
|
|
|
171
175
|
exports.DocumentTableDetectionFeature = DocumentTableDetectionFeature.DocumentTableDetectionFeature;
|
|
172
176
|
const DocumentTextDetectionFeature = __importStar(require("./document-text-detection-feature"));
|
|
173
177
|
exports.DocumentTextDetectionFeature = DocumentTextDetectionFeature.DocumentTextDetectionFeature;
|
|
178
|
+
const FaceDetectionFeature = __importStar(require("./face-detection-feature"));
|
|
179
|
+
exports.FaceDetectionFeature = FaceDetectionFeature.FaceDetectionFeature;
|
|
174
180
|
const ImageClassificationFeature = __importStar(require("./image-classification-feature"));
|
|
175
181
|
exports.ImageClassificationFeature = ImageClassificationFeature.ImageClassificationFeature;
|
|
176
182
|
const ImageObjectDetectionFeature = __importStar(require("./image-object-detection-feature"));
|
package/lib/model/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/aivision/lib/model/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/aivision/lib/model/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Vision API
|
|
3
|
+
* Using Vision, you can upload images to detect and classify objects in them. If you have lots of images, you can process them in batch using asynchronous API endpoints. Vision's features are thematically split between Document AI for document-centric images, and Image Analysis for object and scene-based images. Pretrained models and custom models are supported.
|
|
4
|
+
* OpenAPI spec version: 20220125
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* The landmark on the face.
|
|
15
|
+
*/
|
|
16
|
+
export interface Landmark {
|
|
17
|
+
/**
|
|
18
|
+
* The face landmark type
|
|
19
|
+
*/
|
|
20
|
+
"type": Landmark.Type;
|
|
21
|
+
/**
|
|
22
|
+
* The X-axis normalized coordinate. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
23
|
+
*/
|
|
24
|
+
"x": number;
|
|
25
|
+
/**
|
|
26
|
+
* The Y-axis normalized coordinate. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
27
|
+
*/
|
|
28
|
+
"y": number;
|
|
29
|
+
}
|
|
30
|
+
export declare namespace Landmark {
|
|
31
|
+
enum Type {
|
|
32
|
+
LeftEye = "LEFT_EYE",
|
|
33
|
+
RightEye = "RIGHT_EYE",
|
|
34
|
+
NoseTip = "NOSE_TIP",
|
|
35
|
+
LeftEdgeOfMouth = "LEFT_EDGE_OF_MOUTH",
|
|
36
|
+
RightEdgeOfMouth = "RIGHT_EDGE_OF_MOUTH",
|
|
37
|
+
/**
|
|
38
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
39
|
+
* version of the SDK.
|
|
40
|
+
*/
|
|
41
|
+
UnknownValue = "UNKNOWN_VALUE"
|
|
42
|
+
}
|
|
43
|
+
function getJsonObj(obj: Landmark): object;
|
|
44
|
+
function getDeserializedJsonObj(obj: Landmark): object;
|
|
45
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Vision API
|
|
4
|
+
* Using Vision, you can upload images to detect and classify objects in them. If you have lots of images, you can process them in batch using asynchronous API endpoints. Vision's features are thematically split between Document AI for document-centric images, and Image Analysis for object and scene-based images. Pretrained models and custom models are supported.
|
|
5
|
+
* OpenAPI spec version: 20220125
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.Landmark = void 0;
|
|
16
|
+
var Landmark;
|
|
17
|
+
(function (Landmark) {
|
|
18
|
+
let Type;
|
|
19
|
+
(function (Type) {
|
|
20
|
+
Type["LeftEye"] = "LEFT_EYE";
|
|
21
|
+
Type["RightEye"] = "RIGHT_EYE";
|
|
22
|
+
Type["NoseTip"] = "NOSE_TIP";
|
|
23
|
+
Type["LeftEdgeOfMouth"] = "LEFT_EDGE_OF_MOUTH";
|
|
24
|
+
Type["RightEdgeOfMouth"] = "RIGHT_EDGE_OF_MOUTH";
|
|
25
|
+
/**
|
|
26
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
27
|
+
* version of the SDK.
|
|
28
|
+
*/
|
|
29
|
+
Type["UnknownValue"] = "UNKNOWN_VALUE";
|
|
30
|
+
})(Type = Landmark.Type || (Landmark.Type = {}));
|
|
31
|
+
function getJsonObj(obj) {
|
|
32
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
33
|
+
return jsonObj;
|
|
34
|
+
}
|
|
35
|
+
Landmark.getJsonObj = getJsonObj;
|
|
36
|
+
function getDeserializedJsonObj(obj) {
|
|
37
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
38
|
+
return jsonObj;
|
|
39
|
+
}
|
|
40
|
+
Landmark.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
41
|
+
})(Landmark = exports.Landmark || (exports.Landmark = {}));
|
|
42
|
+
//# sourceMappingURL=landmark.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"landmark.js","sourceRoot":"","sources":["../../../../../lib/aivision/lib/model/landmark.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAuBH,IAAiB,QAAQ,CAwBxB;AAxBD,WAAiB,QAAQ;IACvB,IAAY,IAWX;IAXD,WAAY,IAAI;QACd,4BAAoB,CAAA;QACpB,8BAAsB,CAAA;QACtB,4BAAoB,CAAA;QACpB,8CAAsC,CAAA;QACtC,gDAAwC,CAAA;QACxC;;;WAGG;QACH,sCAA8B,CAAA;IAChC,CAAC,EAXW,IAAI,GAAJ,aAAI,KAAJ,aAAI,QAWf;IAED,SAAgB,UAAU,CAAC,GAAa;QACtC,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,mBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAa;QAClD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,+BAAsB,yBAIrC,CAAA;AACH,CAAC,EAxBgB,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAwBxB"}
|
|
@@ -18,15 +18,15 @@ export interface ObjectStorageDataset extends model.Dataset {
|
|
|
18
18
|
/**
|
|
19
19
|
* The namespace name of the Object Storage bucket that contains the input data file.
|
|
20
20
|
*/
|
|
21
|
-
"namespaceName"
|
|
21
|
+
"namespaceName": string;
|
|
22
22
|
/**
|
|
23
23
|
* The name of the Object Storage bucket that contains the input data file.
|
|
24
24
|
*/
|
|
25
|
-
"bucketName"
|
|
25
|
+
"bucketName": string;
|
|
26
26
|
/**
|
|
27
27
|
* The object name of the input data file.
|
|
28
28
|
*/
|
|
29
|
-
"objectName"
|
|
29
|
+
"objectName": string;
|
|
30
30
|
"datasetType": string;
|
|
31
31
|
}
|
|
32
32
|
export declare namespace ObjectStorageDataset {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/AnalyzeDocument.ts.html |here} to see how to use AnalyzeDocumentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface AnalyzeDocumentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/AnalyzeImage.ts.html |here} to see how to use AnalyzeImageRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface AnalyzeImageRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/CancelDocumentJob.ts.html |here} to see how to use CancelDocumentJobRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface CancelDocumentJobRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* The document job ID.
|
|
20
20
|
*/
|
|
21
21
|
"documentJobId": string;
|
|
22
22
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/CancelImageJob.ts.html |here} to see how to use CancelImageJobRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface CancelImageJobRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* The image job ID.
|
|
20
20
|
*/
|
|
21
21
|
"imageJobId": string;
|
|
22
22
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequestRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface CancelWorkRequestRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/ChangeModelCompartment.ts.html |here} to see how to use ChangeModelCompartmentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ChangeModelCompartmentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/ChangeProjectCompartment.ts.html |here} to see how to use ChangeProjectCompartmentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ChangeProjectCompartmentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/CreateDocumentJob.ts.html |here} to see how to use CreateDocumentJobRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateDocumentJobRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/CreateImageJob.ts.html |here} to see how to use CreateImageJobRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateImageJobRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/CreateModel.ts.html |here} to see how to use CreateModelRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateModelRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/CreateProject.ts.html |here} to see how to use CreateProjectRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateProjectRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/DeleteModel.ts.html |here} to see how to use DeleteModelRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteModelRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/DeleteProject.ts.html |here} to see how to use DeleteProjectRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteProjectRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/GetDocumentJob.ts.html |here} to see how to use GetDocumentJobRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetDocumentJobRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* The document job ID.
|
|
20
20
|
*/
|
|
21
21
|
"documentJobId": string;
|
|
22
22
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/GetImageJob.ts.html |here} to see how to use GetImageJobRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetImageJobRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* The image job ID.
|
|
20
20
|
*/
|
|
21
21
|
"imageJobId": string;
|
|
22
22
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/GetModel.ts.html |here} to see how to use GetModelRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetModelRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/GetProject.ts.html |here} to see how to use GetProjectRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetProjectRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetWorkRequestRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/ListModels.ts.html |here} to see how to use ListModelsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListModelsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/ListProjects.ts.html |here} to see how to use ListProjectsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListProjectsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListWorkRequestLogsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.70.1/aivision/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListWorkRequestsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|