DBMS_CLOUD_OCI_DBS_DASHBOARD_CHANGE_DASHBOARD_GROUP_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the change_dashboard_group request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dbs_dashboard_change_dashboard_group_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_DBS_DASHBOARD_CREATE_DASHBOARD_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_dashboard request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dbs_dashboard_create_dashboard_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_dashboard_service_dashboard_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_dashboard
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_DBS_DASHBOARD_DELETE_DASHBOARD_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_dashboard request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dbs_dashboard_delete_dashboard_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_DBS_DASHBOARD_GET_DASHBOARD_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_dashboard request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dbs_dashboard_get_dashboard_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_dashboard_service_dashboard_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_dashboard
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_DBS_DASHBOARD_LIST_DASHBOARDS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_dashboards request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dbs_dashboard_list_dashboards_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_dashboard_service_dashboard_collection_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_dashboards
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_DBS_DASHBOARD_UPDATE_DASHBOARD_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_dashboard request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dbs_dashboard_update_dashboard_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_dashboard_service_dashboard_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;