Skip to content

Commit a3e4b32

Browse files
authored
Releasing version 2.2.2
Releasing version 2.2.2
2 parents 2ad0d15 + 4b75164 commit a3e4b32

File tree

425 files changed

+10474
-2096
lines changed

Some content is hidden

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

425 files changed

+10474
-2096
lines changed

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ 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+
2.2.2 - 2019-03-12
9+
====================
10+
11+
Added
12+
-----
13+
* Support for the Budgets service
14+
* Support for managing multifactor authentication in the Identity service
15+
* Support for managing default tags in the Identity service
16+
* Support for account recovery in the Identity service
17+
* Support for authentication policies in the Identity service
18+
* Support for specifying the workload type when creating autonomous databases in the Database service
19+
* Support for I/O resource management for Exadata database systems in the Database service
20+
* Support for customer-specified timezones on database systems in the Database service
21+
722
====================
823
2.2.1 - 2019-02-28
924
====================

README-development.rst

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ Assuming that you have Python and `virtualenv` installed, set up your environmen
1717
1818
You should also set up your configuration files as described `here`__
1919

20-
__ https://docs.us-phoenix-1.oraclecloud.com/Content/API/Concepts/sdkconfig.htm
20+
__ https://docs.us-phoenix-1.oraclecloud.com/Content/API/Concepts/sdkconfig.htm
2121

2222
Running Tests
2323
=============
24-
The SDK uses `pytest` as its test framework. You can run tests against Python 2.7, Python 3.5 and Python 3.6 using the `tox` command. Note that this requires that you have those versions of Python installed,
24+
The SDK uses `pytest` as its test framework. You can run tests against Python 2.7, Python 3.5 and Python 3.6 using the `tox` command. Note that this requires that you have those versions of Python installed,
2525
otherwise you must pass `-e` or run tests directly:
2626

2727
.. code-block:: sh
@@ -41,9 +41,11 @@ If you wish to run an individual test then you can run:
4141
Specifying a config file
4242
------------------------
4343

44-
By default, the tests will look for a config file at 'tests/resources/config'
45-
and use the ``DEFAULT`` profile. You can change this with the ``--config-file``
46-
and ``--config-profile`` options.
44+
By default, the tests will look for a config file, 'config' in 'tests/resources'.
45+
If 'tests/resources' does not exist, the tests will try attempt to use
46+
'tests/configuration/config'.
47+
The default profile is ``DEFAULT``. You can change this with the
48+
``--config-file`` and ``--config-profile`` options.
4749

4850
.. code-block:: sh
4951
@@ -53,9 +55,11 @@ and ``--config-profile`` options.
5355
# Using a different profile in the default config file
5456
tox -- --config-profile IAD_PROFILE
5557
58+
A sample config file is provided 'tests/configuration/config.sample'
59+
5660
Specifying environment variables
5761
--------------------------------
58-
In addition to a valid config file for your tenancy, the tests also require the following environment
62+
In addition to a valid config file for your tenancy, the tests also require the following environment
5963
variables to be set:
6064

6165
* ``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``.

docs/api/budget.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Budget
2+
======
3+
4+
.. autosummary::
5+
:toctree: budget/client
6+
:nosignatures:
7+
:template: autosummary/service_client.rst
8+
9+
oci.budget.BudgetClient
10+
oci.budget.BudgetClientCompositeOperations
11+
12+
--------
13+
Models
14+
--------
15+
16+
.. autosummary::
17+
:toctree: budget/models
18+
:nosignatures:
19+
:template: autosummary/model_class.rst
20+
21+
oci.budget.models.AlertRule
22+
oci.budget.models.AlertRuleSummary
23+
oci.budget.models.Budget
24+
oci.budget.models.BudgetSummary
25+
oci.budget.models.CreateAlertRuleDetails
26+
oci.budget.models.CreateBudgetDetails
27+
oci.budget.models.UpdateAlertRuleDetails
28+
oci.budget.models.UpdateBudgetDetails
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
BudgetClient
2+
============
3+
4+
.. currentmodule:: oci.budget
5+
6+
.. autoclass:: BudgetClient
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+
BudgetClientCompositeOperations
2+
===============================
3+
4+
.. currentmodule:: oci.budget
5+
6+
.. autoclass:: BudgetClientCompositeOperations
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+
AlertRule
2+
=========
3+
4+
.. currentmodule:: oci.budget.models
5+
6+
.. autoclass:: AlertRule
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+
AlertRuleSummary
2+
================
3+
4+
.. currentmodule:: oci.budget.models
5+
6+
.. autoclass:: AlertRuleSummary
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+
Budget
2+
======
3+
4+
.. currentmodule:: oci.budget.models
5+
6+
.. autoclass:: Budget
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+
BudgetSummary
2+
=============
3+
4+
.. currentmodule:: oci.budget.models
5+
6+
.. autoclass:: BudgetSummary
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+
CreateAlertRuleDetails
2+
======================
3+
4+
.. currentmodule:: oci.budget.models
5+
6+
.. autoclass:: CreateAlertRuleDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

0 commit comments

Comments
 (0)