Skip to content

Commit f8e8709

Browse files
Releasing version 2.122.0
1 parent a50f0d2 commit f8e8709

File tree

119 files changed

+12053
-312
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+12053
-312
lines changed

CHANGELOG.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@ Change Log
33
All notable changes to this project will be documented in this file.
44

55
The format is based on `Keep a Changelog <http://keepachangelog.com/>`_.
6+
====================
7+
2.122.0 - 2024-02-20
8+
====================
9+
10+
11+
Added
12+
-----
13+
* Support for calling Oracle Cloud Infrastructure services in the me-dcc-doha-1 region
14+
* Support for Secure Desktops service
15+
* Support for enabling and disabling Simultaneous Multithreading (SMT) for virtual machines in the Compute service
16+
* Support for Bring Your Own Container Jobs (BYOC v2) in the Data Science service
17+
* Support for expanded language translation in the AI Language service
18+
* Support for additional flags for ignoring transliteration and text length to be considered for determining dominant language in the AI Language service
19+
20+
Breaking
21+
--------
22+
* The model `PreTrainedPhiModelDetails` was removed in the AI Language service
23+
* The field `system_tags` has changed type from `dict(str, object)` to `dict(str, dict(str, object))` in the models `endpoint`, `endpoint_summary`, `model`, `model_summary`, `project`, and `project_summary` in the AI Language service
24+
625
====================
726
2.121.1 - 2024-02-13
827
====================

THIRD_PARTY_LICENSES.txt

Lines changed: 136 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ OCI toolkit for Python Third Party License File
1010
- BSD 3-Clause "New" or "Revised" License
1111
- GNU Lesser General Public License v2.1
1212
- PSF License
13+
- OpenSSL License
14+
- Original SSLeay License
1315
-------------------------------- Notices -------------------------------
1416
Requests
1517
Copyright 2019 Kenneth Reitz
@@ -96,7 +98,7 @@ urllib3
9698

9799
circuitbreaker
98100
* Copyright (c) 2016-2020, Fabian Fuelling [email protected]. All rights reserved.
99-
* License: MIT License
101+
* License: BSD-3-Clause New License
100102
* Source code: https://github.com/fabfuel/circuitbreaker
101103
* Project home: https://pypi.org/project/circuitbreaker
102104

@@ -118,6 +120,19 @@ sseclient
118120
* Source code: https://github.com/mpetazzoni/sseclient
119121
* Project home: https://github.com/mpetazzoni/sseclient
120122

123+
openssl
124+
* Copyright (c) 1998-2023 The OpenSSL Project Authors
125+
* Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson
126+
* License: Apache License 2.0, OpenSSL License, Original SSLeay License
127+
* Source code: https://github.com/openssl/openssl
128+
* Project home: https://www.openssl.org/
129+
130+
libffi
131+
* Copyright (c) 1996-2024 Anthony Green, Red Hat, Inc and others.
132+
* License: The MIT License
133+
* Source code: https://github.com/libffi/libffi
134+
* Project home: https://github.com/libffi/libffi
135+
121136
=============================== Licenses ===============================
122137

123138
------------------------------ MIT License -----------------------------
@@ -1234,4 +1249,123 @@ That's all there is to it!
12341249

