Skip to content

Commit 0d99914

Browse files
authored
Merge pull request #81 from oracle/release_2.22.0_2021-05-20-11-45-55
Releasing version 2.22.0
2 parents 3734b36 + 3e34882 commit 0d99914

File tree

1,119 files changed

+73837
-1797
lines changed

Some content is hidden

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

1,119 files changed

+73837
-1797
lines changed

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,35 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [2.22.0] - 2021-05-20
8+
9+
## Added
10+
- Support for Golden Gate service
11+
- Support for Marketplace Service Catalog
12+
- Operations Insights support for Enterprise Manager external databases and Management Agent Service managed external databases and hosts
13+
- Support for enabling and disabling Operations Insights for External Non-Container and External Pluggable Databases.
14+
- Support for Data Masking in cloud guard
15+
- Support for autonomous database on Exadata Cloud at Customer infrastructure patching in the Database service
16+
- Support for getting a list of tablespaces for a specified Managed Database
17+
- Support for getting the list of database parameters for the specified Managed Database. The parameters are listed in alphabetical order, along with their current values.
18+
- Support for changing the database parameters' values for the specified Managed Database
19+
- Support for resetting the database parameters' values to their default or startup values for the specified Managed Database.
20+
- Support for getting RAC related details for a fleet of databases, managed database, and summary metrics as part of Database Management Service
21+
- Improved announcement email preferences by introducing preference types Opt-In Tenant Announcement, Opt-In Tenant And Informational Announcements, and Opt-Out All Announcements options
22+
- Support for SDK resource in Apigatway service
23+
- Support `change_compartment` action in `compute_management_instance_configuration`
24+
- Added db_system_display_name, region hostvars for db hosts in inventory plugin
25+
- Support for Vault actions - `create_vault_replica`, `delete_vault_replica` and `change_compartment`
26+
- `oci_database_db_node_facts` module now returns `primary_public_ip` and `primary_private_ip` as well
27+
28+
## Fixed
29+
- DB Home patching with database software image issue
30+
- Duplicate aliases for parameters `instance_pool_id` and `instance_id` in the module `oci_compute_management_instance_pool_instance_facts` module. Now only `instance_pool_id` has the alias `id`
31+
- Idempotence issue for `remove_export_drg_route_distribution` action in `oci_network_drg_attachment_actions` module
32+
33+
## Changed
34+
- Please update to the latest version of [OCI Python SDK](https://github.com/oracle/oci-python-sdk)
35+
736
## [2.21.0] - 2021-05-06
837

938
## Added

KNOWN_ISSUES.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,16 @@ This issue is fixed in v2.16.0
2222
### Inventory generation fails with JSONDecodeError in ansible tower
2323
The OCI Inventory Plugin outputs some informational log messages along with the inventory. But ansible tower expects the output from the inventory plugin to only contain the inventory in JSON format which caused the failure.
2424

25-
This issue is fixed in v2.16.0
25+
This issue is fixed in v2.16.0
26+
27+
### Issues while creating/updating private_ip using oci_network_private_ip module
28+
Whenever we want to create private ip, we need to specify the `vnic_id` (`vlan_id` in case of VMWare solution). While updating the private_ip resource,
29+
we can use `OCI_USE_NAME_AS_IDENTIFIER` variable to update by passing the name. `vnic_id` is an updatable field but it doesn't get updated when `OCI_USE_NAME_AS_IDENTIFIER` is set.
30+
Instead it creates a new resource (if possible) in the new `vnic_id`. To update the `vnic_id` of a private_ip resource, we use `private_ip_id` (`id` of the resource) without
31+
setting the `OCI_USE_NAME_AS_IDENTIFIER`.
32+
33+
### ChangeCompartment action on InstanceConfiguration resource
34+
There are two actions which can be performed on instance_configuration resource i.e launch and change_compartment.
35+
These actions return different repsonse models when performed.
36+
`launch` returns `Instance` type while `change_compartment` returns `instance_configuration`
37+
Use `result['instance']` to access response of `launch` action and `result['instance_configuration']` for change_compartment action.

docs/collections/index.rst

+5
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,8 @@ These are the collections with docs hosted on `docs.ansible.com <https://docs.an
99

1010
* :ref:`oracle.oci <plugins_in_oracle.oci>`
1111

12+
.. toctree::
13+
:maxdepth: 1
14+
:hidden:
15+
16+
oracle/index

docs/collections/index_module.rst

+54
Large diffs are not rendered by default.

docs/collections/oracle/index.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
:orphan:
21

32
.. _list_of_collections_oracle:
43

@@ -9,3 +8,8 @@ These are the collections with docs hosted on `docs.ansible.com <https://docs.an
98

109
* :ref:`oracle.oci <plugins_in_oracle.oci>`
1110

11+
.. toctree::
12+
:maxdepth: 1
13+
:hidden:
14+
15+
oci/index

docs/collections/oracle/oci/index.rst

+1,033-2
Large diffs are not rendered by default.

docs/collections/oracle/oci/oci_analytics_instance_actions_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ oracle.oci.oci_analytics_instance_actions -- Perform actions on an AnalyticsInst
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.21.0).
23+
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.22.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install oracle.oci`.
2626

docs/collections/oracle/oci/oci_analytics_instance_facts_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ oracle.oci.oci_analytics_instance_facts -- Fetches details about one or multiple
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.21.0).
23+
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.22.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install oracle.oci`.
2626

docs/collections/oracle/oci/oci_analytics_instance_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ oracle.oci.oci_analytics_instance -- Manage an AnalyticsInstance resource in Ora
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.21.0).
23+
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.22.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install oracle.oci`.
2626

docs/collections/oracle/oci/oci_analytics_private_access_channel_facts_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ oracle.oci.oci_analytics_private_access_channel_facts -- Fetches details about a
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.21.0).
23+
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.22.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install oracle.oci`.
2626

docs/collections/oracle/oci/oci_analytics_private_access_channel_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ oracle.oci.oci_analytics_private_access_channel -- Manage a PrivateAccessChannel
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.21.0).
23+
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.22.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install oracle.oci`.
2626

docs/collections/oracle/oci/oci_analytics_vanity_url_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ oracle.oci.oci_analytics_vanity_url -- Manage a VanityUrl resource in Oracle Clo
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.21.0).
23+
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.22.0).
2424

2525
To install it use: :code:`ansible-galaxy collection install oracle.oci`.
2626

0 commit comments

Comments
 (0)