Show / Hide Table of Contents

Class CompressionOptions

The additional compression options used while exporting the DB system backup.

Inheritance
object
CompressionOptions
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 CompressionOptions

Properties

IsEnabled

Declaration
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

The compression status of the exported data.

Level

Declaration
[JsonProperty(PropertyName = "level")]
public int? Level { get; set; }
Property Value
Type Description
int?

The level of compression to use when creating the dump files.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(StringEnumConverter))]
public CompressionOptions.TypeEnum? Type { get; set; }
Property Value
Type Description
CompressionOptions.TypeEnum?

The compression type to use when creating the dump files.

In this article
Back to top