Skip to content

Commit b5dcc35

Browse files
committed
Releasing version 1.3.19
1 parent 71e7119 commit b5dcc35

File tree

730 files changed

+11642
-782
lines changed

Some content is hidden

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

730 files changed

+11642
-782
lines changed

CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ 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+
1.3.19 - 2018-04-19
9+
====================
10+
11+
Added
12+
-----
13+
* Support for tagging ``DbSystem`` and ``Database`` resources in the Database Service
14+
* Support for filtering by ``DbSystemId`` in ``ListDbVersions`` operation in Database Service
15+
* Support for composite operations that provide convenience methods for operations that can be chained together (e.g. launching an instance and waiting for it to enter the RUNNING state)
16+
17+
* An example on how to perform these operations can be found on `GitHub <https://github.com/oracle/oci-python-sdk/blob/master/examples/composite_operations_example.py>`__.
18+
19+
720
====================
821
1.3.18 - 2018-04-05
922
====================

docs/_templates/autosummary/service_client.rst

Lines changed: 2 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,5 @@
33
.. currentmodule:: {{ module }}
44

55
.. autoclass:: {{ objname }}
6-
7-
{% block methods %}
8-
.. automethod:: __init__
9-
10-
{% if methods %}
11-
.. rubric:: Methods
12-
13-
.. autosummary::
14-
:toctree: operations
15-
:nosignatures:
16-
:template: autosummary/service_operation.rst
17-
{% for item in methods %}
18-
{% if item != "__init__" %}
19-
~{{ name }}.{{ item }}
20-
{% endif %}
21-
{%- endfor %}
22-
{% endif %}
23-
{% endblock %}
24-
25-
{% block attributes %}
26-
{% if attributes %}
27-
.. rubric:: Attributes
28-
29-
.. autosummary::
30-
{% for item in attributes %}
31-
~{{ name }}.{{ item }}
32-
{%- endfor %}
33-
{% endif %}
34-
{% endblock %}
6+
:special-members: __init__
7+
:members:

docs/api/audit.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Audit
77
:template: autosummary/service_client.rst
88

99
oci.audit.AuditClient
10+
oci.audit.AuditClientCompositeOperations
1011

1112
--------
1213
Models
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
AuditClient
2+
===========
3+
4+
.. currentmodule:: oci.audit
5+
6+
.. autoclass:: AuditClient
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+
AuditClientCompositeOperations
2+
==============================
3+
4+
.. currentmodule:: oci.audit
5+
6+
.. autoclass:: AuditClientCompositeOperations
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+
AuditEvent
2+
==========
3+
4+
.. currentmodule:: oci.audit.models
5+
6+
.. autoclass:: AuditEvent
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+
Configuration
2+
=============
3+
4+
.. currentmodule:: oci.audit.models
5+
6+
.. autoclass:: Configuration
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+
UpdateConfigurationDetails
2+
==========================
3+
4+
.. currentmodule:: oci.audit.models
5+
6+
.. autoclass:: UpdateConfigurationDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

docs/api/core.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ Core Services
99
oci.core.BlockstorageClient
1010
oci.core.ComputeClient
1111
oci.core.VirtualNetworkClient
12+
oci.core.BlockstorageClientCompositeOperations
13+
oci.core.ComputeClientCompositeOperations
14+
oci.core.VirtualNetworkClientCompositeOperations
1215

1316
--------
1417
Models
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
BlockstorageClient
2+
==================
3+
4+
.. currentmodule:: oci.core
5+
6+
.. autoclass:: BlockstorageClient
7+
:special-members: __init__
8+
:members:

0 commit comments

Comments
 (0)