Skip to content

Commit 67723bf

Browse files
authored
Merge pull request #58 from oracle/release_2.18.0_2021-03-25-11-56-52
Releasing version 2.18.0
2 parents 3cd1e5d + a181c54 commit 67723bf

File tree

1,671 files changed

+109556
-20945
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,671 files changed

+109556
-20945
lines changed

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,30 @@ 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.18.0] - 2021-03-25
8+
9+
## Added
10+
11+
- Support change compartment for all the supported services (except database)
12+
- Support for [Database groups](https://docs.oracle.com/en-us/iaas/database-management/doc/create-and-use-database-groups.html) in Database management service
13+
- Support for Routing Policies in Load Balancer Service
14+
- Support for Auto-Scale Configs in Big Data Service
15+
- Support for Log Analytics Log groups and entities
16+
- Support for File System Service Clones Feature
17+
- Support for enabling disabling message map flag on SCH Service
18+
- Support for SMS subscriptions through the Oracle Cloud Infrastructure Notifications service
19+
- Support for searching OCI resources in another tenancy
20+
- Support updating OCE instance usage type
21+
- Support for private clusters to the Container Engine for Kubernetes service
22+
- Modules `oci_opsi_database_insights_facts` and `oci_opsi_sql_searches_facts` in opsi service
23+
24+
### Changed
25+
- Please update to the latest version of [OCI Python SDK](https://github.com/oracle/oci-python-sdk)
26+
27+
### Deprecated:
28+
- Module `oci_apigateway_waas_certificate_facts` is deprecated use `oci_apigateway_certificate_facts` instead
29+
- Module `oci_apigateway_waas_certificate` is deprecated use `oci_apigateway_certificate` instead
30+
731
## [2.17.0] - 2021-03-11
832

933
### Added

docs/collections/index.rst

+6
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,9 @@ Collection Index
88
These are the collections with docs hosted on `docs.ansible.com <https://docs.ansible.com/>`_.
99

1010
* :ref:`oracle.oci <plugins_in_oracle.oci>`
11+
12+
.. toctree::
13+
:maxdepth: 1
14+
:hidden:
15+
16+
oracle/index

docs/collections/index_module.rst

+81
Large diffs are not rendered by default.

docs/collections/oracle/index.rst

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
:orphan:
2+
3+
.. _list_of_collections_oracle:
4+
5+
Collections in the Oracle Namespace
6+
===================================
7+
8+
These are the collections with docs hosted on `docs.ansible.com <https://docs.ansible.com/>`_ in the **oracle** namespace.
9+
10+
* :ref:`oracle.oci <plugins_in_oracle.oci>`
11+
12+
.. toctree::
13+
:maxdepth: 1
14+
:hidden:
15+
16+
oci/index

docs/collections/oracle/oci/index.rst

+920-2
Large diffs are not rendered by default.

docs/collections/oracle/oci/oci_analytics_instance_actions_module.rst

+30-6
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.17.0).
23+
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.18.0).
2424

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

@@ -43,6 +43,7 @@ Synopsis
4343
.. Description
4444
4545
- Perform actions on an AnalyticsInstance resource in Oracle Cloud Infrastructure
46+
- For *action=change_compartment*, change the compartment of an Analytics instance. The operation is long-running and creates a new WorkRequest.
4647
- For *action=change_analytics_instance_network_endpoint*, change an Analytics instance network endpoint. The operation is long-running and creates a new WorkRequest.
4748
- For *action=scale*, scale an Analytics instance up or down. The operation is long-running and creates a new WorkRequest.
4849
- For *action=start*, starts the specified Analytics instance. The operation is long-running and creates a new WorkRequest.
@@ -86,7 +87,8 @@ Parameters
8687
</td>
8788
<td>
8889
<ul style="margin: 0; padding: 0"><b>Choices:</b>
89-
<li>change_analytics_instance_network_endpoint</li>
90+
<li>change_compartment</li>
91+
<li>change_analytics_instance_network_endpoint</li>
9092
<li>scale</li>
9193
<li>start</li>
9294
<li>stop</li>
@@ -245,6 +247,22 @@ Parameters
245247
</td>
246248
</tr>
247249

