tencent cloud

文档反馈

ModifyBackupConfig

最后更新时间:2024-01-30 10:26:27

    1. API Description

    Domain name for API request: cdb.tencentcloudapi.com.

    This API (ModifyBackupConfig) is used to modify the database backup configuration.

    A maximum of 20 requests can be initiated per second for this API.

    We recommend you to use API Explorer
    Try it
    API Explorer provides a range of capabilities, including online call, signature authentication, SDK code generation, and API quick search. It enables you to view the request, response, and auto-generated examples.

    2. Input Parameters

    The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.

    Parameter Name Required Type Description
    Action Yes String Common Params. The value used for this API: ModifyBackupConfig.
    Version Yes String Common Params. The value used for this API: 2017-03-20.
    Region No String Common Params. This parameter is not required for this API.
    InstanceId Yes String Instance ID in the format of cdb-c1nl9rpv. It is the same as the instance ID displayed on the TencentDB Console page.
    ExpireDays No Integer Backup file retention period in days. Value range: 7-1830.
    StartTime No String (This parameter will be disused. The BackupTimeWindow parameter is recommended.) Backup time range in the format of 02:00-06:00, with the start time and end time on the hour. Valid values: 00:00-12:00, 02:00-06:00, 06:00-10:00, 10:00-14:00, 14:00-18:00, 18:00-22:00, 22:00-02:00.
    BackupMethod No String Automatic backup mode. Only physical (physical cold backup) is supported
    BinlogExpireDays No Integer Binlog retention period in days. Value range: 7-1830. It can’t be greater than the retention period of backup files.
    BackupTimeWindow No CommonTimeWindow Backup time window; for example, to set up backup between 10:00 and 14:00 on every Tuesday and Sunday, you should set this parameter as follows: {"Monday": "", "Tuesday": "10:00-14:00", "Wednesday": "", "Thursday": "", "Friday": "", "Saturday": "", "Sunday": "10:00-14:00"} (Note: You can set up backup on different days, but the backup time windows need to be the same. If this field is set, the StartTime field will be ignored)
    EnableBackupPeriodSave No String Switch for periodic archive. Valid values: off (disable), on (enable). Default value:off. When you enable the periodic archive policy for the first time, you need to enter the BackupPeriodSaveDays, BackupPeriodSaveInterval, BackupPeriodSaveCount, and StartBackupPeriodSaveDate parameters; otherwise, the policy will not take effect.
    EnableBackupPeriodLongTermSave No String Switch for long-term backup retention (This field can be ignored, for its feature hasn’t been launched). Valid values: off (disable), on (enable). Default value: off. Once enabled, the parameters (BackupPeriodSaveDays, BackupPeriodSaveInterval, and BackupPeriodSaveCount) will be invalid.
    BackupPeriodSaveDays No Integer Maximum days of archive backup retention. Valid range: 90-3650. Default value: 1080.
    BackupPeriodSaveInterval No String Archive backup retention period. Valid values: weekly (a week), monthly (a month), quarterly (a quarter), yearly (a year). Default value: monthly.
    BackupPeriodSaveCount No Integer Number of archive backups. Minimum value: 1, Maximum value: Number of non-archive backups in archive backup retention period. Default value: 1.
    StartBackupPeriodSaveDate No String The start time in the format of yyyy-mm-dd HH:MM:SS, which is used to enable archive backup retention policy.
    EnableBackupArchive No String Whether to enable the archive backup. Valid values: off (disable), on (enable). Default value: off.
    BackupArchiveDays No Integer The period (in days) of how long a data backup is retained before being archived, which falls between 180 days and the number of days from the time it is created until it expires.
    BinlogArchiveDays No Integer The period (in days) of how long a log backup is retained before being archived, which falls between 180 days and the number of days from the time it is created until it expires.
    EnableBinlogArchive No String Whether to enable the archive backup of the log. Valid values: off (disable), on (enable). Default value: off.
    EnableBackupStandby No String Whether to enable the standard storage policy for data backup. Valid values: off (disable), on (enable). Default value: off.
    BackupStandbyDays No Integer The period (in days) of how long a data backup is retained before switching to standard storage, which falls between 30 days and the number of days from the time it is created until it expires. If the archive backup is enabled, this period cannot be greater than archive backup period.
    EnableBinlogStandby No String Whether to enable the standard storage policy for log backup. Valid values: off (disable), on (enable). Default value: off.
    BinlogStandbyDays No Integer The period (in days) of how long a log backup is retained before switching to standard storage, which falls between 30 days and the number of days from the time it is created until it expires. If the archive backup is enabled, this period cannot be greater than archive backup period.

    3. Output Parameters

    Parameter Name Type Description
    RequestId String The unique request ID, which is returned for each request. RequestId is required for locating a problem.

    4. Example

    Example1 Modifying the database backup configuration

    This example shows you how to modify the database backup configuration.

    Input Example

    POST / HTTP/1.1
    Host: cdb.tencentcloudapi.com
    Content-Type: application/json
    X-TC-Action: ModifyBackupConfig
    <Common request parameters>
    
    {
        "InstanceId": "cdb-c1nl9rpv",
        "ExpireDays": "10",
        "BinlogExpireDays": "8",
        "BackupMethod": "logical",
        "StartTime": "02:00-06:00"
    }
    

    Output Example

    {
        "Response": {
            "RequestId": "6EF60BEC-0242-43AF-BB20-270359FB54A7"
        }
    }
    

    5. Developer Resources

    SDK

    TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.

    Command Line Interface

    6. Error Code

    The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.

    Error Code Description
    CdbError Backend or process error.
    FailedOperation.StatusConflict Task status conflict.
    InternalError.DatabaseAccessError Internal database error.
    InternalError.UndefinedError Unknown error
    InvalidParameter Parameter error.
    InvalidParameter.InstanceNotFound The instance does not exist.
    OperationDenied.ActionNotSupport Unsupported operation.
    OperationDenied.UserHasNoStrategy This account is not authorized to access the requested resource.