ONS Notification Data Plane Types

DBMS_CLOUD_OCI_ONS_NOTIFICATION_DATA_PLANE_CHANGE_SUBSCRIPTION_COMPARTMENT_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ons_notification_data_plane_change_subscription_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_DATA_PLANE_CREATE_SUBSCRIPTION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_subscription

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_ONS_NOTIFICATION_DATA_PLANE_DELETE_SUBSCRIPTION_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ons_notification_data_plane_delete_subscription_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_DATA_PLANE_GET_CONFIRM_SUBSCRIPTION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_confirm_subscription

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_ONS_NOTIFICATION_DATA_PLANE_GET_SUBSCRIPTION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_subscription

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_ONS_NOTIFICATION_DATA_PLANE_GET_UNSUBSCRIPTION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_unsubscription

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_ONS_SUBSCRIPTION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_ons_subscription_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ons_subscription_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_ons_subscription_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ONS_NOTIFICATION_DATA_PLANE_LIST_SUBSCRIPTIONS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_subscriptions

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_ONS_NOTIFICATION_DATA_PLANE_PUBLISH_MESSAGE_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of publish_message

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_ONS_NOTIFICATION_DATA_PLANE_RESEND_SUBSCRIPTION_CONFIRMATION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of resend_subscription_confirmation

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_ONS_NOTIFICATION_DATA_PLANE_UPDATE_SUBSCRIPTION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of update_subscription

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer