Skip to content

Commit

Permalink
Releasing version 2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
khs28gu committed Mar 12, 2019
1 parent 2ad0d15 commit 4b75164
Show file tree
Hide file tree
Showing 425 changed files with 10,474 additions and 2,096 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.

The format is based on `Keep a Changelog <http://keepachangelog.com/>`_.

====================
2.2.2 - 2019-03-12
====================

Added
-----
* Support for the Budgets service
* Support for managing multifactor authentication in the Identity service
* Support for managing default tags in the Identity service
* Support for account recovery in the Identity service
* Support for authentication policies in the Identity service
* Support for specifying the workload type when creating autonomous databases in the Database service
* Support for I/O resource management for Exadata database systems in the Database service
* Support for customer-specified timezones on database systems in the Database service

====================
2.2.1 - 2019-02-28
====================
Expand Down
16 changes: 10 additions & 6 deletions README-development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ Assuming that you have Python and `virtualenv` installed, set up your environmen
You should also set up your configuration files as described `here`__

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

Running Tests
=============
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,
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,
otherwise you must pass `-e` or run tests directly:

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

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

.. code-block:: sh
Expand All @@ -53,9 +55,11 @@ and ``--config-profile`` options.
# Using a different profile in the default config file
tox -- --config-profile IAD_PROFILE
A sample config file is provided 'tests/configuration/config.sample'

Specifying environment variables
--------------------------------
In addition to a valid config file for your tenancy, the tests also require the following environment
In addition to a valid config file for your tenancy, the tests also require the following environment
variables to be set:

* ``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``.
Expand Down
28 changes: 28 additions & 0 deletions docs/api/budget.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Budget
======

.. autosummary::
:toctree: budget/client
:nosignatures:
:template: autosummary/service_client.rst

oci.budget.BudgetClient
oci.budget.BudgetClientCompositeOperations

--------
Models
--------

.. autosummary::
:toctree: budget/models
:nosignatures:
:template: autosummary/model_class.rst

oci.budget.models.AlertRule
oci.budget.models.AlertRuleSummary
oci.budget.models.Budget
oci.budget.models.BudgetSummary
oci.budget.models.CreateAlertRuleDetails
oci.budget.models.CreateBudgetDetails
oci.budget.models.UpdateAlertRuleDetails
oci.budget.models.UpdateBudgetDetails
8 changes: 8 additions & 0 deletions docs/api/budget/client/oci.budget.BudgetClient.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
BudgetClient
============

.. currentmodule:: oci.budget

.. autoclass:: BudgetClient
:special-members: __init__
:members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
BudgetClientCompositeOperations
===============================

.. currentmodule:: oci.budget

.. autoclass:: BudgetClientCompositeOperations
:special-members: __init__
:members:
11 changes: 11 additions & 0 deletions docs/api/budget/models/oci.budget.models.AlertRule.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
AlertRule
=========

.. currentmodule:: oci.budget.models

.. autoclass:: AlertRule
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
11 changes: 11 additions & 0 deletions docs/api/budget/models/oci.budget.models.AlertRuleSummary.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
AlertRuleSummary
================

.. currentmodule:: oci.budget.models

.. autoclass:: AlertRuleSummary
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
11 changes: 11 additions & 0 deletions docs/api/budget/models/oci.budget.models.Budget.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Budget
======

.. currentmodule:: oci.budget.models

.. autoclass:: Budget
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
11 changes: 11 additions & 0 deletions docs/api/budget/models/oci.budget.models.BudgetSummary.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
BudgetSummary
=============

.. currentmodule:: oci.budget.models

.. autoclass:: BudgetSummary
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
CreateAlertRuleDetails
======================

.. currentmodule:: oci.budget.models

.. autoclass:: CreateAlertRuleDetails
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
11 changes: 11 additions & 0 deletions docs/api/budget/models/oci.budget.models.CreateBudgetDetails.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
CreateBudgetDetails
===================

.. currentmodule:: oci.budget.models

.. autoclass:: CreateBudgetDetails
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
UpdateAlertRuleDetails
======================

.. currentmodule:: oci.budget.models

.. autoclass:: UpdateAlertRuleDetails
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
11 changes: 11 additions & 0 deletions docs/api/budget/models/oci.budget.models.UpdateBudgetDetails.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
UpdateBudgetDetails
===================

.. currentmodule:: oci.budget.models

