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.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.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?

ExportLogEndTime

object representation of ExportLogEndTimeRaw.

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

ExportLogEndTimeDateTimeOffset

DateTimeOffset representation of ExportLogEndTimeRaw.

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

ExportLogEndTimeRaw

Optional. The end timestamp when transaction log will be included in the export operation. RFC 3339 format (for example, 2023-10-01T16:19:00.094) in UTC. When omitted, all available logs until current time will be included. Only applied to Cloud SQL for SQL Server.

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

ExportLogStartTime

object representation of ExportLogStartTimeRaw.

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

ExportLogStartTimeDateTimeOffset

DateTimeOffset representation of ExportLogStartTimeRaw.

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

ExportLogStartTimeRaw

Optional. The begin timestamp when transaction log will be included in the export operation. RFC 3339 format (for example, 2023-10-01T16:19:00.094) in UTC. When omitted, all available logs from the beginning of retention period will be included. Only applied to Cloud SQL for SQL Server.

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

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