DBMS_CLOUD_OCI_ODA_ODAPACKAGE_CREATE_IMPORTED_PACKAGE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_imported_package request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_oda_odapackage_create_imported_package_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_oda_imported_package_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_imported_package
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_ODA_ODAPACKAGE_DELETE_IMPORTED_PACKAGE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_imported_package request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_oda_odapackage_delete_imported_package_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_ODA_ODAPACKAGE_GET_IMPORTED_PACKAGE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_imported_package request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_oda_odapackage_get_imported_package_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_oda_imported_package_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_imported_package
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_ODA_ODAPACKAGE_GET_PACKAGE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_package request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_oda_odapackage_get_package_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_oda_package_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_package
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_ODA_IMPORTED_PACKAGE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_oda_imported_package_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_oda_imported_package_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_oda_imported_package_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_ODA_ODAPACKAGE_LIST_IMPORTED_PACKAGES_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_imported_packages request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_oda_odapackage_list_imported_packages_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_oda_imported_package_summary_tbl,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_imported_packages
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_ODA_PACKAGE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_oda_package_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_oda_package_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_oda_package_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_ODA_ODAPACKAGE_LIST_PACKAGES_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_packages request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_oda_odapackage_list_packages_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_oda_package_summary_tbl,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_packages
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_ODA_ODAPACKAGE_UPDATE_IMPORTED_PACKAGE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_imported_package request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_oda_odapackage_update_imported_package_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_oda_imported_package_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;