Skip to content

Commit 4117327

Browse files
author
Art Hall III
authored
Merge pull request #61 from oracle/release_2018-06-14
Releasing version 1.4.3
2 parents 1a4ae8d + 17c6654 commit 4117327

File tree

65 files changed

+8267
-8
lines changed

Some content is hidden

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

65 files changed

+8267
-8
lines changed

CHANGELOG.rst

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,30 @@ 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.4.3 - 2018-06-14
9+
====================
10+
11+
Added
12+
-----
13+
* Support for the Container Engine service
14+
15+
* A sample showing how to use this service from the SDK is available on `GitHub <https://github.com/oracle/oci-python-sdk/blob/master/examples/container_engine.py>`__.
16+
17+
Fixed
18+
-------
19+
* Add dependency to idna >=2.5,<2.7 since cryptography and requests both have a dependency on the library and pip can install a version that is incompatable with requests.
20+
21+
====================
22+
1.4.2 - 2018-06-14
23+
====================
24+
25+
This version was removed from PyPi due to a potential dependency conflict between cryptography and requests.
26+
27+
* Support for the Container Engine service
28+
29+
* A sample showing how to use this service from the SDK is available on `GitHub <https://github.com/oracle/oci-python-sdk/blob/master/examples/container_engine.py>`__.
30+
731
====================
832
1.4.1 - 2018-05-31
933
====================
@@ -103,7 +127,7 @@ Added
103127
Added
104128
-----
105129
* Added support for the Email Service
106-
130+
107131
* An example on using the Email Service can be found on `GitHub <https://github.com/oracle/oci-python-sdk/blob/master/examples/email_service_example.py>`__.
108132

109133
* Added support for SMTP credentials in the Identity Service
@@ -123,7 +147,7 @@ Added
123147
Added
124148
-----
125149
* Support for File Storage Service
126-
150+
127151
* An example on using the File Storage Service can be found on `GitHub <https://github.com/oracle/oci-python-sdk/blob/master/examples/file_storage_example.py>`__.
128152

129153
* Added support for tagging Bucket resources in the Object Storage Service
@@ -167,7 +191,7 @@ Added
167191
* Support for using the ``ObjectReadWithoutList`` public access type when creating and updating buckets
168192
* Support for dynamic groups in Identity Service
169193
* Support for instance principals authentication when calling OCI services. An example of how to use instance principals authentication can be found on `GitHub <https://github.com/oracle/oci-python-sdk/blob/master/examples/instance_principals_examples.py>`_.
170-
* Support for configuring idle timeout for listeners in Load Balancer Service
194+
* Support for configuring idle timeout for listeners in Load Balancer Service
171195
* Support for VNC console connections in Compute Service
172196

173197
====================

README.rst

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,23 @@ __ https://oracle-cloud-infrastructure-python-sdk.readthedocs.io/en/latest/index
3737
Installation
3838
============
3939

40-
::
40+
It is highly recommended that a Python virtual environment be used when installing oci.
4141

42-
pip install oci
42+
Please consult the `Installing packages using pip and virtualenv`__ guide from the Python Software Foundation for more information about virtual environments.
4343

44+
__ https://packaging.python.org/guides/installing-using-pip-and-virtualenv/
4445

4546
See `the installation guide`__ for installation troubleshooting and alternative install methods.
4647

4748
__ https://oracle-cloud-infrastructure-python-sdk.readthedocs.io/en/latest/installation.html
4849

50+
Once your virtual environment is active, oci can be installed using pip.
51+
52+
::
53+
54+
pip install oci
55+
56+
4957
============
5058
Development
5159
============

docs/api/container_engine.rst

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
Container Engine
2+
================
3+
4+
.. autosummary::
5+
:toctree: container_engine/client
6+
:nosignatures:
7+
:template: autosummary/service_client.rst
8+
9+
oci.container_engine.ContainerEngineClient
10+
oci.container_engine.ContainerEngineClientCompositeOperations
11+
12+
--------
13+
Models
14+
--------
15+
16+
.. autosummary::
17+
:toctree: container_engine/models
18+
:nosignatures:
19+
:template: autosummary/model_class.rst
20+
21+
oci.container_engine.models.AddOnOptions
22+
oci.container_engine.models.Cluster
23+
oci.container_engine.models.ClusterCreateOptions
24+
oci.container_engine.models.ClusterEndpoints
25+
oci.container_engine.models.ClusterMetadata
26+
oci.container_engine.models.ClusterOptions
27+
oci.container_engine.models.ClusterSummary
28+
oci.container_engine.models.CreateClusterDetails
29+
oci.container_engine.models.CreateClusterKubeconfigContentDetails
30+
oci.container_engine.models.CreateNodePoolDetails
31+
oci.container_engine.models.KeyValue
32+
oci.container_engine.models.KubernetesNetworkConfig
33+
oci.container_engine.models.Node
34+
oci.container_engine.models.NodeError
35+
oci.container_engine.models.NodePool
36+
oci.container_engine.models.NodePoolOptions
37+
oci.container_engine.models.NodePoolSummary
38+
oci.container_engine.models.UpdateClusterDetails
39+
oci.container_engine.models.UpdateNodePoolDetails
40+
oci.container_engine.models.WorkRequest
41+
oci.container_engine.models.WorkRequestError
42+
oci.container_engine.models.WorkRequestLogEntry
43+
oci.container_engine.models.WorkRequestResource
44+
oci.container_engine.models.WorkRequestSummary
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
ContainerEngineClient
2+
=====================
3+
4+
.. currentmodule:: oci.container_engine
5+
6+
.. autoclass:: ContainerEngineClient
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+
ContainerEngineClientCompositeOperations
2+
========================================
3+
4+
.. currentmodule:: oci.container_engine
5+
6+
.. autoclass:: ContainerEngineClientCompositeOperations
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+
AddOnOptions
2+
============
3+
4+
.. currentmodule:: oci.container_engine.models
5+
6+
.. autoclass:: AddOnOptions
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+
Cluster
2+
=======
3+
4+
.. currentmodule:: oci.container_engine.models
5+
6+
.. autoclass:: Cluster
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+
ClusterCreateOptions
2+
====================
3+
4+
.. currentmodule:: oci.container_engine.models
5+
6+
.. autoclass:: ClusterCreateOptions
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+
ClusterEndpoints
2+
================
3+
4+
.. currentmodule:: oci.container_engine.models
5+
6+
.. autoclass:: ClusterEndpoints
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+
ClusterMetadata
2+
===============
3+
4+
.. currentmodule:: oci.container_engine.models
5+
6+
.. autoclass:: ClusterMetadata
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

0 commit comments

Comments
 (0)