Class ImportContext.BakImportOptionsData
Import parameters specific to SQL Server .BAK files
Inheritance
ImportContext.BakImportOptionsData
Assembly: Google.Apis.SQLAdmin.v1.dll
Syntax
public class ImportContext.BakImportOptionsData
Properties
BakType
Type of the bak content, FULL or DIFF
Declaration
[JsonProperty("bakType")]
public virtual string BakType { get; set; }
Property Value
EncryptionOptions
Declaration
[JsonProperty("encryptionOptions")]
public virtual ImportContext.BakImportOptionsData.EncryptionOptionsData EncryptionOptions { get; set; }
Property Value
NoRecovery
Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud
SQL for SQL Server.
Declaration
[JsonProperty("noRecovery")]
public virtual bool? NoRecovery { get; set; }
Property Value
RecoveryOnly
Whether or not the backup importing request will just bring database online without downloading Bak
content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies
only to Cloud SQL for SQL Server.
Declaration
[JsonProperty("recoveryOnly")]
public virtual bool? RecoveryOnly { get; set; }
Property Value
StopAt
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use StopAtDateTimeOffset instead.")]
public virtual object StopAt { get; set; }
Property Value
StopAtDateTimeOffset
Declaration
[JsonIgnore]
public virtual DateTimeOffset? StopAtDateTimeOffset { get; set; }
Property Value
StopAtMark
Optional. The marked transaction where the import should stop. This field is equivalent to the
STOPATMARK keyword and applies to Cloud SQL for SQL Server only.
Declaration
[JsonProperty("stopAtMark")]
public virtual string StopAtMark { get; set; }
Property Value
StopAtRaw
Optional. The timestamp when the import should stop. This timestamp is in the RFC
3339 format (for example, 2023-10-01T16:19:00.094
). This field
is equivalent to the STOPAT keyword and applies to Cloud SQL for SQL Server only.
Declaration
[JsonProperty("stopAt")]
public virtual string StopAtRaw { get; set; }
Property Value
Striped
Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server.
Declaration
[JsonProperty("striped")]
public virtual bool? Striped { get; set; }
Property Value