DBMS_CLOUD_OCI_RS_RESOURCE_SEARCH_GET_RESOURCE_TYPE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_resource_type request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rs_resource_search_get_resource_type_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_resource_search_resource_type_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_resource_type
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_RESOURCE_SEARCH_RESOURCE_TYPE_TBL Type 🔗
Nested table type of dbms_cloud_oci_resource_search_resource_type_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_search_resource_type_tbl FORCE IS TABLE OF (dbms_cloud_oci_resource_search_resource_type_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_RS_RESOURCE_SEARCH_LIST_RESOURCE_TYPES_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_resource_types request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rs_resource_search_list_resource_types_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_resource_search_resource_type_tbl,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_resource_types
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_RS_RESOURCE_SEARCH_SEARCH_RESOURCES_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the search_resources request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rs_resource_search_search_resources_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_resource_search_resource_summary_collection_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;