Skip to content

Commit

Permalink
Releasing version 3.50.3
Browse files Browse the repository at this point in the history
Releasing version 3.50.3
  • Loading branch information
oci-dex-release-bot authored Dec 10, 2024
2 parents 6c782b4 + f62a54d commit e50f855
Show file tree
Hide file tree
Showing 20 changed files with 1,294 additions and 134 deletions.
57 changes: 57 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,63 @@ All notable changes to this project will be documented in this file.

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


3.50.3 - 2024-12-10
--------------------
Added
~~~~~

* Database Service

* Support for BYOK(bring your own key)

* ``oci db autonomous-container-database rotate-key --key-version-id``
* ``oci db autonomous-database rotate-key --key-version-id``

* Disaster Recovery Service

* Support for Refreshing DrPlans

* ``oci disaster-recovery dr-plan refresh``
* ``oci disaster-recovery dr-plan refresh-dr-plan-refresh-dr-plan-default-details``
* ``oci disaster-recovery dr-plan verify``
* ``oci disaster-recovery dr-plan verify-dr-plan-verify-dr-plan-default-details``

* Visual Builder Service

* Add support for Private Access to a VB instance

* ``oci visual-builder vb-instance create-vb-instance-private-endpoint-details --compartment-id | -c, --display-name, --network-endpoint-details-subnet-id, --node-count, --alternate-custom-endpoints, --consumption-model, --custom-endpoint, --defined-tags, --freeform-tags, -? | -h | --help, --idcs-open-id, --is-visual-builder-enabled, --network-endpoint-details-network-security-group-ids, --network-endpoint-details-private-endpoint-ip``
* ``oci visual-builder vb-instance reconfigure-private-endpoint --vb-instance-id, -? | -h | --help``
* ``oci visual-builder vb-instance update-vb-instance-update-private-endpoint-details --vb-instance-id, --alternate-custom-endpoints, --custom-endpoint, --defined-tags, --display-name, --force, --freeform-tags, -? | -h | --help, --idcs-open-id, --is-visual-builder-enabled, --network-endpoint-details-network-security-group-ids, --network-endpoint-details-subnet-id, --node-count``

* Fleet Software Update Service

* Support for Exadata Fleet Update DB and GI Rollback Maintenance Cycle Feature

* ``oci fleet-software-update fsu-action create-fsu-action-create-rollback-cycle-apply-action-details``

* AI Language Service

* Support for new optional parameter alias

* ``oci ai language batch-detect-entities --alias``
* ``oci ai language batch-detect-health-entities --alias``
* ``oci ai language batch-detect-key-phrases --alias``
* ``oci ai language batch-detect-language --alias``
* ``oci ai language batch-detect-pii-entities --alias``
* ``oci ai language batch-detect-sentiments --alias``
* ``oci ai language batch-detect-text-classification --alias``
* ``oci ai language batch-language-translation --alias, --endpoint-id, --no-translate``
* ``oci ai language endpoint create --alias, --compute-type``
* ``oci ai language endpoint update --alias``

* Data Flow Service

* Support for cascading deletion of Applications and Runs

* ``oci data-flow application cascading-delete --application-id``

3.50.2 - 2024-11-19
--------------------
Added
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Jinja2<3.1; python_version >= '3.7'
jmespath==0.10.0
ndg-httpsclient==0.4.2
mock==2.0.0
oci==2.139.0
oci==2.140.0
packaging==20.2
pluggy==0.13.0
py==1.11.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,11 @@ def language_group():

# Remove polymorphic model group command
aiservicelanguage_cli.model_group.commands.pop(aiservicelanguage_cli.create_model_pii_model_details.name)


# Remove create-model-pre-trained-translation-model-details from oci ai language model
aiservicelanguage_cli.model_group.commands.pop(aiservicelanguage_cli.create_model_pre_trained_translation_model_details.name)


# Remove create-model-health-nlu-model-details from oci ai language model
aiservicelanguage_cli.model_group.commands.pop(aiservicelanguage_cli.create_model_health_nlu_model_details.name)

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def create_volume_extended(ctx, **kwargs):
@cli_util.option('--boot-volume-backup-id', help="""The OCID of the boot volume backup from which the data should be restored on the newly created boot volume. You can specify either this, --source-boot-volume-id or --source-volume-replica-id but not all.""")
@cli_util.option('--source-volume-replica-id', help="""The OCID of the boot volume replica from which the data should be restored on the newly created boot volume. You can specify either this, --source-boot-volume-id or --boot-volume-backup-id --but not all.""")
@click.pass_context
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'defined-tags': {'module': 'core', 'class': 'dict(str, dict(str, object))'}, 'freeform-tags': {'module': 'core', 'class': 'dict(str, string)'}, 'source-details': {'module': 'core', 'class': 'BootVolumeSourceDetails'}, 'boot-volume-replicas': {'module': 'core', 'class': 'list[BootVolumeReplicaDetails]'}}, output_type={'module': 'core', 'class': 'BootVolume'})
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'defined-tags': {'module': 'core', 'class': 'dict(str, dict(str, object))'}, 'freeform-tags': {'module': 'core', 'class': 'dict(str, string)'}, 'source-details': {'module': 'core', 'class': 'BootVolumeSourceDetails'}, 'boot-volume-replicas': {'module': 'core', 'class': 'list[BootVolumeReplicaDetails]'}, 'autotune-policies': {'module': 'core', 'class': 'list[AutotunePolicy]'}}, output_type={'module': 'core', 'class': 'BootVolume'})
@cli_util.wrap_exceptions
def create_boot_volume_extended(ctx, **kwargs):
if (kwargs['source_boot_volume_id'] and kwargs['boot_volume_backup_id']) or (kwargs['source_boot_volume_id'] and kwargs['source_volume_replica_id']) or \
Expand Down
Loading

0 comments on commit e50f855

Please sign in to comment.