Application Performance Monitoring Traces Query Types

DBMS_CLOUD_OCI_APM_TRACES_QUICK_PICK_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_apm_traces_quick_pick_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_traces_quick_pick_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_apm_traces_quick_pick_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ATR_QUERY_LIST_QUICK_PICKS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_quick_picks

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_ATR_QUERY_QUERY_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of query

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer