Skip to content

Commit a7d5f87

Browse files
authored
Releasing version 2.2.18
Releasing version 2.2.18
2 parents 483a112 + 6a541cc commit a7d5f87

File tree

167 files changed

+13458
-190
lines changed

Some content is hidden

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

167 files changed

+13458
-190
lines changed

CHANGELOG.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,27 @@ 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.18 - 2019-07-16
9+
====================
10+
11+
Added
12+
-----
13+
* Support for the Functions service
14+
* Support for the Quotas service
15+
* Support for moving resources across compartments in the DNS service
16+
* Support for moving instances across compartments in the Compute service
17+
* Support for moving keys and vaults across compartments in the Key Management service
18+
* Support for moving topics and subscriptions across compartments in the Notifications service
19+
* Support for moving load balancers across compartments in the Load Balancing service
20+
* Support for specifying permitted REST methods in load balancer rule sets in the Load Balancing service
21+
* Support for configuring cookie session persistence in backend sets in the Load Balancing service
22+
* Support for ACL rules in rule sets in the Load Balancing service
23+
* Support for move compartment tree in the Identity service
24+
* Support for specifying and returning a KMS key in backup operations in the Block Storage service
25+
* Support for transit routing in the Networking service
26+
* Support for authenticating via Resource Principals. An example of how to use resource principals is available on `GitHub <https://github.com/oracle/oci-python-sdk/blob/master/examples/resource_principals_example.py>`__. This authentication method is only supported within the Functions service at this time.
27+
728
====================
829
2.2.17 - 2019-07-09
930
====================

docs/api/core.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Core Services
5656
oci.core.models.ChangeBootVolumeBackupCompartmentDetails
5757
oci.core.models.ChangeBootVolumeCompartmentDetails
5858
oci.core.models.ChangeImageCompartmentDetails
59+
oci.core.models.ChangeInstanceCompartmentDetails
5960
oci.core.models.ChangeInstanceConfigurationCompartmentDetails
6061
oci.core.models.ChangeInstancePoolCompartmentDetails
6162
oci.core.models.ChangeNatGatewayCompartmentDetails
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
ChangeInstanceCompartmentDetails
2+
================================
3+
4+
.. currentmodule:: oci.core.models
5+
6+
.. autoclass:: ChangeInstanceCompartmentDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

docs/api/dns.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ DNS
1818
:nosignatures:
1919
:template: autosummary/model_class.rst
2020

21+
oci.dns.models.ChangeSteeringPolicyCompartmentDetails
22+
oci.dns.models.ChangeZoneCompartmentDetails
2123
oci.dns.models.CreateSteeringPolicyAttachmentDetails
2224
oci.dns.models.CreateSteeringPolicyDetails
2325
oci.dns.models.CreateZoneDetails
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
ChangeSteeringPolicyCompartmentDetails
2+
======================================
3+
4+
.. currentmodule:: oci.dns.models
5+
6+
.. autoclass:: ChangeSteeringPolicyCompartmentDetails
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+
ChangeZoneCompartmentDetails
2+
============================
3+
4+
.. currentmodule:: oci.dns.models
5+
6+
.. autoclass:: ChangeZoneCompartmentDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

docs/api/functions.rst

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Functions
2+
=========
3+
4+
.. autosummary::
5+
:toctree: functions/client
6+
:nosignatures:
7+
:template: autosummary/service_client.rst
8+
9+
oci.functions.FunctionsInvokeClient
10+
oci.functions.FunctionsManagementClient
11+
oci.functions.FunctionsInvokeClientCompositeOperations
12+
oci.functions.FunctionsManagementClientCompositeOperations
13+
14+
--------
15+
Models
16+
--------
17+
18+
.. autosummary::
19+
:toctree: functions/models
20+
:nosignatures:
21+
:template: autosummary/model_class.rst
22+
23+
oci.functions.models.Application
24+
oci.functions.models.ApplicationSummary
25+
oci.functions.models.ChangeApplicationCompartmentDetails
26+
oci.functions.models.CreateApplicationDetails
27+
oci.functions.models.CreateFunctionDetails
28+
oci.functions.models.Function
29+
oci.functions.models.FunctionSummary
30+
oci.functions.models.UpdateApplicationDetails
31+
oci.functions.models.UpdateFunctionDetails
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FunctionsInvokeClient
2+
=====================
3+
4+
.. currentmodule:: oci.functions
5+
6+
.. autoclass:: FunctionsInvokeClient
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+
FunctionsInvokeClientCompositeOperations
2+
========================================
3+
4+
.. currentmodule:: oci.functions
5+
6+
.. autoclass:: FunctionsInvokeClientCompositeOperations
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+
FunctionsManagementClient
2+
=========================
3+
4+
.. currentmodule:: oci.functions
5+
6+
.. autoclass:: FunctionsManagementClient
7+
:special-members: __init__
8+
:members:

0 commit comments

Comments
 (0)