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
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,19 @@ 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
+
2.2.9 - 2019-05-14
9
+
====================
10
+
11
+
Added
12
+
-----
13
+
* Support for the Seoul (ICN) region
14
+
* Support for logging context fields on data-plane APIs of the Key Management Service
15
+
* Support for reverse pagination on list operations of the Email service
16
+
* Support for configuring backup retention windows on database backups in the Database service
17
+
* Support for subscribed regions in stop_untagged_instances.py on `GitHub <https://github.com/oracle/oci-python-sdk/blob/master/examples/stop_untagged_instances.py>`__.
18
+
* New services to showoci.py on `GitHub <https://github.com/oracle/oci-python-sdk/blob/master/examples/showoci/showoci.py>`__.
Copy file name to clipboardExpand all lines: README-development.rst
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,23 @@ variables to be set:
64
64
65
65
* ``OCI_PYSDK_PUBLIC_SSH_KEY_FILE``: path to a public SSH key (.pub file) that will be given access to the instance launched in ``test_launch_instance_tutorial.py``.
66
66
67
+
68
+
Checking Style
69
+
==============
70
+
The Python SDK adheres to PEP8 style guilds and uses Flake8 to validate style. There are some exceptions and they can
71
+
be viewed in the ``setup.cfg`` file.
72
+
73
+
If you run tox with no environment specified Flake8 will be run. You can also run flake8 with no arguments to check
74
+
the style consistency for the whole project. If you want to check a single file you can run flake8 with a path to the
75
+
file to check.
76
+
77
+
.. code-block:: sh
78
+
flake8 path/to/python_file_to_check.py
79
+
80
+
If flake8 is not found, make sure you have ``requirements.txt`` installed into your virtualenv. See the
81
+
"Getting Started" section.
82
+
83
+
67
84
Generating Documentation
68
85
========================
69
86
Sphinx is used for documentation. You can generate HTML locally with the following:
SHOWOCI is an reporting tool which uses the Python SDK to extract list of resources from your tenant. It covers more than 80% of OCI components, Output can be printer friendly or JSON file.
3
+
SHOWOCI is an reporting tool which uses the Python SDK to extract list of resources from your tenant. It covers most of OCI components, Output can be printer friendly or JSON file.
4
4
5
5
Modules Included:
6
6
- oci.core.VirtualNetworkClient
@@ -17,14 +17,41 @@ Modules Included:
17
17
- oci.streaming.StreamAdminClient
18
18
- oci.budget.BudgetClient
19
19
- oci.autoscaling.AutoScalingClient
20
+
- oci.monitoring.MonitoringClient
21
+
- oci.ons.NotificationControlPlaneClient
22
+
- oci.ons.NotificationDataPlaneClient
23
+
- oci.healthchecks.HealthChecksClient
24
+
- oci.announcements_service.AnnouncementClient
20
25
21
26
## OCI User Requirement
22
27
Required OCI IAM user with read only privileges:
23
28
24
-
Inspect privilege will have some limitations especially on object storage sizes
25
29
```
26
30
ALLOW GROUP ReadOnlyUsers to read all-resources IN TENANCY
27
31
```
32
+
33
+
For restrictive privileges:
34
+
35
+
```
36
+
Allow group ReadOnlyUsers to inspect all-objects in tenancy
37
+
Allow group ReadOnlyUsers to read instances in tenancy
38
+
Allow group ReadOnlyUsers to read load-balancers in tenancy
39
+
Allow group ReadOnlyUsers to read buckets in tenancy
40
+
Allow group ReadOnlyUsers to read nat-gateways in tenancy
41
+
Allow group ReadOnlyUsers to read public-ips in tenancy
42
+
Allow group ReadOnlyUsers to read file-family in tenancy
43
+
Allow group ReadOnlyUsers to read instance-configurations in tenancy
0 commit comments