Skip to content

Commit

Permalink
Releasing version 3.37.14
Browse files Browse the repository at this point in the history
Releasing version 3.37.14
  • Loading branch information
Swarn10 authored Mar 19, 2024
2 parents b5334ea + 871af78 commit f8d06d8
Show file tree
Hide file tree
Showing 18 changed files with 1,676 additions and 173 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,40 @@ All notable changes to this project will be documented in this file.

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

3.37.14 - 2024-03-19
--------------------
Added
~~~~~
* The AI Language service

* Support for async jobs and document translation

* ``oci ai language job create --compartment-id --input-location --model-metadata-details --output-location --description, --display-name --input-configuration``
* ``oci ai language job update --job-id --description --display-name``
* ``oci ai language job list --compartment-id --all --display-name --id``
* ``oci ai language job get --job-id``
* ``oci ai language job delete --job-id``
* ``oci ai language job cancel --job-id``
* ``oci ai language job change-compartment --compartment-id --job-id``

* Application Performance Monitoring Trace service

* Support for attribute management for trace and synthetic

* ``oci apm-traces attributes activate ``
* ``oci apm-traces attributes deactivate ``
* ``oci apm-traces attributes auto-activate-status ``
* ``oci apm-traces attributes pin ``
* ``oci apm-traces attributes unpin ``
* ``oci apm-traces attributes update-auto-activate ``
* ``oci apm-traces attributes update-notes ``
* ``oci apm-traces attributes update-attribute ``
* Support for new optional parameters in the get trace and get span
* ``oci apm-traces trace trace get --time-trace-started-gte --time-trace-started-lt --trace-namespace ``
* ``oci apm-traces trace span get --time-trace-started-gte --time-trace-started-lt --trace-namespace ``
3.37.13 - 2024-03-12
--------------------
Added
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Jinja2==3.0.3
jmespath==0.10.0
ndg-httpsclient==0.4.2
mock==2.0.0
oci==2.124.1
oci==2.124.2
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 @@ -128,3 +128,14 @@ def language_group():
# Add work-request error and logs messages to work-request group
aiservicelanguage_cli.work_request_group.add_command(aiservicelanguage_cli.work_request_error_group)
aiservicelanguage_cli.work_request_group.add_command(aiservicelanguage_cli.work_request_log_group)


# Remove polymorphic job group commands
aiservicelanguage_cli.job_group.commands.pop(aiservicelanguage_cli.create_job_object_storage_file_name_location.name)
aiservicelanguage_cli.job_group.commands.pop(aiservicelanguage_cli.create_job_object_storage_prefix_location.name)

# Remove job group from root
aiservicelanguage_cli.ai_root_group.commands.pop(aiservicelanguage_cli.job_group.name)

# Add Job group to language group
language_group.add_command(aiservicelanguage_cli.job_group)

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions services/ai_language/tests/util/generated/command_to_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@
"ai.batch_detect_language_sentiments": "oci.ai_language.AIServiceLanguageClient.batch_detect_language_sentiments",
"ai.batch_detect_language_text_classification": "oci.ai_language.AIServiceLanguageClient.batch_detect_language_text_classification",
"ai.batch_language_translation": "oci.ai_language.AIServiceLanguageClient.batch_language_translation",
"ai.cancel_job": "oci.ai_language.AIServiceLanguageClient.cancel_job",
"ai.change_endpoint_compartment": "oci.ai_language.AIServiceLanguageClient.change_endpoint_compartment",
"ai.change_job_compartment": "oci.ai_language.AIServiceLanguageClient.change_job_compartment",
"ai.change_model_compartment": "oci.ai_language.AIServiceLanguageClient.change_model_compartment",
"ai.change_project_compartment": "oci.ai_language.AIServiceLanguageClient.change_project_compartment",
"ai.create_endpoint": "oci.ai_language.AIServiceLanguageClient.create_endpoint",
"ai.create_job": "oci.ai_language.AIServiceLanguageClient.create_job",
"ai.create_model": "oci.ai_language.AIServiceLanguageClient.create_model",
"ai.create_project": "oci.ai_language.AIServiceLanguageClient.create_project",
"ai.delete_endpoint": "oci.ai_language.AIServiceLanguageClient.delete_endpoint",
"ai.delete_job": "oci.ai_language.AIServiceLanguageClient.delete_job",
"ai.delete_model": "oci.ai_language.AIServiceLanguageClient.delete_model",
"ai.delete_project": "oci.ai_language.AIServiceLanguageClient.delete_project",
"ai.detect_dominant_language": "oci.ai_language.AIServiceLanguageClient.detect_dominant_language",
Expand All @@ -24,18 +28,21 @@
"ai.detect_language_sentiments": "oci.ai_language.AIServiceLanguageClient.detect_language_sentiments",
"ai.detect_language_text_classification": "oci.ai_language.AIServiceLanguageClient.detect_language_text_classification",
"ai.get_endpoint": "oci.ai_language.AIServiceLanguageClient.get_endpoint",
"ai.get_job": "oci.ai_language.AIServiceLanguageClient.get_job",
"ai.get_model": "oci.ai_language.AIServiceLanguageClient.get_model",
"ai.get_model_type": "oci.ai_language.AIServiceLanguageClient.get_model_type",
"ai.get_project": "oci.ai_language.AIServiceLanguageClient.get_project",
"ai.get_work_request": "oci.ai_language.AIServiceLanguageClient.get_work_request",
"ai.list_endpoints": "oci.ai_language.AIServiceLanguageClient.list_endpoints",
"ai.list_evaluation_results": "oci.ai_language.AIServiceLanguageClient.list_evaluation_results",
"ai.list_jobs": "oci.ai_language.AIServiceLanguageClient.list_jobs",
"ai.list_models": "oci.ai_language.AIServiceLanguageClient.list_models",
"ai.list_projects": "oci.ai_language.AIServiceLanguageClient.list_projects",
"ai.list_work_request_errors": "oci.ai_language.AIServiceLanguageClient.list_work_request_errors",
"ai.list_work_request_logs": "oci.ai_language.AIServiceLanguageClient.list_work_request_logs",
"ai.list_work_requests": "oci.ai_language.AIServiceLanguageClient.list_work_requests",
"ai.update_endpoint": "oci.ai_language.AIServiceLanguageClient.update_endpoint",
"ai.update_job": "oci.ai_language.AIServiceLanguageClient.update_job",
"ai.update_model": "oci.ai_language.AIServiceLanguageClient.update_model",
"ai.update_project": "oci.ai_language.AIServiceLanguageClient.update_project",
}
4 changes: 4 additions & 0 deletions services/apm_traces/src/oci_cli_attributes/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# coding: utf-8
# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
# 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.
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630
Loading

0 comments on commit f8d06d8

Please sign in to comment.