Skip to content

Commit 9075739

Browse files
authored
Merge pull request #411 from oracle/release_2025-10-28
Releasing version 2.120.0
2 parents 43ba4dc + d39fe01 commit 9075739

File tree

504 files changed

+11234
-1259
lines changed

Some content is hidden

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

504 files changed

+11234
-1259
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
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.120.0 - 2025-10-28
7+
### Added
8+
- Support for calling Oracle Cloud Infrastructure services in the eu-madrid-3 region
9+
- Support for Zero Trust Packet Routing (ZPR) security attributes for mount targets in the File Storage service
10+
- Support for Object Storage bi-directional sync in the File Storage with Lustre service
11+
- Support for renaming autonomous databases in the Database service
12+
- Support for vanity connection urls and vanity url details when updating autonomous databases in the Database service
13+
- Support for Apple as a social Identity Domains Provider (IDP) in the Identity Domains service
14+
- Support for APEX cloud integrations in the Database Tools service
15+
- Support for automatic disaster recovery based on database events in the Disaster Recovery service 
16+
- Support for providing non-translation words in the AI Language service  
17+
- Support for new mode for detecting PII entities in the AI Language service
18+
- Support for online conversion of IPv4 load balancer to dual stack IPv4 and IPv6 load balancer in the Load Balancer service
19+
- Support for compute hosts in subtree when listing compute hosts in the Compute service
20+
- Support for additional parameters when creating IPv4 Flex CIDR in the Networking service
21+
- Support for additional parameters when creating subnet with multiple CIDR blocks in the Networking service  
22+
23+
### Breaking Changes
24+
- The field `computeType` was removed in the models `CreateEndpointDetails`,`EndpointSummary`, and `Endpoint` in the AI Language service
25+
626
## 2.119.1 - 2025-10-21
727
### Added
828
- Support for LDAP schema version RFC2307bis when creating and updating mount targets in the File Storage 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.119.1",
3+
"version": "2.120.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.119.1",
3+
"version": "2.120.0",
44
"description": "OCI NodeJS client for Adm Service",
55
"repository": {
66
"type": "git",

lib/aidataplatform/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aidataplatform",
3-
"version": "2.119.1",
3+
"version": "2.120.0",
44
"description": "OCI NodeJS client for Ai Data Platform 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.119.1",
3+
"version": "2.120.0",
44
"description": "OCI NodeJS client for Ai Document Service",
55
"repository": {
66
"type": "git",

lib/ailanguage/lib/model/create-endpoint-details.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ export interface CreateEndpointDetails {
2525
* A user-friendly display name for the resource. It should be unique and can be modified. Avoid entering confidential information.
2626
*/
2727
"displayName"?: string;
28-
/**
29-
* Compute infra type for endpoint.
30-
*/
31-
"computeType"?: CreateEndpointDetails.ComputeType;
3228
/**
3329
* Unique name across user tenancy in a region to identify an endpoint to be used for inferencing.
3430
*/
@@ -64,11 +60,6 @@ export interface CreateEndpointDetails {
6460
}
6561

6662
export namespace CreateEndpointDetails {
67-
export enum ComputeType {
68-
Cpu = "CPU",
69-
Gpu = "GPU"
70-
}
71-
7263
export function getJsonObj(obj: CreateEndpointDetails): object {
7364
const jsonObj = { ...obj, ...{} };
7465

lib/ailanguage/lib/model/endpoint-summary.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ export interface EndpointSummary {
2929
* Unique name across user tenancy in a region to identify an endpoint to be used for inferencing.
3030
*/
3131
"alias"?: string;
32-
/**
33-
* Compute infra type for endpoint.
34-
*/
35-
"computeType"?: EndpointSummary.ComputeType;
3632
/**
3733
* A user-friendly display name for the resource. It should be unique and can be modified. Avoid entering confidential information.
3834
*/
@@ -90,16 +86,6 @@ export interface EndpointSummary {
9086
}
9187

9288
export namespace EndpointSummary {
93-
export enum ComputeType {
94-
Cpu = "CPU",
95-
Gpu = "GPU",
96-
/**
97-
* This value is used if a service returns a value for this enum that is not recognized by this
98-
* version of the SDK.
99-
*/
100-
UnknownValue = "UNKNOWN_VALUE"
101-
}
102-
10389
export function getJsonObj(obj: EndpointSummary): object {
10490
const jsonObj = { ...obj, ...{} };
10591

lib/ailanguage/lib/model/endpoint.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ export interface Endpoint {
2929
* Unique name across user tenancy in a region to identify an endpoint to be used for inferencing.
3030
*/
3131
"alias"?: string;
32-
/**
33-
* Compute infra type for endpoint.
34-
*/
35-
"computeType"?: Endpoint.ComputeType;
3632
/**
3733
* A user-friendly display name for the resource. It should be unique and can be modified. Avoid entering confidential information.
3834
*/
@@ -94,16 +90,6 @@ export interface Endpoint {
9490
}
9591

9692
export namespace Endpoint {
97-
export enum ComputeType {
98-
Cpu = "CPU",
99-
Gpu = "GPU",
100-
/**
101-
* This value is used if a service returns a value for this enum that is not recognized by this
102-
* version of the SDK.
103-
*/
104-
UnknownValue = "UNKNOWN_VALUE"
105-
}
106-
10793
export enum LifecycleState {
10894
Deleting = "DELETING",
10995
Deleted = "DELETED",

lib/ailanguage/lib/model/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,8 @@ import * as ObjectStoragePrefixLocation from "./object-storage-prefix-location";
273273
export import ObjectStoragePrefixLocation = ObjectStoragePrefixLocation.ObjectStoragePrefixLocation;
274274
import * as PiiEntityMask from "./pii-entity-mask";
275275
export import PiiEntityMask = PiiEntityMask.PiiEntityMask;
276+
import * as PiiEntityRelexify from "./pii-entity-relexify";
277+
export import PiiEntityRelexify = PiiEntityRelexify.PiiEntityRelexify;
276278
import * as PiiEntityRemove from "./pii-entity-remove";
277279
export import PiiEntityRemove = PiiEntityRemove.PiiEntityRemove;
278280
import * as PiiEntityReplace from "./pii-entity-replace";

lib/ailanguage/lib/model/pii-entity-masking.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ export namespace PiiEntityMasking {
3939

4040
if (obj && "mode" in obj && obj.mode) {
4141
switch (obj.mode) {
42+
case "RELEXIFY":
43+
return model.PiiEntityRelexify.getJsonObj(
44+
<model.PiiEntityRelexify>(<object>jsonObj),
45+
true
46+
);
4247
case "REPLACE":
4348
return model.PiiEntityReplace.getJsonObj(<model.PiiEntityReplace>(<object>jsonObj), true);
4449
case "REMOVE":
@@ -56,6 +61,11 @@ export namespace PiiEntityMasking {
5661

5762
if (obj && "mode" in obj && obj.mode) {
5863
switch (obj.mode) {
64+
case "RELEXIFY":
65+
return model.PiiEntityRelexify.getDeserializedJsonObj(
66+
<model.PiiEntityRelexify>(<object>jsonObj),
67+
true
68+
);
5969
case "REPLACE":
6070
return model.PiiEntityReplace.getDeserializedJsonObj(
6171
<model.PiiEntityReplace>(<object>jsonObj),

0 commit comments

Comments
 (0)