Skip to content

Commit f8d06d8

Browse files
authored
Releasing version 3.37.14
Releasing version 3.37.14
2 parents b5334ea + 871af78 commit f8d06d8

File tree

18 files changed

+1676
-173
lines changed

18 files changed

+1676
-173
lines changed

CHANGELOG.rst

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,40 @@ 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.14 - 2024-03-19
10+
--------------------
11+
Added
12+
~~~~~
13+
* The AI Language service
14+
15+
* Support for async jobs and document translation
16+
17+
* ``oci ai language job create --compartment-id --input-location --model-metadata-details --output-location --description, --display-name --input-configuration``
18+
* ``oci ai language job update --job-id --description --display-name``
19+
* ``oci ai language job list --compartment-id --all --display-name --id``
20+
* ``oci ai language job get --job-id``
21+
* ``oci ai language job delete --job-id``
22+
* ``oci ai language job cancel --job-id``
23+
* ``oci ai language job change-compartment --compartment-id --job-id``
24+
25+
* Application Performance Monitoring Trace service
26+
27+
* Support for attribute management for trace and synthetic
28+
29+
* ``oci apm-traces attributes activate ``
30+
* ``oci apm-traces attributes deactivate ``
31+
* ``oci apm-traces attributes auto-activate-status ``
32+
* ``oci apm-traces attributes pin ``
33+
* ``oci apm-traces attributes unpin ``
34+
* ``oci apm-traces attributes update-auto-activate ``
35+
* ``oci apm-traces attributes update-notes ``
36+
* ``oci apm-traces attributes update-attribute ``
37+
38+
* Support for new optional parameters in the get trace and get span
39+
40+
* ``oci apm-traces trace trace get --time-trace-started-gte --time-trace-started-lt --trace-namespace ``
41+
* ``oci apm-traces trace span get --time-trace-started-gte --time-trace-started-lt --trace-namespace ``
42+
943
3.37.13 - 2024-03-12
1044
--------------------
1145
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.1
17+
oci==2.124.2
1818
packaging==20.2
1919
pluggy==0.13.0
2020
py==1.11.0

services/ai_language/src/oci_cli_ai_service_language/aiservicelanguage_cli_extended.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,3 +128,14 @@ def language_group():
128128
# Add work-request error and logs messages to work-request group
129129
aiservicelanguage_cli.work_request_group.add_command(aiservicelanguage_cli.work_request_error_group)
130130
aiservicelanguage_cli.work_request_group.add_command(aiservicelanguage_cli.work_request_log_group)
131+
132+
133+
# Remove polymorphic job group commands
134+
aiservicelanguage_cli.job_group.commands.pop(aiservicelanguage_cli.create_job_object_storage_file_name_location.name)
135+
aiservicelanguage_cli.job_group.commands.pop(aiservicelanguage_cli.create_job_object_storage_prefix_location.name)
136+
137+
# Remove job group from root
138+
aiservicelanguage_cli.ai_root_group.commands.pop(aiservicelanguage_cli.job_group.name)
139+
140+
# Add Job group to language group
141+
language_group.add_command(aiservicelanguage_cli.job_group)

services/ai_language/src/oci_cli_ai_service_language/generated/aiservicelanguage_cli.py

Lines changed: 496 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,17 @@
99
"ai.batch_detect_language_sentiments": "oci.ai_language.AIServiceLanguageClient.batch_detect_language_sentiments",
1010
"ai.batch_detect_language_text_classification": "oci.ai_language.AIServiceLanguageClient.batch_detect_language_text_classification",
1111
"ai.batch_language_translation": "oci.ai_language.AIServiceLanguageClient.batch_language_translation",
12+
"ai.cancel_job": "oci.ai_language.AIServiceLanguageClient.cancel_job",
1213
"ai.change_endpoint_compartment": "oci.ai_language.AIServiceLanguageClient.change_endpoint_compartment",
14+
"ai.change_job_compartment": "oci.ai_language.AIServiceLanguageClient.change_job_compartment",
1315
"ai.change_model_compartment": "oci.ai_language.AIServiceLanguageClient.change_model_compartment",
1416
"ai.change_project_compartment": "oci.ai_language.AIServiceLanguageClient.change_project_compartment",
1517
"ai.create_endpoint": "oci.ai_language.AIServiceLanguageClient.create_endpoint",
18+
"ai.create_job": "oci.ai_language.AIServiceLanguageClient.create_job",
1619
"ai.create_model": "oci.ai_language.AIServiceLanguageClient.create_model",
1720
"ai.create_project": "oci.ai_language.AIServiceLanguageClient.create_project",
1821
"ai.delete_endpoint": "oci.ai_language.AIServiceLanguageClient.delete_endpoint",
22+
"ai.delete_job": "oci.ai_language.AIServiceLanguageClient.delete_job",
1923
"ai.delete_model": "oci.ai_language.AIServiceLanguageClient.delete_model",
2024
"ai.delete_project": "oci.ai_language.AIServiceLanguageClient.delete_project",
2125
"ai.detect_dominant_language": "oci.ai_language.AIServiceLanguageClient.detect_dominant_language",
@@ -24,18 +28,21 @@
2428
"ai.detect_language_sentiments": "oci.ai_language.AIServiceLanguageClient.detect_language_sentiments",
2529
"ai.detect_language_text_classification": "oci.ai_language.AIServiceLanguageClient.detect_language_text_classification",
2630
"ai.get_endpoint": "oci.ai_language.AIServiceLanguageClient.get_endpoint",
31+
"ai.get_job": "oci.ai_language.AIServiceLanguageClient.get_job",
2732
"ai.get_model": "oci.ai_language.AIServiceLanguageClient.get_model",
2833
"ai.get_model_type": "oci.ai_language.AIServiceLanguageClient.get_model_type",
2934
"ai.get_project": "oci.ai_language.AIServiceLanguageClient.get_project",
3035
"ai.get_work_request": "oci.ai_language.AIServiceLanguageClient.get_work_request",
3136
"ai.list_endpoints": "oci.ai_language.AIServiceLanguageClient.list_endpoints",
3237
"ai.list_evaluation_results": "oci.ai_language.AIServiceLanguageClient.list_evaluation_results",
38+
"ai.list_jobs": "oci.ai_language.AIServiceLanguageClient.list_jobs",
3339
"ai.list_models": "oci.ai_language.AIServiceLanguageClient.list_models",
3440
"ai.list_projects": "oci.ai_language.AIServiceLanguageClient.list_projects",
3541
"ai.list_work_request_errors": "oci.ai_language.AIServiceLanguageClient.list_work_request_errors",
3642
"ai.list_work_request_logs": "oci.ai_language.AIServiceLanguageClient.list_work_request_logs",
3743
"ai.list_work_requests": "oci.ai_language.AIServiceLanguageClient.list_work_requests",
3844
"ai.update_endpoint": "oci.ai_language.AIServiceLanguageClient.update_endpoint",
45+
"ai.update_job": "oci.ai_language.AIServiceLanguageClient.update_job",
3946
"ai.update_model": "oci.ai_language.AIServiceLanguageClient.update_model",
4047
"ai.update_project": "oci.ai_language.AIServiceLanguageClient.update_project",
4148
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# coding: utf-8
2+
# Copyright (c) 2016, 2024, 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: 20200630

0 commit comments

Comments
 (0)