Skip to content

Commit b5334ea

Browse files
authored
Releasing version 3.37.13
Releasing version 3.37.13
2 parents fbb07c9 + aa009ca commit b5334ea

File tree

13 files changed

+249
-110
lines changed

13 files changed

+249
-110
lines changed

CHANGELOG.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,31 @@ 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.37.13 - 2024-03-12
10+
--------------------
11+
Added
12+
~~~~~
13+
* Database Service
14+
15+
* Support for New Dev License Type in Oracle Autonomous Database (on Dedicated Infrastructure)
16+
17+
* ``oci db autonomous-database create --is-dev-tier``
18+
* ``oci db autonomous-database create-adb-cross-region-data-guard-details --is-dev-tier``
19+
* ``oci db autonomous-database create-autonomous-database-create-cross-region-disaster-recovery-details --is-dev-tier``
20+
* ``oci db autonomous-database create-autonomous-database-create-cross-tenancy-disaster-recovery-details --is-dev-tier``
21+
* ``oci db autonomous-database create-from-backup-id --is-dev-tier``
22+
* ``oci db autonomous-database create-from-backup-timestamp --is-dev-tier``
23+
* ``oci db autonomous-database create-from-clone --is-dev-tier``
24+
* ``oci db autonomous-database create-refreshable-clone --is-dev-tier``
25+
* ``oci db autonomous-database create-virtual-clone --is-dev-tier``
26+
* ``oci db autonomous-database update --is-dev-tier``
27+
28+
* Support for new optional parameters to create Autonomous Container Database
29+
30+
* ``oci db autonomous-container-database create --db-split-threshold --distribution-affinity --net-services-architecture --vm-failover-reservation``
31+
32+
* Support for Autoscaling in the Data Science Model Deployment service
33+
934
3.37.12 - 2024-03-05
1035
--------------------
1136
Added

requirements.txt

Lines changed: 1 addition & 1 deletion
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.124.0
17+
oci==2.124.1
1818
packaging==20.2
1919
pluggy==0.13.0
2020
py==1.11.0

services/database/src/oci_cli_database/database_cli_extended.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2741,7 +2741,7 @@ def enable_external_pluggable_database_operations_insights_extended(ctx, **kwarg
27412741
kwargs.pop('external_db_connector_id')
27422742

27432743
if 'external_pdb_id' in kwargs:
2744-
kwargs['external_database_connector_id'] = kwargs['external_pdb_id']
2744+
kwargs['external_pluggable_database_id'] = kwargs['external_pdb_id']
27452745
kwargs.pop('external_pdb_id')
27462746

27472747
ctx.invoke(database_cli.enable_external_pluggable_database_operations_insights, **kwargs)

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

Lines changed: 62 additions & 10 deletions
Large diffs are not rendered by default.

services/identity_domains/src/oci_cli_identity_domains/identitydomains_cli_extended.py

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1446,3 +1446,61 @@ def list_groups_extended(ctx, from_json, all_pages, page_size, filter, sort_by,
14461446
**kwargs
14471447
)
14481448
cli_util.render_response(result, ctx)
1449+
1450+
1451+
# Using list_call_get_up_to_limit_multiple_keys and list_call_get_all_results_multiple_keys
1452+
@cli_util.copy_params_from_generated_command(identitydomains_cli.list_users)
1453+
@identitydomains_cli.users_group.command(name=cli_util.override('list_users.command_name', 'list'), help=identitydomains_cli.list_users.help)
1454+
@click.pass_context
1455+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={}, output_type={'module': 'identity_domains', 'class': 'Users'})
1456+
@cli_util.wrap_exceptions
1457+
def list_users_extended(ctx, from_json, all_pages, page_size, filter, sort_by, sort_order, start_index, count, attributes, attribute_sets, authorization, resource_type_schema_version, page, limit):
1458+
1459+
if all_pages and limit:
1460+
raise click.UsageError('If you provide the --all option you cannot provide the --limit option')
1461+
1462+
kwargs = {}
1463+
if filter is not None:
1464+
kwargs['filter'] = filter
1465+
if sort_by is not None:
1466+
kwargs['sort_by'] = sort_by
1467+
if sort_order is not None:
1468+
kwargs['sort_order'] = sort_order
1469+
if start_index is not None:
1470+
kwargs['start_index'] = start_index
1471+
if count is not None:
1472+
kwargs['count'] = count
1473+
if attributes is not None:
1474+
kwargs['attributes'] = attributes
1475+
if attribute_sets is not None and len(attribute_sets) > 0:
1476+
kwargs['attribute_sets'] = attribute_sets
1477+
if authorization is not None:
1478+
kwargs['authorization'] = authorization
1479+
if resource_type_schema_version is not None:
1480+
kwargs['resource_type_schema_version'] = resource_type_schema_version
1481+
if page is not None:
1482+
kwargs['page'] = page
1483+
if limit is not None:
1484+
kwargs['limit'] = limit
1485+
client = cli_util.build_client('identity_domains', 'identity_domains', ctx)
1486+
1487+
if all_pages:
1488+
if page_size:
1489+
kwargs['limit'] = page_size
1490+
1491+
result = cli_util.list_call_get_all_results_multiple_keys(
1492+
client.list_users,
1493+
**kwargs
1494+
)
1495+
elif limit is not None:
1496+
result = cli_util.list_call_get_up_to_limit_multiple_keys(
1497+
client.list_users,
1498+
limit,
1499+
page_size,
1500+
**kwargs
1501+
)
1502+
else:
1503+
result = client.list_users(
1504+
**kwargs
1505+
)
1506+
cli_util.render_response(result, ctx)

0 commit comments

Comments
 (0)