Show / Hide Table of Contents

Class ImportContext.BakImportOptionsData

Import parameters specific to SQL Server .BAK files

Inheritance
object
ImportContext.BakImportOptionsData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.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
Type Description
string

EncryptionOptions

Declaration
[JsonProperty("encryptionOptions")]
public virtual ImportContext.BakImportOptionsData.EncryptionOptionsData EncryptionOptions { get; set; }
Property Value
Type Description
ImportContext.BakImportOptionsData.EncryptionOptionsData

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
Type Description
bool?

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
Type Description
bool?

StopAt

object representation of StopAtRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use StopAtDateTimeOffset instead.")]
public virtual object StopAt { get; set; }
Property Value
Type Description
object

StopAtDateTimeOffset

DateTimeOffset representation of StopAtRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? StopAtDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

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
Type Description
string

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
Type Description
string

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
Type Description
bool?
In this article
Back to top Generated by DocFX