# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).
import oci
# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()
# Initialize service client with default config file
vault_client = oci.vault.VaultsClient(config)
# Send the request to service, some parameters are not required, see API
# doc for more info
update_secret_response = vault_client.update_secret(
secret_id="ocid1.test.oc1..<unique_ID>EXAMPLE-secretId-Value",
update_secret_details=oci.vault.models.UpdateSecretDetails(
current_version_number=50,
defined_tags={
'EXAMPLE_KEY_L3SDe': {
'EXAMPLE_KEY_8Voqy': 'EXAMPLE--Value'}},
description="EXAMPLE-description-Value",
freeform_tags={
'EXAMPLE_KEY_2KuEA': 'EXAMPLE_VALUE_kQfjaepir1RYcOmqT8Ut'},
metadata={
'EXAMPLE_KEY_w87We': 'EXAMPLE--Value'},
secret_content=oci.vault.models.Base64SecretContentDetails(
content_type="BASE64",
name="EXAMPLE-name-Value",
stage="PENDING",
content="EXAMPLE-content-Value"),
replication_config=oci.vault.models.ReplicationConfig(
replication_targets=[
oci.vault.models.ReplicationTarget(
target_key_id="ocid1.test.oc1..<unique_ID>EXAMPLE-targetKeyId-Value",
target_region="EXAMPLE-targetRegion-Value",
target_vault_id="ocid1.test.oc1..<unique_ID>EXAMPLE-targetVaultId-Value")],
is_write_forward_enabled=False),
rotation_config=oci.vault.models.RotationConfig(
target_system_details=oci.vault.models.FunctionTargetSystemDetails(
target_system_type="FUNCTION",
function_id="ocid1.test.oc1..<unique_ID>EXAMPLE-functionId-Value"),
rotation_interval="EXAMPLE-rotationInterval-Value",
is_scheduled_rotation_enabled=False),
secret_rules=[
oci.vault.models.SecretReuseRule(
rule_type="SECRET_REUSE_RULE",
is_enforced_on_deleted_secret_versions=False)],
secret_generation_context=oci.vault.models.SshKeyGenerationContext(
generation_type="SSH_KEY",
generation_template="RSA_3072",
secret_template="EXAMPLE-secretTemplate-Value"),
enable_auto_generation=True),
if_match="EXAMPLE-ifMatch-Value",
opc_request_id="A1NFKWPUWWSV4GUMXONP<unique_ID>")
# Get the data from response
print(update_secret_response.data)