Show / Hide Table of Contents

Class ExportContext.BakExportOptionsData

Options for exporting BAK files (SQL Server-only)

Inheritance
object
ExportContext.BakExportOptionsData
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.v1.Data
Assembly: Google.Apis.SQLAdmin.v1.dll
Syntax
public class ExportContext.BakExportOptionsData

Properties

BakType

Type of this bak file will be export, FULL or DIFF, SQL Server only

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

CopyOnly

Deprecated: copy_only is deprecated. Use differential_base instead

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

DifferentialBase

Whether or not the backup can be used as a differential base copy_only backup can not be served as differential base

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

StripeCount

Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen.

Declaration
[JsonProperty("stripeCount")]
public virtual int? StripeCount { get; set; }
Property Value
Type Description
int?

Striped

Whether or not the export should be striped.

Declaration
[JsonProperty("striped")]
public virtual bool? Striped { get; set; }
Property Value
Type Description
bool?
In This Article
Back to top Generated by DocFX