250+
<tr>
251+
<td colspan="3">
252+
<div class="ansibleOptionAnchor" id="parameter-compartment_id"></div>
253+
<b>compartment_id</b>
254+
<a class="ansibleOptionLink" href="#parameter-compartment_id" title="Permalink to this option"></a>
255+
<div style="font-size: small">
256+
<span style="color: purple">string</span>
257+
</div>
258+
</td>
259+
<td>
260+
</td>
261+
<td>
262+
<div>The OCID of the new compartment.</div>
263+
<div>Required for <em>action=change_compartment</em>.</div>
264+
</td>
265+
</tr>
248266
<tr>
249267
<td colspan="3">
250268
<div class="ansibleOptionAnchor" id="parameter-config_file_location"></div>
@@ -503,29 +521,35 @@ Examples
503521
.. code-block:: yaml+jinja
504522

505523

524+
- name: Perform action change_compartment on analytics_instance
525+
oci_analytics_instance_actions:
526+
analytics_instance_id: "ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx"
527+
compartment_id: "ocid1.compartment.oc1..xxxxxxEXAMPLExxxxxx"
528+
action: change_compartment
529+
506530
- name: Perform action change_analytics_instance_network_endpoint on analytics_instance
507531
oci_analytics_instance_actions:
508-
analytics_instance_id: ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx
532+
analytics_instance_id: "ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx"
509533
network_endpoint_details:
510534
network_endpoint_type: PRIVATE
511535
action: change_analytics_instance_network_endpoint
512536

513537
- name: Perform action scale on analytics_instance
514538
oci_analytics_instance_actions:
515-
analytics_instance_id: ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx
539+
analytics_instance_id: "ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx"
516540
capacity:
517541
capacity_type: OLPU_COUNT
518542
capacity_value: 56
519543
action: scale
520544

521545
- name: Perform action start on analytics_instance
522546
oci_analytics_instance_actions:
523-
analytics_instance_id: ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx
547+
analytics_instance_id: "ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx"
524548
action: start
525549

526550
- name: Perform action stop on analytics_instance
527551
oci_analytics_instance_actions:
528-
analytics_instance_id: ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx
552+
analytics_instance_id: "ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx"
529553
action: stop
530554

531555

docs/collections/oracle/oci/oci_analytics_instance_facts_module.rst

+3-3
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.17.0).
23+
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.18.0).
2424

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

@@ -389,11 +389,11 @@ Examples
389389

390390
- name: List analytics_instances
391391
oci_analytics_instance_facts:
392-
compartment_id: ocid1.compartment.oc1..xxxxxxEXAMPLExxxxxx
392+
compartment_id: "ocid1.compartment.oc1..xxxxxxEXAMPLExxxxxx"
393393

394394
- name: Get a specific analytics_instance
395395
oci_analytics_instance_facts:
396-
analytics_instance_id: ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx
396+
analytics_instance_id: "ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx"
397397

398398

399399

docs/collections/oracle/oci/oci_analytics_instance_module.rst

+7-7
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.17.0).
23+
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.18.0).
2424

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

@@ -44,7 +44,7 @@ Synopsis
4444
4545
- This module allows the user to create, update and delete an AnalyticsInstance resource in Oracle Cloud Infrastructure
4646
- For *state=present*, create a new AnalyticsInstance in the specified compartment. The operation is long-running and creates a new WorkRequest.
47-
- This resource has the following action operations in the :ref:`oci_analytics_instance_actions <ansible_collections.oci_analytics_instance_actions_module>` module: change_analytics_instance_network_endpoint, scale, start, stop.
47+
- This resource has the following action operations in the :ref:`oci_analytics_instance_actions <ansible_collections.oci_analytics_instance_actions_module>` module: change_compartment, change_analytics_instance_network_endpoint, scale, start, stop.
4848

4949

5050
.. Aliases
@@ -696,7 +696,7 @@ Examples
696696
- name: Create analytics_instance
697697
oci_analytics_instance:
698698
name: name_example
699-
compartment_id: ocid1.compartment.oc1..xxxxxxEXAMPLExxxxxx
699+
compartment_id: "ocid1.compartment.oc1..xxxxxxEXAMPLExxxxxx"
700700
feature_set: SELF_SERVICE_ANALYTICS
701701
capacity:
702702
capacity_type: OLPU_COUNT
@@ -707,7 +707,7 @@ Examples
707707
oci_analytics_instance:
708708
name: name_example
709709
description: description_example
710-
compartment_id: ocid1.compartment.oc1..xxxxxxEXAMPLExxxxxx
710+
compartment_id: "ocid1.compartment.oc1..xxxxxxEXAMPLExxxxxx"
711711
license_type: LICENSE_INCLUDED
712712
email_notification: email_notification_example
713713
defined_tags: {'Operations': {'CostCenter': 'US'}}
@@ -717,17 +717,17 @@ Examples
717717
oci_analytics_instance:
718718
description: description_example
719719
license_type: LICENSE_INCLUDED
720-
analytics_instance_id: ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx
720+
analytics_instance_id: "ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx"
721721

