Data Labeling Service Common Types

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_LABEL_T Type

It represents a label.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_label_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_label_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_label_t (
    name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(optional) An unique name for a label within its dataset.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_LABEL_TBL Type

Nested table type of dbms_cloud_oci_data_labeling_service_label_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_label_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_label_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_LABEL_SET_T Type

An ordered collection of labels that are unique by name.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_label_set_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_data_labeling_service_label_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_label_set_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_label_set_t (
    items dbms_cloud_oci_data_labeling_service_label_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) An ordered collection of labels that are unique by name.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_ADD_DATASET_LABELS_DETAILS_T Type

Adds a subset of Labels to the Dataset's LabelSet. This LabelSet will be merged with the current Dataset's LabelSet. Requests with duplicate Labels will be rejected.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_add_dataset_labels_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  label_set dbms_cloud_oci_data_labeling_service_label_set_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_add_dataset_labels_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_add_dataset_labels_details_t (
    label_set dbms_cloud_oci_data_labeling_service_label_set_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

label_set

(optional)

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_ANNOTATION_FORMAT_T Type

annotation format

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_annotation_format_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_annotation_format_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_annotation_format_t (
    name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) A unique name for the target AnnotationFormat for the Dataset.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_ANNOTATION_FORMAT_SUMMARY_T Type

annotation format summary

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_annotation_format_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_annotation_format_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_annotation_format_summary_t (
    name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) A unique name for the target AnnotationFormat for the Dataset.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_ANNOTATION_FORMAT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_data_labeling_service_annotation_format_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_annotation_format_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_annotation_format_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_ANNOTATION_FORMAT_COLLECTION_T Type

Collection of annotation formats.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_annotation_format_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_data_labeling_service_annotation_format_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_annotation_format_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_annotation_format_collection_t (
    items dbms_cloud_oci_data_labeling_service_annotation_format_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of annotation formats.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_CHANGE_DATASET_COMPARTMENT_DETAILS_T Type

The payload sent to the Change Dataset compartment operation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_change_dataset_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_change_dataset_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_change_dataset_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where the resource should be moved.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATASET_SOURCE_DETAILS_T Type

This allows the customer to specify the source of the dataset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataset_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataset_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataset_source_details_t (
    source_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

source_type

(required) The source type. OBJECT_STORAGE allows the user to describe where in object storage the dataset is.

Allowed values are: 'OBJECT_STORAGE'

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATASET_FORMAT_DETAILS_T Type

It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataset_format_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  format_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataset_format_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataset_format_details_t (
    format_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

format_type

(required) The format type. DOCUMENT format is for record contents that are PDFs or TIFFs. IMAGE format is for record contents that are JPEGs or PNGs. TEXT format is for record contents that are TXT files.

Allowed values are: 'DOCUMENT', 'IMAGE', 'TEXT'

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_INITIAL_RECORD_GENERATION_CONFIGURATION_T Type

The initial generate records configuration. It generates records from the dataset's source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_initial_record_generation_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  limit number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_initial_record_generation_configuration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_initial_record_generation_configuration_t (
    limit number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

limit

(optional) The maximum number of records to generate.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_IMPORT_FORMAT_T Type

File format details used for importing dataset

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_import_format_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_import_format_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_import_format_t (
    name varchar2,
    version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) Name of import format

Allowed values are: 'JSONL_CONSOLIDATED', 'JSONL_COMPACT_PLUS_CONTENT', 'CONLL', 'SPACY', 'COCO', 'YOLO', 'PASCAL_VOC'

version

(optional) Version of import format

Allowed values are: 'V2003', 'V5'

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_IMPORT_METADATA_PATH_T Type

Object storage path for the metadata file

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_import_metadata_path_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_import_metadata_path_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_import_metadata_path_t (
    source_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

source_type

(required) The type of data source. OBJECT_STORAGE - The source details for an object storage bucket.

Allowed values are: 'OBJECT_STORAGE'

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_INITIAL_IMPORT_DATASET_CONFIGURATION_T Type

Initial import dataset configuration. Allows user to create dataset from existing dataset files.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_initial_import_dataset_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  import_format dbms_cloud_oci_data_labeling_service_import_format_t,
  import_metadata_path dbms_cloud_oci_data_labeling_service_import_metadata_path_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_initial_import_dataset_configuration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_initial_import_dataset_configuration_t (
    import_format dbms_cloud_oci_data_labeling_service_import_format_t,
    import_metadata_path dbms_cloud_oci_data_labeling_service_import_metadata_path_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

import_format

(required)

import_metadata_path

(required)

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_CREATE_DATASET_DETAILS_T Type

Parameters needed to create a new Dataset. A Dataset allows a user to describe the data source that provides the Records and how Annotations should be applied to the Records.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_create_dataset_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  annotation_format varchar2(32767),
  dataset_source_details dbms_cloud_oci_data_labeling_service_dataset_source_details_t,
  dataset_format_details dbms_cloud_oci_data_labeling_service_dataset_format_details_t,
  initial_record_generation_configuration dbms_cloud_oci_data_labeling_service_initial_record_generation_configuration_t,
  initial_import_dataset_configuration dbms_cloud_oci_data_labeling_service_initial_import_dataset_configuration_t,
  label_set dbms_cloud_oci_data_labeling_service_label_set_t,
  labeling_instructions varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_create_dataset_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_create_dataset_details_t (
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    annotation_format varchar2,
    dataset_source_details dbms_cloud_oci_data_labeling_service_dataset_source_details_t,
    dataset_format_details dbms_cloud_oci_data_labeling_service_dataset_format_details_t,
    initial_record_generation_configuration dbms_cloud_oci_data_labeling_service_initial_record_generation_configuration_t,
    initial_import_dataset_configuration dbms_cloud_oci_data_labeling_service_initial_import_dataset_configuration_t,
    label_set dbms_cloud_oci_data_labeling_service_label_set_t,
    labeling_instructions 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.

description

(optional) A user provided description of the dataset

compartment_id

(required) The OCID of the compartment of the resource.

annotation_format

(required) The annotation format name required for labeling records.

dataset_source_details

(required)

dataset_format_details

(required)

initial_record_generation_configuration

(optional)

initial_import_dataset_configuration

(optional)

label_set

(required)

labeling_instructions

(optional) The labeling instructions for human labelers in rich text format

freeform_tags

(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATASET_T Type

A dataset is a logical collection of records. The dataset contains all the information necessary to describe a record's source, format, type of annotations allowed on these records, and labels allowed on annotations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataset_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),
  lifecycle_substate varchar2(32767),
  annotation_format varchar2(32767),
  dataset_source_details dbms_cloud_oci_data_labeling_service_dataset_source_details_t,
  dataset_format_details dbms_cloud_oci_data_labeling_service_dataset_format_details_t,
  label_set dbms_cloud_oci_data_labeling_service_label_set_t,
  initial_record_generation_configuration dbms_cloud_oci_data_labeling_service_initial_record_generation_configuration_t,
  initial_import_dataset_configuration dbms_cloud_oci_data_labeling_service_initial_import_dataset_configuration_t,
  labeling_instructions varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  additional_properties json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataset_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataset_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,
    lifecycle_substate varchar2,
    annotation_format varchar2,
    dataset_source_details dbms_cloud_oci_data_labeling_service_dataset_source_details_t,
    dataset_format_details dbms_cloud_oci_data_labeling_service_dataset_format_details_t,
    label_set dbms_cloud_oci_data_labeling_service_label_set_t,
    initial_record_generation_configuration dbms_cloud_oci_data_labeling_service_initial_record_generation_configuration_t,
    initial_import_dataset_configuration dbms_cloud_oci_data_labeling_service_initial_import_dataset_configuration_t,
    labeling_instructions varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    additional_properties json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the Dataset.

display_name

(optional) A user-friendly display name for the resource.

compartment_id

(required) The OCID of the compartment of the resource.

description

(optional) A user provided description of the dataset

time_created

(required) The date and time the resource was created, in the timestamp format defined by RFC3339.

time_updated

(required) The date and time the resource was last updated, in the timestamp format defined by RFC3339.

lifecycle_state

(required) The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'NEEDS_ATTENTION', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.

lifecycle_substate

(optional) The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.

Allowed values are: 'IMPORT_DATASET'

annotation_format

(required) The annotation format name required for labeling records.

dataset_source_details

(required)

dataset_format_details

(required)

label_set

(required)

initial_record_generation_configuration

(optional)

initial_import_dataset_configuration

(optional)

labeling_instructions

(optional) The labeling instructions for human labelers in rich text format

freeform_tags

(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) The usage of system tag keys. These predefined keys are scoped to namespaces. For example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

additional_properties

(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATASET_SUMMARY_T Type

A dataset summary is the representation returned in list views. It is usually a subset of the full dataset entity and should not contain any potentially sensitive information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataset_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name 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),
  annotation_format varchar2(32767),
  dataset_format_details dbms_cloud_oci_data_labeling_service_dataset_format_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataset_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataset_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    annotation_format varchar2,
    dataset_format_details dbms_cloud_oci_data_labeling_service_dataset_format_details_t,
    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) The OCID of the Dataset

display_name

(optional) A user-friendly display name for the resource.

compartment_id

(required) Compartment Identifier

time_created

(required) The time the the Dataset was created. An RFC3339 formatted datetime string

time_updated

(required) The date and time the resource was last updated, in the timestamp format defined by RFC3339.

lifecycle_state

(required) The state of a Dataset.

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.

annotation_format

(required) The annotation format name required for labeling records.

dataset_format_details

(required)

freeform_tags

(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) The usage of system tag keys. These predefined keys are scoped to namespaces. For example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATASET_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_data_labeling_service_dataset_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataset_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_dataset_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATASET_COLLECTION_T Type

Results of a dataset list operation. Contains DatasetSummary items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataset_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_data_labeling_service_dataset_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataset_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataset_collection_t (
    items dbms_cloud_oci_data_labeling_service_dataset_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of datasets.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_TEXT_FILE_TYPE_METADATA_T Type

Metadata for files with text content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_text_file_type_metadata_t FORCE AUTHID CURRENT_USER IS OBJECT (
  format_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_text_file_type_metadata_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_text_file_type_metadata_t (
    format_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

format_type

(required) It defines the format type of text files.

Allowed values are: 'DELIMITED'

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DELIMITED_FILE_TYPE_METADATA_T Type

Metadata of delimited files.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_delimited_file_type_metadata_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_text_file_type_metadata_t (
  column_name varchar2(32767),
  column_index number,
  column_delimiter varchar2(32767),
  line_delimiter varchar2(32767),
  escape_character varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_delimited_file_type_metadata_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_delimited_file_type_metadata_t (
    format_type varchar2,
    column_name varchar2,
    column_index number,
    column_delimiter varchar2,
    line_delimiter varchar2,
    escape_character varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_data_labeling_service_delimited_file_type_metadata_t is a subtype of the dbms_cloud_oci_data_labeling_service_text_file_type_metadata_t type.

Fields

Field Description

column_name

(optional) The name of a selected column.

column_index

(required) The index of a selected column. This is a zero-based index.

column_delimiter

(optional) A column delimiter

line_delimiter

(optional) A line delimiter.

escape_character

(optional) An escape character.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DOCUMENT_DATASET_FORMAT_DETAILS_T Type

It indicates the dataset is comprised of document files. It is open for further configurability.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_document_dataset_format_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataset_format_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_document_dataset_format_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_document_dataset_format_details_t (
    format_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_data_labeling_service_document_dataset_format_details_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataset_format_details_t type.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_ERROR_T Type

Error Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_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_DATA_LABELING_SERVICE_EXPORT_FORMAT_T Type

Specifies the export format to be used for exporting snapshot.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_export_format_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_export_format_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_export_format_t (
    name varchar2,
    version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(optional) Name of export format.

Allowed values are: 'JSONL', 'JSONL_CONSOLIDATED', 'CONLL', 'SPACY', 'COCO', 'YOLO', 'PASCAL_VOC', 'JSONL_COMPACT_PLUS_CONTENT'

version

(optional) Version of export format.

Allowed values are: 'V2003', 'V5'

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_GENERATE_DATASET_RECORDS_DETAILS_T Type

Generate Records from the Dataset's source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_generate_dataset_records_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  limit number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_generate_dataset_records_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_generate_dataset_records_details_t (
    limit number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

limit

(optional) the maximum number of records to generate.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_IMAGE_DATASET_FORMAT_DETAILS_T Type

It indicates the dataset is comprised of images.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_image_dataset_format_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataset_format_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_image_dataset_format_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_image_dataset_format_details_t (
    format_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_data_labeling_service_image_dataset_format_details_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataset_format_details_t type.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_IMPORT_PRE_ANNOTATED_DATA_DETAILS_T Type

Allows user to import dataset labels, records and annotations from dataset files

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_import_pre_annotated_data_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  import_format dbms_cloud_oci_data_labeling_service_import_format_t,
  import_metadata_path dbms_cloud_oci_data_labeling_service_import_metadata_path_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_import_pre_annotated_data_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_import_pre_annotated_data_details_t (
    import_format dbms_cloud_oci_data_labeling_service_import_format_t,
    import_metadata_path dbms_cloud_oci_data_labeling_service_import_metadata_path_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

import_format

(optional)

import_metadata_path

(optional)

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_OBJECT_STORAGE_IMPORT_METADATA_PATH_T Type

Object Storage details for import metadata path.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_object_storage_import_metadata_path_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_import_metadata_path_t (
  namespace varchar2(32767),
  bucket varchar2(32767),
  path varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_object_storage_import_metadata_path_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_object_storage_import_metadata_path_t (
    source_type varchar2,
    namespace varchar2,
    bucket varchar2,
    path varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_data_labeling_service_object_storage_import_metadata_path_t is a subtype of the dbms_cloud_oci_data_labeling_service_import_metadata_path_t type.

Fields

Field Description

namespace

(required) Bucket namespace name

bucket

(required) Bucket name

path

(required) Path for the metadata file.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_SNAPSHOT_EXPORT_DETAILS_T Type

Specifies where to output the export.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_snapshot_export_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  export_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_snapshot_export_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_snapshot_export_details_t (
    export_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

export_type

(required) The target destination for the snapshot. Using OBJECT_STORAGE means the snapshot will be written to Object Storage.

Allowed values are: 'OBJECT_STORAGE'

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_OBJECT_STORAGE_SNAPSHOT_EXPORT_DETAILS_T Type

Specifies where to output the export in Object Storage.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_object_storage_snapshot_export_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_snapshot_export_details_t (
  namespace varchar2(32767),
  bucket varchar2(32767),
  prefix varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_object_storage_snapshot_export_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_object_storage_snapshot_export_details_t (
    export_type varchar2,
    namespace varchar2,
    bucket varchar2,
    prefix varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_data_labeling_service_object_storage_snapshot_export_details_t is a subtype of the dbms_cloud_oci_data_labeling_service_snapshot_export_details_t type.

Fields

Field Description

namespace

(required) Bucket namespace name

bucket

(required) Bucket name

prefix

(optional) Object path prefix to put snapshot file(s)

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_OBJECT_STORAGE_SOURCE_DETAILS_T Type

Specifies the dataset location in object storage. This requires that all records are in this bucket, and under this prefix. We do not support a dataset with objects in arbitrary locations across buckets or prefixes.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_object_storage_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataset_source_details_t (
  namespace varchar2(32767),
  bucket varchar2(32767),
  prefix varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_object_storage_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_object_storage_source_details_t (
    source_type varchar2,
    namespace varchar2,
    bucket varchar2,
    prefix varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_data_labeling_service_object_storage_source_details_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataset_source_details_t type.

Fields

Field Description

namespace

(required) The namespace of the bucket that contains the dataset data source.

bucket

(required) The object storage bucket that contains the dataset data source.

prefix

(optional) A common path prefix shared by the objects that make up the dataset. Except for the CSV file type, records are not generated for the objects whose names exactly match with the prefix.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_REMOVE_DATASET_LABELS_DETAILS_T Type

Removes a subset of Labels from the Dataset's LabelSet. This LabelSet will be subtracted from the current Dataset's LabelSet. Requests with non-existent Labels will be rejected.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_remove_dataset_labels_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  label_set dbms_cloud_oci_data_labeling_service_label_set_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_remove_dataset_labels_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_remove_dataset_labels_details_t (
    label_set dbms_cloud_oci_data_labeling_service_label_set_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

label_set

(optional)

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_RENAME_DATASET_LABELS_DETAILS_T Type

Renames a subset of Labels in the Dataset's LabelSet. The Labels in the source LabelSet will be replaced with the Labels in the target LabelSet. Labels are correlated by index, i.e. the first Label in the source LabelSet will be replaced by the first Label in the target LabelSet. If the size of the source and target LabelSets are not equal, the request will be rejected.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_rename_dataset_labels_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_label_set dbms_cloud_oci_data_labeling_service_label_set_t,
  target_label_set dbms_cloud_oci_data_labeling_service_label_set_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_rename_dataset_labels_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_rename_dataset_labels_details_t (
    source_label_set dbms_cloud_oci_data_labeling_service_label_set_t,
    target_label_set dbms_cloud_oci_data_labeling_service_label_set_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

source_label_set

(optional)

target_label_set

(optional)

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_SNAPSHOT_DATASET_DETAILS_T Type

Allows outputting the latest records paired with annotations and write them to object storage.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_snapshot_dataset_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  are_annotations_included number,
  are_unannotated_records_included number,
  export_details dbms_cloud_oci_data_labeling_service_object_storage_snapshot_export_details_t,
  export_format dbms_cloud_oci_data_labeling_service_export_format_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_snapshot_dataset_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_snapshot_dataset_details_t (
    are_annotations_included number,
    are_unannotated_records_included number,
    export_details dbms_cloud_oci_data_labeling_service_object_storage_snapshot_export_details_t,
    export_format dbms_cloud_oci_data_labeling_service_export_format_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

are_annotations_included

(required) Whether annotations are to be included in the export dataset digest.

are_unannotated_records_included

(required) Whether to include records that have yet to be annotated in the export dataset digest.

export_details

(required)

export_format

(optional)

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_TEXT_DATASET_FORMAT_DETAILS_T Type

It indicates the dataset is comprised of TXT files.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_text_dataset_format_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataset_format_details_t (
  text_file_type_metadata dbms_cloud_oci_data_labeling_service_text_file_type_metadata_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_text_dataset_format_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_text_dataset_format_details_t (
    format_type varchar2,
    text_file_type_metadata dbms_cloud_oci_data_labeling_service_text_file_type_metadata_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_data_labeling_service_text_dataset_format_details_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataset_format_details_t type.

Fields

Field Description

text_file_type_metadata

(optional)

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_UPDATE_DATASET_DETAILS_T Type

Once the Dataset is defined, it's largely immutable from a metadata perspective. The records found in the data source itself, may change over time.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_update_dataset_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  labeling_instructions varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_update_dataset_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_update_dataset_details_t (
    display_name varchar2,
    description varchar2,
    labeling_instructions 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.

description

(optional) A user provided description of the dataset

labeling_instructions

(optional) The labeling instructions for human labelers in rich text format

freeform_tags

(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_WORK_REQUEST_RESOURCE_T Type

A resource created or operated on by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_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),
  metadata json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_work_request_resource_t (
    entity_type varchar2,
    action_type varchar2,
    identifier varchar2,
    entity_uri varchar2,
    metadata json_element_t
  ) 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.

Allowed values are: 'CREATED', 'UPDATED', 'DELETED', 'IN_PROGRESS', 'WRITTEN', 'RELATED'

identifier

(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

metadata

(optional) Additional information that helps to explain the resource.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_data_labeling_service_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_WORK_REQUEST_T Type

A description of workrequest status

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_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_data_labeling_service_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_data_labeling_service_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_data_labeling_service_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;

Fields

Field Description

operation_type

(required) Type of the work request

Allowed values are: 'CREATE_DATASET', 'DELETE_DATASET', 'MOVE_DATASET', 'GENERATE_DATASET_RECORDS', 'SNAPSHOT_DATASET', 'ADD_DATASET_LABELS', 'REMOVE_DATASET_LABELS', 'RENAME_DATASET_LABELS', 'IMPORT_DATASET'

status

(required) Status of current work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'SUCCEEDED', 'CANCELING', 'CANCELED', 'FAILED'

id

(required) The id of the work request.

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

(required) 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 request was finished, as described in RFC 3339.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_WORK_REQUEST_ERROR_T Type

An error encountered while executing a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_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_data_labeling_service_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_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_DATA_LABELING_SERVICE_WORK_REQUEST_ERROR_TBL Type

Nested table type of dbms_cloud_oci_data_labeling_service_work_request_error_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_work_request_error_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_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_data_labeling_service_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_data_labeling_service_work_request_error_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_work_request_error_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_work_request_error_collection_t (
    items dbms_cloud_oci_data_labeling_service_work_request_error_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of workRequestError objects.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_WORK_REQUEST_LOG_ENTRY_T Type

A log message from the execution of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_work_request_log_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
  message varchar2(32767),
  l_timestamp timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_work_request_log_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_work_request_log_entry_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_DATA_LABELING_SERVICE_WORK_REQUEST_LOG_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_data_labeling_service_work_request_log_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_work_request_log_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_WORK_REQUEST_LOG_ENTRY_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_data_labeling_service_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_data_labeling_service_work_request_log_entry_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_work_request_log_entry_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_work_request_log_entry_collection_t (
    items dbms_cloud_oci_data_labeling_service_work_request_log_entry_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of workRequestLogEntries.

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_WORK_REQUEST_SUMMARY_T Type

A summary of the status of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_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_data_labeling_service_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_data_labeling_service_work_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_work_request_summary_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_data_labeling_service_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;

Fields

Field Description

operation_type

(required) Type of the work request

Allowed values are: 'CREATE_DATASET', 'DELETE_DATASET', 'MOVE_DATASET', 'GENERATE_DATASET_RECORDS', 'SNAPSHOT_DATASET', 'ADD_DATASET_LABELS', 'REMOVE_DATASET_LABELS', 'RENAME_DATASET_LABELS', 'IMPORT_DATASET'

status

(required) Status of current work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'SUCCEEDED', 'CANCELING', 'CANCELED', 'FAILED'

id

(required) The id of the work request.

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

(required) 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_DATA_LABELING_SERVICE_WORK_REQUEST_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_data_labeling_service_work_request_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_work_request_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_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_data_labeling_service_work_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_data_labeling_service_work_request_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_work_request_summary_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_work_request_summary_collection_t (
    items dbms_cloud_oci_data_labeling_service_work_request_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of workRequestSummary objects.

Was this article helpful?