.. autoclass:: UpdateBudgetDetails
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
4 changes: 4 additions & 0 deletions docs/api/database.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,16 @@ Database
oci.database.models.DbBackupConfig
oci.database.models.DbHome
oci.database.models.DbHomeSummary
oci.database.models.DbIormConfig
oci.database.models.DbIormConfigUpdateDetail
oci.database.models.DbNode
oci.database.models.DbNodeSummary
oci.database.models.DbSystem
oci.database.models.DbSystemShapeSummary
oci.database.models.DbSystemSummary
oci.database.models.DbVersionSummary
oci.database.models.ExadataIormConfig
oci.database.models.ExadataIormConfigUpdateDetails
oci.database.models.ExternalBackupJob
oci.database.models.FailoverDataGuardAssociationDetails
oci.database.models.GenerateAutonomousDataWarehouseWalletDetails
Expand Down
11 changes: 11 additions & 0 deletions docs/api/database/models/oci.database.models.DbIormConfig.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
DbIormConfig
============

.. currentmodule:: oci.database.models

.. autoclass:: DbIormConfig
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
DbIormConfigUpdateDetail
========================

.. currentmodule:: oci.database.models

.. autoclass:: DbIormConfigUpdateDetail
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
11 changes: 11 additions & 0 deletions docs/api/database/models/oci.database.models.ExadataIormConfig.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ExadataIormConfig
=================

.. currentmodule:: oci.database.models

.. autoclass:: ExadataIormConfig
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ExadataIormConfigUpdateDetails
==============================

.. currentmodule:: oci.database.models

.. autoclass:: ExadataIormConfigUpdateDetails
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
7 changes: 7 additions & 0 deletions docs/api/identity.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Identity
oci.identity.models.AddUserToGroupDetails
oci.identity.models.ApiKey
oci.identity.models.AuthToken
oci.identity.models.AuthenticationPolicy
oci.identity.models.AvailabilityDomain
oci.identity.models.ChangeTagNamespaceCompartmentDetail
oci.identity.models.Compartment
Expand All @@ -37,6 +38,7 @@ Identity
oci.identity.models.CreateSaml2IdentityProviderDetails
oci.identity.models.CreateSmtpCredentialDetails
oci.identity.models.CreateSwiftPasswordDetails
oci.identity.models.CreateTagDefaultDetails
oci.identity.models.CreateTagDetails
oci.identity.models.CreateTagNamespaceDetails
oci.identity.models.CreateUserDetails
Expand All @@ -51,6 +53,7 @@ Identity
oci.identity.models.MfaTotpDevice
oci.identity.models.MfaTotpDeviceSummary
oci.identity.models.MfaTotpToken
oci.identity.models.PasswordPolicy
oci.identity.models.Policy
oci.identity.models.Region
oci.identity.models.RegionSubscription
Expand All @@ -60,12 +63,15 @@ Identity
oci.identity.models.SmtpCredentialSummary
oci.identity.models.SwiftPassword
oci.identity.models.Tag
oci.identity.models.TagDefault
oci.identity.models.TagDefaultSummary
oci.identity.models.TagNamespace
oci.identity.models.TagNamespaceSummary
oci.identity.models.TagSummary
oci.identity.models.Tenancy
oci.identity.models.UIPassword
oci.identity.models.UpdateAuthTokenDetails
oci.identity.models.UpdateAuthenticationPolicyDetails
oci.identity.models.UpdateCompartmentDetails
oci.identity.models.UpdateCustomerSecretKeyDetails
oci.identity.models.UpdateDynamicGroupDetails
Expand All @@ -77,6 +83,7 @@ Identity
oci.identity.models.UpdateSmtpCredentialDetails
oci.identity.models.UpdateStateDetails
oci.identity.models.UpdateSwiftPasswordDetails
oci.identity.models.UpdateTagDefaultDetails
oci.identity.models.UpdateTagDetails
oci.identity.models.UpdateTagNamespaceDetails
oci.identity.models.UpdateUserCapabilitiesDetails
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
AuthenticationPolicy
====================

.. currentmodule:: oci.identity.models

.. autoclass:: AuthenticationPolicy
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
CreateTagDefaultDetails
=======================

.. currentmodule:: oci.identity.models

.. autoclass:: CreateTagDefaultDetails
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
11 changes: 11 additions & 0 deletions docs/api/identity/models/oci.identity.models.PasswordPolicy.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
PasswordPolicy
==============

.. currentmodule:: oci.identity.models

.. autoclass:: PasswordPolicy
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
11 changes: 11 additions & 0 deletions docs/api/identity/models/oci.identity.models.TagDefault.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
TagDefault
==========

.. currentmodule:: oci.identity.models

.. autoclass:: TagDefault
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
11 changes: 11 additions & 0 deletions docs/api/identity/models/oci.identity.models.TagDefaultSummary.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
TagDefaultSummary
=================

.. currentmodule:: oci.identity.models

.. autoclass:: TagDefaultSummary
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
Loading

0 comments on commit 4b75164

Please sign in to comment.