AI Vision Types

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_ANALYZE_DOCUMENT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of analyze_document

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_ANALYZE_IMAGE_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of analyze_image

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_CANCEL_DOCUMENT_JOB_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_aiv_ai_service_vision_cancel_document_job_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_AIV_AI_SERVICE_VISION_CANCEL_IMAGE_JOB_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_aiv_ai_service_vision_cancel_image_job_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_AIV_AI_SERVICE_VISION_CANCEL_WORK_REQUEST_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_aiv_ai_service_vision_cancel_work_request_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_AIV_AI_SERVICE_VISION_CHANGE_MODEL_COMPARTMENT_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_aiv_ai_service_vision_change_model_compartment_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_AIV_AI_SERVICE_VISION_CHANGE_PROJECT_COMPARTMENT_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_aiv_ai_service_vision_change_project_compartment_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_AIV_AI_SERVICE_VISION_CREATE_DOCUMENT_JOB_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_document_job

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_CREATE_IMAGE_JOB_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_image_job

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_CREATE_MODEL_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_model

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_CREATE_PROJECT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_project

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_DELETE_MODEL_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_aiv_ai_service_vision_delete_model_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_AIV_AI_SERVICE_VISION_DELETE_PROJECT_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_aiv_ai_service_vision_delete_project_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_AIV_AI_SERVICE_VISION_GET_DOCUMENT_JOB_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_document_job

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_GET_IMAGE_JOB_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_image_job

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_GET_MODEL_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_model

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_GET_PROJECT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_project

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_GET_WORK_REQUEST_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_work_request

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_LIST_MODELS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_models

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_LIST_PROJECTS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_projects

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_LIST_WORK_REQUEST_ERRORS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_work_request_errors

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_LIST_WORK_REQUEST_LOGS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_work_request_logs

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_LIST_WORK_REQUESTS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_work_requests

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AIV_AI_SERVICE_VISION_UPDATE_MODEL_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_aiv_ai_service_vision_update_model_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_AIV_AI_SERVICE_VISION_UPDATE_PROJECT_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_aiv_ai_service_vision_update_project_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

Was this article helpful?