Skip to content

Commit 01dfe78

Browse files
authored
Merge pull request #83 from oracle/release_2018-11-01
Releasing version 2.1.0
2 parents 3e59878 + 4ff7e65 commit 01dfe78

36 files changed

+1278
-80
lines changed

CHANGELOG.rst

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ 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/>`_.
66

7+
====================
8+
2.1.0 - 2018-11-01
9+
====================
10+
11+
Added
12+
-----
13+
* Support for modifying the route table, DHCP options and security lists associated with a subnet in the Networking service.
14+
* Support for tagging of File Systems, Mount Targets and Snapshots in the File Storage service.
15+
* Support for nested compartments in the Identity service
16+
17+
Breaking
18+
--------
19+
* database_size_in_g_bs field in Backup and BackupSummary models renamed to database_size_in_gbs.
20+
721
====================
822
2.0.6 - 2018-10-18
923
====================
@@ -21,15 +35,15 @@ Added
2135

2236
Changed
2337
-------
24-
* database_edition field in Backup model changed from a free format string to a validated string. It will only accept one of the following: “STANDARD_EDITION”, “ENTERPRISE_EDITION”, “ENTERPRISE_EDITION_HIGH_PERFORMANCE”, “ENTERPRISE_EDITION_EXTREME_PERFORMANCE”
38+
* database_edition field in Backup and model changed from a free format string to a validated string. It will only accept one of the following: “STANDARD_EDITION”, “ENTERPRISE_EDITION”, “ENTERPRISE_EDITION_HIGH_PERFORMANCE”, “ENTERPRISE_EDITION_EXTREME_PERFORMANCE”
2539

2640
Known issue
2741
-----------
2842
* Block Storage service for copying volume backups across regions is not enabled
2943

3044
Breaking
3145
--------
32-
* db_data_size_in_mbs field in Backup model is renamed to database_size_in_g_bs. The type changed from int to float.
46+
* db_data_size_in_mbs field in Backup and BackupSummary models renamed to database_size_in_g_bs. The type changed from int to float.
3347

3448
====================
3549
2.0.5 - 2018-10-04

docs/api/core.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ Core Services
88

99
oci.core.BlockstorageClient
1010
oci.core.ComputeClient
11+
oci.core.ComputeManagementClient
1112
oci.core.VirtualNetworkClient
1213
oci.core.BlockstorageClientCompositeOperations
1314
oci.core.ComputeClientCompositeOperations
15+
oci.core.ComputeManagementClientCompositeOperations
1416
oci.core.VirtualNetworkClientCompositeOperations
1517

1618
--------
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
ComputeManagementClient
2+
=======================
3+
4+
.. currentmodule:: oci.core
5+
6+
.. autoclass:: ComputeManagementClient
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+
ComputeManagementClientCompositeOperations
2+
==========================================
3+
4+
.. currentmodule:: oci.core
5+
6+
.. autoclass:: ComputeManagementClientCompositeOperations
7+
:special-members: __init__
8+
:members:

docs/api/file_storage.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ File Storage
3737
oci.file_storage.models.UpdateExportSetDetails
3838
oci.file_storage.models.UpdateFileSystemDetails
3939
oci.file_storage.models.UpdateMountTargetDetails
40+
oci.file_storage.models.UpdateSnapshotDetails
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
UpdateSnapshotDetails
2+
=====================
3+
4+
.. currentmodule:: oci.file_storage.models
5+
6+
.. autoclass:: UpdateSnapshotDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

docs/api/index.rst

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,14 @@ Compute
8888
:noindex:
8989

9090

91+
Compute Management
92+
===================
93+
94+
.. autoclass:: oci.core.compute_management_client.ComputeManagementClient
95+
:members:
96+
:noindex:
97+
98+
9199
Virtual Network
92100
================
93101

@@ -238,14 +246,35 @@ Identity
238246
Key Management
239247
==============
240248

241-
--------
242-
Client
243-
--------
249+
---------
250+
Clients
251+
---------
252+
253+
254+
Kms Crypto
255+
===========
256+
257+
.. autoclass:: oci.key_management.kms_crypto_client.KmsCryptoClient
258+
:members:
259+
:noindex:
260+
261+
262+
Kms Management
263+
===============
244264

245-
.. autoclass:: oci.key_management.key_management_client.KeyManagementClient
265+
.. autoclass:: oci.key_management.kms_management_client.KmsManagementClient
246266
:members:
247267
:noindex:
248268

269+
270+
Kms Vault
271+
==========
272+
273+
.. autoclass:: oci.key_management.kms_vault_client.KmsVaultClient
274+
:members:
275+
:noindex:
276+
277+
249278
--------
250279
Models
251280
--------

docs/api/key_management.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ Key Management
66
:nosignatures:
77
:template: autosummary/service_client.rst
88

9-
oci.key_management.KeyManagementClient
10-
oci.key_management.KeyManagementClientCompositeOperations
9+
oci.key_management.KmsCryptoClient
10+
oci.key_management.KmsManagementClient
11+
oci.key_management.KmsVaultClient
12+
oci.key_management.KmsCryptoClientCompositeOperations
13+
oci.key_management.KmsManagementClientCompositeOperations
14+
oci.key_management.KmsVaultClientCompositeOperations
1115

1216
--------
1317
Models
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
KmsCryptoClient
2+
===============
3+
4+
.. currentmodule:: oci.key_management
5+
6+
.. autoclass:: KmsCryptoClient
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+
KmsCryptoClientCompositeOperations
2+
==================================
3+
4+
.. currentmodule:: oci.key_management
5+
6+
.. autoclass:: KmsCryptoClientCompositeOperations
7+
:special-members: __init__
8+
:members:

0 commit comments

Comments
 (0)