Skip to content

Commit 87540b0

Browse files
authored
Orientation change (#1092)
1 parent de27a00 commit 87540b0

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
type: object
2+
description: MySQL Incremental Backup configuration settings
3+
4+
properties:
5+
enabled:
6+
description: >-
7+
Enable periodic incremental backups. When enabled, full_backup_week_schedule must be set. Incremental backups only store changes since the last backup, making them faster and more storage-efficient than full backups. This is particularly useful for large databases where daily full backups would be too time-consuming or expensive.
8+
type: boolean
9+
full_backup_week_schedule:
10+
description: >-
11+
Comma-separated list of days of the week when full backups should be created. Valid values: mon, tue, wed, thu, fri, sat, sun. Default is null. Example : "mon,fri,sun".
12+
type: string
13+
example: mon,thu

specification/resources/databases/models/advanced_config/mysql_advanced_config.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -265,12 +265,5 @@ properties:
265265
- NONE
266266
example: INSIGHTS
267267
default: NONE
268-
mysql_incremental_backup.enabled:
269-
description: >-
270-
Enable periodic incremental backups. When enabled, full_backup_week_schedule must be set. Incremental backups only store changes since the last backup, making them faster and more storage-efficient than full backups. This is particularly useful for large databases where daily full backups would be too time-consuming or expensive.
271-
type: boolean
272-
mysql_incremental_backup.full_backup_week_schedule:
273-
description: >-
274-
Comma-separated list of days of the week when full backups should be created. Valid values: mon, tue, wed, thu, fri, sat, sun. Default is null. Example : "mon,fri,sun".
275-
type: string
276-
example: mon,thu
268+
mysql_incremental_backup:
269+
$ref: './helpers/mysql_incremental_backup.yml'

0 commit comments

Comments
 (0)