Skip to content

Commit c67427d

Browse files
authored
Merge pull request #205 from oracle/release_2020-01-14
Releasing version 2.10.0
2 parents 10145e4 + e5a2896 commit c67427d

File tree

77 files changed

+2623
-445
lines changed

Some content is hidden

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

77 files changed

+2623
-445
lines changed

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@ 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.0 - 2020-01-14
8+
====================
9+
10+
Added
11+
-----
12+
* Support for a description field on route rules and security rules in the Networking service
13+
* Support for starting and stopping Digital Assistant instances in the Digital Assistant service
14+
* Support for shared database homes on Exadata, bare metal, and virtual machine instances in the Database service
15+
* Support for tracking a number of Database service operations through the Work Requests service
16+
17+
Breaking
18+
--------
19+
* Field `db_home_id` in `list_databases` from database service is changed from required to optional
20+
621
====================
722
2.9.0 - 2020-01-07
823
====================

docs/api/database.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ Database
6363
oci.database.models.CreateDataGuardAssociationDetails
6464
oci.database.models.CreateDataGuardAssociationToExistingDbSystemDetails
6565
oci.database.models.CreateDataGuardAssociationWithNewDbSystemDetails
66+
oci.database.models.CreateDatabaseBase
6667
oci.database.models.CreateDatabaseDetails
6768
oci.database.models.CreateDatabaseFromBackupDetails
6869
oci.database.models.CreateDbHomeBase
@@ -74,6 +75,7 @@ Database
7475
oci.database.models.CreateExadataInfrastructureDetails
7576
oci.database.models.CreateExternalBackupJobDetails
7677
oci.database.models.CreateNFSBackupDestinationDetails
78+
oci.database.models.CreateNewDatabaseDetails
7779
oci.database.models.CreateRecoveryApplianceBackupDestinationDetails
7880
oci.database.models.CreateVmClusterDetails
7981
oci.database.models.DataGuardAssociation
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
CreateDatabaseBase
2+
==================
3+
4+
.. currentmodule:: oci.database.models
5+
6+
.. autoclass:: CreateDatabaseBase
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+
CreateNewDatabaseDetails
2+
========================
3+
4+
.. currentmodule:: oci.database.models
5+
6+
.. autoclass:: CreateNewDatabaseDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ autodocsumm==0.1.11
22
certifi
33
configparser==3.5.0
44
coverage==4.5.2
5-
cryptography==2.5
5+
cryptography==2.8
66
flake8==3.6.0
77
mock==2.0.0
88
pyOpenSSL==18.0.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def open_relative(*path):
3131
requires = [
3232
"certifi",
3333
"configparser>=3.5.0b1",
34-
"cryptography>=2.1.4",
34+
"cryptography==2.8",
3535
"pyOpenSSL>=17.5.0",
3636
"python-dateutil>=2.5.3,<3.0.0",
3737
"pytz>=2016.10",

src/oci/analytics/analytics_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self, config, **kwargs):
3535
need to specify a service endpoint.
3636
3737
:param timeout: (optional)
38-
The connection and read timeouts for the client. The default is that the client never times out. This keyword argument can be provided
38+
The connection and read timeouts for the client. The default values are connection timeout 10 seconds and read timeout 60 seconds. This keyword argument can be provided
3939
as a single float, in which case the value provided is used for both the read and connection timeouts, or as a tuple of two floats. If
4040
a tuple is provided then the first value is used as the connection timeout and the second value as the read timeout.
4141
:type timeout: float or tuple(float, float)

src/oci/announcements_service/announcement_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self, config, **kwargs):
3535
need to specify a service endpoint.
3636
3737
:param timeout: (optional)
38-
The connection and read timeouts for the client. The default is that the client never times out. This keyword argument can be provided
38+
The connection and read timeouts for the client. The default values are connection timeout 10 seconds and read timeout 60 seconds. This keyword argument can be provided
3939
as a single float, in which case the value provided is used for both the read and connection timeouts, or as a tuple of two floats. If
4040
a tuple is provided then the first value is used as the connection timeout and the second value as the read timeout.
4141
:type timeout: float or tuple(float, float)

src/oci/apigateway/deployment_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(self, config, **kwargs):
3737
need to specify a service endpoint.
3838
3939
:param timeout: (optional)
40-
The connection and read timeouts for the client. The default is that the client never times out. This keyword argument can be provided
40+
The connection and read timeouts for the client. The default values are connection timeout 10 seconds and read timeout 60 seconds. This keyword argument can be provided
4141
as a single float, in which case the value provided is used for both the read and connection timeouts, or as a tuple of two floats. If
4242
a tuple is provided then the first value is used as the connection timeout and the second value as the read timeout.
4343
:type timeout: float or tuple(float, float)

src/oci/apigateway/gateway_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(self, config, **kwargs):
3737
need to specify a service endpoint.
3838
3939
:param timeout: (optional)
40-
The connection and read timeouts for the client. The default is that the client never times out. This keyword argument can be provided
40+
The connection and read timeouts for the client. The default values are connection timeout 10 seconds and read timeout 60 seconds. This keyword argument can be provided
4141
as a single float, in which case the value provided is used for both the read and connection timeouts, or as a tuple of two floats. If
4242
a tuple is provided then the first value is used as the connection timeout and the second value as the read timeout.
4343
:type timeout: float or tuple(float, float)

0 commit comments

Comments
 (0)