CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_DOMINANT_LANGUAGE_DOCUMENT_T Type 🔗
The document details for language detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_dominant_language_document_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
text varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_dominant_language_document_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_dominant_language_document_t (
key varchar2,
text varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Document unique identifier defined by the user.
text
(required) Document text for detect language.
DBMS_CLOUD_OCI_AI_LANGUAGE_DOMINANT_LANGUAGE_DOCUMENT_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_dominant_language_document_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_dominant_language_document_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_dominant_language_document_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_DETECT_DOMINANT_LANGUAGE_DETAILS_T Type 🔗
The documents details for language detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_detect_dominant_language_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
documents dbms_cloud_oci_ai_language_dominant_language_document_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_dominant_language_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_dominant_language_details_t (
compartment_id varchar2,
documents dbms_cloud_oci_ai_language_dominant_language_document_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID of the compartment that calls the API, inference will be served from pre trained model
documents
(required) List of Documents for detect language.
DBMS_CLOUD_OCI_AI_LANGUAGE_DETECTED_LANGUAGE_T Type 🔗
Attributes to the detected language. Contains Language Name , Code, and Confidence Score.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_detected_language_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
code varchar2(32767),
score number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detected_language_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detected_language_t (
name varchar2,
code varchar2,
score number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) Full language name. Example: `English, Hindi, and so on`
code
(required) Detected language code as per ISO 639-1 standard. Example: `en, fr, hi etc`.
score
(required) Score or confidence of detected language code. Example: `0.9999856066867399`
DBMS_CLOUD_OCI_AI_LANGUAGE_DETECTED_LANGUAGE_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_detected_language_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_detected_language_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_detected_language_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_DOMINANT_LANGUAGE_DOCUMENT_RESULT_T Type 🔗
The document response for language detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_dominant_language_document_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
languages dbms_cloud_oci_ai_language_detected_language_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_dominant_language_document_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_dominant_language_document_result_t (
key varchar2,
languages dbms_cloud_oci_ai_language_detected_language_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Document unique identifier defined by the user.
languages
(required) List of detected languages with results sorted in descending order of the scores. Most likely language is on top.
DBMS_CLOUD_OCI_AI_LANGUAGE_ERROR_DETAILS_T Type 🔗
Error Information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_error_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_error_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_error_details_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A short error code that defines the error, meant for programmatic parsing.
message
(required) A human-readable error string.
DBMS_CLOUD_OCI_AI_LANGUAGE_DOCUMENT_ERROR_T Type 🔗
Error response for document.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_document_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
error dbms_cloud_oci_ai_language_error_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_document_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_document_error_t (
key varchar2,
error dbms_cloud_oci_ai_language_error_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Document unique identifier defined by the user.
error
(required)
DBMS_CLOUD_OCI_AI_LANGUAGE_DOMINANT_LANGUAGE_DOCUMENT_RESULT_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_dominant_language_document_result_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_dominant_language_document_result_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_dominant_language_document_result_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_DOCUMENT_ERROR_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_document_error_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_document_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_document_error_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_DETECT_DOMINANT_LANGUAGE_RESULT_T Type 🔗
Result of language detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_detect_dominant_language_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
documents dbms_cloud_oci_ai_language_dominant_language_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_dominant_language_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_dominant_language_result_t (
documents dbms_cloud_oci_ai_language_dominant_language_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
documents
(required) List of succeeded document response.
errors
(optional) List of failed document response.
DBMS_CLOUD_OCI_AI_LANGUAGE_TEXT_DOCUMENT_T Type 🔗
The document details for language service call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_text_document_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
text varchar2(32767),
language_code varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_document_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_document_t (
key varchar2,
text varchar2,
language_code varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Document unique identifier defined by the user.
text
(required) Document text for language service call.
language_code
(optional) Language code of the document. Please refer to respective model API documentation for supported languages.
DBMS_CLOUD_OCI_AI_LANGUAGE_TEXT_DOCUMENT_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_text_document_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_text_document_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_text_document_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_DETECT_LANGUAGE_ENTITIES_DETAILS_T Type 🔗
The documents details for entities detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_detect_language_entities_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
endpoint_id varchar2(32767),
documents dbms_cloud_oci_ai_language_text_document_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_entities_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_entities_details_t (
compartment_id varchar2,
endpoint_id varchar2,
documents dbms_cloud_oci_ai_language_text_document_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID of the compartment that calls the API, inference will be served from pre trained model
endpoint_id
(optional) The endpoint which have to be used for inferencing. If endpointId and compartmentId is provided, then inference will be served from custom model which is mapped to this Endpoint.
documents
(required) List of Documents for detect entities.
DBMS_CLOUD_OCI_AI_LANGUAGE_HIERARCHICAL_ENTITY_T Type 🔗
Hierarchical entity object
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_hierarchical_entity_t FORCE AUTHID CURRENT_USER IS OBJECT (
offset number,
length number,
text varchar2(32767),
l_type varchar2(32767),
sub_type varchar2(32767),
score number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_hierarchical_entity_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_hierarchical_entity_t (
offset number,
length number,
text varchar2,
l_type varchar2,
sub_type varchar2,
score number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
offset
(optional) The number of Unicode code points preceding this entity in the submitted text.
length
(optional) Length of entity text
text
(optional) Entity text like name of person, location, and so on.
l_type
(optional) Type of entity text like PER, LOC.
sub_type
(optional) Sub-type of entity text like GPE for LOCATION type
score
(optional) Score or confidence for detected entity.
DBMS_CLOUD_OCI_AI_LANGUAGE_HIERARCHICAL_ENTITY_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_hierarchical_entity_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_hierarchical_entity_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_hierarchical_entity_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_ENTITY_DOCUMENT_RESULT_T Type 🔗
The document response for entities detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_entity_document_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
entities dbms_cloud_oci_ai_language_hierarchical_entity_tbl,
language_code varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_entity_document_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_entity_document_result_t (
key varchar2,
entities dbms_cloud_oci_ai_language_hierarchical_entity_tbl,
language_code varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Document unique identifier defined by the user.
entities
(required) List of detected entities.
language_code
(required) Language code supported - auto : Automatically detect language - ar : Arabic - pt-BR : Brazilian Portuguese - cs : Czech - da : Danish - nl : Dutch - en : English - fi : Finnish - fr : French - fr-CA : Canadian French - de : German - it : Italian - ja : Japanese - ko : Korean - no : Norwegian - pl : Polish - ro : Romanian - zh-CN : Simplified Chinese - es : Spanish - sv : Swedish - zh-TW : Traditional Chinese - tr : Turkish - el : Greek - he : Hebrew
DBMS_CLOUD_OCI_AI_LANGUAGE_ENTITY_DOCUMENT_RESULT_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_entity_document_result_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_entity_document_result_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_entity_document_result_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_DETECT_LANGUAGE_ENTITIES_RESULT_T Type 🔗
Result of entities detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_detect_language_entities_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
documents dbms_cloud_oci_ai_language_entity_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_entities_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_entities_result_t (
documents dbms_cloud_oci_ai_language_entity_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
documents
(required) List of succeeded document response.
errors
(optional) List of failed document response.
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_DETECT_LANGUAGE_KEY_PHRASES_DETAILS_T Type 🔗
The documents details for keyPhrases call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_detect_language_key_phrases_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
documents dbms_cloud_oci_ai_language_text_document_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_key_phrases_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_key_phrases_details_t (
compartment_id varchar2,
documents dbms_cloud_oci_ai_language_text_document_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID of the compartment that calls the API, inference will be served from pre trained model
documents
(required) List of Documents for detect keyPhrases.
DBMS_CLOUD_OCI_AI_LANGUAGE_KEY_PHRASE_T Type 🔗
Key phrase for the given text.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_key_phrase_t FORCE AUTHID CURRENT_USER IS OBJECT (
text varchar2(32767),
score number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_key_phrase_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_key_phrase_t (
text varchar2,
score number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
text
(required) Key phrase exreacted from given text.
score
(required) Score or confidence of the key phrase. Example: `0.9999856066867399`
DBMS_CLOUD_OCI_AI_LANGUAGE_KEY_PHRASE_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_key_phrase_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_key_phrase_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_key_phrase_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_KEY_PHRASE_DOCUMENT_RESULT_T Type 🔗
The document response for keyPhrases detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_key_phrase_document_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
key_phrases dbms_cloud_oci_ai_language_key_phrase_tbl,
language_code varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_key_phrase_document_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_key_phrase_document_result_t (
key varchar2,
key_phrases dbms_cloud_oci_ai_language_key_phrase_tbl,
language_code varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Document unique identifier defined by the user.
key_phrases
(required) List of detected keyPhrases.
language_code
(required) Language code supported - auto : Automatically detect language - ar : Arabic - pt-BR : Brazilian Portuguese - cs : Czech - da : Danish - nl : Dutch - en : English - fi : Finnish - fr : French - fr-CA : Canadian French - de : German - it : Italian - ja : Japanese - ko : Korean - no : Norwegian - pl : Polish - ro : Romanian - zh-CN : Simplified Chinese - es : Spanish - sv : Swedish - zh-TW : Traditional Chinese - tr : Turkish - el : Greek - he : Hebrew
DBMS_CLOUD_OCI_AI_LANGUAGE_KEY_PHRASE_DOCUMENT_RESULT_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_key_phrase_document_result_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_key_phrase_document_result_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_key_phrase_document_result_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_DETECT_LANGUAGE_KEY_PHRASES_RESULT_T Type 🔗
Result of keyPhrases detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_detect_language_key_phrases_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
documents dbms_cloud_oci_ai_language_key_phrase_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_key_phrases_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_key_phrases_result_t (
documents dbms_cloud_oci_ai_language_key_phrase_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
documents
(required) List of succeeded document response.
errors
(optional) List of failed document response.
DBMS_CLOUD_OCI_AI_LANGUAGE_PII_ENTITY_MASKING_T Type 🔗
Mask recognized PII entities with different modes.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pii_entity_masking_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_mode varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pii_entity_masking_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pii_entity_masking_t (
l_mode varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_mode
(required) The type of masking mode.
Allowed values are: 'REPLACE', 'MASK', 'REMOVE'
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_DETECT_LANGUAGE_PII_ENTITIES_DETAILS_T Type 🔗
The documents details to detect personal identification information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_detect_language_pii_entities_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
documents dbms_cloud_oci_ai_language_text_document_tbl,
masking json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_pii_entities_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_pii_entities_details_t (
compartment_id varchar2,
documents dbms_cloud_oci_ai_language_text_document_tbl,
masking json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID of the compartment that calls the API, inference will be served from pre trained model
documents
(required) List of documents to detect personal identification information.
masking
(optional) Mask recognized PII entities with different modes.
DBMS_CLOUD_OCI_AI_LANGUAGE_PII_ENTITY_T Type 🔗
PII entity object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pii_entity_t FORCE AUTHID CURRENT_USER IS OBJECT (
offset number,
length number,
text varchar2(32767),
l_type varchar2(32767),
score number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pii_entity_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pii_entity_t (
offset number,
length number,
text varchar2,
l_type varchar2,
score number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
offset
(optional) The number of Unicode code points preceding this entity in the submitted text.
length
(optional) Length of PII entity text.
text
(optional) Entity text like name of person, Organization and so on.
l_type
(optional) Type of PII entity text like PER, LOC.
score
(optional) Score or confidence for detected PII entity.
DBMS_CLOUD_OCI_AI_LANGUAGE_PII_ENTITY_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_pii_entity_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pii_entity_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_pii_entity_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_PII_ENTITY_DOCUMENT_RESULT_T Type 🔗
The document response for batch detect personal identification.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pii_entity_document_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
entities dbms_cloud_oci_ai_language_pii_entity_tbl,
masked_text varchar2(32767),
language_code varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pii_entity_document_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pii_entity_document_result_t (
key varchar2,
entities dbms_cloud_oci_ai_language_pii_entity_tbl,
masked_text varchar2,
language_code varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Document unique identifier defined by the user.
entities
(required) List of batch detect personal identification.
masked_text
(required) Masked text per given mask mode.
language_code
(required) Language code supported - auto : Automatically detect language - ar : Arabic - pt-BR : Brazilian Portuguese - cs : Czech - da : Danish - nl : Dutch - en : English - fi : Finnish - fr : French - fr-CA : Canadian French - de : German - it : Italian - ja : Japanese - ko : Korean - no : Norwegian - pl : Polish - ro : Romanian - zh-CN : Simplified Chinese - es : Spanish - sv : Swedish - zh-TW : Traditional Chinese - tr : Turkish - el : Greek - he : Hebrew
DBMS_CLOUD_OCI_AI_LANGUAGE_PII_ENTITY_DOCUMENT_RESULT_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_pii_entity_document_result_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pii_entity_document_result_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_pii_entity_document_result_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_DETECT_LANGUAGE_PII_ENTITIES_RESULT_T Type 🔗
Result of batch detect personal identification.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_detect_language_pii_entities_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
documents dbms_cloud_oci_ai_language_pii_entity_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_pii_entities_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_pii_entities_result_t (
documents dbms_cloud_oci_ai_language_pii_entity_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
documents
(required) List of succeeded document response.
errors
(optional) List of failed document response.
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_DETECT_LANGUAGE_SENTIMENTS_DETAILS_T Type 🔗
The documents details for sentiment call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_detect_language_sentiments_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
documents dbms_cloud_oci_ai_language_text_document_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_sentiments_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_sentiments_details_t (
compartment_id varchar2,
documents dbms_cloud_oci_ai_language_text_document_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID of the compartment that calls the API, inference will be served from pre trained model
documents
(required) List of Documents for detect sentiments.
DBMS_CLOUD_OCI_AI_LANGUAGE_SENTIMENT_ASPECT_T Type 🔗
Sentiment aspect object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_sentiment_aspect_t FORCE AUTHID CURRENT_USER IS OBJECT (
offset number,
length number,
text varchar2(32767),
sentiment varchar2(32767),
scores json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_sentiment_aspect_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_sentiment_aspect_t (
offset number,
length number,
text varchar2,
sentiment varchar2,
scores json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
offset
(optional) The number of Unicode code points preceding this entity in the submitted text.
length
(optional) Length of aspect text.
text
(optional) Aspect text.
sentiment
(optional) The highest-score sentiment for the aspect text.
scores
(optional) Scores or confidences for each sentiment. Example: `{\"positive\": 1.0, \"negative\": 0.0}`
DBMS_CLOUD_OCI_AI_LANGUAGE_SENTIMENT_SENTENCE_T Type 🔗
Sentiment sentence object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_sentiment_sentence_t FORCE AUTHID CURRENT_USER IS OBJECT (
offset number,
length number,
text varchar2(32767),
sentiment varchar2(32767),
scores json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_sentiment_sentence_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_sentiment_sentence_t (
offset number,
length number,
text varchar2,
sentiment varchar2,
scores json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
offset
(optional) The number of Unicode code points preceding this entity in the submitted text.
length
(optional) Length of sentence text.
text
(optional) Sentence text.
sentiment
(optional) The highest-score sentiment for the sentence text.
scores
(optional) Scores or confidences for each sentiment. Example: `{\"positive\": 1.0, \"negative\": 0.0}`
DBMS_CLOUD_OCI_AI_LANGUAGE_SENTIMENT_ASPECT_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_sentiment_aspect_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_sentiment_aspect_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_sentiment_aspect_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_SENTIMENT_SENTENCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_sentiment_sentence_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_sentiment_sentence_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_sentiment_sentence_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_SENTIMENT_DOCUMENT_RESULT_T Type 🔗
The document response for sentiment detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_sentiment_document_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
document_sentiment varchar2(32767),
document_scores json_element_t,
aspects dbms_cloud_oci_ai_language_sentiment_aspect_tbl,
sentences dbms_cloud_oci_ai_language_sentiment_sentence_tbl,
language_code varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_sentiment_document_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_sentiment_document_result_t (
key varchar2,
document_sentiment varchar2,
document_scores json_element_t,
aspects dbms_cloud_oci_ai_language_sentiment_aspect_tbl,
sentences dbms_cloud_oci_ai_language_sentiment_sentence_tbl,
language_code varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Document unique identifier defined by the user.
document_sentiment
(optional) Document level sentiment.
document_scores
(optional) Scores for each sentiment. Example: {\"positive\": 1.0, \"negative\": 0.0}
aspects
(required) List of detected aspects sentiment.
sentences
(optional) List of detected sentences sentiment.
language_code
(required) Language code supported - auto : Automatically detect language - ar : Arabic - pt-BR : Brazilian Portuguese - cs : Czech - da : Danish - nl : Dutch - en : English - fi : Finnish - fr : French - fr-CA : Canadian French - de : German - it : Italian - ja : Japanese - ko : Korean - no : Norwegian - pl : Polish - ro : Romanian - zh-CN : Simplified Chinese - es : Spanish - sv : Swedish - zh-TW : Traditional Chinese - tr : Turkish - el : Greek - he : Hebrew
DBMS_CLOUD_OCI_AI_LANGUAGE_SENTIMENT_DOCUMENT_RESULT_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_sentiment_document_result_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_sentiment_document_result_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_sentiment_document_result_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_DETECT_LANGUAGE_SENTIMENTS_RESULT_T Type 🔗
Result of sentiments detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_detect_language_sentiments_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
documents dbms_cloud_oci_ai_language_sentiment_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_sentiments_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_sentiments_result_t (
documents dbms_cloud_oci_ai_language_sentiment_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
documents
(required) List of succeeded document response.
errors
(optional) List of failed document response.
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_DETECT_LANGUAGE_TEXT_CLASSIFICATION_DETAILS_T Type 🔗
The documents details for text classification call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_detect_language_text_classification_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
endpoint_id varchar2(32767),
documents dbms_cloud_oci_ai_language_text_document_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_text_classification_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_text_classification_details_t (
compartment_id varchar2,
endpoint_id varchar2,
documents dbms_cloud_oci_ai_language_text_document_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID of the compartment that calls the API, inference will be served from pre trained model
endpoint_id
(optional) The endpoint which have to be used for inferencing. If endpointId and compartmentId is provided, then inference will be served from custom model which is mapped to this Endpoint.
documents
(required) List of Documents for detect text classification.
DBMS_CLOUD_OCI_AI_LANGUAGE_TEXT_CLASSIFICATION_T Type 🔗
Text label and score for the given text.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_text_classification_t FORCE AUTHID CURRENT_USER IS OBJECT (
label varchar2(32767),
score number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_classification_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_classification_t (
label varchar2,
score number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
label
(required) Label of the the given text.
score
(required) Score or confidence of extracted text label. Example: `0.9999856066867399`
DBMS_CLOUD_OCI_AI_LANGUAGE_TEXT_CLASSIFICATION_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_text_classification_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_text_classification_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_text_classification_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_TEXT_CLASSIFICATION_DOCUMENT_RESULT_T Type 🔗
The document response for test classification detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_text_classification_document_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
text_classification dbms_cloud_oci_ai_language_text_classification_tbl,
language_code varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_classification_document_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_classification_document_result_t (
key varchar2,
text_classification dbms_cloud_oci_ai_language_text_classification_tbl,
language_code varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Document unique identifier defined by the user.
text_classification
(required) List of detected text classes.
language_code
(required) Language code supported - auto : Automatically detect language - ar : Arabic - pt-BR : Brazilian Portuguese - cs : Czech - da : Danish - nl : Dutch - en : English - fi : Finnish - fr : French - fr-CA : Canadian French - de : German - it : Italian - ja : Japanese - ko : Korean - no : Norwegian - pl : Polish - ro : Romanian - zh-CN : Simplified Chinese - es : Spanish - sv : Swedish - zh-TW : Traditional Chinese - tr : Turkish - el : Greek - he : Hebrew
DBMS_CLOUD_OCI_AI_LANGUAGE_TEXT_CLASSIFICATION_DOCUMENT_RESULT_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_text_classification_document_result_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_text_classification_document_result_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_text_classification_document_result_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_DETECT_LANGUAGE_TEXT_CLASSIFICATION_RESULT_T Type 🔗
Result of text classification detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_detect_language_text_classification_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
documents dbms_cloud_oci_ai_language_text_classification_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_text_classification_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_detect_language_text_classification_result_t (
documents dbms_cloud_oci_ai_language_text_classification_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
documents
(required) List of succeeded document response.
errors
(optional) List of failed document response.
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_LANGUAGE_TRANSLATION_DETAILS_T Type 🔗
The documents details for translation call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_language_translation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
target_language_code varchar2(32767),
documents dbms_cloud_oci_ai_language_text_document_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_language_translation_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_language_translation_details_t (
compartment_id varchar2,
target_language_code varchar2,
documents dbms_cloud_oci_ai_language_text_document_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID of the compartment that calls the API, inference will be served from pre trained model
target_language_code
(optional) Language code supported - auto : Automatically detect language - ar : Arabic - pt-BR : Brazilian Portuguese - cs : Czech - da : Danish - nl : Dutch - en : English - fi : Finnish - fr : French - fr-CA : Canadian French - de : German - it : Italian - ja : Japanese - ko : Korean - no : Norwegian - pl : Polish - ro : Romanian - zh-CN : Simplified Chinese - es : Spanish - sv : Swedish - zh-TW : Traditional Chinese - tr : Turkish - el : Greek - he : Hebrew
documents
(required) List of documents for translation.
DBMS_CLOUD_OCI_AI_LANGUAGE_TRANSLATION_DOCUMENT_RESULT_T Type 🔗
The document response for translation call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_translation_document_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
translated_text varchar2(32767),
source_language_code varchar2(32767),
target_language_code varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_translation_document_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_translation_document_result_t (
key varchar2,
translated_text varchar2,
source_language_code varchar2,
target_language_code varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Document unique identifier defined by the user.
translated_text
(required) Translated text in selected target language.
source_language_code
(required) Language code supported - auto : Automatically detect language - ar : Arabic - pt-BR : Brazilian Portuguese - cs : Czech - da : Danish - nl : Dutch - en : English - fi : Finnish - fr : French - fr-CA : Canadian French - de : German - it : Italian - ja : Japanese - ko : Korean - no : Norwegian - pl : Polish - ro : Romanian - zh-CN : Simplified Chinese - es : Spanish - sv : Swedish - zh-TW : Traditional Chinese - tr : Turkish - el : Greek - he : Hebrew
target_language_code
(required) Language code supported - auto : Automatically detect language - ar : Arabic - pt-BR : Brazilian Portuguese - cs : Czech - da : Danish - nl : Dutch - en : English - fi : Finnish - fr : French - fr-CA : Canadian French - de : German - it : Italian - ja : Japanese - ko : Korean - no : Norwegian - pl : Polish - ro : Romanian - zh-CN : Simplified Chinese - es : Spanish - sv : Swedish - zh-TW : Traditional Chinese - tr : Turkish - el : Greek - he : Hebrew
DBMS_CLOUD_OCI_AI_LANGUAGE_TRANSLATION_DOCUMENT_RESULT_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_translation_document_result_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_translation_document_result_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_translation_document_result_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_BATCH_LANGUAGE_TRANSLATION_RESULT_T Type 🔗
Result of translation call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_batch_language_translation_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
documents dbms_cloud_oci_ai_language_translation_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_language_translation_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_batch_language_translation_result_t (
documents dbms_cloud_oci_ai_language_translation_document_result_tbl,
errors dbms_cloud_oci_ai_language_document_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
documents
(required) List of succeeded document response.
errors
(optional) List of failed document response.
DBMS_CLOUD_OCI_AI_LANGUAGE_CAPABILITY_T Type 🔗
Capability supported
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_capability_t FORCE AUTHID CURRENT_USER IS OBJECT (
details dbms_cloud_oci_ai_language_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_capability_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_capability_t (
details dbms_cloud_oci_ai_language_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
details
(optional) values
DBMS_CLOUD_OCI_AI_LANGUAGE_CAPABILITIES_T Type 🔗
Capabilities supported
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_capabilities_t FORCE AUTHID CURRENT_USER IS OBJECT (
capability json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_capabilities_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_capabilities_t (
capability json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
capability
(optional) Model information capabilities related to version
DBMS_CLOUD_OCI_AI_LANGUAGE_CHANGE_ENDPOINT_COMPARTMENT_DETAILS_T Type 🔗
Details for changing the compartment of an Endpoint.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_change_endpoint_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_change_endpoint_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_change_endpoint_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the resource should be moved.
DBMS_CLOUD_OCI_AI_LANGUAGE_CHANGE_MODEL_COMPARTMENT_DETAILS_T Type 🔗
Details for changing the compartment of an Model.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_change_model_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_change_model_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_change_model_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the resource should be moved.
DBMS_CLOUD_OCI_AI_LANGUAGE_CHANGE_PROJECT_COMPARTMENT_DETAILS_T Type 🔗
Details for changing the compartment of a Project.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_change_project_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_change_project_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_change_project_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the resource should be moved.
DBMS_CLOUD_OCI_AI_LANGUAGE_CLASS_METRICS_T Type 🔗
class level Text Classification model metrics
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_class_metrics_t FORCE AUTHID CURRENT_USER IS OBJECT (
label varchar2(32767),
f1 number,
precision number,
recall number,
support number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_class_metrics_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_class_metrics_t (
label varchar2,
f1 number,
precision number,
recall number,
support number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
label
(required) Text classification label
f1
(required) F1-score, is a measure of a model’s accuracy on a dataset
precision
(required) Precision refers to the number of true positives divided by the total number of positive predictions (i.e., the number of true positives plus the number of false positives)
recall
(required) Measures the model's ability to predict actual positive classes. It is the ratio between the predicted true positives and what was actually tagged. The recall metric reveals how many of the predicted classes are correct.
support
(optional) number of samples in the test set
DBMS_CLOUD_OCI_AI_LANGUAGE_CLASSIFICATION_TYPE_T Type 🔗
possible text classification modes
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_classification_type_t FORCE AUTHID CURRENT_USER IS OBJECT (
classification_mode varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_classification_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_classification_type_t (
classification_mode varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
classification_mode
(required) classification Modes
Allowed values are: 'MULTI_CLASS', 'MULTI_LABEL'
DBMS_CLOUD_OCI_AI_LANGUAGE_CLASSIFICATION_MULTI_CLASS_MODE_DETAILS_T Type 🔗
Possible text classification multi class mode details
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_classification_multi_class_mode_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_classification_type_t (
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_classification_multi_class_mode_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_classification_multi_class_mode_details_t (
classification_mode varchar2,
version varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_classification_multi_class_mode_details_t is a subtype of the dbms_cloud_oci_ai_language_classification_type_t type.
Fields
Field
Description
version
(optional) Optional if nothing specified latest base model will be used for training. Supported versions can be found at /modelTypes/{modelType}
DBMS_CLOUD_OCI_AI_LANGUAGE_CLASSIFICATION_MULTI_LABEL_MODE_DETAILS_T Type 🔗
Possible text classification multi label mode details
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_classification_multi_label_mode_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_classification_type_t (
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_classification_multi_label_mode_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_classification_multi_label_mode_details_t (
classification_mode varchar2,
version varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_classification_multi_label_mode_details_t is a subtype of the dbms_cloud_oci_ai_language_classification_type_t type.
Fields
Field
Description
version
(optional) Optional if nothing specified latest base model will be used for training. Supported versions can be found at /modelTypes/{modelType}
DBMS_CLOUD_OCI_AI_LANGUAGE_CONFUSION_MATRIX_DETAILS_T Type 🔗
confusion matrix details
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_confusion_matrix_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
matrix json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_confusion_matrix_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_confusion_matrix_details_t (
matrix json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
matrix
(optional) confusion matrix data
DBMS_CLOUD_OCI_AI_LANGUAGE_CREATE_ENDPOINT_DETAILS_T Type 🔗
The information needed to create a new endpoint and expose to end users.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_create_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
model_id varchar2(32767),
inference_units number,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_create_endpoint_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_create_endpoint_details_t (
display_name varchar2,
description varchar2,
compartment_id varchar2,
model_id varchar2,
inference_units number,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource. It should be unique and can be modified. Avoid entering confidential information.
description
(optional) A short description of the an endpoint.
compartment_id
(required) The OCID compartment identifier for the endpoint
model_id
(required) The OCID of the model to associate with the endpoint.
inference_units
(optional) Number of replicas required for this endpoint. This will be optional parameter. Default will be 1.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_AI_LANGUAGE_MODEL_DETAILS_T Type 🔗
Possible model types
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_model_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
language_code varchar2(32767),
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_model_details_t (
language_code varchar2,
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
DBMS_CLOUD_OCI_AI_LANGUAGE_DATASET_DETAILS_T Type 🔗
Possible data set type
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_dataset_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
dataset_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_dataset_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_dataset_details_t (
dataset_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Possible strategy as testing and validation(optional) dataset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_test_strategy_t FORCE AUTHID CURRENT_USER IS OBJECT (
strategy_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_test_strategy_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_test_strategy_t (
strategy_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
strategy_type
(required) This information will define the test strategy different datasets for test and validation(optional) dataset.
Allowed values are: 'TEST_AND_VALIDATION_DATASET'
DBMS_CLOUD_OCI_AI_LANGUAGE_CREATE_MODEL_DETAILS_T Type 🔗
The information needed to train a new model
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_create_model_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
project_id varchar2(32767),
model_details dbms_cloud_oci_ai_language_model_details_t,
training_dataset dbms_cloud_oci_ai_language_dataset_details_t,
test_strategy dbms_cloud_oci_ai_language_test_strategy_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_create_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_create_model_details_t (
display_name varchar2,
description varchar2,
compartment_id varchar2,
project_id varchar2,
model_details dbms_cloud_oci_ai_language_model_details_t,
training_dataset dbms_cloud_oci_ai_language_dataset_details_t,
test_strategy dbms_cloud_oci_ai_language_test_strategy_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
(required) The OCID of the project to associate with the model.
model_details
(required)
training_dataset
(optional)
test_strategy
(optional)
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_AI_LANGUAGE_CREATE_PROJECT_DETAILS_T Type 🔗
Parameters needed to create a new project. Projects enable users to organise their language work.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_create_project_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_create_project_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_create_project_details_t (
display_name varchar2,
description varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
description
(optional) A short description of the project.
compartment_id
(required) The OCID for the project's compartment.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_AI_LANGUAGE_DATA_SCIENCE_LABELING_DATASET_T Type 🔗
Dataset that uses data science labelling service as underlying data source.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_data_science_labeling_dataset_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_dataset_details_t (
dataset_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_data_science_labeling_dataset_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_data_science_labeling_dataset_t (
dataset_type varchar2,
dataset_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_data_science_labeling_dataset_t is a subtype of the dbms_cloud_oci_ai_language_dataset_details_t type.
Fields
Field
Description
dataset_id
(required) Data Science Labelling Service OCID
DBMS_CLOUD_OCI_AI_LANGUAGE_DETECT_DOMINANT_LANGUAGE_DETAILS_T Type 🔗
The document details for language detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_detect_dominant_language_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
text varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_dominant_language_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_dominant_language_details_t (
text varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
text
(required) Document text for detect language.
DBMS_CLOUD_OCI_AI_LANGUAGE_DETECT_DOMINANT_LANGUAGE_RESULT_T Type 🔗
Result of language detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_detect_dominant_language_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
languages dbms_cloud_oci_ai_language_detected_language_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_dominant_language_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_dominant_language_result_t (
languages dbms_cloud_oci_ai_language_detected_language_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
languages
(required) List of detected languages with results sorted in descending order of the scores. Most likely language is on top.
DBMS_CLOUD_OCI_AI_LANGUAGE_DETECT_LANGUAGE_ENTITIES_DETAILS_T Type 🔗
The document details for entities detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_detect_language_entities_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
text varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_entities_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_entities_details_t (
text varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
text
(required) Document text for detect entities.
DBMS_CLOUD_OCI_AI_LANGUAGE_ENTITY_T Type 🔗
entity object
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_entity_t FORCE AUTHID CURRENT_USER IS OBJECT (
offset number,
length number,
text varchar2(32767),
l_type varchar2(32767),
is_pii number,
score number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_entity_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_entity_t (
offset number,
length number,
text varchar2,
l_type varchar2,
is_pii number,
score number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
offset
(optional) The number of Unicode code points preceding this entity in the submitted text.
length
(optional) Length of entity text
text
(optional) Entity text like name of person, location, and so on.
l_type
(optional) Type of entity text like PER, LOC, GPE and NOPE.
is_pii
(optional) This flag is to indicate if it is PII entity or not.
score
(optional) Score or confidence of extracted entity type. Example: `0.9999856066867399`
DBMS_CLOUD_OCI_AI_LANGUAGE_ENTITY_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_entity_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_entity_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_entity_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_DETECT_LANGUAGE_ENTITIES_RESULT_T Type 🔗
Result of entities detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_detect_language_entities_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
entities dbms_cloud_oci_ai_language_entity_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_entities_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_entities_result_t (
entities dbms_cloud_oci_ai_language_entity_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
entities
(required) List of detected entities.
DBMS_CLOUD_OCI_AI_LANGUAGE_DETECT_LANGUAGE_KEY_PHRASES_DETAILS_T Type 🔗
The document details for a keyPhrases detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_detect_language_key_phrases_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
text varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_key_phrases_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_key_phrases_details_t (
text varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
text
(required) Document text for detect keyPhrases.
DBMS_CLOUD_OCI_AI_LANGUAGE_DETECT_LANGUAGE_KEY_PHRASES_RESULT_T Type 🔗
Result of a language keyPhrases detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_detect_language_key_phrases_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
key_phrases dbms_cloud_oci_ai_language_key_phrase_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_key_phrases_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_key_phrases_result_t (
key_phrases dbms_cloud_oci_ai_language_key_phrase_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key_phrases
(required) List of detected keyPhrases.
DBMS_CLOUD_OCI_AI_LANGUAGE_DETECT_LANGUAGE_SENTIMENTS_DETAILS_T Type 🔗
The document details for sentiments detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_detect_language_sentiments_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
text varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_sentiments_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_sentiments_details_t (
text varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
text
(required) Document text for detect sentiments.
DBMS_CLOUD_OCI_AI_LANGUAGE_DETECT_LANGUAGE_SENTIMENTS_RESULT_T Type 🔗
Result of sentiments detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_detect_language_sentiments_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
aspects dbms_cloud_oci_ai_language_sentiment_aspect_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_sentiments_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_sentiments_result_t (
aspects dbms_cloud_oci_ai_language_sentiment_aspect_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
aspects
(required) List of detected aspects.
DBMS_CLOUD_OCI_AI_LANGUAGE_DETECT_LANGUAGE_TEXT_CLASSIFICATION_DETAILS_T Type 🔗
The document details for text classification detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_detect_language_text_classification_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
text varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_text_classification_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_text_classification_details_t (
text varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
text
(required) Document text for detect text classes.
DBMS_CLOUD_OCI_AI_LANGUAGE_DETECT_LANGUAGE_TEXT_CLASSIFICATION_RESULT_T Type 🔗
Result of text classification detect call.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_detect_language_text_classification_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
text_classification dbms_cloud_oci_ai_language_text_classification_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_text_classification_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_detect_language_text_classification_result_t (
text_classification dbms_cloud_oci_ai_language_text_classification_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
text_classification
(required) List of detected text classes.
DBMS_CLOUD_OCI_AI_LANGUAGE_ENDPOINT_T Type 🔗
Description of the endpoint.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_endpoint_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
project_id varchar2(32767),
description varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
inference_units number,
model_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_endpoint_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
project_id varchar2,
description varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
inference_units number,
model_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier endpoint OCID of an endpoint that is immutable on creation.
display_name
(required) A user-friendly display name for the resource. It should be unique and can be modified. Avoid entering confidential information.
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in failed state.
inference_units
(optional) Number of replicas required for this endpoint.
model_id
(required) The OCID of the model to associate with the endpoint.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{ \"orcl-cloud\": { \"free-tier-retained\": \"true\" } }`
DBMS_CLOUD_OCI_AI_LANGUAGE_ENDPOINT_SUMMARY_T Type 🔗
Summary of the language endpoint.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_endpoint_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
project_id varchar2(32767),
description varchar2(32767),
time_created timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
inference_units number,
model_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_endpoint_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_endpoint_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
project_id varchar2,
description varchar2,
time_created timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
inference_units number,
model_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier endpoint OCID of an endpoint that is immutable on creation.
display_name
(required) A user-friendly display name for the resource. It should be unique and can be modified. Avoid entering confidential information.
(required) The OCID of the project to associate with the endpoint.
description
(optional) A short description of the endpoint.
time_created
(required) The time the the endpoint was created. An RFC3339 formatted datetime string.
lifecycle_state
(required) The state of the endpoint.
lifecycle_details
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in failed state.
inference_units
(optional) Number of replicas required for this endpoint. This will be optional parameter. Default will be 1.
model_id
(required) The OCID of the model to associate with the endpoint.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{ \"orcl-cloud\": { \"free-tier-retained\": \"true\" } }`
DBMS_CLOUD_OCI_AI_LANGUAGE_ENDPOINT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_endpoint_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_endpoint_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_endpoint_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_ENDPOINT_COLLECTION_T Type 🔗
Results of an endpoint list. Contains EndpointSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_endpoint_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_ai_language_endpoint_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_endpoint_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_endpoint_collection_t (
items dbms_cloud_oci_ai_language_endpoint_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of endpoints
DBMS_CLOUD_OCI_AI_LANGUAGE_ENTITY_LABEL_ERROR_ANALYSIS_T Type 🔗
Possible entity error label error details
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_entity_label_error_analysis_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
offset number,
length number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_entity_label_error_analysis_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_entity_label_error_analysis_t (
l_type varchar2,
offset number,
length number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_type
(required) Type of entity text like PER, LOC, GPE, NOPE etc.
offset
(required) Starting index on text.
length
(required) Length of text
DBMS_CLOUD_OCI_AI_LANGUAGE_ENTITY_METRICS_T Type 🔗
Entity level named entity recognition model metrics
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_entity_metrics_t FORCE AUTHID CURRENT_USER IS OBJECT (
label varchar2(32767),
f1 number,
precision number,
recall number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_entity_metrics_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_entity_metrics_t (
label varchar2,
f1 number,
precision number,
recall number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
label
(required) Entity label
f1
(required) F1-score, is a measure of a model’s accuracy on a dataset
precision
(required) Precision refers to the number of true positives divided by the total number of positive predictions (i.e., the number of true positives plus the number of false positives)
recall
(required) Measures the model's ability to predict actual positive classes. It is the ratio between the predicted true positives and what was actually tagged. The recall metric reveals how many of the predicted classes are correct.
DBMS_CLOUD_OCI_AI_LANGUAGE_ERROR_T Type 🔗
Error information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A short error code that defines the error, meant for programmatic parsing.
message
(required) A human-readable error string.
DBMS_CLOUD_OCI_AI_LANGUAGE_EVALUATION_RESULT_SUMMARY_T Type 🔗
model evaluation analysis of different models
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_evaluation_result_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_evaluation_result_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_evaluation_result_summary_t (
model_type varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
model_type
(required) Model type
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_AI_LANGUAGE_EVALUATION_RESULT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_evaluation_result_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_evaluation_result_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_evaluation_result_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_EVALUATION_RESULT_COLLECTION_T Type 🔗
Results of a model evaluation analysis search. Contains EvaluationResultSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_evaluation_result_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_ai_language_evaluation_result_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_evaluation_result_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_evaluation_result_collection_t (
items dbms_cloud_oci_ai_language_evaluation_result_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of model evaluation analysis
DBMS_CLOUD_OCI_AI_LANGUAGE_EVALUATION_RESULTS_T Type 🔗
model training results of different models
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_evaluation_results_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_evaluation_results_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_evaluation_results_t (
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
model_type
(required) Model type
DBMS_CLOUD_OCI_AI_LANGUAGE_LOCATION_DETAILS_T Type 🔗
Possible object storage location types
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_location_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
location_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_location_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_location_details_t (
location_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
location_type
(required) Possible object storage location types
Allowed values are: 'OBJECT_LIST'
DBMS_CLOUD_OCI_AI_LANGUAGE_MODEL_T Type 🔗
Description of the a Model.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_model_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
project_id varchar2(32767),
description varchar2(32767),
model_details dbms_cloud_oci_ai_language_model_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
training_dataset dbms_cloud_oci_ai_language_dataset_details_t,
evaluation_results dbms_cloud_oci_ai_language_evaluation_results_t,
test_strategy dbms_cloud_oci_ai_language_test_strategy_t,
version varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_model_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_model_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
project_id varchar2,
description varchar2,
model_details dbms_cloud_oci_ai_language_model_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
training_dataset dbms_cloud_oci_ai_language_dataset_details_t,
evaluation_results dbms_cloud_oci_ai_language_evaluation_results_t,
test_strategy dbms_cloud_oci_ai_language_test_strategy_t,
version varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier model OCID of a model that is immutable on creation
display_name
(required) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in failed state.
training_dataset
(optional)
evaluation_results
(optional)
test_strategy
(optional)
version
(optional) For pre trained models this will identify model type version used for model creation For custom identifying the model by model id is difficult. This param provides ease of use for end customer. <<service>>::<<service-name>>_<<model-type-version>>::<<custom model on which this training has to be done>> ex: ai-lang::NER_V1::CUSTOM-V0
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{ \"orcl-cloud\": { \"free-tier-retained\": \"true\" } }`
DBMS_CLOUD_OCI_AI_LANGUAGE_MODEL_SUMMARY_T Type 🔗
Summary of the language Model.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_model_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
description varchar2(32767),
model_details dbms_cloud_oci_ai_language_model_details_t,
time_created timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
project_id varchar2(32767),
version varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_model_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_model_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
description varchar2,
model_details dbms_cloud_oci_ai_language_model_details_t,
time_created timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
project_id varchar2,
version varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier model OCID of a model that is immutable on creation
display_name
(required) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
(required) The time the the Model was created. An RFC3339 formatted datetime string.
lifecycle_state
(required) The state of the model.
lifecycle_details
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in failed state.
project_id
(required) The OCID of the project to associate with the model.
version
(optional) For pre trained models this will identify model type version used for model creation For custom identifying the model by model id is difficult. This param provides ease of use for end customer. <<service>>::<<service-name>>-<<model-type-version>>::<<custom model on which this training has to be done>> ex: ai-lang::NER_V1::CUSTOM-V0
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{ \"orcl-cloud\": { \"free-tier-retained\": \"true\" } }`
DBMS_CLOUD_OCI_AI_LANGUAGE_MODEL_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_model_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_model_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_model_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_MODEL_COLLECTION_T Type 🔗
Results of a model search. Contains ModelSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_model_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_ai_language_model_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_model_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_model_collection_t (
items dbms_cloud_oci_ai_language_model_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of models
DBMS_CLOUD_OCI_AI_LANGUAGE_MODEL_TYPE_INFO_T Type 🔗
Model information like versions and capabilities
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_model_type_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
versions dbms_cloud_oci_ai_language_varchar2_tbl,
capabilities json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_model_type_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_model_type_info_t (
versions dbms_cloud_oci_ai_language_varchar2_tbl,
capabilities json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
versions
(optional) Model versions available for this model type
capabilities
(required) Model information capabilities related to version
DBMS_CLOUD_OCI_AI_LANGUAGE_ENTITY_LABEL_ERROR_ANALYSIS_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_entity_label_error_analysis_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_entity_label_error_analysis_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_entity_label_error_analysis_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_NAMED_ENTITY_RECOGNITION_EVALUATION_RESULT_T Type 🔗
Possible NER model error analysis
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_named_entity_recognition_evaluation_result_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_evaluation_result_summary_t (
record varchar2(32767),
true_entities dbms_cloud_oci_ai_language_entity_label_error_analysis_tbl,
predicted_entities dbms_cloud_oci_ai_language_entity_label_error_analysis_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_named_entity_recognition_evaluation_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_named_entity_recognition_evaluation_result_t (
model_type varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
record varchar2,
true_entities dbms_cloud_oci_ai_language_entity_label_error_analysis_tbl,
predicted_entities dbms_cloud_oci_ai_language_entity_label_error_analysis_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_named_entity_recognition_evaluation_result_t is a subtype of the dbms_cloud_oci_ai_language_evaluation_result_summary_t type.
Fields
Field
Description
record
(required) For CSV format location is rowId(1 is header) and for JSONL location is jsonL line sequence(1 is metadata)
true_entities
(required) List of true(actual) entities in test data for NER model
predicted_entities
(required) List of true(actual) entities in test data for NER model
DBMS_CLOUD_OCI_AI_LANGUAGE_NAMED_ENTITY_RECOGNITION_MODEL_METRICS_T Type 🔗
Model level named entity recognition metrics
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_named_entity_recognition_model_metrics_t FORCE AUTHID CURRENT_USER IS OBJECT (
micro_f1 number,
micro_precision number,
micro_recall number,
macro_f1 number,
macro_precision number,
macro_recall number,
weighted_f1 number,
weighted_precision number,
weighted_recall number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_named_entity_recognition_model_metrics_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_named_entity_recognition_model_metrics_t (
micro_f1 number,
micro_precision number,
micro_recall number,
macro_f1 number,
macro_precision number,
macro_recall number,
weighted_f1 number,
weighted_precision number,
weighted_recall number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
micro_f1
(required) F1-score, is a measure of a model’s accuracy on a dataset
micro_precision
(required) Precision refers to the number of true positives divided by the total number of positive predictions (i.e., the number of true positives plus the number of false positives)
micro_recall
(required) Measures the model's ability to predict actual positive classes. It is the ratio between the predicted true positives and what was actually tagged. The recall metric reveals how many of the predicted classes are correct.
macro_f1
(required) F1-score, is a measure of a model’s accuracy on a dataset
macro_precision
(required) Precision refers to the number of true positives divided by the total number of positive predictions (i.e., the number of true positives plus the number of false positives)
macro_recall
(required) Measures the model's ability to predict actual positive classes. It is the ratio between the predicted true positives and what was actually tagged. The recall metric reveals how many of the predicted classes are correct.
weighted_f1
(optional) F1-score, is a measure of a model’s accuracy on a dataset
weighted_precision
(optional) Precision refers to the number of true positives divided by the total number of positive predictions (i.e., the number of true positives plus the number of false positives)
weighted_recall
(optional) Measures the model's ability to predict actual positive classes. It is the ratio between the predicted true positives and what was actually tagged. The recall metric reveals how many of the predicted classes are correct.
DBMS_CLOUD_OCI_AI_LANGUAGE_ENTITY_METRICS_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_entity_metrics_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_entity_metrics_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_entity_metrics_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_NAMED_ENTITY_RECOGNITION_EVALUATION_RESULTS_T Type 🔗
Named entity recognition model testing and evaluation results
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_named_entity_recognition_evaluation_results_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_evaluation_results_t (
metrics dbms_cloud_oci_ai_language_named_entity_recognition_model_metrics_t,
entity_metrics dbms_cloud_oci_ai_language_entity_metrics_tbl,
confusion_matrix json_element_t,
labels dbms_cloud_oci_ai_language_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_named_entity_recognition_evaluation_results_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_named_entity_recognition_evaluation_results_t (
model_type varchar2,
metrics dbms_cloud_oci_ai_language_named_entity_recognition_model_metrics_t,
entity_metrics dbms_cloud_oci_ai_language_entity_metrics_tbl,
confusion_matrix json_element_t,
labels dbms_cloud_oci_ai_language_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_named_entity_recognition_evaluation_results_t is a subtype of the dbms_cloud_oci_ai_language_evaluation_results_t type.
Fields
Field
Description
metrics
(optional)
entity_metrics
(optional) List of entity metrics
confusion_matrix
(optional) class level confusion matrix
labels
(optional) labels
DBMS_CLOUD_OCI_AI_LANGUAGE_NAMED_ENTITY_RECOGNITION_MODEL_DETAILS_T Type 🔗
Possible NER model information
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_named_entity_recognition_model_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_model_details_t (
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_named_entity_recognition_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_named_entity_recognition_model_details_t (
language_code varchar2,
model_type varchar2,
version varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_named_entity_recognition_model_details_t is a subtype of the dbms_cloud_oci_ai_language_model_details_t type.
Fields
Field
Description
version
(optional) Optional if nothing specified latest base model will be used for training. Supported versions can be found at /modelTypes/{modelType}
DBMS_CLOUD_OCI_AI_LANGUAGE_OBJECT_LIST_DATASET_T Type 🔗
Data source details for object storage
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_object_list_dataset_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_location_details_t (
namespace_name varchar2(32767),
bucket_name varchar2(32767),
object_names dbms_cloud_oci_ai_language_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_object_list_dataset_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_object_list_dataset_t (
location_type varchar2,
namespace_name varchar2,
bucket_name varchar2,
object_names dbms_cloud_oci_ai_language_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_object_list_dataset_t is a subtype of the dbms_cloud_oci_ai_language_location_details_t type.
Fields
Field
Description
namespace_name
(required) Object storage namespace
bucket_name
(required) Object storage bucket name
object_names
(required) Array of files which need to be processed in the bucket
DBMS_CLOUD_OCI_AI_LANGUAGE_OBJECT_STORAGE_DATASET_T Type 🔗
Different type of location types supported for object storage
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_object_storage_dataset_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_dataset_details_t (
location_details dbms_cloud_oci_ai_language_location_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_object_storage_dataset_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_object_storage_dataset_t (
dataset_type varchar2,
location_details dbms_cloud_oci_ai_language_location_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_object_storage_dataset_t is a subtype of the dbms_cloud_oci_ai_language_dataset_details_t type.
Fields
Field
Description
location_details
(required)
DBMS_CLOUD_OCI_AI_LANGUAGE_PII_ENTITY_MASK_T Type 🔗
Mask PII entities with the given masking character.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pii_entity_mask_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_pii_entity_masking_t (
masking_character varchar2(32767),
leave_characters_unmasked number,
is_unmasked_from_end number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pii_entity_mask_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pii_entity_mask_t (
l_mode varchar2,
masking_character varchar2,
leave_characters_unmasked number,
is_unmasked_from_end number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_pii_entity_mask_t is a subtype of the dbms_cloud_oci_ai_language_pii_entity_masking_t type.
Fields
Field
Description
masking_character
(optional) Masking character. By default, the character is an asterisk (*)
leave_characters_unmasked
(optional) Number of characters to leave unmasked. By default, the whole entity is masked.
is_unmasked_from_end
(optional) Unmask from the end. By default, the whole entity is masked. This field works in concert with leaveCharactersUnmasked. For example, leaveCharactersUnmasked is 3 and isUnmaskedFromEnd is true, then if the entity is India the masked entity/result is **dia.
DBMS_CLOUD_OCI_AI_LANGUAGE_PII_ENTITY_REMOVE_T Type 🔗
Remove PII entities from output.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pii_entity_remove_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_pii_entity_masking_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pii_entity_remove_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pii_entity_remove_t (
l_mode varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_pii_entity_remove_t is a subtype of the dbms_cloud_oci_ai_language_pii_entity_masking_t type.
DBMS_CLOUD_OCI_AI_LANGUAGE_PII_ENTITY_REPLACE_T Type 🔗
Replace PII entities with a given sequence of characters.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pii_entity_replace_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_pii_entity_masking_t (
replace_with varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pii_entity_replace_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pii_entity_replace_t (
l_mode varchar2,
replace_with varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_pii_entity_replace_t is a subtype of the dbms_cloud_oci_ai_language_pii_entity_masking_t type.
Fields
Field
Description
replace_with
(optional) Replace entities with given sequence of characters. By default PII entity will be replaced with <ENTITY_TYPE>.
DBMS_CLOUD_OCI_AI_LANGUAGE_PRE_DEPLOYED_LANGUAGE_MODELS_T Type 🔗
Description of Language Entities.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pre_deployed_language_models_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_deployed_language_models_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_deployed_language_models_t (
id varchar2,
compartment_id varchar2,
description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier that is immutable on creation
DBMS_CLOUD_OCI_AI_LANGUAGE_PRE_TRAINED_HEALTH_NLU_MODEL_DETAILS_T Type 🔗
Possible pre trained health NLU model information
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pre_trained_health_nlu_model_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_model_details_t (
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_health_nlu_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_health_nlu_model_details_t (
language_code varchar2,
model_type varchar2,
version varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_pre_trained_health_nlu_model_details_t is a subtype of the dbms_cloud_oci_ai_language_model_details_t type.
Fields
Field
Description
version
(optional) Optional pre trained model version. if nothing specified latest pre trained model will be used. Supported versions can be found at /modelTypes/{modelType}
DBMS_CLOUD_OCI_AI_LANGUAGE_PRE_TRAINED_KEY_PHRASE_EXTRACTION_MODEL_DETAILS_T Type 🔗
Possible pre trained TXT model information
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pre_trained_key_phrase_extraction_model_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_model_details_t (
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_key_phrase_extraction_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_key_phrase_extraction_model_details_t (
language_code varchar2,
model_type varchar2,
version varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_pre_trained_key_phrase_extraction_model_details_t is a subtype of the dbms_cloud_oci_ai_language_model_details_t type.
Fields
Field
Description
version
(optional) Optional pre trained model version. if nothing specified latest pre trained model will be used. Supported versions can be found at /modelTypes/{modelType}
DBMS_CLOUD_OCI_AI_LANGUAGE_PRE_TRAINED_LANGUAGE_DETECTION_MODEL_DETAILS_T Type 🔗
Possible pre trained TXT model information
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pre_trained_language_detection_model_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_model_details_t (
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_language_detection_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_language_detection_model_details_t (
language_code varchar2,
model_type varchar2,
version varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_pre_trained_language_detection_model_details_t is a subtype of the dbms_cloud_oci_ai_language_model_details_t type.
Fields
Field
Description
version
(optional) Optional pre trained model version. if nothing specified latest pre trained model will be used. Supported versions can be found at /modelTypes/{modelType}
DBMS_CLOUD_OCI_AI_LANGUAGE_PRE_TRAINED_NAMED_ENTITY_RECOGNITION_MODEL_DETAILS_T Type 🔗
Possible pre trained NER model information
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pre_trained_named_entity_recognition_model_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_model_details_t (
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_named_entity_recognition_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_named_entity_recognition_model_details_t (
language_code varchar2,
model_type varchar2,
version varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_pre_trained_named_entity_recognition_model_details_t is a subtype of the dbms_cloud_oci_ai_language_model_details_t type.
Fields
Field
Description
version
(optional) Optional pre trained model version. if nothing specified latest pre trained model will be used. Supported versions can be found at /modelTypes/{modelType}
DBMS_CLOUD_OCI_AI_LANGUAGE_PRE_TRAINED_PHI_MODEL_DETAILS_T Type 🔗
Possible pre trained PHI model information
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pre_trained_phi_model_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_model_details_t (
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_phi_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_phi_model_details_t (
language_code varchar2,
model_type varchar2,
version varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_pre_trained_phi_model_details_t is a subtype of the dbms_cloud_oci_ai_language_model_details_t type.
Fields
Field
Description
version
(optional) Optional pre trained model version. if nothing specified latest pre trained model will be used. Supported versions can be found at /modelTypes/{modelType}
DBMS_CLOUD_OCI_AI_LANGUAGE_PRE_TRAINED_PII_MODEL_DETAILS_T Type 🔗
Possible pre trained PII model information
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pre_trained_pii_model_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_model_details_t (
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_pii_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_pii_model_details_t (
language_code varchar2,
model_type varchar2,
version varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_pre_trained_pii_model_details_t is a subtype of the dbms_cloud_oci_ai_language_model_details_t type.
Fields
Field
Description
version
(optional) Optional pre trained model version. if nothing specified latest pre trained model will be used. Supported versions can be found at /modelTypes/{modelType}
DBMS_CLOUD_OCI_AI_LANGUAGE_PRE_TRAINED_SENTIMENT_ANALYSIS_MODEL_DETAILS_T Type 🔗
Possible pre trained TXT model information
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pre_trained_sentiment_analysis_model_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_model_details_t (
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_sentiment_analysis_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_sentiment_analysis_model_details_t (
language_code varchar2,
model_type varchar2,
version varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_pre_trained_sentiment_analysis_model_details_t is a subtype of the dbms_cloud_oci_ai_language_model_details_t type.
Fields
Field
Description
version
(optional) Optional pre trained model version. if nothing specified latest pre trained model will be used. Supported versions can be found at /modelTypes/{modelType}
DBMS_CLOUD_OCI_AI_LANGUAGE_PRE_TRAINED_SUMMARIZATION_T Type 🔗
Possible pre trained summarization information
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pre_trained_summarization_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_model_details_t (
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_summarization_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_summarization_t (
language_code varchar2,
model_type varchar2,
version varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_pre_trained_summarization_t is a subtype of the dbms_cloud_oci_ai_language_model_details_t type.
Fields
Field
Description
version
(optional) Optional pre trained model version. if nothing specified latest pre trained model will be used. Supported versions can be found at /modelTypes/{modelType}
DBMS_CLOUD_OCI_AI_LANGUAGE_PRE_TRAINED_TEXT_CLASSIFICATION_MODEL_DETAILS_T Type 🔗
Possible pre trained TXT model information
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pre_trained_text_classification_model_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_model_details_t (
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_text_classification_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_text_classification_model_details_t (
language_code varchar2,
model_type varchar2,
version varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_pre_trained_text_classification_model_details_t is a subtype of the dbms_cloud_oci_ai_language_model_details_t type.
Fields
Field
Description
version
(optional) Optional pre trained model version. if nothing specified latest pre trained model will be used. Supported versions can be found at /modelTypes/{modelType}
DBMS_CLOUD_OCI_AI_LANGUAGE_PRE_TRAINED_UNIVERSAL_MODEL_T Type 🔗
Possible pre trained universal model information
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_pre_trained_universal_model_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_model_details_t (
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_universal_model_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_pre_trained_universal_model_t (
language_code varchar2,
model_type varchar2,
version varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_pre_trained_universal_model_t is a subtype of the dbms_cloud_oci_ai_language_model_details_t type.
Fields
Field
Description
version
(optional) Optional pre trained model version. if nothing specified latest pre trained model will be used. Supported versions can be found at /modelTypes/{modelType}
DBMS_CLOUD_OCI_AI_LANGUAGE_PROJECT_T Type 🔗
Project enable users to organize their project resources.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_project_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
description varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_project_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_project_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
description varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier OCID of the project
display_name
(required) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
compartment_id
(required) The OCID for the project's compartment.
description
(optional) A short description of a project.
time_created
(required) The date and time the resource was created in the timestamp format defined by RFC3339.
time_updated
(optional) The date and time the resource was updated in the timestamp format defined by RFC3339.
(optional) A message describing the current state in more detail.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{ \"orcl-cloud\": { \"free-tier-retained\": \"true\" } }`
DBMS_CLOUD_OCI_AI_LANGUAGE_PROJECT_SUMMARY_T Type 🔗
Summary of the project.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_project_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_project_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_project_summary_t (
id varchar2,
display_name varchar2,
description varchar2,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier OCID of a project
display_name
(required) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
description
(optional) A short description of the project.
compartment_id
(required) The OCID for the project's compartment.
time_created
(required) The date and time the resource was created in the timestamp format defined by RFC3339.
time_updated
(optional) The date and time the resource was updated in the timestamp format defined by RFC3339.
lifecycle_state
(required) The state of the project.
lifecycle_details
(optional) A message describing the current state in more detail.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{ \"orcl-cloud\": { \"free-tier-retained\": \"true\" } }`
DBMS_CLOUD_OCI_AI_LANGUAGE_PROJECT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_project_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_project_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_project_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_PROJECT_COLLECTION_T Type 🔗
Results of a Project List. Contains ProjectSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_project_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_ai_language_project_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_project_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_project_collection_t (
items dbms_cloud_oci_ai_language_project_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of projects
DBMS_CLOUD_OCI_AI_LANGUAGE_TEST_AND_VALIDATION_DATASET_STRATEGY_T Type 🔗
This information will be used capture training, testing and validation dataset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_test_and_validation_dataset_strategy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_test_strategy_t (
testing_dataset dbms_cloud_oci_ai_language_dataset_details_t,
validation_dataset dbms_cloud_oci_ai_language_dataset_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_test_and_validation_dataset_strategy_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_test_and_validation_dataset_strategy_t (
strategy_type varchar2,
testing_dataset dbms_cloud_oci_ai_language_dataset_details_t,
validation_dataset dbms_cloud_oci_ai_language_dataset_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_test_and_validation_dataset_strategy_t is a subtype of the dbms_cloud_oci_ai_language_test_strategy_t type.
Fields
Field
Description
testing_dataset
(required)
validation_dataset
(optional)
DBMS_CLOUD_OCI_AI_LANGUAGE_TEXT_CLASSIFICATION_MODEL_METRICS_T Type 🔗
Model level text classification metrics
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_text_classification_model_metrics_t FORCE AUTHID CURRENT_USER IS OBJECT (
accuracy number,
micro_f1 number,
micro_precision number,
micro_recall number,
macro_f1 number,
macro_precision number,
macro_recall number,
weighted_f1 number,
weighted_precision number,
weighted_recall number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_classification_model_metrics_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_classification_model_metrics_t (
accuracy number,
micro_f1 number,
micro_precision number,
micro_recall number,
macro_f1 number,
macro_precision number,
macro_recall number,
weighted_f1 number,
weighted_precision number,
weighted_recall number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
accuracy
(required) The fraction of the labels that were correctly recognised .
micro_f1
(required) F1-score, is a measure of a model’s accuracy on a dataset
micro_precision
(required) Precision refers to the number of true positives divided by the total number of positive predictions (i.e., the number of true positives plus the number of false positives)
micro_recall
(required) Measures the model's ability to predict actual positive classes. It is the ratio between the predicted true positives and what was actually tagged. The recall metric reveals how many of the predicted classes are correct.
macro_f1
(required) F1-score, is a measure of a model’s accuracy on a dataset
macro_precision
(required) Precision refers to the number of true positives divided by the total number of positive predictions (i.e., the number of true positives plus the number of false positives)
macro_recall
(required) Measures the model's ability to predict actual positive classes. It is the ratio between the predicted true positives and what was actually tagged. The recall metric reveals how many of the predicted classes are correct.
weighted_f1
(optional) F1-score, is a measure of a model’s accuracy on a dataset
weighted_precision
(optional) Precision refers to the number of true positives divided by the total number of positive predictions (i.e., the number of true positives plus the number of false positives)
weighted_recall
(optional) Measures the model's ability to predict actual positive classes. It is the ratio between the predicted true positives and what was actually tagged. The recall metric reveals how many of the predicted classes are correct.
DBMS_CLOUD_OCI_AI_LANGUAGE_CLASS_METRICS_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_class_metrics_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_class_metrics_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_class_metrics_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_TEXT_CLASSIFICATION_EVALUATION_RESULTS_T Type 🔗
Text Classification model testing and evaluation results
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_text_classification_evaluation_results_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_evaluation_results_t (
metrics dbms_cloud_oci_ai_language_text_classification_model_metrics_t,
class_metrics dbms_cloud_oci_ai_language_class_metrics_tbl,
confusion_matrix json_element_t,
labels dbms_cloud_oci_ai_language_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_classification_evaluation_results_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_classification_evaluation_results_t (
model_type varchar2,
metrics dbms_cloud_oci_ai_language_text_classification_model_metrics_t,
class_metrics dbms_cloud_oci_ai_language_class_metrics_tbl,
confusion_matrix json_element_t,
labels dbms_cloud_oci_ai_language_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_text_classification_evaluation_results_t is a subtype of the dbms_cloud_oci_ai_language_evaluation_results_t type.
Fields
Field
Description
metrics
(optional)
class_metrics
(optional) List of text classification metrics
confusion_matrix
(optional) class level confusion matrix
labels
(optional) labels
DBMS_CLOUD_OCI_AI_LANGUAGE_TEXT_CLASSIFICATION_MODEL_DETAILS_T Type 🔗
Possible TextClassificationModelDetails
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_text_classification_model_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_model_details_t (
classification_mode dbms_cloud_oci_ai_language_classification_type_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_classification_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_classification_model_details_t (
language_code varchar2,
model_type varchar2,
classification_mode dbms_cloud_oci_ai_language_classification_type_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_text_classification_model_details_t is a subtype of the dbms_cloud_oci_ai_language_model_details_t type.
Fields
Field
Description
classification_mode
(optional)
DBMS_CLOUD_OCI_AI_LANGUAGE_TEXT_CLASSIFICATION_MODEL_EVALUATION_RESULT_T Type 🔗
Possible TXTC model error analysis
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_text_classification_model_evaluation_result_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_ai_language_evaluation_result_summary_t (
location varchar2(32767),
true_labels dbms_cloud_oci_ai_language_varchar2_tbl,
predicted_labels dbms_cloud_oci_ai_language_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_classification_model_evaluation_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_text_classification_model_evaluation_result_t (
model_type varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
location varchar2,
true_labels dbms_cloud_oci_ai_language_varchar2_tbl,
predicted_labels dbms_cloud_oci_ai_language_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_ai_language_text_classification_model_evaluation_result_t is a subtype of the dbms_cloud_oci_ai_language_evaluation_result_summary_t type.
Fields
Field
Description
location
(required) For CSV format location is rowId(1 is header) and for JSONL location is jsonL line sequence(1 is metadata)
true_labels
(required) List of true(actual) labels in test data for multi class or multi label TextClassification
predicted_labels
(optional) List of predicted labels by custom multi class or multi label TextClassification model
DBMS_CLOUD_OCI_AI_LANGUAGE_UPDATE_ENDPOINT_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_update_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
model_id varchar2(32767),
inference_units number,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_update_endpoint_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_update_endpoint_details_t (
display_name varchar2,
description varchar2,
model_id varchar2,
inference_units number,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource. It should be unique and can be modified. Avoid entering confidential information.
description
(optional) A short description of the endpoint.
model_id
(optional) The OCID of the model to associate with the endpoint.
inference_units
(optional) Number of replicas required for this endpoint. This will be optional parameter.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_AI_LANGUAGE_UPDATE_MODEL_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_update_model_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_update_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_update_model_details_t (
display_name varchar2,
description varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
description
(optional) A short description of the a model.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_AI_LANGUAGE_UPDATE_PROJECT_DETAILS_T Type 🔗
The information to be updated for the project.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_update_project_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_update_project_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_update_project_details_t (
display_name varchar2,
description varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
description
(optional) A short description of the project.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_AI_LANGUAGE_WORK_REQUEST_RESOURCE_T Type 🔗
A resource created or operated on by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity_type varchar2(32767),
action_type varchar2(32767),
identifier varchar2(32767),
entity_uri varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_resource_t (
entity_type varchar2,
action_type varchar2,
identifier varchar2,
entity_uri varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
entity_type
(required) The resource type the work request affects.
action_type
(required) The way in which this resource is affected by the work tracked in the work request. A resource being created, updated, or deleted will remain in the IN_PROGRESS state until work is complete for that resource at which point it will transition to CREATED, UPDATED, or DELETED, respectively.
(required) The identifier of the resource the work request affects.
entity_uri
(optional) The URI path that the user can do a GET on to access the resource metadata
DBMS_CLOUD_OCI_AI_LANGUAGE_WORK_REQUEST_RESOURCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_WORK_REQUEST_T Type 🔗
A description of workrequest status
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
operation_type varchar2(32767),
status varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
resources dbms_cloud_oci_ai_language_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_ai_language_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) Unique identifier work request OCID of work request that is immutable on creation
compartment_id
(required) The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used
resources
(optional) The resources affected by this work request.
percent_complete
(required) Percentage of the request completed.
time_accepted
(required) The date and time the request was created, as described in RFC 3339, section 14.29.
time_started
(optional) The date and time the request was started, as described in RFC 3339, section 14.29.
time_finished
(optional) The date and time the object was finished, as described in RFC 3339.
DBMS_CLOUD_OCI_AI_LANGUAGE_WORK_REQUEST_ERROR_T Type 🔗
An error encountered while executing a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_work_request_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_error_t (
code varchar2,
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A machine-usable code for the error that occured. Error codes are listed on (https://docs.cloud.oracle.com/Content/API/References/apierrors.htm)
message
(required) A human readable description of the issue encountered.
l_timestamp
(required) The time the error occured. An RFC3339 formatted datetime string.
DBMS_CLOUD_OCI_AI_LANGUAGE_WORK_REQUEST_ERROR_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_work_request_error_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_work_request_error_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_WORK_REQUEST_ERROR_COLLECTION_T Type 🔗
Results of a workRequestError search. Contains both WorkRequestError items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_ai_language_work_request_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_error_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_error_collection_t (
items dbms_cloud_oci_ai_language_work_request_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of workRequestError objects.
DBMS_CLOUD_OCI_AI_LANGUAGE_WORK_REQUEST_LOG_T Type 🔗
A log message from the execution of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_work_request_log_t FORCE AUTHID CURRENT_USER IS OBJECT (
message varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_log_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_log_t (
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
message
(required) Human-readable log message.
l_timestamp
(required) The time the log message was written. An RFC3339 formatted datetime string
DBMS_CLOUD_OCI_AI_LANGUAGE_WORK_REQUEST_LOG_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_work_request_log_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_work_request_log_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_work_request_log_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_WORK_REQUEST_LOG_COLLECTION_T Type 🔗
Results of a workRequestLog search. Contains both workRequestLog items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_work_request_log_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_ai_language_work_request_log_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_log_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_log_collection_t (
items dbms_cloud_oci_ai_language_work_request_log_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of workRequestLogEntries.
DBMS_CLOUD_OCI_AI_LANGUAGE_WORK_REQUEST_SUMMARY_T Type 🔗
A summary of the status of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
operation_type varchar2(32767),
status varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
resources dbms_cloud_oci_ai_language_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_summary_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_ai_language_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) Unique identifier work request OCID of work request that is immutable on creation
compartment_id
(required) The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used
resources
(optional) The resources affected by this work request.
percent_complete
(required) Percentage of the request completed.
time_accepted
(required) The date and time the request was created, as described in RFC 3339, section 14.29.
time_started
(optional) The date and time the request was started, as described in RFC 3339, section 14.29.
time_finished
(optional) The date and time the object was finished, as described in RFC 3339.
DBMS_CLOUD_OCI_AI_LANGUAGE_WORK_REQUEST_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_ai_language_work_request_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_ai_language_work_request_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_AI_LANGUAGE_WORK_REQUEST_SUMMARY_COLLECTION_T Type 🔗
Results of a workRequest search. Contains both WorkRequest items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ai_language_work_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_ai_language_work_request_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_ai_language_work_request_summary_collection_t (
items dbms_cloud_oci_ai_language_work_request_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;