DBMS_CLOUD_OCI_HC_HEALTH_CHECKS_CHANGE_HTTP_MONITOR_COMPARTMENT_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the change_http_monitor_compartment request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_change_http_monitor_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_HC_HEALTH_CHECKS_CHANGE_PING_MONITOR_COMPARTMENT_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the change_ping_monitor_compartment request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_change_ping_monitor_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_HC_HEALTH_CHECKS_CREATE_HTTP_MONITOR_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_http_monitor request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_create_http_monitor_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_healthchecks_http_monitor_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_http_monitor
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_HC_HEALTH_CHECKS_CREATE_ON_DEMAND_HTTP_PROBE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_on_demand_http_probe request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_create_on_demand_http_probe_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_healthchecks_http_probe_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_on_demand_http_probe
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_HC_HEALTH_CHECKS_CREATE_ON_DEMAND_PING_PROBE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_on_demand_ping_probe request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_create_on_demand_ping_probe_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_healthchecks_ping_probe_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_on_demand_ping_probe
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_HC_HEALTH_CHECKS_CREATE_PING_MONITOR_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_ping_monitor request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_create_ping_monitor_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_healthchecks_ping_monitor_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_ping_monitor
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_HC_HEALTH_CHECKS_DELETE_HTTP_MONITOR_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_http_monitor request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_delete_http_monitor_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_HC_HEALTH_CHECKS_DELETE_PING_MONITOR_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_ping_monitor request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_delete_ping_monitor_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_HC_HEALTH_CHECKS_GET_HTTP_MONITOR_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_http_monitor request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_get_http_monitor_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_healthchecks_http_monitor_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_http_monitor
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_HC_HEALTH_CHECKS_GET_PING_MONITOR_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_ping_monitor request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_get_ping_monitor_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_healthchecks_ping_monitor_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_ping_monitor
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_HEALTHCHECKS_HEALTH_CHECKS_VANTAGE_POINT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_healthchecks_health_checks_vantage_point_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_health_checks_vantage_point_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_healthchecks_health_checks_vantage_point_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_HC_HEALTH_CHECKS_LIST_HEALTH_CHECKS_VANTAGE_POINTS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_health_checks_vantage_points request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_list_health_checks_vantage_points_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_healthchecks_health_checks_vantage_point_summary_tbl,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_health_checks_vantage_points
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_HEALTHCHECKS_HTTP_MONITOR_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_healthchecks_http_monitor_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_http_monitor_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_healthchecks_http_monitor_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_HC_HEALTH_CHECKS_LIST_HTTP_MONITORS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_http_monitors request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_list_http_monitors_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_healthchecks_http_monitor_summary_tbl,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_http_monitors
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_HEALTHCHECKS_HTTP_PROBE_RESULT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_healthchecks_http_probe_result_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_http_probe_result_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_healthchecks_http_probe_result_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_HC_HEALTH_CHECKS_LIST_HTTP_PROBE_RESULTS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_http_probe_results request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_list_http_probe_results_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_healthchecks_http_probe_result_summary_tbl,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_http_probe_results
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_HEALTHCHECKS_PING_MONITOR_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_healthchecks_ping_monitor_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_ping_monitor_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_healthchecks_ping_monitor_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_HC_HEALTH_CHECKS_LIST_PING_MONITORS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_ping_monitors request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_list_ping_monitors_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_healthchecks_ping_monitor_summary_tbl,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_ping_monitors
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_HEALTHCHECKS_PING_PROBE_RESULT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_healthchecks_ping_probe_result_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_ping_probe_result_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_healthchecks_ping_probe_result_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_HC_HEALTH_CHECKS_LIST_PING_PROBE_RESULTS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_ping_probe_results request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_list_ping_probe_results_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_healthchecks_ping_probe_result_summary_tbl,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_ping_probe_results
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_HC_HEALTH_CHECKS_UPDATE_HTTP_MONITOR_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_http_monitor request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_update_http_monitor_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_healthchecks_http_monitor_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of update_http_monitor
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_HC_HEALTH_CHECKS_UPDATE_PING_MONITOR_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_ping_monitor request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_hc_health_checks_update_ping_monitor_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_healthchecks_ping_monitor_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;