DBMS_CLOUD_OCI_OMH_SCHEDULED_JOB_CREATE_SCHEDULED_JOB_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_scheduled_job request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_omh_scheduled_job_create_scheduled_job_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_os_management_hub_scheduled_job_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_scheduled_job
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_OMH_SCHEDULED_JOB_DELETE_SCHEDULED_JOB_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_scheduled_job request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_omh_scheduled_job_delete_scheduled_job_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_OMH_SCHEDULED_JOB_GET_SCHEDULED_JOB_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_scheduled_job request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_omh_scheduled_job_get_scheduled_job_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_os_management_hub_scheduled_job_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_scheduled_job
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_OMH_SCHEDULED_JOB_LIST_SCHEDULED_JOBS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_scheduled_jobs request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_omh_scheduled_job_list_scheduled_jobs_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_os_management_hub_scheduled_job_collection_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_scheduled_jobs
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_OMH_SCHEDULED_JOB_RUN_SCHEDULED_JOB_NOW_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the run_scheduled_job_now request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_omh_scheduled_job_run_scheduled_job_now_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_OMH_SCHEDULED_JOB_UPDATE_SCHEDULED_JOB_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_scheduled_job request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_omh_scheduled_job_update_scheduled_job_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_os_management_hub_scheduled_job_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;