# 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
distributed_database_client = oci.distributed_database.DistributedDbServiceClient(
    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(
    distributed_database_id="ocid1.test.oc1..<unique_ID>EXAMPLE-distributedDatabaseId-Value",
    change_distributed_db_backup_config_details=oci.distributed_database.models.ChangeDistributedDbBackupConfigDetails(
        db_backup_config=oci.distributed_database.models.DistributedDbBackupConfig(
            is_auto_backup_enabled=False,
            recovery_window_in_days=48,
            auto_backup_window="SLOT_ONE",
            auto_full_backup_window="SLOT_EIGHT",
            auto_full_backup_day="THURSDAY",
            can_run_immediate_full_backup=True,
            is_remote_backup_enabled=True,
            remote_region="EXAMPLE-remoteRegion-Value",
            backup_destination_details=[
                oci.distributed_database.models.DistributedDbBackupDestination(
                    type="LOCAL",
                    id="ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value",
                    vpc_user="EXAMPLE-vpcUser-Value",
                    vpc_password="EXAMPLE-vpcPassword-Value",
                    is_zero_data_loss_enabled=True,
                    internet_proxy="EXAMPLE-internetProxy-Value",
                    dbrs_policy_id="ocid1.test.oc1..<unique_ID>EXAMPLE-dbrsPolicyId-Value",
                    is_remote=False,
                    remote_region="EXAMPLE-remoteRegion-Value")],
            backup_deletion_policy="DELETE_AFTER_RETENTION_PERIOD")),
    opc_request_id="P4TBFPJ5MSVUXFYWCFLJ<unique_ID>",
    if_match="EXAMPLE-ifMatch-Value",
    opc_retry_token="EXAMPLE-opcRetryToken-Value")

# Get the data from response
print(change_distributed_db_backup_config_response.headers)

Was this article helpful?