OS Management Hub Onboarding Types
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 of |
|
Response headers as JSON data in a JSON object |
|
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 |
---|---|
|
Response headers as JSON data in a JSON object |
|
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 of |
|
Response headers as JSON data in a JSON object |
|
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 of |
|
Response headers as JSON data in a JSON object |
|
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;
Fields
Field | Description |
---|---|
|
Response body of |
|
Response headers as JSON data in a JSON object |
|
HTTP response status code as an integer |