# 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).
from datetime import datetime
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=508,
defined_tags={
'EXAMPLE_KEY_8HghV': {
'EXAMPLE_KEY_BRSRF': 'EXAMPLE--Value'}},
description="EXAMPLE-description-Value",
freeform_tags={
'EXAMPLE_KEY_5k587': 'EXAMPLE_VALUE_xzdqdG4PZyD9xVIe3G4m'},
metadata={
'EXAMPLE_KEY_m1jDy': 'EXAMPLE--Value'},
secret_content=oci.vault.models.Base64SecretContentDetails(
content_type="BASE64",
name="EXAMPLE-name-Value",
stage="PENDING",
content="EXAMPLE-content-Value"),
rotation_config=oci.vault.models.RotationConfig(
target_system_details=oci.vault.models.AdbTargetSystemDetails(
target_system_type="ADB",
adb_id="ocid1.test.oc1..<unique_ID>EXAMPLE-adbId-Value"),
rotation_interval="EXAMPLE-rotationInterval-Value",
is_scheduled_rotation_enabled=False),
secret_rules=[
oci.vault.models.SecretExpiryRule(
rule_type="SECRET_EXPIRY_RULE",
secret_version_expiry_interval="EXAMPLE-secretVersionExpiryInterval-Value",
time_of_absolute_expiry=datetime.strptime(
"2013-12-18T23:50:31.288Z",
"%Y-%m-%dT%H:%M:%S.%fZ"),
is_secret_content_retrieval_blocked_on_expiry=False)],
secret_generation_context=oci.vault.models.BytesGenerationContext(
generation_type="BYTES",
generation_template="BYTES_512",
secret_template="EXAMPLE-secretTemplate-Value"),
enable_auto_generation=False),
if_match="EXAMPLE-ifMatch-Value",
opc_request_id="HJ9GDLGJFDRFQ60MDDCO<unique_ID>")
# Get the data from response
print(update_secret_response.data)