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.md
+29
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,35 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
5
5
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
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)
Copy file name to clipboardexpand all lines: KNOWN_ISSUES.md
+13-1
Original file line number
Diff line number
Diff line change
@@ -22,4 +22,16 @@ This issue is fixed in v2.16.0
22
22
### Inventory generation fails with JSONDecodeError in ansible tower
23
23
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.
24
24
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.
0 commit comments