# 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
distributed_database_client =
  OCI::DistributedDatabase::DistributedDbServiceClient.new(config: config)

# Send the request to service, some parameters are not required, see API doc for more info
change_distributed_db_backup_config_response =
  distributed_database_client.change_distributed_db_backup_config(
    'ocid1.test.oc1..<unique_ID>EXAMPLE-distributedDatabaseId-Value',
    OCI::DistributedDatabase::Models::ChangeDistributedDbBackupConfigDetails
      .new(
      db_backup_config:
        OCI::DistributedDatabase::Models::DistributedDbBackupConfig.new(
          is_auto_backup_enabled: true,
          recovery_window_in_days: 21,
          auto_backup_window: 'SLOT_THREE',
          auto_full_backup_window: 'SLOT_FIVE',
          auto_full_backup_day: 'TUESDAY',
          can_run_immediate_full_backup: true,
          is_remote_backup_enabled: false,
          remote_region: 'EXAMPLE-remoteRegion-Value',
          backup_destination_details: [
            OCI::DistributedDatabase::Models::DistributedDbBackupDestination
              .new(
              type: 'DBRS',
              id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value',
              vpc_user: 'EXAMPLE-vpcUser-Value',
              vpc_password: 'EXAMPLE-vpcPassword-Value',
              is_zero_data_loss_enabled: false,
              internet_proxy: 'EXAMPLE-internetProxy-Value',
              dbrs_policy_id:
                'ocid1.test.oc1..<unique_ID>EXAMPLE-dbrsPolicyId-Value',
              is_remote: true,
              remote_region: 'EXAMPLE-remoteRegion-Value'
            )
          ],
          backup_deletion_policy: 'DELETE_AFTER_RETENTION_PERIOD'
        )
    )
  )

# Get the data from response
puts "#{change_distributed_db_backup_config_response.headers}"

Was this article helpful?