Skip to content

Commit 9c70752

Browse files
Releasing version 2.118.0
Releasing version 2.118.0
2 parents f69e3cf + c09195e commit 9c70752

File tree

375 files changed

+15277
-1645
lines changed

Some content is hidden

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

375 files changed

+15277
-1645
lines changed

CHANGELOG.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@ Change Log
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+
====================
7+
2.118.0 - 2023-12-12
8+
====================
9+
10+
Added
11+
-----
12+
* Support for changing compartments of configurations in the PostgreSQL service
13+
* Support for granular policies including compartments, resource types, and recommendations in the Optimizer service
14+
* Support for token exchanges in the Identity Domains service
15+
* Support for Apache HTTP server discovery and monitoring in the Stack Monitoring service
16+
* Support for resource locking in the Data Catalog service
17+
* Support for concurrency throttling in the Data Integration service
18+
* Support for reboot migrations for VMs on dedicated hosts in the Compute service
19+
* Support for connection routing method settings and subnet update in the GoldenGate service
20+
* Support for data discovery of commonly used sensitive types in the Data Safe service
21+
* Support for incremental extract and updates to the workflows in the Data Integration service
22+
23+
Breaking
24+
--------
25+
* Support for default retries on the operations of the Optimizer service
26+
627
====================
728
2.117.0 - 2023-12-04
829
====================

docs/api/data_catalog.rst

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

21+
oci.data_catalog.models.AddResourceLockDetails
2122
oci.data_catalog.models.AsynchronousExportGlossaryDetails
2223
oci.data_catalog.models.AsynchronousExportGlossaryResult
2324
oci.data_catalog.models.AsynchronousExportRequestDetails
@@ -146,6 +147,8 @@ Data Catalog
146147
oci.data_catalog.models.PropertyDefinition
147148
oci.data_catalog.models.RecommendationCollection
148149
oci.data_catalog.models.RecommendationDetails
150+
oci.data_catalog.models.RemoveResourceLockDetails
151+
oci.data_catalog.models.ResourceLock
149152
oci.data_catalog.models.RuleAttribute
150153
oci.data_catalog.models.RuleCollection
151154
oci.data_catalog.models.RuleSummary
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
AddResourceLockDetails
2+
======================
3+
4+
.. currentmodule:: oci.data_catalog.models
5+
6+
.. autoclass:: AddResourceLockDetails
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+
RemoveResourceLockDetails
2+
=========================
3+
4+
.. currentmodule:: oci.data_catalog.models
5+
6+
.. autoclass:: RemoveResourceLockDetails
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.data_catalog.models
5+
6+
.. autoclass:: ResourceLock
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

docs/api/data_integration.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,9 @@ Data Integration
341341
oci.data_integration.models.ImportRequest
342342
oci.data_integration.models.ImportRequestSummary
343343
oci.data_integration.models.ImportRequestSummaryCollection
344+
oci.data_integration.models.IncrementalDataEntityClause
345+
oci.data_integration.models.IncrementalFieldClause
346+
oci.data_integration.models.IncrementalReadConfig
344347
oci.data_integration.models.InputField
345348
oci.data_integration.models.InputLink
346349
oci.data_integration.models.InputPort
@@ -467,6 +470,7 @@ Data Integration
467470
oci.data_integration.models.Select
468471
oci.data_integration.models.SensitiveAttribute
469472
oci.data_integration.models.Shape
473+
oci.data_integration.models.ShapeDetails
470474
oci.data_integration.models.ShapeField
471475
oci.data_integration.models.Sort
472476
oci.data_integration.models.SortClause
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
IncrementalDataEntityClause
2+
===========================
3+
4+
.. currentmodule:: oci.data_integration.models
5+
6+
.. autoclass:: IncrementalDataEntityClause
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+
IncrementalFieldClause
2+
======================
3+
4+
.. currentmodule:: oci.data_integration.models
5+
6+
.. autoclass:: IncrementalFieldClause
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+
IncrementalReadConfig
2+
=====================
3+
4+
.. currentmodule:: oci.data_integration.models
5+
6+
.. autoclass:: IncrementalReadConfig
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+
ShapeDetails
2+
============
3+
4+
.. currentmodule:: oci.data_integration.models
5+
6+
.. autoclass:: ShapeDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

0 commit comments

Comments
 (0)