# 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).

require '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::ConfigFileLoader.load_config

# Initialize service client with default config file
vault_client = OCI::Vault::VaultsClient.new(config: config)

# Send the request to service, some parameters are not required, see API doc for more info
update_secret_response =
  vault_client.update_secret(
    'ocid1.test.oc1..<unique_ID>EXAMPLE-secretId-Value',
    OCI::Vault::Models::UpdateSecretDetails.new(
      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.new(
          content_type: 'BASE64',
          name: 'EXAMPLE-name-Value',
          stage: 'PENDING',
          content: 'EXAMPLE-content-Value'
        ),
      rotation_config:
        OCI::Vault::Models::RotationConfig.new(
          target_system_details:
            OCI::Vault::Models::FunctionTargetSystemDetails.new(
              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.new(
          rule_type: 'SECRET_REUSE_RULE',
          is_enforced_on_deleted_secret_versions: true
        )
      ],
      secret_generation_context:
        OCI::Vault::Models::SshKeyGenerationContext.new(
          generation_type: 'SSH_KEY',
          generation_template: 'RSA_2048',
          secret_template: 'EXAMPLE-secretTemplate-Value'
        ),
      enable_auto_generation: false
    )
  )

# Get the data from response
puts "#{update_secret_response.data}"