Skip to content

Commit 6bca242

Browse files
Releasing version 2.160.0
Releasing version 2.160.0
2 parents 646f14d + 06bac8a commit 6bca242

File tree

57 files changed

+4505
-948
lines changed

Some content is hidden

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

57 files changed

+4505
-948
lines changed

CHANGELOG.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ 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/>`_.
66

7+
====================
8+
2.160.0 - 2025-09-09
9+
====================
10+
11+
Added
12+
-----
13+
* Support for resource locking in the Email Delivery service
14+
* Support for setting backup retention policies while creating and updating autonomous container databases in the Database service
15+
* Support for deleting associated long term backups while deleting the autonomous databases in the Database service
16+
* Support for listing autonomous database backups by backup destination id and infrastructure type in the Database service
17+
* Support for listing autonomous database backups by key store id and infrastructure type in the Database service
18+
* Support for undeleting autonomous databases on public cloud and Cloud at Customer in the Database service
19+
* Support for additional database edition query parameters in the Database service
20+
21+
Breaking
22+
--------
23+
* Enum value `ENTERPRISE_EDITION_EXTREME` was renamed to `ENTERPRISE_EDITION_EXTREME_PERFORMANCE` in the Database service
24+
725
====================
826
2.159.1 - 2025-09-02
927
====================

docs/api/database.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Database
3131
oci.database.models.ApplicationVip
3232
oci.database.models.ApplicationVipSummary
3333
oci.database.models.AssociatedDatabaseDetails
34+
oci.database.models.AssociatedLongTermBackup
3435
oci.database.models.AutomatedMountDetails
3536
oci.database.models.AutonomousContainerDatabase
3637
oci.database.models.AutonomousContainerDatabaseBackup
@@ -449,6 +450,7 @@ Database
449450
oci.database.models.SchedulingWindowSummary
450451
oci.database.models.SelfMountDetails
451452
oci.database.models.SetKeyVersionDetails
453+
oci.database.models.SourceDatabaseDetails
452454
oci.database.models.StackMonitoringConfig
453455
oci.database.models.StoragePerformanceDetails
454456
oci.database.models.SwitchOverDataGuardDetails
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
AssociatedLongTermBackup
2+
========================
3+
4+
.. currentmodule:: oci.database.models
5+
6+
.. autoclass:: AssociatedLongTermBackup
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
SourceDatabaseDetails
2+
=====================
3+
4+
.. currentmodule:: oci.database.models
5+
6+
.. autoclass:: SourceDatabaseDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

docs/api/email.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Email
1818
:nosignatures:
1919
:template: autosummary/model_class.rst
2020

21+
oci.email.models.AddLockDetails
2122
oci.email.models.ChangeEmailDomainCompartmentDetails
2223
oci.email.models.ChangeSenderCompartmentDetails
2324
oci.email.models.Configuration
@@ -35,6 +36,8 @@ Email
3536
oci.email.models.EmailReturnPath
3637
oci.email.models.EmailReturnPathCollection
3738
oci.email.models.EmailReturnPathSummary
39+
oci.email.models.RemoveLockDetails
40+
oci.email.models.ResourceLock
3841
oci.email.models.Sender
3942
oci.email.models.SenderSummary
4043
oci.email.models.Suppression
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
AddLockDetails
2+
==============
3+
4+
.. currentmodule:: oci.email.models
5+
6+
.. autoclass:: AddLockDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
RemoveLockDetails
2+
=================
3+
4+
.. currentmodule:: oci.email.models
5+
6+
.. autoclass:: RemoveLockDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
ResourceLock
2+
============
3+
4+
.. currentmodule:: oci.email.models
5+
6+
.. autoclass:: ResourceLock
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

examples/showoci/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on `Keep a Changelog <http://keepachangelog.com/>`_.
66

77
=====================
8+
25.08.26 - 25.08.26
9+
=====================
10+
* Added security_groups_ids to compute csv
11+
* Added additional parameters for OIC
12+
813
25.07.15 - 25.07.15
914
=====================
1015
* Full Stack DR added

examples/showoci/showoci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
import os
127127
import time
128128

129-
version = "25.07.15"
129+
version = "25.08.26"
130130

131131
##########################################################################
132132
# check OCI version

0 commit comments

Comments
 (0)