Show / Hide Table of Contents

Class ExportOptions

The additional options used while exporting the DB system backup.

Inheritance
object
ExportOptions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MysqlService.Models
Assembly: OCI.DotNetSDK.Mysql.dll
Syntax
public class ExportOptions

Properties

CompressionOptions

Declaration
[JsonProperty(PropertyName = "compressionOptions")]
public CompressionOptions CompressionOptions { get; set; }
Property Value
Type Description
CompressionOptions

DataFormat

Declaration
[JsonProperty(PropertyName = "dataFormat")]
[JsonConverter(typeof(StringEnumConverter))]
public ExportOptions.DataFormatEnum? DataFormat { get; set; }
Property Value
Type Description
ExportOptions.DataFormatEnum?

The format used for storing data.

FolderName

Declaration
[JsonProperty(PropertyName = "folderName")]
public string FolderName { get; set; }
Property Value
Type Description
string

The name of the folder in the Object Storage bucket where the dump files will be stored. A folder with the same name must not exist in the bucket. The folder will be created in the export process.

In this article
Back to top