You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: create/mysqldatabase.go
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,10 @@ import (
17
17
18
18
typemysqlDatabaseCmdstruct {
19
19
resourceCmd
20
-
Location meta.LocationName`placeholder:"${mysqldatabase_location_default}" help:"Where the MySQL database is created. Available locations are: ${mysqldatabase_location_options}"`
21
-
MysqlDatabaseVersion storage.MySQLVersion`placeholder:"${mysqldatabase_version_default}" help:"Version of the MySQL database. Available versions: ${mysqldatabase_versions}"`
22
-
CharacterSetstring`placeholder:"${mysqldatabase_characterset_default}" help:"Character set for the MySQL database. Available character sets: ${mysqldatabase_characterset_options}"`
20
+
Location meta.LocationName`placeholder:"${mysqldatabase_location_default}" help:"Where the MySQL database is created. Available locations are: ${mysqldatabase_location_options}"`
21
+
MysqlDatabaseVersion storage.MySQLVersion`placeholder:"${mysqldatabase_version_default}" help:"Version of the MySQL database. Available versions: ${mysqldatabase_versions}"`
22
+
CharacterSetstring`placeholder:"${mysqldatabase_characterset_default}" help:"Character set for the MySQL database. Available character sets: ${mysqldatabase_characterset_options}"`
23
+
BackupSchedule storage.DatabaseBackupScheduleCalendar`placeholder:"${mysqldatabase_backupschedule_default}" help:"Backup schedule for the MySQL database. Available schedules: ${mysqldatabase_backupschedule_options}"`
Copy file name to clipboardExpand all lines: create/postgresdatabase.go
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,9 @@ import (
17
17
18
18
typepostgresDatabaseCmdstruct {
19
19
resourceCmd
20
-
Location meta.LocationName`placeholder:"${postgresdatabase_location_default}" help:"Where the PostgreSQL database is created. Available locations are: ${postgresdatabase_location_options}"`
21
-
PostgresDatabaseVersion storage.PostgresVersion`placeholder:"${postgresdatabase_version_default}" help:"Release version with which the PostgreSQL database is created. Available versions: ${postgresdatabase_versions}"`
20
+
Location meta.LocationName`placeholder:"${postgresdatabase_location_default}" help:"Where the PostgreSQL database is created. Available locations are: ${postgresdatabase_location_options}"`
21
+
PostgresDatabaseVersion storage.PostgresVersion`placeholder:"${postgresdatabase_version_default}" help:"Release version with which the PostgreSQL database is created. Available versions: ${postgresdatabase_versions}"`
22
+
BackupSchedule storage.DatabaseBackupScheduleCalendar`placeholder:"${postgresdatabase_backupschedule_default}" help:"Backup schedule for the PostgreSQL database. Available schedules: ${postgresdatabase_backupschedule_options}"`
Copy file name to clipboardExpand all lines: update/mysqldatabase.go
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ import (
12
12
13
13
typemysqlDatabaseCmdstruct {
14
14
resourceCmd
15
+
BackupSchedule*storage.DatabaseBackupScheduleCalendar`help:"Backup schedule for the MySQL database. Available schedules: ${mysqldatabase_backupschedule_options}"`
Copy file name to clipboardExpand all lines: update/postgresdatabase.go
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ import (
12
12
13
13
typepostgresDatabaseCmdstruct {
14
14
resourceCmd
15
+
BackupSchedule*storage.DatabaseBackupScheduleCalendar`help:"Backup schedule for the PostgreSQL database. Available schedules: ${postgresdatabase_backupschedule_options}"`
0 commit comments