Key Management Vault Types

DBMS_CLOUD_OCI_KM_KMS_VAULT_BACKUP_VAULT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of backup_vault

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_KM_KMS_VAULT_CANCEL_VAULT_DELETION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of cancel_vault_deletion

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_KM_KMS_VAULT_CHANGE_VAULT_COMPARTMENT_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_km_kms_vault_change_vault_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_KM_KMS_VAULT_CREATE_VAULT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_vault

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_KM_KMS_VAULT_CREATE_VAULT_REPLICA_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_km_kms_vault_create_vault_replica_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_KMS_VAULT_DELETE_VAULT_REPLICA_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_km_kms_vault_delete_vault_replica_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_KMS_VAULT_GET_VAULT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_vault

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_KM_KMS_VAULT_GET_VAULT_USAGE_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_vault_usage

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_KEY_MANAGEMENT_VAULT_REPLICA_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_key_management_vault_replica_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_key_management_vault_replica_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_key_management_vault_replica_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_KM_KMS_VAULT_LIST_VAULT_REPLICAS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_vault_replicas

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_KEY_MANAGEMENT_VAULT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_key_management_vault_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_key_management_vault_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_key_management_vault_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_KM_KMS_VAULT_LIST_VAULTS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_vaults

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_KM_KMS_VAULT_RESTORE_VAULT_FROM_FILE_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of restore_vault_from_file

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_KM_KMS_VAULT_RESTORE_VAULT_FROM_OBJECT_STORE_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of restore_vault_from_object_store

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_KM_KMS_VAULT_SCHEDULE_VAULT_DELETION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of schedule_vault_deletion

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_KM_KMS_VAULT_UPDATE_VAULT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of update_vault

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer