Show / Hide Table of Contents

Class SqlServerHomogeneousMigrationJobConfig

Configuration for homogeneous migration to Cloud SQL for SQL Server.

Inheritance
object
SqlServerHomogeneousMigrationJobConfig
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.DatabaseMigrationService.v1.Data
Assembly: Google.Apis.DatabaseMigrationService.v1.dll
Syntax
public class SqlServerHomogeneousMigrationJobConfig : IDirectResponseSchema

Properties

BackupFilePattern

Required. Pattern that describes the default backup naming strategy. The specified pattern should ensure lexicographical order of backups. The pattern must define one of the following capture group sets: Capture group set #1 yy/yyyy - year, 2 or 4 digits mm - month number, 1-12 dd - day of month, 1-31 hh - hour of day, 00-23 mi - minutes, 00-59 ss - seconds, 00-59 Example: For backup file TestDB_20230802_155400.trn, use pattern: (?.)backup(?\d{4})(?\d{2})(?\d{2})_(?\d{2})(?\d{2})(?\d{2}).trn Capture group set #2 timestamp - unix timestamp Example: For backup file TestDB.1691448254.trn, use pattern: (?.).(?\d*).trn or (?.).(?\d).trn

Declaration
[JsonProperty("backupFilePattern")]
public virtual string BackupFilePattern { get; set; }
Property Value
Type Description
string

DatabaseBackups

Required. Backup details per database in Cloud Storage.

Declaration
[JsonProperty("databaseBackups")]
public virtual IList<SqlServerDatabaseBackup> DatabaseBackups { get; set; }
Property Value
Type Description
IList<SqlServerDatabaseBackup>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

PromoteWhenReady

Optional. Promote databases when ready.

Declaration
[JsonProperty("promoteWhenReady")]
public virtual bool? PromoteWhenReady { get; set; }
Property Value
Type Description
bool?

UseDiffBackup

Optional. Enable differential backups.

Declaration
[JsonProperty("useDiffBackup")]
public virtual bool? UseDiffBackup { get; set; }
Property Value
Type Description
bool?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX