Skip to content

Commit 35af3e2

Browse files
authored
Releasing version 3.34.0
Releasing version 3.34.0
2 parents c689e2a + c3d49a1 commit 35af3e2

File tree

38 files changed

+10033
-584
lines changed

38 files changed

+10033
-584
lines changed

CHANGELOG.rst

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,67 @@ 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.34.0 - 2023-10-17
10+
--------------------
11+
Added
12+
~~~~~
13+
* Support for the new Redis service
14+
15+
* ``oci redis``
16+
17+
* Support for export Container and Kubernetes application listings in the Marketplace Service
18+
19+
* ``oci marketplace-publisher``
20+
21+
* Support for achieving higher limits in the Network Firewall Service
22+
23+
* ``oci network-firewall address-list``
24+
* ``oci network-firewall application``
25+
* ``oci network-firewall application-group``
26+
* ``oci network-firewall decryption-profile``
27+
* ``oci network-firewall decryption-rule``
28+
* ``oci network-firewall mapped-secret``
29+
* ``oci network-firewall network-firewall-policy``
30+
* ``oci network-firewall security-rule``
31+
* ``oci network-firewall service``
32+
* ``oci network-firewall service-list``
33+
* ``oci network-firewall url-list``
34+
35+
* Support for exporting access request reports in the Managed Access Service
36+
37+
* ``oci oma lockbox export-access-requests``
38+
39+
* Support for Mount File System in Data Science Jobs and Notebooks in the Data Science Service
40+
41+
* ``oci data-science job create --job-storage-mount-configuration-details-list``
42+
* ``oci data-science job update --job-storage-mount-configuration-details-list``
43+
* ``oci data-science notebook-session create --notebook-session-storage-mount-configuration-details-list``
44+
* ``oci data-science notebook-session update --notebook-session-storage-mount-configuration-details-list``
45+
46+
* Logging Management
47+
48+
* Support for unified agent operational metrics for the service configuration option
49+
50+
* ``oci logging agent-configuration``
51+
52+
* Added new destination field in the option ``--service-configuration``
53+
54+
Changed
55+
~~~~~~~
56+
* [BREAKING] Optional parameter ``--auto-approval-state`` was removed in the Managed Access Service
57+
58+
* ``oci oma lockbox update``
59+
60+
* [BREAKING] Optional parameter ``--service-stage`` was removed in the Logging Management Service
61+
62+
* ``oci logging service list``
63+
64+
* [BREAKING] Optional parameters ``--application-lists, --decryption-profiles, --decryption-rules, --ip-address-lists, --mapped-secrets, --security-rules, --url-lists`` were removed in the Network Firewall Service
65+
66+
* ``oci network-firewall network-firewall-policy create``
67+
68+
* ``oci network-firewall network-firewall-policy update``
69+
970
3.33.4 - 2023-10-10
1071
--------------------
1172
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.112.4
17+
oci==2.113.0
1818
packaging==20.2
1919
pluggy==0.13.0
2020
py==1.11.0

services/artifacts/src/oci_cli_artifacts/artifacts_cli_extended.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def restore_container_image_extended(ctx, **kwargs):
245245
# cli_util.rename_command(artifacts_cli, artifacts_cli.container_image_signature_group, artifacts_cli.list_container_image_signatures, 'list')
246246

247247

