Skip to content

Commit 7a71813

Browse files
authored
Releasing version 2.18.0
Releasing version 2.18.0
2 parents 8130749 + 1358ba2 commit 7a71813

File tree

184 files changed

+16368
-451
lines changed

Some content is hidden

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

184 files changed

+16368
-451
lines changed

CHANGELOG.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@ 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.18.0 - 2020-07-14
8+
====================
9+
10+
Added
11+
-----
12+
* Support for the Blockchain service
13+
* Support for failing over an autonomous database that has Data Guard enabled in the Database service
14+
* Support for switching over an autonomous database that has Data Guard enabled in the Database service
15+
* Support for git configuration sources in the Resource Manager service
16+
* Support for optionally specifying a VCN id on list operations of DHCP options, subnets, security lists, route tables, internet gateways, and local peering gateways in the Networking service
17+
18+
Fixed
19+
-----
20+
* Fixed a bug where user-set timeout values were not being passed to base client from service client and remained `None`. This has been fixed in all clients except the upload manager and multipart object assembler.
21+
22+
Breaking
23+
--------
24+
* Parameter `vcn_id` changed from required to optional in methods `list_dhcp_options`, `list_local_peering_gateways`, `list_route_tables`, `list_security_lists`, `list_subnets` and `list_internet_gateways` in the virtual network client. If the VCN ID is not provided, then the list includes information of all VCNs in the specified compartment.
25+
* The operations for upload manager and multipart object assembler are NOT thread-safe, and you should provide the class with its own Object Storage client that isn't used elsewhere.
26+
627
====================
728
2.17.2 - 2020-07-07
829
====================

docs/api/blockchain.rst

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
Blockchain
2+
==========
3+
4+
.. autosummary::
5+
:toctree: blockchain/client
6+
:nosignatures:
7+
:template: autosummary/service_client.rst
8+
9+
oci.blockchain.BlockchainPlatformClient
10+
oci.blockchain.BlockchainPlatformClientCompositeOperations
11+
12+
--------
13+
Models
14+
--------
15+
16+
.. autosummary::
17+
:toctree: blockchain/models
18+
:nosignatures:
19+
:template: autosummary/model_class.rst
20+
21+
oci.blockchain.models.AvailabilityDomain
22+
oci.blockchain.models.BlockchainPlatform
23+
oci.blockchain.models.BlockchainPlatformByHostname
24+
oci.blockchain.models.BlockchainPlatformCollection
25+
oci.blockchain.models.BlockchainPlatformComponentDetails
26+
oci.blockchain.models.BlockchainPlatformSummary
27+
oci.blockchain.models.ChangeBlockchainPlatformCompartmentDetails
28+
oci.blockchain.models.CreateBlockchainPlatformDetails
29+
oci.blockchain.models.CreateOsnDetails
30+
oci.blockchain.models.CreatePeerDetails
31+
oci.blockchain.models.MetadataDetails
32+
oci.blockchain.models.ModifyPeerDetails
33+
oci.blockchain.models.OcpuAllocationNumberParam
34+
oci.blockchain.models.OcpuUtilizationInfo
35+
oci.blockchain.models.Osn
36+
oci.blockchain.models.OsnCollection
37+
oci.blockchain.models.OsnSummary
38+
oci.blockchain.models.Peer
39+
oci.blockchain.models.PeerCollection
40+
oci.blockchain.models.PeerRole
41+
oci.blockchain.models.PeerSummary
42+
oci.blockchain.models.ReplicaDetails
43+
oci.blockchain.models.ScaleBlockchainPlatformDetails
44+
oci.blockchain.models.ScaleStorageDetails
45+
oci.blockchain.models.ScaledBlockchainPlatformPreview
46+
oci.blockchain.models.ScaledPlatformMeteringPreview
47+
oci.blockchain.models.UpdateBlockchainPlatformDetails
48+
oci.blockchain.models.UpdateOsnDetails
49+
oci.blockchain.models.UpdatePeerDetails
50+
oci.blockchain.models.WorkRequest
51+
oci.blockchain.models.WorkRequestCollection
52+
oci.blockchain.models.WorkRequestError
53+
oci.blockchain.models.WorkRequestErrorCollection
54+
oci.blockchain.models.WorkRequestLogEntry
55+
oci.blockchain.models.WorkRequestLogEntryCollection
56+
oci.blockchain.models.WorkRequestResource
57+
oci.blockchain.models.WorkRequestSummary
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
BlockchainPlatformClient
2+
========================
3+
4+
.. currentmodule:: oci.blockchain
5+
6+
.. autoclass:: BlockchainPlatformClient
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+
BlockchainPlatformClientCompositeOperations
2+
===========================================
3+
4+
.. currentmodule:: oci.blockchain
5+
6+
.. autoclass:: BlockchainPlatformClientCompositeOperations
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+
AvailabilityDomain
2+
==================
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: AvailabilityDomain
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+
BlockchainPlatform
2+
==================
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: BlockchainPlatform
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+
BlockchainPlatformByHostname
2+
============================
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: BlockchainPlatformByHostname
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+
BlockchainPlatformCollection
2+
============================
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: BlockchainPlatformCollection
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+
BlockchainPlatformComponentDetails
2+
==================================
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: BlockchainPlatformComponentDetails
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+
BlockchainPlatformSummary
2+
=========================
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: BlockchainPlatformSummary
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+
ChangeBlockchainPlatformCompartmentDetails
2+
==========================================
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: ChangeBlockchainPlatformCompartmentDetails
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+
CreateBlockchainPlatformDetails
2+
===============================
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: CreateBlockchainPlatformDetails
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+
CreateOsnDetails
2+
================
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: CreateOsnDetails
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+
CreatePeerDetails
2+
=================
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: CreatePeerDetails
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+
MetadataDetails
2+
===============
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: MetadataDetails
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+
ModifyPeerDetails
2+
=================
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: ModifyPeerDetails
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+
OcpuAllocationNumberParam
2+
=========================
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: OcpuAllocationNumberParam
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+
OcpuUtilizationInfo
2+
===================
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: OcpuUtilizationInfo
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+
Osn
2+
===
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: Osn
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+
OsnCollection
2+
=============
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: OsnCollection
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+
OsnSummary
2+
==========
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: OsnSummary
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+
Peer
2+
====
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: Peer
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+
PeerCollection
2+
==============
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: PeerCollection
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+
PeerRole
2+
========
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: PeerRole
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+
PeerSummary
2+
===========
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: PeerSummary
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+
ReplicaDetails
2+
==============
3+
4+
.. currentmodule:: oci.blockchain.models
5+
6+
.. autoclass:: ReplicaDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

0 commit comments

Comments
 (0)