Skip to content

Commit 43c99e7

Browse files
committed
Releasing version 2.10.6
1 parent 4b42540 commit 43c99e7

File tree

41 files changed

+4273
-85
lines changed

Some content is hidden

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

41 files changed

+4273
-85
lines changed

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ 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.10.6 - 2020-02-25
8+
====================
9+
10+
Added
11+
-----
12+
* Support for restarting autonomous databases in the Database service
13+
* Support for private endpoints on autonomous databases in the Database service
14+
* Support for IP-based policies in the Identity service
15+
* Support for management of OAuth 2.0 client credentials in the Identity service
16+
* Support for OCI Functions as a subscription protocol in the Notifications service
17+
618
====================
719
2.10.5 - 2020-02-18
820
====================

docs/api/identity.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ Identity
3434
oci.identity.models.CreateGroupDetails
3535
oci.identity.models.CreateIdentityProviderDetails
3636
oci.identity.models.CreateIdpGroupMappingDetails
37+
oci.identity.models.CreateNetworkSourceDetails
38+
oci.identity.models.CreateOAuth2ClientCredentialDetails
3739
oci.identity.models.CreatePolicyDetails
3840
oci.identity.models.CreateRegionSubscriptionDetails
3941
oci.identity.models.CreateSaml2IdentityProviderDetails
@@ -49,6 +51,7 @@ Identity
4951
oci.identity.models.DynamicGroup
5052
oci.identity.models.EnumTagDefinitionValidator
5153
oci.identity.models.FaultDomain
54+
oci.identity.models.FullyQualifiedScope
5255
oci.identity.models.Group
5356
oci.identity.models.IdentityProvider
5457
oci.identity.models.IdentityProviderGroupSummary
@@ -57,6 +60,11 @@ Identity
5760
oci.identity.models.MfaTotpDeviceSummary
5861
oci.identity.models.MfaTotpToken
5962
oci.identity.models.MoveCompartmentDetails
63+
oci.identity.models.NetworkSources
64+
oci.identity.models.NetworkSourcesSummary
65+
oci.identity.models.NetworkSourcesVirtualSourceList
66+
oci.identity.models.OAuth2ClientCredential
67+
oci.identity.models.OAuth2ClientCredentialSummary
6068
oci.identity.models.PasswordPolicy
6169
oci.identity.models.Policy
6270
oci.identity.models.Region
@@ -87,6 +95,8 @@ Identity
8795
oci.identity.models.UpdateGroupDetails
8896
oci.identity.models.UpdateIdentityProviderDetails
8997
oci.identity.models.UpdateIdpGroupMappingDetails
98+
oci.identity.models.UpdateNetworkSourceDetails
99+
oci.identity.models.UpdateOAuth2ClientCredentialDetails
90100
oci.identity.models.UpdatePolicyDetails
91101
oci.identity.models.UpdateSaml2IdentityProviderDetails
92102
oci.identity.models.UpdateSmtpCredentialDetails
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
CreateNetworkSourceDetails
2+
==========================
3+
4+
.. currentmodule:: oci.identity.models
5+
6+
.. autoclass:: CreateNetworkSourceDetails
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+
CreateOAuth2ClientCredentialDetails
2+
===================================
3+
4+
.. currentmodule:: oci.identity.models
5+
6+
.. autoclass:: CreateOAuth2ClientCredentialDetails
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+
FullyQualifiedScope
2+
===================
3+
4+
.. currentmodule:: oci.identity.models
5+
6+
.. autoclass:: FullyQualifiedScope
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+
NetworkSources
2+
==============
3+
4+
.. currentmodule:: oci.identity.models
5+
6+
.. autoclass:: NetworkSources
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+
NetworkSourcesSummary
2+
=====================
3+
4+
.. currentmodule:: oci.identity.models
5+
6+
.. autoclass:: NetworkSourcesSummary
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+
NetworkSourcesVirtualSourceList
2+
===============================
3+
4+
.. currentmodule:: oci.identity.models
5+
6+
.. autoclass:: NetworkSourcesVirtualSourceList
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+
OAuth2ClientCredential
2+
======================
3+
4+
.. currentmodule:: oci.identity.models
5+
6+
.. autoclass:: OAuth2ClientCredential
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+
OAuth2ClientCredentialSummary
2+
=============================
3+
4+
.. currentmodule:: oci.identity.models
5+
6+
.. autoclass:: OAuth2ClientCredentialSummary
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

0 commit comments

Comments
 (0)