Skip to content

Commit 401e296

Browse files
authored
Merge pull request #210 from oracle/release_2020-01-21
Releasing version 2.10.1
2 parents c67427d + e652b37 commit 401e296

24 files changed

+943
-32
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ 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.1 - 2020-01-21
8+
====================
9+
10+
Added
11+
-----
12+
* Support for getting DRG redundancy status in the Networking service
13+
* Support for cloning autonomous databases from backups in the Database service
14+
615
====================
716
2.10.0 - 2020-01-14
817
====================

docs/api/core.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ Core Services
157157
oci.core.models.DhcpSearchDomainOption
158158
oci.core.models.Drg
159159
oci.core.models.DrgAttachment
160+
oci.core.models.DrgRedundancyStatus
160161
oci.core.models.EgressSecurityRule
161162
oci.core.models.EmulatedVolumeAttachment
162163
oci.core.models.ExportImageDetails
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
DrgRedundancyStatus
2+
===================
3+
4+
.. currentmodule:: oci.core.models
5+
6+
.. autoclass:: DrgRedundancyStatus
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

docs/api/database.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ Database
5858
oci.database.models.CreateAutonomousDatabaseBase
5959
oci.database.models.CreateAutonomousDatabaseCloneDetails
6060
oci.database.models.CreateAutonomousDatabaseDetails
61+
oci.database.models.CreateAutonomousDatabaseFromBackupDetails
62+
oci.database.models.CreateAutonomousDatabaseFromBackupTimestampDetails
6163
oci.database.models.CreateBackupDestinationDetails
6264
oci.database.models.CreateBackupDetails
6365
oci.database.models.CreateDataGuardAssociationDetails
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
CreateAutonomousDatabaseFromBackupDetails
2+
=========================================
3+
4+
.. currentmodule:: oci.database.models
5+
6+
.. autoclass:: CreateAutonomousDatabaseFromBackupDetails
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+
CreateAutonomousDatabaseFromBackupTimestampDetails
2+
==================================================
3+
4+
.. currentmodule:: oci.database.models
5+
6+
.. autoclass:: CreateAutonomousDatabaseFromBackupTimestampDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

docs/index.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
window.location.href = 'https://oracle-bare-metal-cloud-services-python-sdk.readthedocs.io/en/latest/deprecation-notice.html';
77
}
88
</script>
9+
.. warning::
10+
Potential data corruption with Python SDK on binary upload in versions 2.8.0 and below, for more information please see :ref:`Known Issues<known-issues>` section.
911

1012
Oracle Cloud Infrastructure Python SDK - |OciSdkVersion|
1113
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -38,6 +40,7 @@ To get started, head over to the :ref:`installation instructions <install>` or s
3840

3941
The most recent list of supported services is located on the `Python SDK <https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/pythonsdk.htm#ServicesSupported>`_ page on the Oracle Cloud Infrastructure Documentation site.
4042

43+
4144
**Note**: The ``oraclebmc`` package is deprecated and will no longer be maintained starting March 2018. Please check the :ref:`Backward Compatibility <backward-compatibility>` section if you are using ``oraclebmc``.
4245

4346
.. toctree::

docs/known-issues.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ If you need to retain the connection timeout while clearing the read timeout, yo
2828
client.base_client.timeout = (90.0, None)
2929
3030
31-
Potential data corruption with Python SDK on binary upload
32-
==========================================================
31+
Potential data corruption with Python SDK on binary upload (versions 2.8.0 and below)
32+
====================================================================================
3333

3434
**Details:** When using the Python SDK to perform binary upload operations you may encounter an issue with data corruption if retries are enabled or if you are using UploadManager.upload_file.
3535

36-
**Workaround:** We are aware of the issue and working on a resolution. For more information about this issue and workarounds, see `Potential data corruption issue for PythonSDK retry on binary data upload <https://github.com/oracle/oci-python-sdk/issues/203/>`_.
36+
**Impacted Versions:** v2.8.0 and below
3737

38-
**Direct link to this issue:** `Potential data corruption with Python SDK on binary upload <https://preview.oci.oraclecorp.com/iaas/Content/knownissues.htm?bundle=joPythonKnownIssue#pythonDataCorrupt>`_.
38+
**Direct link to this issue:** `Potential data corruption with Python SDK on binary upload <https://github.com/oracle/oci-python-sdk/issues/203/>`_

docs/upload-manager.rst

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,5 @@ The Object Storage service supports multipart uploads to make large object uploa
1616

1717
The `UploadObject <https://github.com/oracle/oci-python-sdk/blob/master/examples/multipart_object_upload.py>`_ example shows how :py:class:`~oci.object_storage.UploadManager` can be used to upload files to object storage.
1818

19-
20-
Potential data corruption with Python SDK on binary upload
21-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
22-
23-
**Details:** When using the Python SDK to perform binary upload operations you may encounter an issue with data corruption if retries are enabled or if you are using UploadManager.upload_file.
24-
25-
**Workaround:** We are aware of the issue and working on a resolution. For more information about this issue and workarounds, see `Potential data corruption issue for PythonSDK retry on binary data upload <https://github.com/oracle/oci-python-sdk/issues/203/>`_.
26-
27-
**Direct link to this issue:** `Potential data corruption with Python SDK on binary upload <https://preview.oci.oraclecorp.com/iaas/Content/knownissues.htm?bundle=joPythonKnownIssue#pythonDataCorrupt>`_.
19+
.. warning::
20+
Potential data corruption with Python SDK on binary upload in versions 2.8.0 and below, for more information please see :ref:`Known Issues<known-issues>` section.

src/oci/core/models/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@
136136
from .dhcp_search_domain_option import DhcpSearchDomainOption
137137
from .drg import Drg
138138
from .drg_attachment import DrgAttachment
139+
from .drg_redundancy_status import DrgRedundancyStatus
139140
from .egress_security_rule import EgressSecurityRule
140141
from .emulated_volume_attachment import EmulatedVolumeAttachment
141142
from .export_image_details import ExportImageDetails
@@ -425,6 +426,7 @@
425426
"DhcpSearchDomainOption": DhcpSearchDomainOption,
426427
"Drg": Drg,
427428
"DrgAttachment": DrgAttachment,
429+
"DrgRedundancyStatus": DrgRedundancyStatus,
428430
"EgressSecurityRule": EgressSecurityRule,
429431
"EmulatedVolumeAttachment": EmulatedVolumeAttachment,
430432
"ExportImageDetails": ExportImageDetails,

0 commit comments

Comments
 (0)