CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VAULT_SECRET_CONTENT_DETAILS_T Type 🔗
The content of the secret and metadata to help identify it.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_secret_content_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
content_type varchar2(32767),
name varchar2(32767),
stage varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_content_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_content_details_t (
content_type varchar2,
name varchar2,
stage varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
content_type
(required) The base64-encoded content of the secret.
Allowed values are: 'BASE64'
name
(optional) Names should be unique within a secret. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
stage
(optional) The rotation state of the secret content. The default is `CURRENT`, meaning that the secret is currently in use. A secret version that you mark as `PENDING` is staged and available for use, but you don't yet want to rotate it into current, active use. For example, you might create or update a secret and mark its rotation state as `PENDING` if you haven't yet updated the secret on the target system. When creating a secret, only the value `CURRENT` is applicable, although the value `LATEST` is also automatically applied. When updating a secret, you can specify a version's rotation state as either `CURRENT` or `PENDING`.
Allowed values are: 'CURRENT', 'PENDING'
DBMS_CLOUD_OCI_VAULT_BASE64_SECRET_CONTENT_DETAILS_T Type 🔗
Base64-encoded secret content.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_base64_secret_content_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vault_secret_content_details_t (
content varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_base64_secret_content_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_base64_secret_content_details_t (
content_type varchar2,
name varchar2,
stage varchar2,
content varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vault_base64_secret_content_details_t is a subtype of the dbms_cloud_oci_vault_secret_content_details_t type.
Fields
Field
Description
content
(optional) The base64-encoded content of the secret.
DBMS_CLOUD_OCI_VAULT_CHANGE_SECRET_COMPARTMENT_DETAILS_T Type 🔗
Specifies the updated compartment OCID for the secret.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_change_secret_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_change_secret_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_change_secret_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the resource should be moved.
DBMS_CLOUD_OCI_VAULT_SECRET_RULE_T Type 🔗
A rule that you can apply to a secret to enforce certain conditions on the secret's usage and management.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_secret_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
rule_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_rule_t (
rule_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
rule_type
(required) The type of rule, which either controls when the secret contents expire or whether they can be reused.
Nested table type of dbms_cloud_oci_vault_secret_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_secret_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_vault_secret_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VAULT_CREATE_SECRET_DETAILS_T Type 🔗
The details of the secret that you want to create.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_create_secret_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
description varchar2(32767),
freeform_tags json_element_t,
key_id varchar2(32767),
metadata json_element_t,
secret_content dbms_cloud_oci_vault_secret_content_details_t,
secret_name varchar2(32767),
secret_rules dbms_cloud_oci_vault_secret_rule_tbl,
vault_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_create_secret_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_create_secret_details_t (
compartment_id varchar2,
defined_tags json_element_t,
description varchar2,
freeform_tags json_element_t,
key_id varchar2,
metadata json_element_t,
secret_content dbms_cloud_oci_vault_secret_content_details_t,
secret_name varchar2,
secret_rules dbms_cloud_oci_vault_secret_rule_tbl,
vault_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment where you want to create the secret.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
description
(optional) A brief description of the secret. Avoid entering confidential information.
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
key_id
(optional) The OCID of the master encryption key that is used to encrypt the secret. You must specify a symmetric key to encrypt the secret during import to the vault. You cannot encrypt secrets with asymmetric keys. Furthermore, the key must exist in the vault that you specify.
metadata
(optional) Additional metadata that you can use to provide context about how to use the secret during rotation or other administrative tasks. For example, for a secret that you use to connect to a database, the additional metadata might specify the connection endpoint and the connection string. Provide additional metadata as key-value pairs.
secret_content
(required)
secret_name
(required) A user-friendly name for the secret. Secret names should be unique within a vault. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
secret_rules
(optional) A list of rules to control how the secret is used and managed.
vault_id
(required) The OCID of the vault where you want to create the secret.
DBMS_CLOUD_OCI_VAULT_ERROR_T Type 🔗
An error.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A short error code that defines the error, meant for programmatic parsing. See API Errors.
message
(required) A human-readable error string.
DBMS_CLOUD_OCI_VAULT_SCHEDULE_SECRET_DELETION_DETAILS_T Type 🔗
Details for scheduling the deletion of the specified secret.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_schedule_secret_deletion_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
time_of_deletion timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_schedule_secret_deletion_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_schedule_secret_deletion_details_t (
time_of_deletion timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
time_of_deletion
(optional) An optional property indicating when to delete the secret version, expressed in RFC 3339 timestamp format.
DBMS_CLOUD_OCI_VAULT_SCHEDULE_SECRET_VERSION_DELETION_DETAILS_T Type 🔗
Schedules the deletion of the specified secret version.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_schedule_secret_version_deletion_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
time_of_deletion timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_schedule_secret_version_deletion_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_schedule_secret_version_deletion_details_t (
time_of_deletion timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
time_of_deletion
(optional) An optional property indicating when to delete the secret version, expressed in RFC 3339 timestamp format. Example: `2019-04-03T21:10:29.600Z`
DBMS_CLOUD_OCI_VAULT_SECRET_T Type 🔗
The details of the secret. Secret details do not contain the contents of the secret itself.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_secret_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
current_version_number number,
defined_tags json_element_t,
description varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
key_id varchar2(32767),
lifecycle_details varchar2(32767),
lifecycle_state varchar2(32767),
metadata json_element_t,
secret_name varchar2(32767),
secret_rules dbms_cloud_oci_vault_secret_rule_tbl,
time_created timestamp with time zone,
time_of_current_version_expiry timestamp with time zone,
time_of_deletion timestamp with time zone,
vault_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_t (
compartment_id varchar2,
current_version_number number,
defined_tags json_element_t,
description varchar2,
freeform_tags json_element_t,
id varchar2,
key_id varchar2,
lifecycle_details varchar2,
lifecycle_state varchar2,
metadata json_element_t,
secret_name varchar2,
secret_rules dbms_cloud_oci_vault_secret_rule_tbl,
time_created timestamp with time zone,
time_of_current_version_expiry timestamp with time zone,
time_of_deletion timestamp with time zone,
vault_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment where you want to create the secret.
current_version_number
(optional) The version number of the secret version that's currently in use.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
description
(optional) A brief description of the secret. Avoid entering confidential information.
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
id
(required) The OCID of the secret.
key_id
(optional) The OCID of the master encryption key that is used to encrypt the secret. You must specify a symmetric key to encrypt the secret during import to the vault. You cannot encrypt secrets with asymmetric keys. Furthermore, the key must exist in the vault that you specify.
lifecycle_details
(optional) Additional information about the current lifecycle state of the secret.
lifecycle_state
(required) The current lifecycle state of the secret.
(optional) Additional metadata that you can use to provide context about how to use the secret or during rotation or other administrative tasks. For example, for a secret that you use to connect to a database, the additional metadata might specify the connection endpoint and the connection string. Provide additional metadata as key-value pairs.
secret_name
(required) The user-friendly name of the secret. Avoid entering confidential information.
secret_rules
(optional) A list of rules that control how the secret is used and managed.
time_created
(required) A property indicating when the secret was created, expressed in RFC 3339 timestamp format. Example: `2019-04-03T21:10:29.600Z`
time_of_current_version_expiry
(optional) An optional property indicating when the current secret version will expire, expressed in RFC 3339 timestamp format. Example: `2019-04-03T21:10:29.600Z`
time_of_deletion
(optional) An optional property indicating when to delete the secret, expressed in RFC 3339 timestamp format. Example: `2019-04-03T21:10:29.600Z`
vault_id
(required) The OCID of the vault where the secret exists.
DBMS_CLOUD_OCI_VAULT_SECRET_EXPIRY_RULE_T Type 🔗
A rule that helps enforce the expiration of a secret's contents.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_secret_expiry_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vault_secret_rule_t (
secret_version_expiry_interval varchar2(32767),
time_of_absolute_expiry timestamp with time zone,
is_secret_content_retrieval_blocked_on_expiry number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_expiry_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_expiry_rule_t (
rule_type varchar2,
secret_version_expiry_interval varchar2,
time_of_absolute_expiry timestamp with time zone,
is_secret_content_retrieval_blocked_on_expiry number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vault_secret_expiry_rule_t is a subtype of the dbms_cloud_oci_vault_secret_rule_t type.
Fields
Field
Description
secret_version_expiry_interval
(optional) A property indicating how long the secret contents will be considered valid, expressed in ISO 8601 format. The secret needs to be updated when the secret content expires. The timer resets after you update the secret contents. The minimum value is 1 day and the maximum value is 90 days for this property. Currently, only intervals expressed in days are supported. For example, pass `P3D` to have the secret version expire every 3 days.
time_of_absolute_expiry
(optional) An optional property indicating the absolute time when this secret will expire, expressed in RFC 3339 timestamp format. The minimum number of days from current time is 1 day and the maximum number of days from current time is 365 days. Example: `2019-04-03T21:10:29.600Z`
is_secret_content_retrieval_blocked_on_expiry
(optional) A property indicating whether to block retrieval of the secret content, on expiry. The default is false. If the secret has already expired and you would like to retrieve the secret contents, you need to edit the secret rule to disable this property, to allow reading the secret content.
DBMS_CLOUD_OCI_VAULT_SECRET_REUSE_RULE_T Type 🔗
A rule that disallows reuse of previously used secret content by the specified secret.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_secret_reuse_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vault_secret_rule_t (
is_enforced_on_deleted_secret_versions number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_reuse_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_reuse_rule_t (
rule_type varchar2,
is_enforced_on_deleted_secret_versions number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vault_secret_reuse_rule_t is a subtype of the dbms_cloud_oci_vault_secret_rule_t type.
Fields
Field
Description
is_enforced_on_deleted_secret_versions
(optional) A property indicating whether the rule is applied even if the secret version with the content you are trying to reuse was deleted.
DBMS_CLOUD_OCI_VAULT_SECRET_SUMMARY_T Type 🔗
The details of the secret, excluding the contents of the secret.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_secret_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
description varchar2(32767),
freeform_tags json_element_t,
key_id varchar2(32767),
id varchar2(32767),
lifecycle_details varchar2(32767),
lifecycle_state varchar2(32767),
secret_name varchar2(32767),
time_created timestamp with time zone,
time_of_current_version_expiry timestamp with time zone,
time_of_deletion timestamp with time zone,
vault_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_summary_t (
compartment_id varchar2,
defined_tags json_element_t,
description varchar2,
freeform_tags json_element_t,
key_id varchar2,
id varchar2,
lifecycle_details varchar2,
lifecycle_state varchar2,
secret_name varchar2,
time_created timestamp with time zone,
time_of_current_version_expiry timestamp with time zone,
time_of_deletion timestamp with time zone,
vault_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment that contains the secret.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
description
(optional) A brief description of the secret.
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
key_id
(optional) The OCID of the master encryption key that is used to encrypt the secret. You must specify a symmetric key to encrypt the secret during import to the vault. You cannot encrypt secrets with asymmetric keys. Furthermore, the key must exist in the vault that you specify.
id
(required) The OCID of the secret.
lifecycle_details
(optional) Additional information about the secret's current lifecycle state.
lifecycle_state
(required) The current lifecycle state of the secret.
(required) A property indicating when the secret was created, expressed in RFC 3339 timestamp format. Example: `2019-04-03T21:10:29.600Z`
time_of_current_version_expiry
(optional) An optional property indicating when the current secret version will expire, expressed in RFC 3339 timestamp format. Example: `2019-04-03T21:10:29.600Z`
time_of_deletion
(optional) An optional property indicating when to delete the secret, expressed in RFC 3339 timestamp format. Example: `2019-04-03T21:10:29.600Z`
vault_id
(required) The OCID of the Vault in which the secret exists
DBMS_CLOUD_OCI_VAULT_SECRET_VERSION_T Type 🔗
The details of the secret version, excluding the contents of the secret.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_secret_version_t FORCE AUTHID CURRENT_USER IS OBJECT (
content_type varchar2(32767),
name varchar2(32767),
secret_id varchar2(32767),
stages dbms_cloud_oci_vault_varchar2_tbl,
time_created timestamp with time zone,
time_of_deletion timestamp with time zone,
time_of_current_version_expiry timestamp with time zone,
version_number number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_version_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_version_t (
content_type varchar2,
name varchar2,
secret_id varchar2,
stages dbms_cloud_oci_vault_varchar2_tbl,
time_created timestamp with time zone,
time_of_deletion timestamp with time zone,
time_of_current_version_expiry timestamp with time zone,
version_number number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
content_type
(optional) The content type of the secret version's secret contents.
Allowed values are: 'BASE64'
name
(optional) The name of the secret version. A name is unique across versions of a secret.
secret_id
(optional) The OCID of the secret.
stages
(optional) A list of possible rotation states for the secret version. A secret version marked `CURRENT` is currently in use. A secret version marked `PENDING` is staged and available for use, but has not been applied on the target system and, therefore, has not been rotated into current, active use. The secret most recently uploaded to a vault is always marked `LATEST`. (The first version of a secret is always marked as both `CURRENT` and `LATEST`.) A secret version marked `PREVIOUS` is the secret version that was most recently marked `CURRENT`, before the last secret version rotation. A secret version marked `DEPRECATED` is neither current, pending, nor the previous one in use. Only secret versions marked `DEPRECATED` can be scheduled for deletion.
(optional) A optional property indicating when the secret version was created, expressed in RFC 3339 timestamp format. Example: `2019-04-03T21:10:29.600Z`
time_of_deletion
(optional) An optional property indicating when to delete the secret version, expressed in RFC 3339 timestamp format. Example: `2019-04-03T21:10:29.600Z`
time_of_current_version_expiry
(optional) An optional property indicating when the current secret version will expire, expressed in RFC 3339 timestamp format. Example: `2019-04-03T21:10:29.600Z`
version_number
(optional) The version number of the secret.
DBMS_CLOUD_OCI_VAULT_SECRET_VERSION_SUMMARY_T Type 🔗
The secret version summary object, which doesn't include the contents of the secret.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_secret_version_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
content_type varchar2(32767),
name varchar2(32767),
secret_id varchar2(32767),
stages dbms_cloud_oci_vault_varchar2_tbl,
time_created timestamp with time zone,
time_of_deletion timestamp with time zone,
time_of_expiry timestamp with time zone,
version_number number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_version_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_secret_version_summary_t (
content_type varchar2,
name varchar2,
secret_id varchar2,
stages dbms_cloud_oci_vault_varchar2_tbl,
time_created timestamp with time zone,
time_of_deletion timestamp with time zone,
time_of_expiry timestamp with time zone,
version_number number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
content_type
(optional) The content type of the secret version's secret contents.
Allowed values are: 'BASE64'
name
(optional) The name of the secret version. A name is unique across versions of a secret.
secret_id
(required) The OCID of the secret.
stages
(optional) A list of possible rotation states for the secret version. A secret version marked `CURRENT` is currently in use. A secret version marked `PENDING` is staged and available for use, but has not been applied on the target system and, therefore, has not been rotated into current, active use. The secret most recently uploaded to a vault is always marked `LATEST`. (The first version of a secret is always marked as both `CURRENT` and `LATEST`.) A secret version marked `PREVIOUS` is the secret version that was most recently marked `CURRENT`, before the last secret version rotation. A secret version marked `DEPRECATED` is neither current, pending, nor the previous one in use. Only secret versions marked `DEPRECATED` can be scheduled for deletion.
(required) A optional property indicating when the secret version was created, expressed in RFC 3339 timestamp format. Example: `2019-04-03T21:10:29.600Z`
time_of_deletion
(optional) An optional property indicating when to delete the secret version, expressed in RFC 3339 timestamp format. Example: `2019-04-03T21:10:29.600Z`
time_of_expiry
(optional) An optional property indicating when the secret version will expire, expressed in RFC 3339 timestamp format. Example: `2019-04-03T21:10:29.600Z`
version_number
(required) The version number of the secret.
DBMS_CLOUD_OCI_VAULT_UPDATE_SECRET_DETAILS_T Type 🔗
Details for updating a secret.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vault_update_secret_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
current_version_number number,
defined_tags json_element_t,
description varchar2(32767),
freeform_tags json_element_t,
metadata json_element_t,
secret_content dbms_cloud_oci_vault_secret_content_details_t,
secret_rules dbms_cloud_oci_vault_secret_rule_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_update_secret_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vault_update_secret_details_t (
current_version_number number,
defined_tags json_element_t,
description varchar2,
freeform_tags json_element_t,
metadata json_element_t,
secret_content dbms_cloud_oci_vault_secret_content_details_t,
secret_rules dbms_cloud_oci_vault_secret_rule_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
current_version_number
(optional) Details to update the secret version of the specified secret. The secret contents, version number, and rules can't be specified at the same time. Updating the secret contents automatically creates a new secret version.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
description
(optional) A brief description of the secret. Avoid entering confidential information.
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
metadata
(optional) Additional metadata that you can use to provide context about how to use the secret or during rotation or other administrative tasks. For example, for a secret that you use to connect to a database, the additional metadata might specify the connection endpoint and the connection string. Provide additional metadata as key-value pairs.
secret_content
(optional)
secret_rules
(optional) A list of rules to control how the secret is used and managed.