DBMS_CLOUD_OCI_KM_EKM_CREATE_EKMS_PRIVATE_ENDPOINT_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_ekms_private_endpoint request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_km_ekm_create_ekms_private_endpoint_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_key_management_ekms_private_endpoint_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_ekms_private_endpoint
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_KM_EKM_DELETE_EKMS_PRIVATE_ENDPOINT_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_ekms_private_endpoint request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_km_ekm_delete_ekms_private_endpoint_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_KM_EKM_GET_EKMS_PRIVATE_ENDPOINT_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_ekms_private_endpoint request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_km_ekm_get_ekms_private_endpoint_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_key_management_ekms_private_endpoint_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_ekms_private_endpoint
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_KEY_MANAGEMENT_EKMS_PRIVATE_ENDPOINT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_key_management_ekms_private_endpoint_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_key_management_ekms_private_endpoint_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_key_management_ekms_private_endpoint_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_KM_EKM_LIST_EKMS_PRIVATE_ENDPOINTS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_ekms_private_endpoints request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_km_ekm_list_ekms_private_endpoints_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_key_management_ekms_private_endpoint_summary_tbl,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_ekms_private_endpoints
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_KM_EKM_UPDATE_EKMS_PRIVATE_ENDPOINT_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_ekms_private_endpoint request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_km_ekm_update_ekms_private_endpoint_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_key_management_ekms_private_endpoint_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;