Skip to content

Commit d78439c

Browse files
Releasing version 2.155.0
Co-authored-by: Harsh Kumar <[email protected]>
1 parent 833081f commit d78439c

File tree

295 files changed

+34261
-129
lines changed

Some content is hidden

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

295 files changed

+34261
-129
lines changed

CHANGELOG.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ 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.155.0 - 2025-07-01
9+
====================
10+
11+
Added
12+
-----
13+
* Support for the Database MultiCloud service
14+
* Support for System Tags in the Database service
15+
* Support for PKCS11 Library Integration for Azure Key Store in the Database service
16+
* Support for changing subscription ID and the opc-dry-run parameter in the Database service
17+
* Support for listing all members of an Elastic Resource Pool for a provided Elastic Resource Pool leader in the Database service
18+
* Support for managing scheduled queries in the Application Performance Monitoring service
19+
* Support for Bring Your Own Key (BYOK) in the MySQL Heatwave service
20+
* Support for customer-initiated collection of diagnostic information in the Database Migration service
21+
22+
Breaking
23+
--------
24+
* The type of field `state` has been changed from string to `state` enum in the models `AutoActivateToggleStatus` and `AutoActivateStatus` in the Application Performance Monitoring service
25+
726
====================
827
2.154.3 - 2025-06-24
928
====================

docs/api/apm_traces.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ Apm Traces
88

99
oci.apm_traces.AttributesClient
1010
oci.apm_traces.QueryClient
11+
oci.apm_traces.ScheduledQueryClient
1112
oci.apm_traces.TraceClient
1213
oci.apm_traces.AttributesClientCompositeOperations
1314
oci.apm_traces.QueryClientCompositeOperations
15+
oci.apm_traces.ScheduledQueryClientCompositeOperations
1416
oci.apm_traces.TraceClientCompositeOperations
1517

1618
--------
@@ -24,6 +26,8 @@ Apm Traces
2426

2527
oci.apm_traces.models.AggregatedSnapshot
2628
oci.apm_traces.models.AggregatedStackTrace
29+
oci.apm_traces.models.Attribute
30+
oci.apm_traces.models.AttributeMetadata
2731
oci.apm_traces.models.AttributePinResponse
2832
oci.apm_traces.models.AttributeResponse
2933
oci.apm_traces.models.AttributeUnpinResponse
@@ -55,6 +59,10 @@ Apm Traces
5559
oci.apm_traces.models.BulkUpdateAttributeStatus
5660
oci.apm_traces.models.BulkUpdateNotesMetadata
5761
oci.apm_traces.models.BulkUpdateNotesStatus
62+
oci.apm_traces.models.CreateScheduledQueryDetails
63+
oci.apm_traces.models.CustomMetric
64+
oci.apm_traces.models.Log
65+
oci.apm_traces.models.ObjectStorage
5866
oci.apm_traces.models.QueryDetails
5967
oci.apm_traces.models.QueryResultMetadataSummary
6068
oci.apm_traces.models.QueryResultResponse
@@ -66,16 +74,22 @@ Apm Traces
6674
oci.apm_traces.models.QueryResultsTopologyInfo
6775
oci.apm_traces.models.QueryResultsTopologyNodeInfo
6876
oci.apm_traces.models.QuickPickSummary
77+
oci.apm_traces.models.ScheduledQuery
78+
oci.apm_traces.models.ScheduledQueryCollection
79+
oci.apm_traces.models.ScheduledQueryProcessingConfig
80+
oci.apm_traces.models.ScheduledQuerySummary
6981
oci.apm_traces.models.SnapshotDetail
7082
oci.apm_traces.models.Span
7183
oci.apm_traces.models.SpanLog
7284
oci.apm_traces.models.SpanLogCollection
7385
oci.apm_traces.models.SpanSnapshot
7486
oci.apm_traces.models.StackTraceElement
87+
oci.apm_traces.models.Streaming
7588
oci.apm_traces.models.Tag
7689
oci.apm_traces.models.TagMetadata
7790
oci.apm_traces.models.ThreadSnapshot
7891
oci.apm_traces.models.Trace
7992
oci.apm_traces.models.TraceServiceSummary
8093
oci.apm_traces.models.TraceSnapshot
8194
oci.apm_traces.models.TraceSpanSummary
95+
oci.apm_traces.models.UpdateScheduledQueryDetails
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
ScheduledQueryClient
2+
====================
3+
4+
.. currentmodule:: oci.apm_traces
5+
6+
.. autoclass:: ScheduledQueryClient
7+
:special-members: __init__
8+
:members:
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
ScheduledQueryClientCompositeOperations
2+
=======================================
3+
4+
.. currentmodule:: oci.apm_traces
5+
6+
.. autoclass:: ScheduledQueryClientCompositeOperations
7+
:special-members: __init__
8+
:members:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Attribute
2+
=========
3+
4+
.. currentmodule:: oci.apm_traces.models
5+
6+
.. autoclass:: Attribute
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+
AttributeMetadata
2+
=================
3+
4+
.. currentmodule:: oci.apm_traces.models
5+
6+
.. autoclass:: AttributeMetadata
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+
CreateScheduledQueryDetails
2+
===========================
3+
4+
.. currentmodule:: oci.apm_traces.models
5+
6+
.. autoclass:: CreateScheduledQueryDetails
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+
CustomMetric
2+
============
3+
4+
.. currentmodule:: oci.apm_traces.models
5+
6+
.. autoclass:: CustomMetric
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+
Log
2+
===
3+
4+
.. currentmodule:: oci.apm_traces.models
5+
6+
.. autoclass:: Log
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+
ObjectStorage
2+
=============
3+
4+
.. currentmodule:: oci.apm_traces.models
5+
6+
.. autoclass:: ObjectStorage
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

0 commit comments

Comments
 (0)