DatabaseBackupSetting

data class DatabaseBackupSetting(val connectionString: String? = null, val connectionStringName: String? = null, val databaseType: Either<String, DatabaseType>, val name: String? = null) : ConvertibleToJava<DatabaseBackupSetting>

Database backup settings.

Constructors

Link copied to clipboard
constructor(connectionString: String? = null, connectionStringName: String? = null, databaseType: Either<String, DatabaseType>, name: String? = null)

Properties

Link copied to clipboard

Contains a connection string to a database which is being backed up or restored. If the restore should happen to a new database, the database name inside is the new one.

Link copied to clipboard

Contains a connection string name that is linked to the SiteConfig.ConnectionStrings. This is used during restore with overwrite connection strings options.

Link copied to clipboard

Database type (e.g. SqlAzure / MySql).

Link copied to clipboard
val name: String? = null

Functions

Link copied to clipboard
open override fun toJava(): DatabaseBackupSetting