Skip to content

Commit d66bbe7

Browse files
Releasing version
Releasing version
2 parents dc464ad + 5fdb10d commit d66bbe7

File tree

33,991 files changed

+84407
-36982
lines changed

Some content is hidden

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

33,991 files changed

+84407
-36982
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,39 @@ 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+
## 3.78.1 - 2026-01-20
7+
### Added
8+
- Support for the Private Service Access (PSA) service
9+
- Support for ApiKey in the Generative AI service
10+
- Support for Cohere v2 APIs for Chat, Embed and Rerank endpoints in the Generative AI Inference service
11+
- Support for new generic chat request parameters in the Generative AI inference service
12+
- Support for summarized thinking traces in Generative AI inference service
13+
- Support for importing Transportable Tablespace in the Database service
14+
- Support for old Execution window to reference the new Execution window in the Database service
15+
- Support for the PARTIAL_SUCCESS lifecycle state and COMPLETE and FAILED patching state in maintenance run summary in the Database service
16+
- Support for the CANCELED_BY_OPS lifecycle substate in execution action summary in the Database service
17+
- Support for adding new scheduled action types for Exadata Fleet Update service (FPPCS) requirement in the Database service
18+
- Support for skiping datapatch and closed PDBs and applying datapatch options in ExaCS and ExaCC in the Database service
19+
- Support for updating the wallet for the specified Autonomous AI Database in the Database service
20+
- Support for database connection bundle and Service
21+
- Owned Certificates in DB Cloud Databases in the Database service
22+
- Support for AWS KMS in Autonomous Dedicated Database in the Database service
23+
- Support for Flexible Domain Group Resourcing in the OCI Internet of Things (OCI IoT) service
24+
25+
## 3.78.0 - 2026-01-12
26+
### Added
27+
- Support for Point-In-Time Recovery (PITR) as iRestore using timestamps in the Database service
28+
- Support for selecting a maintenance window when enabling dedicated storage on a Resource Pool leader in the Database service
29+
- Support for pausing and resuming maintenance patching in the Database service
30+
- Support for providing the OCID of the standby local Autonomous Data Guard (ADG) Resource Pool leader when enabling local ADG on a Resource Pool with dedicated storage in the Database service
31+
- Support for Security Attributes in the DevOps Deploy service
32+
- Support for platform configuration soft links with new optional parameters in the Fleet Application Management service
33+
- Support for Database Console operations in the MySQL HeatWave service
34+
35+
### Breaking Changes
36+
- The enum `SortByEnum` was removed from the Budget service
37+
- The models `GetPullRequestChangeSummaryMetricsRequest`, `ListPullRequestCommitsRequest`, `ListPullRequestFileChangesRequest`, `PullRequestChangeSummaryMetrics`, `PullRequestFileChangeSummary`, and `ResolvePullRequestCommentRequest` were removed from the Devops Deploy service
38+
639
## 3.77.2 - 2025-12-16
740
### Added
841
- Support for Batch service

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,13 @@ For basic set up, see [Getting Started](https://docs.oracle.com/iaas/Content/API
2525
For details on compatibility, advanced configurations, and add-ons, see [Configuration](https://docs.oracle.com/iaas/Content/API/SDKDocs/javasdkconfig.htm).
2626

2727
- *Circuit Breaker*: By default, circuit breaker feature is enabled, if it is not expected, please explicitly set the environment variable:
28-
```
29-
export OCI_SDK_DEFAULT_CIRCUITBREAKER_ENABLED=FALSE
30-
```
28+
```
29+
export OCI_SDK_DEFAULT_CIRCUITBREAKER_ENABLED=FALSE
30+
```
31+
- *Token Refresh Retries*: By default, the token refresh retires are enabled for 401s and processing exceptions. You have the flexibility to disable these retries if needed. This can be achieved by setting the system property
32+
```
33+
System.setProperty("oci.javasdk.token.refresh.enabled", "false");
34+
```
3135
3236
## Changes Introduced In OCI Java SDK `3.x.y`
3337

bmc-accessgovernancecp/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.oracle.oci.sdk</groupId>
66
<artifactId>oci-java-sdk</artifactId>
7-
<version>3.77.2</version>
7+
<version>3.78.1</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-accessgovernancecp</artifactId>
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.oracle.oci.sdk</groupId>
1717
<artifactId>oci-java-sdk-common</artifactId>
18-
<version>3.77.2</version>
18+
<version>3.78.1</version>
1919
</dependency>
2020
</dependencies>
2121
</project>

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCP.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved.
33
* 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.
44
*/
55
package com.oracle.bmc.accessgovernancecp;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPAsync.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved.
33
* 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.
44
*/
55
package com.oracle.bmc.accessgovernancecp;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPAsyncClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved.
33
* 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.
44
*/
55
package com.oracle.bmc.accessgovernancecp;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved.
33
* 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.
44
*/
55
package com.oracle.bmc.accessgovernancecp;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPPaginators.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved.
33
* 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.
44
*/
55
package com.oracle.bmc.accessgovernancecp;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPWaiters.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved.
33
* 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.
44
*/
55
package com.oracle.bmc.accessgovernancecp;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/ChangeGovernanceInstanceCompartmentDetails.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved.
33
* 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.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

0 commit comments

Comments
 (0)