722722
- name: Delete analytics_instance
723723
oci_analytics_instance:
724-
analytics_instance_id: ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx
724+
analytics_instance_id: "ocid1.analyticsinstance.oc1..xxxxxxEXAMPLExxxxxx"
725725
state: absent
726726

727727
- name: Delete analytics_instance using name (when environment variable OCI_USE_NAME_AS_IDENTIFIER is set)
728728
oci_analytics_instance:
729729
name: name_example
730-
compartment_id: ocid1.compartment.oc1..xxxxxxEXAMPLExxxxxx
730+
compartment_id: "ocid1.compartment.oc1..xxxxxxEXAMPLExxxxxx"
731731
state: absent
732732

733733

docs/collections/oracle/oci/oci_announcements_service_announcement_facts_module.rst

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

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

@@ -252,7 +252,7 @@ Examples
252252

253253
- name: Get a specific announcement
254254
oci_announcements_service_announcement_facts:
255-
announcement_id: ocid1.announcement.oc1..xxxxxxEXAMPLExxxxxx
255+
announcement_id: "ocid1.announcement.oc1..xxxxxxEXAMPLExxxxxx"
256256

257257

258258

docs/collections/oracle/oci/oci_announcements_service_announcement_user_status_details_facts_module.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ oracle.oci.oci_announcements_service_announcement_user_status_details_facts -- F
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.17.0).
23+
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.18.0).
2424

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

@@ -252,7 +252,7 @@ Examples
252252

253253
- name: Get a specific announcement_user_status_details
254254
oci_announcements_service_announcement_user_status_details_facts:
255-
announcement_id: ocid1.announcement.oc1..xxxxxxEXAMPLExxxxxx
255+
announcement_id: "ocid1.announcement.oc1..xxxxxxEXAMPLExxxxxx"
256256

257257

258258

docs/collections/oracle/oci/oci_announcements_service_announcement_user_status_details_module.rst

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

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

@@ -316,10 +316,10 @@ Examples
316316

317317
- name: Update announcement_user_status_details
318318
oci_announcements_service_announcement_user_status_details:
319-
time_acknowledged: 2019-01-28T23:21:57.342Z
320-
user_id: ocid1.user.region1..exampleaorxz3psplonigcvbzy5oaiwiubh7k7ip6zgklfauxic67kksu4oq
321-
user_status_announcement_id: ocid1.announcement.region1..examplear73oue4jdywjjvietoc6im3cvb6xae4falm3faux5us3iwra3t6q
322-
announcement_id: ocid1.announcement.oc1..xxxxxxEXAMPLExxxxxx
319+
time_acknowledged: "2019-01-28T23:21:57.342Z"
320+
user_id: "ocid1.user.region1..exampleaorxz3psplonigcvbzy5oaiwiubh7k7ip6zgklfauxic67kksu4oq"
321+
user_status_announcement_id: "ocid1.announcement.region1..examplear73oue4jdywjjvietoc6im3cvb6xae4falm3faux5us3iwra3t6q"
322+
announcement_id: "ocid1.announcement.oc1..xxxxxxEXAMPLExxxxxx"
323323

324324

325325

docs/collections/oracle/oci/oci_announcements_service_announcements_collection_facts_module.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ oracle.oci.oci_announcements_service_announcements_collection_facts -- Fetches d
2020
.. Collection note
2121
2222
.. note::
23-
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.17.0).
23+
This plugin is part of the `oracle.oci collection <https://galaxy.ansible.com/oracle/oci>`_ (version 2.18.0).
2424

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

@@ -376,7 +376,7 @@ Examples
376376

377377
- name: List announcements_collection
378378
oci_announcements_service_announcements_collection_facts:
379-
compartment_id: ocid1.compartment.oc1..xxxxxxEXAMPLExxxxxx
379+
compartment_id: "ocid1.compartment.oc1..xxxxxxEXAMPLExxxxxx"
380380

381381

382382

0 commit comments

Comments
 (0)