Class CompressionOptions
The additional compression options used while exporting the DB system backup.
Inherited Members
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. |