248-
# Using artifacts_list_call_get_all_results
248+
# Using list_call_get_all_results_multiple_keys
249249
@cli_util.copy_params_from_generated_command(artifacts_cli.list_container_image_signatures)
250250
@artifacts_cli.container_image_signature_group.command(name=cli_util.override('list_container_image_signatures.command_name', 'list'), help=artifacts_cli.list_container_image_signatures.help)
251251
@click.pass_context
@@ -288,13 +288,13 @@ def list_container_image_signatures_extended(ctx, from_json, all_pages, page_siz
288288
if page_size:
289289
kwargs['limit'] = page_size
290290

291-
result = cli_util.artifacts_list_call_get_all_results(
291+
result = cli_util.list_call_get_all_results_multiple_keys(
292292
client.list_container_image_signatures,
293293
compartment_id=compartment_id,
294294
**kwargs
295295
)
296296
elif limit is not None:
297-
result = cli_util.artifacts_list_call_get_up_to_limit(
297+
result = cli_util.list_call_get_up_to_limit_multiple_keys(
298298
client.list_container_image_signatures,
299299
limit,
300300
page_size,
@@ -309,7 +309,7 @@ def list_container_image_signatures_extended(ctx, from_json, all_pages, page_siz
309309
cli_util.render_response(result, ctx)
310310

311311

312-
# Using artifacts_list_call_get_all_results
312+
# Using list_call_get_all_results_multiple_keys
313313
@cli_util.copy_params_from_generated_command(artifacts_cli.list_repositories)
314314
@artifacts_cli.repository_group.command(name=cli_util.override('list_repositories.command_name', 'list'), help=artifacts_cli.list_repositories.help)
315315
@click.pass_context
@@ -342,13 +342,13 @@ def list_repositories_extended(ctx, from_json, all_pages, page_size, compartment
342342
if page_size:
343343
kwargs['limit'] = page_size
344344

345-
result = cli_util.artifacts_list_call_get_all_results(
345+
result = cli_util.list_call_get_all_results_multiple_keys(
346346
client.list_repositories,
347347
compartment_id=compartment_id,
348348
**kwargs
349349
)
350350
elif limit is not None:
351-
result = cli_util.artifacts_list_call_get_up_to_limit(
351+
result = cli_util.list_call_get_up_to_limit_multiple_keys(
352352
client.list_repositories,
353353
limit,
354354
page_size,
@@ -363,7 +363,7 @@ def list_repositories_extended(ctx, from_json, all_pages, page_size, compartment
363363
cli_util.render_response(result, ctx)
364364

365365

366-
# Using artifacts_artifacts_list_call_get_all_results
366+
# Using list_call_get_all_results_multiple_keys
367367
@cli_util.copy_params_from_generated_command(artifacts_cli.list_generic_artifacts, params_to_exclude=['version_parameterconflict'])
368368
@artifacts_cli.generic_artifact_group.command(name=cli_util.override('list_generic_artifacts.command_name', 'list'), help=artifacts_cli.list_generic_artifacts.help)
369369
@cli_util.option('--artifact-version', help=u"""The generic artifact version.
@@ -403,14 +403,14 @@ def list_generic_artifacts_extended(ctx, from_json, all_pages, page_size, compar
403403
if page_size:
404404
kwargs['limit'] = page_size
405405

406-
result = cli_util.artifacts_list_call_get_all_results(
406+
result = cli_util.list_call_get_all_results_multiple_keys(
407407
client.list_generic_artifacts,
408408
compartment_id=compartment_id,
409409
repository_id=repository_id,
410410
**kwargs
411411
)
412412
elif limit is not None:
413-
result = cli_util.artifacts_list_call_get_up_to_limit(
413+
result = cli_util.list_call_get_up_to_limit_multiple_keys(
414414
client.list_generic_artifacts,
415415
limit,
416416
page_size,
@@ -427,7 +427,7 @@ def list_generic_artifacts_extended(ctx, from_json, all_pages, page_size, compar
427427
cli_util.render_response(result, ctx)
428428

429429

430-
# Using artifacts_list_call_get_all_results
430+
# Using list_call_get_all_results_multiple_keys
431431
@cli_util.copy_params_from_generated_command(artifacts_cli.list_container_repositories,)
432432
@artifacts_cli.container_repository_group.command(name=cli_util.override('list_container_repositories.command_name', 'list'), help=artifacts_cli.list_container_repositories.help)
433433
@click.pass_context
@@ -462,13 +462,13 @@ def list_container_repositories_extended(ctx, from_json, all_pages, page_size, c
462462
if page_size:
463463
kwargs['limit'] = page_size
464464

465-
result = cli_util.artifacts_list_call_get_all_results(
465+
result = cli_util.list_call_get_all_results_multiple_keys(
466466
client.list_container_repositories,
467467
compartment_id=compartment_id,
468468
**kwargs
469469
)
470470
elif limit is not None:
471-
result = cli_util.artifacts_list_call_get_up_to_limit(
471+
result = cli_util.list_call_get_up_to_limit_multiple_keys(
472472
client.list_container_repositories,
473473
limit,
474474
page_size,
@@ -485,7 +485,7 @@ def list_container_repositories_extended(ctx, from_json, all_pages, page_size, c
485485

486486
# Rename argument: oci artifacts container image list --version-parameterconflict
487487
# => oci artifacts container image list --image-version
488-
# Using artifacts_list_call_get_all_results
488+
# Using list_call_get_all_results_multiple_keys
489489
@cli_util.copy_params_from_generated_command(artifacts_cli.list_container_images, params_to_exclude=['version_parameterconflict'])
490490
@artifacts_cli.container_image_group.command(name=cli_util.override('list_container_images.command_name', 'list'), help=artifacts_cli.list_container_images.help)
491491
@cli_util.option('--image-version', help=u"""A filter to return container images that match the version.
@@ -530,13 +530,13 @@ def list_container_images_extended(ctx, from_json, all_pages, page_size, compart
530530
if page_size:
531531
kwargs['limit'] = page_size
532532

533-
result = cli_util.artifacts_list_call_get_all_results(
533+
result = cli_util.list_call_get_all_results_multiple_keys(
534534
client.list_container_images,
535535
compartment_id=compartment_id,
536536
**kwargs
537537
)
538538
elif limit is not None:
539-
result = cli_util.artifacts_list_call_get_up_to_limit(
539+
result = cli_util.list_call_get_up_to_limit_multiple_keys(
540540
client.list_container_images,
541541
limit,
542542
page_size,

0 commit comments

Comments
 (0)