Vaults Types

DBMS_CLOUD_OCI_VT_VAULTS_CANCEL_SECRET_DELETION_RESPONSE_T Type

Contains the response body, headers and the status code of the cancel_secret_deletion request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vt_vaults_cancel_secret_deletion_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_VT_VAULTS_CANCEL_SECRET_VERSION_DELETION_RESPONSE_T Type

Contains the response body, headers and the status code of the cancel_secret_version_deletion request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vt_vaults_cancel_secret_version_deletion_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_VT_VAULTS_CHANGE_SECRET_COMPARTMENT_RESPONSE_T Type

Contains the response body, headers and the status code of the change_secret_compartment request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vt_vaults_change_secret_compartment_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_VT_VAULTS_CREATE_SECRET_RESPONSE_T Type

Contains the response body, headers and the status code of the create_secret request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vt_vaults_create_secret_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_vault_secret_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of create_secret

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_VT_VAULTS_GET_SECRET_RESPONSE_T Type

Contains the response body, headers and the status code of the get_secret request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vt_vaults_get_secret_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_vault_secret_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of get_secret

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_VT_VAULTS_GET_SECRET_VERSION_RESPONSE_T Type

Contains the response body, headers and the status code of the get_secret_version request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vt_vaults_get_secret_version_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_vault_secret_version_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of get_secret_version

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_VAULT_SECRET_VERSION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_vault_secret_version_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_secret_version_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_vault_secret_version_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_VT_VAULTS_LIST_SECRET_VERSIONS_RESPONSE_T Type

Contains the response body, headers and the status code of the list_secret_versions request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vt_vaults_list_secret_versions_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_vault_secret_version_summary_tbl,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of list_secret_versions

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_VAULT_SECRET_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_vault_secret_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_secret_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_vault_secret_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_VT_VAULTS_LIST_SECRETS_RESPONSE_T Type

Contains the response body, headers and the status code of the list_secrets request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vt_vaults_list_secrets_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_vault_secret_summary_tbl,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of list_secrets

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_VT_VAULTS_SCHEDULE_SECRET_DELETION_RESPONSE_T Type

Contains the response body, headers and the status code of the schedule_secret_deletion request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vt_vaults_schedule_secret_deletion_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_VT_VAULTS_SCHEDULE_SECRET_VERSION_DELETION_RESPONSE_T Type

Contains the response body, headers and the status code of the schedule_secret_version_deletion request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vt_vaults_schedule_secret_version_deletion_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_VT_VAULTS_UPDATE_SECRET_RESPONSE_T Type

Contains the response body, headers and the status code of the update_secret request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vt_vaults_update_secret_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_vault_secret_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of update_secret

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer