# 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=25,
        defined_tags={
            'EXAMPLE_KEY_ZHey6': {
                'EXAMPLE_KEY_7zLLs': 'EXAMPLE--Value'}},
        description="EXAMPLE-description-Value",
        freeform_tags={
                    'EXAMPLE_KEY_wgqOB': 'EXAMPLE_VALUE_vE1y3A4xsg2sm3UTaHde'},
        metadata={
            'EXAMPLE_KEY_Oz1sh': '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.FunctionTargetSystemDetails(
                target_system_type="FUNCTION",
                function_id="ocid1.test.oc1..<unique_ID>EXAMPLE-functionId-Value"),
            rotation_interval="EXAMPLE-rotationInterval-Value",
            is_scheduled_rotation_enabled=True),
        secret_rules=[
            oci.vault.models.SecretReuseRule(
                rule_type="SECRET_REUSE_RULE",
                is_enforced_on_deleted_secret_versions=True)],
        secret_generation_context=oci.vault.models.SshKeyGenerationContext(
            generation_type="SSH_KEY",
            generation_template="RSA_2048",
            secret_template="EXAMPLE-secretTemplate-Value"),
        enable_auto_generation=False),
    if_match="EXAMPLE-ifMatch-Value",
    opc_request_id="3G9I6V9LCVS1TRF5F7TN<unique_ID>")

# Get the data from response
print(update_secret_response.data)