12351250
8. By copying, installing or otherwise using Python 2.7.12, Licensee agrees
12361251
to be bound by the terms and conditions of this License Agreement.
1237-
------------------------------------------------------------------------
1252+
------------------------------------------------------------------------
1253+
1254+
OpenSSL License
1255+
---------------
1256+
1257+
/* ====================================================================
1258+
* Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
1259+
*
1260+
* Redistribution and use in source and binary forms, with or without
1261+
* modification, are permitted provided that the following conditions
1262+
* are met:
1263+
*
1264+
* 1. Redistributions of source code must retain the above copyright
1265+
* notice, this list of conditions and the following disclaimer.
1266+
*
1267+
* 2. Redistributions in binary form must reproduce the above copyright
1268+
* notice, this list of conditions and the following disclaimer in
1269+
* the documentation and/or other materials provided with the
1270+
* distribution.
1271+
*
1272+
* 3. All advertising materials mentioning features or use of this
1273+
* software must display the following acknowledgment:
1274+
* "This product includes software developed by the OpenSSL Project
1275+
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
1276+
*
1277+
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
1278+
* endorse or promote products derived from this software without
1279+
* prior written permission. For written permission, please contact
1280+
1281+
*
1282+
* 5. Products derived from this software may not be called "OpenSSL"
1283+
* nor may "OpenSSL" appear in their names without prior written
1284+
* permission of the OpenSSL Project.
1285+
*
1286+
* 6. Redistributions of any form whatsoever must retain the following
1287+
* acknowledgment:
1288+
* "This product includes software developed by the OpenSSL Project
1289+
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
1290+
*
1291+
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
1292+
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1293+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1294+
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
1295+
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1296+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
1297+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1298+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1299+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
1300+
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1301+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
1302+
* OF THE POSSIBILITY OF SUCH DAMAGE.
1303+
* ====================================================================
1304+
*
1305+
* This product includes cryptographic software written by Eric Young
1306+
* ([email protected]). This product includes software written by Tim
1307+
* Hudson ([email protected]).
1308+
*
1309+
*/
1310+
------------------------------------------------------------------------
1311+
1312+
Original SSLeay License
1313+
-----------------------
1314+
1315+
/* Copyright (C) 1995-1998 Eric Young ([email protected])
1316+
* All rights reserved.
1317+
*
1318+
* This package is an SSL implementation written
1319+
* by Eric Young ([email protected]).
1320+
* The implementation was written so as to conform with Netscapes SSL.
1321+
*
1322+
* This library is free for commercial and non-commercial use as long as
1323+
* the following conditions are aheared to. The following conditions
1324+
* apply to all code found in this distribution, be it the RC4, RSA,
1325+
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
1326+
* included with this distribution is covered by the same copyright terms
1327+
* except that the holder is Tim Hudson ([email protected]).
1328+
*
1329+
* Copyright remains Eric Young's, and as such any Copyright notices in
1330+
* the code are not to be removed.
1331+
* If this package is used in a product, Eric Young should be given attribution
1332+
* as the author of the parts of the library used.
1333+
* This can be in the form of a textual message at program startup or
1334+
* in documentation (online or textual) provided with the package.
1335+
*
1336+
* Redistribution and use in source and binary forms, with or without
1337+
* modification, are permitted provided that the following conditions
1338+
* are met:
1339+
* 1. Redistributions of source code must retain the copyright
1340+
* notice, this list of conditions and the following disclaimer.
1341+
* 2. Redistributions in binary form must reproduce the above copyright
1342+
* notice, this list of conditions and the following disclaimer in the
1343+
* documentation and/or other materials provided with the distribution.
1344+
* 3. All advertising materials mentioning features or use of this software
1345+
* must display the following acknowledgement:
1346+
* "This product includes cryptographic software written by
1347+
* Eric Young ([email protected])"
1348+
* The word 'cryptographic' can be left out if the rouines from the library
1349+
* being used are not cryptographic related :-).
1350+
* 4. If you include any Windows specific code (or a derivative thereof) from
1351+
* the apps directory (application code) you must include an acknowledgement:
1352+
* "This product includes software written by Tim Hudson ([email protected])"
1353+
*
1354+
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
1355+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1356+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1357+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1358+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1359+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1360+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1361+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1362+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1363+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1364+
* SUCH DAMAGE.
1365+
*
1366+
* The licence and distribution terms for any publically available version or
1367+
* derivative of this code cannot be changed. i.e. this code cannot simply be
1368+
* copied and put under another distribution licence
1369+
* [including the GNU Public Licence.]
1370+
*/
1371+
------------------------------------------------------------------------

