Skip to content

Commit 1642736

Browse files
authored
Releasing version 2.38.1
Releasing version 2.38.1
2 parents 26b32da + 411a73c commit 1642736

File tree

303 files changed

+24626
-2747
lines changed

Some content is hidden

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

303 files changed

+24626
-2747
lines changed

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# python version
55
python:
6-
version: 3.5
6+
version: 3.7
77
setup_py_install: true
88

99
# Just the HTML and indexing

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ 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.38.1 - 2021-05-04
8+
====================
9+
10+
Added
11+
-----
12+
* Support for the Operator Access Control service
13+
* Support for the Service Catalog service
14+
* Support for the AI Language service
15+
* Support for autonomous database on Exadata Cloud at Customer infrastructure patching in the Database service
16+
617
====================
718
2.38.0 - 2021-04-27
819
====================

README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This is the Python SDK for Oracle Cloud Infrastructure. Python 3.6+ are supporte
3131
3232
The project is open source and maintained by Oracle Corp. The home page for the project is `here`__.
3333

34-
__ https://oracle-cloud-infrastructure-python-sdk.readthedocs.io/en/latest/index.html
34+
__ https://docs.oracle.com/en-us/iaas/tools/python/latest/index.html
3535

3636
============
3737
Installation
@@ -45,7 +45,7 @@ __ https://packaging.python.org/guides/installing-using-pip-and-virtualenv/
4545

4646
See `the installation guide`__ for installation troubleshooting and alternative install methods.
4747

48-
__ https://oracle-cloud-infrastructure-python-sdk.readthedocs.io/en/latest/installation.html
48+
__ https://docs.oracle.com/en-us/iaas/tools/python/latest/installation.html
4949

5050
Once your virtual environment is active, oci can be installed using pip.
5151

@@ -78,8 +78,8 @@ Full documentation, including prerequisites and installation and configuration i
7878

7979
API reference can be found `here`__.
8080

81-
__ https://oracle-cloud-infrastructure-python-sdk.readthedocs.io/en/latest/index.html
82-
__ https://oracle-cloud-infrastructure-python-sdk.readthedocs.io/en/latest/api/landing.html
81+
__ https://docs.oracle.com/en-us/iaas/tools/python/latest/index.html
82+
__ https://docs.oracle.com/en-us/iaas/tools/python/latest/api/landing.html
8383

8484
A downloadable version of the documentation is include with in the release zip, which can be found `here`__.
8585

@@ -91,7 +91,7 @@ Help
9191

9292
See the “Questions or Feedback” section `here`__.
9393

94-
__ https://oracle-cloud-infrastructure-python-sdk.readthedocs.io/en/latest/feedback.html
94+
__ https://docs.oracle.com/en-us/iaas/tools/python/latest/feedback.html
9595

9696
=======
9797
Changes

docs/api/ai_language.rst

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
Ai Language
2+
===========
3+
4+
.. autosummary::
5+
:toctree: ai_language/client
6+
:nosignatures:
7+
:template: autosummary/service_client.rst
8+
9+
oci.ai_language.AiServiceLanguageClient
10+
oci.ai_language.AiServiceLanguageClientCompositeOperations
11+
12+
--------
13+
Models
14+
--------
15+
16+
.. autosummary::
17+
:toctree: ai_language/models
18+
:nosignatures:
19+
:template: autosummary/model_class.rst
20+
21+
oci.ai_language.models.DetectDominantLanguageDetails
22+
oci.ai_language.models.DetectDominantLanguageResult
23+
oci.ai_language.models.DetectLanguageEntitiesDetails
24+
oci.ai_language.models.DetectLanguageEntitiesResult
25+
oci.ai_language.models.DetectLanguageKeyPhrasesDetails
26+
oci.ai_language.models.DetectLanguageKeyPhrasesResult
27+
oci.ai_language.models.DetectLanguageSentimentsDetails
28+
oci.ai_language.models.DetectLanguageSentimentsResult
29+
oci.ai_language.models.DetectLanguageTextClassificationDetails
30+
oci.ai_language.models.DetectLanguageTextClassificationResult
31+
oci.ai_language.models.DetectedLanguage
32+
oci.ai_language.models.Entity
33+
oci.ai_language.models.KeyPhrase
34+
oci.ai_language.models.SentimentAspect
35+
oci.ai_language.models.TextClassification
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
AIServiceLanguageClient
2+
=======================
3+
4+
.. currentmodule:: oci.ai_language
5+
6+
.. autoclass:: AIServiceLanguageClient
7+
:special-members: __init__
8+
:members:
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
AIServiceLanguageClientCompositeOperations
2+
==========================================
3+
4+
.. currentmodule:: oci.ai_language
5+
6+
.. autoclass:: AIServiceLanguageClientCompositeOperations
7+
:special-members: __init__
8+
:members:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
DetectDominantLanguageDetails
2+
=============================
3+
4+
.. currentmodule:: oci.ai_language.models
5+
6+
.. autoclass:: DetectDominantLanguageDetails
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+
DetectDominantLanguageResult
2+
============================
3+
4+
.. currentmodule:: oci.ai_language.models
5+
6+
.. autoclass:: DetectDominantLanguageResult
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+
DetectLanguageEntitiesDetails
2+
=============================
3+
4+
.. currentmodule:: oci.ai_language.models
5+
6+
.. autoclass:: DetectLanguageEntitiesDetails
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+
DetectLanguageEntitiesResult
2+
============================
3+
4+
.. currentmodule:: oci.ai_language.models
5+
6+
.. autoclass:: DetectLanguageEntitiesResult
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

0 commit comments

Comments
 (0)