Data Labeling Service Dataplane Types

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_CREATE_ANNOTATION_RESPONSE_T Type

Contains the response body, headers and the status code of the create_annotation request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_create_annotation_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_data_labeling_service_dataplane_annotation_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of create_annotation

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_CREATE_RECORD_RESPONSE_T Type

Contains the response body, headers and the status code of the create_record request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_create_record_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_data_labeling_service_dataplane_record_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of create_record

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_DELETE_ANNOTATION_RESPONSE_T Type

Contains the response body, headers and the status code of the delete_annotation request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_delete_annotation_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_DELETE_RECORD_RESPONSE_T Type

Contains the response body, headers and the status code of the delete_record request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_delete_record_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_GET_ANNOTATION_RESPONSE_T Type

Contains the response body, headers and the status code of the get_annotation request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_get_annotation_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_data_labeling_service_dataplane_annotation_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of get_annotation

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_GET_DATASET_RESPONSE_T Type

Contains the response body, headers and the status code of the get_dataset request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_get_dataset_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_data_labeling_service_dataplane_dataset_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of get_dataset

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_GET_RECORD_RESPONSE_T Type

Contains the response body, headers and the status code of the get_record request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_get_record_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_data_labeling_service_dataplane_record_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of get_record

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_GET_RECORD_CONTENT_RESPONSE_T Type

Contains the response body, headers and the status code of the get_record_content request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_get_record_content_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body blob,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of get_record_content

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_GET_RECORD_PREVIEW_CONTENT_RESPONSE_T Type

Contains the response body, headers and the status code of the get_record_preview_content request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_get_record_preview_content_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body blob,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of get_record_preview_content

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_LIST_ANNOTATIONS_RESPONSE_T Type

Contains the response body, headers and the status code of the list_annotations request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_list_annotations_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_data_labeling_service_dataplane_annotation_collection_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of list_annotations

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_LIST_RECORDS_RESPONSE_T Type

Contains the response body, headers and the status code of the list_records request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_list_records_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_data_labeling_service_dataplane_record_collection_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of list_records

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_SUMMARIZE_ANNOTATION_ANALYTICS_RESPONSE_T Type

Contains the response body, headers and the status code of the summarize_annotation_analytics request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_summarize_annotation_analytics_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_data_labeling_service_dataplane_annotation_analytics_aggregation_collection_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of summarize_annotation_analytics

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_SUMMARIZE_RECORD_ANALYTICS_RESPONSE_T Type

Contains the response body, headers and the status code of the summarize_record_analytics request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_summarize_record_analytics_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_data_labeling_service_dataplane_record_analytics_aggregation_collection_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of summarize_record_analytics

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_UPDATE_ANNOTATION_RESPONSE_T Type

Contains the response body, headers and the status code of the update_annotation request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_update_annotation_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_data_labeling_service_dataplane_annotation_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of update_annotation

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_DLSD_DATA_LABELING_UPDATE_RECORD_RESPONSE_T Type

Contains the response body, headers and the status code of the update_record request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dlsd_data_labeling_update_record_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_data_labeling_service_dataplane_record_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of update_record

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer