Skip to content

Commit b9ac4d6

Browse files
kishan0201HamadaGabrIbrahimharshkumar-devKanvipasrichalealex262
committed
Releasing version 3.36.1
Co-authored-by: Hamada Ibrahim <[email protected]> Co-authored-by: Harsh Kumar <[email protected]> Co-authored-by: Kanvi Pasricha <[email protected]> Co-authored-by: Alex Le <[email protected]> Co-authored-by: Nupur Gupta <[email protected]> Co-authored-by: Karthik Kamath <[email protected]> Co-authored-by: Mandy Tsai <[email protected]> Co-authored-by: Pankaj Joshi <[email protected]> Co-authored-by: Anup Singh <[email protected]> Co-authored-by: Ram Kishan Vooka <[email protected]>
1 parent 0f471ea commit b9ac4d6

File tree

18 files changed

+2225
-20
lines changed

18 files changed

+2225
-20
lines changed

CHANGELOG.rst

+36
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,42 @@ All notable changes to this project will be documented in this file.
66

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

9+
3.36.1 - 2023-11-07
10+
--------------------
11+
Added
12+
~~~~~
13+
* Java Management Service
14+
15+
* Support for distribution and management of Deployment Rule Set
16+
17+
* ``oci jms drs-file-collection list-drs-files``
18+
* ``oci jms fleet create-drs-file``
19+
* ``oci jms fleet update-drs-file``
20+
* ``oci jms fleet enable-drs``
21+
* ``oci jms fleet disable-drs``
22+
23+
* Support for exporting data across regions
24+
25+
* ``oci jms export-setting``
26+
* ``oci jms export-status``
27+
28+
* Support for new optional parameter
29+
30+
* ``oci jms fleet-agent-configuration update --mac-os-configuration``
31+
* ``oci jms java-family list --is-supported-version``
32+
* ``oci jms work-request list --managed-instance-id``
33+
34+
* Database Service
35+
36+
* Support for SaaS administrative user configuration
37+
38+
* ``oci db autonomous-database configure-saas-admin-user``
39+
* ``oci db autonomous-database saas-admin-user-status``
40+
41+
* Support for Create Autonomous Dataguard Association
42+
43+
* ``oci db autonomous-container-database-dataguard create``
44+
945
3.36.0 - 2023-10-31
1046
--------------------
1147
Added

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Jinja2==3.0.3
1414
jmespath==0.10.0
1515
ndg-httpsclient==0.4.2
1616
mock==2.0.0
17-
oci==2.115.0
17+
oci==2.115.1
1818
packaging==20.2
1919
pluggy==0.13.0
2020
py==1.11.0

services/database/src/oci_cli_database/generated/database_cli.py

+195-7
Large diffs are not rendered by default.

services/database/tests/util/generated/command_to_api.py

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
"db.convert_to_regular_pluggable_database": "oci.database.DatabaseClient.convert_to_regular_pluggable_database",
3737
"db.create_application_vip": "oci.database.DatabaseClient.create_application_vip",
3838
"db.create_autonomous_container_database": "oci.database.DatabaseClient.create_autonomous_container_database",
39+
"db.create_autonomous_container_database_dataguard_association": "oci.database.DatabaseClient.create_autonomous_container_database_dataguard_association",
3940
"db.create_autonomous_database": "oci.database.DatabaseClient.create_autonomous_database",
4041
"db.create_autonomous_database_backup": "oci.database.DatabaseClient.create_autonomous_database_backup",
4142
"db.create_autonomous_vm_cluster": "oci.database.DatabaseClient.create_autonomous_vm_cluster",

services/jms/src/oci_cli_java_management_service/generated/javamanagementservice_cli.py

+539-9
Large diffs are not rendered by default.
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# coding: utf-8
2+
# Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
3+
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
4+
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# coding: utf-8
2+
# Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
3+
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
4+
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# coding: utf-8
2+
# Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
3+
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
4+
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# coding: utf-8
2+
# Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
3+
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
4+
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# coding: utf-8
2+
# Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
3+
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
4+
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601
5+
6+
import oci
7+
from oci_cli.cli_clients import CLIENT_MAP
8+
from oci_cli.cli_clients import MODULE_TO_TYPE_MAPPINGS
9+
from oci.jms_java_downloads import JavaDownloadClient
10+
11+
MODULE_TO_TYPE_MAPPINGS["jms_java_downloads"] = oci.jms_java_downloads.models.jms_java_downloads_type_mapping
12+
if CLIENT_MAP.get("jms_java_downloads") is None:
13+
CLIENT_MAP["jms_java_downloads"] = {}
14+
CLIENT_MAP["jms_java_downloads"]["java_download"] = JavaDownloadClient

0 commit comments

Comments
 (0)