Skip to content

Commit 3c0f69c

Browse files
authored
Merge pull request #212 from oracle/release_2020-01-28
Releasing version 2.10.2
2 parents 401e296 + 5d9d2d1 commit 3c0f69c

File tree

356 files changed

+60035
-128
lines changed

Some content is hidden

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

356 files changed

+60035
-128
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.2 - 2020-01-28
8+
====================
9+
10+
Added
11+
-----
12+
* Support for the Application Migration service
13+
* Support for the Data Flow service
14+
* Support for the Data Catalog service
15+
* Support for cross-shape Data Guard in the Database service
16+
* Support for offline data export in the Data Transfer service
17+
618
====================
719
2.10.1 - 2020-01-21
820
====================

README-development.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ __ https://docs.us-phoenix-1.oraclecloud.com/Content/API/Concepts/sdkconfig.htm
2525

2626
Running Tests
2727
=============
28-
The SDK uses `pytest` as its test framework. You can run tests against Python 2.7, Python 3.5 and Python 3.6 using the `tox` command. Note that this requires that you have those versions of Python installed,
28+
The SDK uses `pytest` as its test framework. You can run tests against Python 3.5 and Python 3.6 using the `tox` command. Note that this requires that you have those versions of Python installed,
2929
otherwise you must pass `-e` or run tests directly:
3030

3131
.. code-block:: sh
3232
33-
# This will run tests against all configured Pythons in tox.ini (currently 2.7, 3.5 and 3.6). You need to have those versions installed
33+
# This will run tests against all configured Pythons in tox.ini (currently 3.5 and 3.6). You need to have those versions installed
3434
tox
3535
3636
# This will run tests against a specific Python versions
37-
tox -e py27
37+
tox -e py36
3838
3939
If you wish to run an individual test then you can run:
4040

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Oracle Cloud Infrastructure Python SDK
55
About
66
=====
77

8-
This is the Python SDK for Oracle Cloud Infrastructure. Python 2.7+ and 3.5+ are supported.
8+
This is the Python SDK for Oracle Cloud Infrastructure. Python 3.5 and 3.6 are supported.
99

1010
.. code-block:: pycon
1111

docs/api/application_migration.rst

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
Application Migration
2+
=====================
3+
4+
.. autosummary::
5+
:toctree: application_migration/client
6+
:nosignatures:
7+
:template: autosummary/service_client.rst
8+
9+
oci.application_migration.ApplicationMigrationClient
10+
oci.application_migration.ApplicationMigrationClientCompositeOperations
11+
12+
--------
13+
Models
14+
--------
15+
16+
.. autosummary::
17+
:toctree: application_migration/models
18+
:nosignatures:
19+
:template: autosummary/model_class.rst
20+
21+
oci.application_migration.models.AuthorizationDetails
22+
oci.application_migration.models.ChangeCompartmentDetails
23+
oci.application_migration.models.ConfigurationField
24+
oci.application_migration.models.CreateMigrationDetails
25+
oci.application_migration.models.CreateSourceDetails
26+
oci.application_migration.models.DiscoveryDetails
27+
oci.application_migration.models.IcsDiscoveryDetails
28+
oci.application_migration.models.InternalAuthorizationDetails
29+
oci.application_migration.models.InternalSourceDetails
30+
oci.application_migration.models.JcsDiscoveryDetails
31+
oci.application_migration.models.Migration
32+
oci.application_migration.models.MigrationSummary
33+
oci.application_migration.models.OacDiscoveryDetails
34+
oci.application_migration.models.OcicAuthorizationDetails
35+
oci.application_migration.models.OcicSourceDetails
36+
oci.application_migration.models.OicDiscoveryDetails
37+
oci.application_migration.models.PcsDiscoveryDetails
38+
oci.application_migration.models.SoacsDiscoveryDetails
39+
oci.application_migration.models.Source
40+
oci.application_migration.models.SourceApplication
41+
oci.application_migration.models.SourceApplicationSummary
42+
oci.application_migration.models.SourceDetails
43+
oci.application_migration.models.SourceSummary
44+
oci.application_migration.models.UpdateMigrationDetails
45+
oci.application_migration.models.UpdateSourceDetails
46+
oci.application_migration.models.WorkRequest
47+
oci.application_migration.models.WorkRequestError
48+
oci.application_migration.models.WorkRequestLogEntry
49+
oci.application_migration.models.WorkRequestResource
50+
oci.application_migration.models.WorkRequestSummary
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
ApplicationMigrationClient
2+
==========================
3+
4+
.. currentmodule:: oci.application_migration
5+
6+
.. autoclass:: ApplicationMigrationClient
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+
ApplicationMigrationClientCompositeOperations
2+
=============================================
3+
4+
.. currentmodule:: oci.application_migration
5+
6+
.. autoclass:: ApplicationMigrationClientCompositeOperations
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+
AuthorizationDetails
2+
====================
3+
4+
.. currentmodule:: oci.application_migration.models
5+
6+
.. autoclass:: AuthorizationDetails
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+
ChangeCompartmentDetails
2+
========================
3+
4+
.. currentmodule:: oci.application_migration.models
5+
6+
.. autoclass:: ChangeCompartmentDetails
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+
ConfigurationField
2+
==================
3+
4+
.. currentmodule:: oci.application_migration.models
5+
6+
.. autoclass:: ConfigurationField
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+
CreateMigrationDetails
2+
======================
3+
4+
.. currentmodule:: oci.application_migration.models
5+
6+
.. autoclass:: CreateMigrationDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

0 commit comments

Comments
 (0)