You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on `Keep a Changelog <http://keepachangelog.com/>`_.
6
6
7
+
====================
8
+
1.3.13 - 2018-01-25
9
+
====================
10
+
11
+
Added
12
+
-----
13
+
* Support for using the ``ObjectReadWithoutList`` public access type when creating and updating buckets
14
+
* Support for dynamic groups in Identity Service
15
+
* 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>`_.
16
+
* Support for configuring idle timeout for listeners in Load Balancer Service
17
+
* Support for VNC console connections in Compute Service
The Python SDK uses the `Requests <http://docs.python-requests.org/en/master/>`_ library to make calls to OCI services. If your environment requires you to use a proxy server for outgoing HTTP requests
15
+
then you can set this up in the following ways:
16
+
17
+
* Configuring environment variable as described `here <http://docs.python-requests.org/en/master/user/advanced/#proxies>`_
18
+
* Modifying the underlying Requests `Session <http://docs.python-requests.org/en/master/api/#request-sessions>`_ object for a service client
19
+
20
+
In order to modify the underlying Session object, you can do something similar to:
The key parts are that the underlying Session object can be accessed via ``base_client.session`` and we can then modify the `proxies <http://docs.python-requests.org/en/master/api/#requests.Session.proxies>`_
0 commit comments