docs/api/ai_language.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ Ai Language
9898
oci.ai_language.models.PreTrainedKeyPhraseExtractionModelDetails
9999
oci.ai_language.models.PreTrainedLanguageDetectionModelDetails
100100
oci.ai_language.models.PreTrainedNamedEntityRecognitionModelDetails
101-
oci.ai_language.models.PreTrainedPhiModelDetails
102101
oci.ai_language.models.PreTrainedPiiModelDetails
103102
oci.ai_language.models.PreTrainedSentimentAnalysisModelDetails
104103
oci.ai_language.models.PreTrainedSummarization

docs/api/core.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ Core Services
4949
oci.core.models.AmdRomeBmPlatformConfig
5050
oci.core.models.AmdVmLaunchInstancePlatformConfig
5151
oci.core.models.AmdVmPlatformConfig
52+
oci.core.models.AmdVmUpdateInstancePlatformConfig
5253
oci.core.models.AppCatalogListing
5354
oci.core.models.AppCatalogListingResourceVersion
5455
oci.core.models.AppCatalogListingResourceVersionAgreements
@@ -391,6 +392,7 @@ Core Services
391392
oci.core.models.IntelSkylakeBmPlatformConfig
392393
oci.core.models.IntelVmLaunchInstancePlatformConfig
393394
oci.core.models.IntelVmPlatformConfig
395+
oci.core.models.IntelVmUpdateInstancePlatformConfig
394396
oci.core.models.InternetGateway
395397
oci.core.models.IpsecTunnelDrgAttachmentNetworkDetails
396398
oci.core.models.Ipv6
@@ -524,6 +526,7 @@ Core Services
524526
oci.core.models.UpdateInstanceConfigurationDetails
525527
oci.core.models.UpdateInstanceConsoleConnectionDetails
526528
oci.core.models.UpdateInstanceDetails
529+
oci.core.models.UpdateInstancePlatformConfig
527530
oci.core.models.UpdateInstancePoolDetails
528531
oci.core.models.UpdateInstancePoolPlacementConfigurationDetails
529532
oci.core.models.UpdateInstanceShapeConfigDetails
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
AmdVmUpdateInstancePlatformConfig
2+
=================================
3+
4+
.. currentmodule:: oci.core.models
5+
6+
.. autoclass:: AmdVmUpdateInstancePlatformConfig
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
IntelVmUpdateInstancePlatformConfig
2+
===================================
3+
4+
.. currentmodule:: oci.core.models
5+
6+
.. autoclass:: IntelVmUpdateInstancePlatformConfig
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
UpdateInstancePlatformConfig
2+
============================
3+
4+
.. currentmodule:: oci.core.models
5+
6+
.. autoclass:: UpdateInstancePlatformConfig
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

docs/api/data_science.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Data Science
5656
oci.data_science.models.InstanceConfiguration
5757
oci.data_science.models.Job
5858
oci.data_science.models.JobConfigurationDetails
59+
oci.data_science.models.JobEnvironmentConfigurationDetails
5960
oci.data_science.models.JobInfrastructureConfigurationDetails
6061
oci.data_science.models.JobLogConfigurationDetails
6162
oci.data_science.models.JobRun
@@ -89,6 +90,7 @@ Data Science
8990
oci.data_science.models.NotebookSessionShapeSummary
9091
oci.data_science.models.NotebookSessionSummary
9192
oci.data_science.models.ObjectStorageMountConfigurationDetails
93+
oci.data_science.models.OcirContainerJobEnvironmentConfigurationDetails
9294
oci.data_science.models.OcirModelDeploymentEnvironmentConfigurationDetails
9395
oci.data_science.models.Pipeline
9496
oci.data_science.models.PipelineConfigurationDetails
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
JobEnvironmentConfigurationDetails
2+
==================================
3+
4+
.. currentmodule:: oci.data_science.models
5+
6+
.. autoclass:: JobEnvironmentConfigurationDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
OcirContainerJobEnvironmentConfigurationDetails
2+
===============================================
3+
4+
.. currentmodule:: oci.data_science.models
5+
6+
.. autoclass:: OcirContainerJobEnvironmentConfigurationDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

0 commit comments

Comments
 (0)