Skip to content

Commit ff26c00

Browse files
Releasing version 2.70.1
Releasing version 2.70.1
2 parents 3ec4c45 + 8f142d9 commit ff26c00

File tree

489 files changed

+5447
-551
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

489 files changed

+5447
-551
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/).
55

6+
## 2.70.1 - 2023-09-12
7+
### Added
8+
- Support for SQL tuning sets in Database Management service
9+
- Support for announcement chaining in Announcements service
10+
- Support for automatic promotion of hosts in Stack Monitoring service
11+
- Support for face detection in AI Vision service
12+
- Support for change parameters on list character sets operation in Database Management service
13+
- Support for displaying software sources attached to a managed instance group in OS Management service
14+
15+
616
## 2.70.0 - 2023-09-05
717
### Added
818
- Support for queue channels in the Queue Service

lib/accessgovernancecp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-accessgovernancecp",
3-
"version": "2.70.0",
3+
"version": "2.70.1",
44
"description": "OCI NodeJS client for Access Governance Cp Service",
55
"repository": {
66
"type": "git",

lib/adm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-adm",
3-
"version": "2.70.0",
3+
"version": "2.70.1",
44
"description": "OCI NodeJS client for Adm Service",
55
"repository": {
66
"type": "git",

lib/aianomalydetection/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aianomalydetection",
3-
"version": "2.70.0",
3+
"version": "2.70.1",
44
"description": "OCI NodeJS client for Ai Anomaly Detection Service",
55
"repository": {
66
"type": "git",

lib/aidocument/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aidocument",
3-
"version": "2.70.0",
3+
"version": "2.70.1",
44
"description": "OCI NodeJS client for Ai Document Service",
55
"repository": {
66
"type": "git",

lib/ailanguage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-ailanguage",
3-
"version": "2.70.0",
3+
"version": "2.70.1",
44
"description": "OCI NodeJS client for Ai Language Service",
55
"repository": {
66
"type": "git",

lib/aispeech/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aispeech",
3-
"version": "2.70.0",
3+
"version": "2.70.1",
44
"description": "OCI NodeJS client for Ai Speech Service",
55
"repository": {
66
"type": "git",

lib/aivision/lib/model/analyze-image-result.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ export interface AnalyzeImageResult {
3131
*/
3232
"ontologyClasses"?: Array<model.OntologyClass>;
3333
"imageText"?: model.ImageText;
34+
/**
35+
* The detected faces.
36+
*/
37+
"detectedFaces"?: Array<model.Face>;
3438
/**
3539
* The image classification model version.
3640
*/
@@ -43,6 +47,10 @@ export interface AnalyzeImageResult {
4347
* The text detection model version.
4448
*/
4549
"textDetectionModelVersion"?: string;
50+
/**
51+
* The face detection model version.
52+
*/
53+
"faceDetectionModelVersion"?: string;
4654
/**
4755
* The errors encountered during image analysis.
4856
*/
@@ -70,6 +78,11 @@ export namespace AnalyzeImageResult {
7078
})
7179
: undefined,
7280
"imageText": obj.imageText ? model.ImageText.getJsonObj(obj.imageText) : undefined,
81+
"detectedFaces": obj.detectedFaces
82+
? obj.detectedFaces.map(item => {
83+
return model.Face.getJsonObj(item);
84+
})
85+
: undefined,
7386

7487
"errors": obj.errors
7588
? obj.errors.map(item => {
@@ -103,6 +116,11 @@ export namespace AnalyzeImageResult {
103116
"imageText": obj.imageText
104117
? model.ImageText.getDeserializedJsonObj(obj.imageText)
105118
: undefined,
119+
"detectedFaces": obj.detectedFaces
120+
? obj.detectedFaces.map(item => {
121+
return model.Face.getDeserializedJsonObj(item);
122+
})
123+
: undefined,
106124

107125
"errors": obj.errors
108126
? obj.errors.map(item => {

lib/aivision/lib/model/data-science-labeling-dataset.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface DataScienceLabelingDataset extends model.Dataset {
2121
/**
2222
* OCID of the Data Labeling dataset.
2323
*/
24-
"datasetId"?: string;
24+
"datasetId": string;
2525

2626
"datasetType": string;
2727
}
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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+
import * as model from "../model";
15+
import common = require("oci-common");
16+
17+
/**
18+
* The face detection parameters.
19+
*/
20+
export interface FaceDetectionFeature extends model.ImageFeature {
21+
/**
22+
* The maximum number of results to return. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
23+
*/
24+
"maxResults"?: number;
25+
/**
26+
* Whether or not return face landmarks.
27+
*/
28+
"shouldReturnLandmarks"?: boolean;
29+
30+
"featureType": string;
31+
}
32+
33+
export namespace FaceDetectionFeature {
34+
export function getJsonObj(obj: FaceDetectionFeature, isParentJsonObj?: boolean): object {
35+
const jsonObj = {
36+
...(isParentJsonObj ? obj : (model.ImageFeature.getJsonObj(obj) as FaceDetectionFeature)),
37+
...{}
38+
};
39+
40+
return jsonObj;
41+
}
42+
export const featureType = "FACE_DETECTION";
43+
export function getDeserializedJsonObj(
44+
obj: FaceDetectionFeature,
45+
isParentJsonObj?: boolean
46+
): object {
47+
const jsonObj = {
48+
...(isParentJsonObj
49+
? obj
50+
: (model.ImageFeature.getDeserializedJsonObj(obj) as FaceDetectionFeature)),
51+
...{}
52+
};
53+
54+
return jsonObj;
55+
}
56+
}

0 commit comments

Comments
 (0)