Skip to content

Commit be755fd

Browse files
authored
Releasing version 2.49.1
Releasing version 2.49.1
2 parents a37f5fb + 3d1f329 commit be755fd

File tree

214 files changed

+29502
-5209
lines changed

Some content is hidden

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

214 files changed

+29502
-5209
lines changed

CHANGELOG.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@ 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.49.1 - 2021-11-02
8+
====================
9+
10+
Added
11+
-----
12+
* Support for the Database Tools service
13+
* Support for scan listener port TCP and TCP SSL on cloud VM clusters in the Database service
14+
* Support for domains in the Identity service
15+
* Support for redeemable users and support rewards in the Usage service
16+
* Support for calling Oracle Cloud Infrastructure services in the ap-singapore-1 and eu-marseille-1 regions
17+
18+
Changed
19+
-------
20+
* Endpoint for Identity service changed to include `.oci` subdomain
21+
622
====================
723
2.49.0 - 2021-10-26
824
====================

docs/api/database_tools.rst

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
Database Tools
2+
==============
3+
4+
.. autosummary::
5+
:toctree: database_tools/client
6+
:nosignatures:
7+
:template: autosummary/service_client.rst
8+
9+
oci.database_tools.DatabaseToolsClient
10+
oci.database_tools.DatabaseToolsClientCompositeOperations
11+
12+
--------
13+
Models
14+
--------
15+
16+
.. autosummary::
17+
:toctree: database_tools/models
18+
:nosignatures:
19+
:template: autosummary/model_class.rst
20+
21+
oci.database_tools.models.ChangeDatabaseToolsConnectionCompartmentDetails
22+
oci.database_tools.models.ChangeDatabaseToolsPrivateEndpointCompartmentDetails
23+
oci.database_tools.models.CreateDatabaseToolsConnectionDetails
24+
oci.database_tools.models.CreateDatabaseToolsConnectionOracleDatabaseDetails
25+
oci.database_tools.models.CreateDatabaseToolsPrivateEndpointDetails
26+
oci.database_tools.models.CreateDatabaseToolsRelatedResourceDetails
27+
oci.database_tools.models.DatabaseToolsAllowedNetworkSources
28+
oci.database_tools.models.DatabaseToolsConnection
29+
oci.database_tools.models.DatabaseToolsConnectionCollection
30+
oci.database_tools.models.DatabaseToolsConnectionOracleDatabase
31+
oci.database_tools.models.DatabaseToolsConnectionOracleDatabaseSummary
32+
oci.database_tools.models.DatabaseToolsConnectionSummary
33+
oci.database_tools.models.DatabaseToolsEndpointService
34+
oci.database_tools.models.DatabaseToolsEndpointServiceCollection
35+
oci.database_tools.models.DatabaseToolsEndpointServiceSummary
36+
oci.database_tools.models.DatabaseToolsKeyStore
37+
oci.database_tools.models.DatabaseToolsKeyStoreContent
38+
oci.database_tools.models.DatabaseToolsKeyStoreContentDetails
39+
oci.database_tools.models.DatabaseToolsKeyStoreContentSecretId
40+
oci.database_tools.models.DatabaseToolsKeyStoreContentSecretIdDetails
41+
oci.database_tools.models.DatabaseToolsKeyStoreContentSecretIdSummary
42+
oci.database_tools.models.DatabaseToolsKeyStoreContentSummary
43+
oci.database_tools.models.DatabaseToolsKeyStoreDetails
44+
oci.database_tools.models.DatabaseToolsKeyStorePassword
45+
oci.database_tools.models.DatabaseToolsKeyStorePasswordDetails
46+
oci.database_tools.models.DatabaseToolsKeyStorePasswordSecretId
47+
oci.database_tools.models.DatabaseToolsKeyStorePasswordSecretIdDetails
48+
oci.database_tools.models.DatabaseToolsKeyStorePasswordSecretIdSummary
49+
oci.database_tools.models.DatabaseToolsKeyStorePasswordSummary
50+
oci.database_tools.models.DatabaseToolsKeyStoreSummary
51+
oci.database_tools.models.DatabaseToolsPrivateEndpoint
52+
oci.database_tools.models.DatabaseToolsPrivateEndpointCollection
53+
oci.database_tools.models.DatabaseToolsPrivateEndpointReverseConnectionConfiguration
54+
oci.database_tools.models.DatabaseToolsPrivateEndpointReverseConnectionsSourceIp
55+
oci.database_tools.models.DatabaseToolsPrivateEndpointSummary
56+
oci.database_tools.models.DatabaseToolsRelatedResource
57+
oci.database_tools.models.DatabaseToolsUserPassword
58+
oci.database_tools.models.DatabaseToolsUserPasswordDetails
59+
oci.database_tools.models.DatabaseToolsUserPasswordSecretId
60+
oci.database_tools.models.DatabaseToolsUserPasswordSecretIdDetails
61+
oci.database_tools.models.DatabaseToolsUserPasswordSecretIdSummary
62+
oci.database_tools.models.DatabaseToolsUserPasswordSummary
63+
oci.database_tools.models.DatabaseToolsVirtualSource
64+
oci.database_tools.models.UpdateDatabaseToolsConnectionDetails
65+
oci.database_tools.models.UpdateDatabaseToolsConnectionOracleDatabaseDetails
66+
oci.database_tools.models.UpdateDatabaseToolsPrivateEndpointDetails
67+
oci.database_tools.models.UpdateDatabaseToolsRelatedResourceDetails
68+
oci.database_tools.models.ValidateDatabaseToolsConnectionDetails
69+
oci.database_tools.models.ValidateDatabaseToolsConnectionOracleDatabaseDetails
70+
oci.database_tools.models.ValidateDatabaseToolsConnectionOracleDatabaseResult
71+
oci.database_tools.models.ValidateDatabaseToolsConnectionResult
72+
oci.database_tools.models.WorkRequest
73+
oci.database_tools.models.WorkRequestCollection
74+
oci.database_tools.models.WorkRequestError
75+
oci.database_tools.models.WorkRequestErrorCollection
76+
oci.database_tools.models.WorkRequestLogEntry
77+
oci.database_tools.models.WorkRequestLogEntryCollection
78+
oci.database_tools.models.WorkRequestResource
79+
oci.database_tools.models.WorkRequestSummary
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
DatabaseToolsClient
2+
===================
3+
4+
.. currentmodule:: oci.database_tools
5+
6+
.. autoclass:: DatabaseToolsClient
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+
DatabaseToolsClientCompositeOperations
2+
======================================
3+
4+
.. currentmodule:: oci.database_tools
5+
6+
.. autoclass:: DatabaseToolsClientCompositeOperations
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+
ChangeDatabaseToolsConnectionCompartmentDetails
2+
===============================================
3+
4+
.. currentmodule:: oci.database_tools.models
5+
6+
.. autoclass:: ChangeDatabaseToolsConnectionCompartmentDetails
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+
ChangeDatabaseToolsPrivateEndpointCompartmentDetails
2+
====================================================
3+
4+
.. currentmodule:: oci.database_tools.models
5+
6+
.. autoclass:: ChangeDatabaseToolsPrivateEndpointCompartmentDetails
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+
CreateDatabaseToolsConnectionDetails
2+
====================================
3+
4+
.. currentmodule:: oci.database_tools.models
5+
6+
.. autoclass:: CreateDatabaseToolsConnectionDetails
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+
CreateDatabaseToolsConnectionOracleDatabaseDetails
2+
==================================================
3+
4+
.. currentmodule:: oci.database_tools.models
5+
6+
.. autoclass:: CreateDatabaseToolsConnectionOracleDatabaseDetails
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+
CreateDatabaseToolsPrivateEndpointDetails
2+
=========================================
3+
4+
.. currentmodule:: oci.database_tools.models
5+
6+
.. autoclass:: CreateDatabaseToolsPrivateEndpointDetails
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+
CreateDatabaseToolsRelatedResourceDetails
2+
=========================================
3+
4+
.. currentmodule:: oci.database_tools.models
5+
6+
.. autoclass:: CreateDatabaseToolsRelatedResourceDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

0 commit comments

Comments
 (0)