/** * MySQL Database Service API * The API for the MySQL Database Service * OpenAPI spec version: 20190415 * Contact: mysql-cloud-dev_ww_grp@oracle.com * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * The Backup policy for the DB System. */ export interface BackupPolicy { /** * If automated backups are enabled or disabled. */ "isEnabled": boolean; /** * Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED * state for 7 days before permanently deleting it. * */ "softDelete"?: model.SoftDelete; /** * List of policies of a DB system to schedule cross-region DB system backup copy. *
The policy includes the name of the destination region to which the DB system backup will be copied, and * an optional parameter which specifies the retention period of the copied DB system backup in days. *
**Note:** Currently, only one policy can be specified in the list.
*
*/
"copyPolicies"?: Array
This should be in the format of the \"Time\" portion of an RFC3339-formatted timestamp. Any second or sub-second time data will be truncated to zero.
*
At some point in the window, the system may incur a brief service disruption as the backup is performed.
*
If not defined, a window is selected from the following Region-based time-spans:
* - eu-frankfurt-1: 20:00 - 04:00 UTC
* - us-ashburn-1: 03:00 - 11:00 UTC
* - uk-london-1: 06:00 - 14:00 UTC
* - ap-tokyo-1: 13:00 - 21:00
* - us-phoenix-1: 06:00 - 14:00
*
*/
"windowStartTime": string;
/**
* The number of days automated backups are retained.
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
*/
"retentionInDays": number;
/**
* Simple key-value pair applied without any predefined name, type or scope. Exists for cross-compatibility only.
*
Tags defined here will be copied verbatim as tags on the Backup resource created by this BackupPolicy.
*
Example: {@code {\"bar-key\": \"value\"}}
*
*/
"freeformTags"?: {
[key: string]: string;
};
/**
* Usage of predefined tag keys. These predefined keys are scoped to namespaces.
*
Tags defined here will be copied verbatim as tags on the Backup resource created by this BackupPolicy.
*
Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
*
*/
"definedTags"?: {
[key: string]: {
[key: string]: any;
};
};
"pitrPolicy"?: model.PitrPolicy;
}
export declare namespace BackupPolicy {
function getJsonObj(obj: BackupPolicy): object;
function getDeserializedJsonObj(obj: BackupPolicy): object;
}