Skip to content

Commit 4efcac2

Browse files
Releasing version 2.114.0
Co-authored-by: Harsh Kumar <[email protected]>
1 parent 8db6c5d commit 4efcac2

File tree

452 files changed

+15373
-568
lines changed

Some content is hidden

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

452 files changed

+15373
-568
lines changed

CHANGELOG.md

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

55
The format is based on [Keep a Changelog](http://keepachangelog.com/).
6+
## 2.114.0 - 2025-07-29
7+
### Added
8+
- Support for the APIP Platform service
9+
- Support for resource locking for all resources in the API Gateway service
10+
- Support for optional parameters in the import and export dashboard APIs in the Management Dashboard service
11+
- Support for agent configurations and MACS extension configurations in the Application Performance Monitoring service
12+
- Support for specifying replication configuration when creating or updating a secret in the Vault service
13+
- Support for CPU architecture agnostic configurations in the PostgreSQL service
14+
- Support for creating, deploying, cloning, getting, listing, activating and deactivating model groups in the Data Science service
15+
- Support for creating, updating, getting, listing and deleting model group version history in the Data Science service
16+
- Support for uploading and downloading model group artifacts in the Data Science service
17+
- Support for listing the state of the deployed models associated with a model group in the Data Science service
18+
- Support for updating model group deployments in the Data Science service
19+
- Support for burstable shapes in data science notebooks, machine learning jobs and machine learning pipelines in the Data Science service
20+
- Support for multilingual text to speech for 8 more languages in the AI Speech service
21+
22+
### Breaking Changes
23+
- The field `languageCode` was changed from type `VoiceSummary.LanguageCode` to `string` in the model `VoiceSummary` in the AI Speech service
24+
625
## 2.113.0 - 2025-07-22
726
### Added
827
- Support for calling Oracle Cloud Infrastructure services in the `ap-batam-1` region

index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,3 +239,4 @@ export import distributeddatabase = require("oci-distributeddatabase");
239239
export import apiaccesscontrol = require("oci-apiaccesscontrol");
240240
export import wlms = require("oci-wlms");
241241
export import dbmulticloud = require("oci-dbmulticloud");
242+
export import apiplatform = require("oci-apiplatform");

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.113.0",
3+
"version": "2.114.0",
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.113.0",
3+
"version": "2.114.0",
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.113.0",
3+
"version": "2.114.0",
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.113.0",
3+
"version": "2.114.0",
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.113.0",
3+
"version": "2.114.0",
44
"description": "OCI NodeJS client for Ai Language Service",
55
"repository": {
66
"type": "git",

lib/aispeech/lib/client.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1440,6 +1440,7 @@ export class AIServiceSpeechClient {
14401440
const queryParams = {
14411441
"compartmentId": listVoicesRequest.compartmentId,
14421442
"modelName": listVoicesRequest.modelName,
1443+
"languageCode": listVoicesRequest.languageCode,
14431444
"displayName": listVoicesRequest.displayName
14441445
};
14451446

lib/aispeech/lib/model/customization-model-details.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ import * as model from "../model";
1515
import common = require("oci-common");
1616

1717
/**
18-
* Customization details.
18+
* Details of the base ASR model to train a Customization for.
1919
*/
2020
export interface CustomizationModelDetails {
2121
/**
22-
* Customization Domain
22+
* Domain of the ASR model
2323
*/
2424
"domain"?: CustomizationModelDetails.Domain;
2525
/**

lib/aispeech/lib/model/tts-oracle-speech-settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface TtsOracleSpeechSettings {
2121
/**
2222
* The format in which the input text has been supplied i.e., Text or SSML. The supported text types are:
2323
* - TEXT
24-
* - SSML
24+
* - SSML : This is only supported for en-US language.
2525
*
2626
*/
2727
"textType"?: TtsOracleSpeechSettings.TextType;

0 commit comments

Comments
 (0)