DBMS_CLOUD_OCI_ONS_NOTIFICATION_CONTROL_PLANE_CHANGE_TOPIC_COMPARTMENT_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the change_topic_compartment request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ons_notification_control_plane_change_topic_compartment_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_ONS_NOTIFICATION_CONTROL_PLANE_CREATE_TOPIC_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_topic request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ons_notification_control_plane_create_topic_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_ons_notification_topic_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_topic
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_ONS_NOTIFICATION_CONTROL_PLANE_DELETE_TOPIC_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_topic request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ons_notification_control_plane_delete_topic_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_ONS_NOTIFICATION_CONTROL_PLANE_GET_TOPIC_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_topic request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ons_notification_control_plane_get_topic_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_ons_notification_topic_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_topic
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_ONS_NOTIFICATION_TOPIC_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_ons_notification_topic_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ons_notification_topic_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_ons_notification_topic_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_ONS_NOTIFICATION_CONTROL_PLANE_LIST_TOPICS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_topics request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ons_notification_control_plane_list_topics_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_ons_notification_topic_summary_tbl,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_topics
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_ONS_NOTIFICATION_CONTROL_PLANE_UPDATE_TOPIC_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_topic request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ons_notification_control_plane_update_topic_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_ons_notification_topic_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;