DBMS_CLOUD_OCI_OMH_ONBOARDING_CREATE_PROFILE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_profile request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_omh_onboarding_create_profile_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_os_management_hub_profile_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_profile
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_OMH_ONBOARDING_DELETE_PROFILE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_profile request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_omh_onboarding_delete_profile_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_ONBOARDING_GET_PROFILE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_profile request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_omh_onboarding_get_profile_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_os_management_hub_profile_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_profile
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_OMH_ONBOARDING_LIST_PROFILES_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_profiles request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_omh_onboarding_list_profiles_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_os_management_hub_profile_collection_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_profiles
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_OMH_ONBOARDING_UPDATE_PROFILE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_profile request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_omh_onboarding_update_profile_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_os_management_hub_profile_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;