DBMS_CLOUD_OCI_SC_SECRETS_GET_SECRET_BUNDLE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_secret_bundle request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_sc_secrets_get_secret_bundle_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_secrets_secret_bundle_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_secret_bundle
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_SC_SECRETS_GET_SECRET_BUNDLE_BY_NAME_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_secret_bundle_by_name request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_sc_secrets_get_secret_bundle_by_name_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_secrets_secret_bundle_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_secret_bundle_by_name
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_SECRETS_SECRET_BUNDLE_VERSION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_secrets_secret_bundle_version_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_secrets_secret_bundle_version_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_secrets_secret_bundle_version_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_SC_SECRETS_LIST_SECRET_BUNDLE_VERSIONS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_secret_bundle_versions request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_sc_secrets_list_secret_bundle_versions_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_secrets_secret_bundle_version_summary_tbl,
headers json_object_t,
status_code number
) NOT PERSISTABLE;