DBMS_CLOUD_OCI_TI_THREATINTEL_GET_INDICATOR_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_indicator request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ti_threatintel_get_indicator_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_threat_intelligence_indicator_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_indicator
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_TI_THREATINTEL_LIST_INDICATOR_COUNTS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_indicator_counts request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ti_threatintel_list_indicator_counts_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_threat_intelligence_indicator_count_collection_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_indicator_counts
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_TI_THREATINTEL_LIST_INDICATORS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_indicators request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ti_threatintel_list_indicators_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_threat_intelligence_indicator_summary_collection_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_indicators
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_TI_THREATINTEL_LIST_THREAT_TYPES_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_threat_types request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ti_threatintel_list_threat_types_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_threat_intelligence_threat_types_collection_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_threat_types
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_TI_THREATINTEL_SUMMARIZE_INDICATORS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the summarize_indicators request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ti_threatintel_summarize_indicators_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_threat_intelligence_indicator_summary_collection_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;