SettingsArgs

data class SettingsArgs(val isCompression: Output<Boolean>? = null, val issqlcompression: Output<Boolean>? = null, val timeZone: Output<String>? = null) : ConvertibleToJava<SettingsArgs>

Common settings field for backup management

Constructors

Link copied to clipboard
constructor(isCompression: Output<Boolean>? = null, issqlcompression: Output<Boolean>? = null, timeZone: Output<String>? = null)

Properties

Link copied to clipboard
val isCompression: Output<Boolean>? = null

Workload compression flag. This has been added so that 'isSqlCompression' will be deprecated once clients upgrade to consider this flag.

Link copied to clipboard
val issqlcompression: Output<Boolean>? = null

SQL compression flag

Link copied to clipboard
val timeZone: Output<String>? = null

TimeZone optional input as string. For example: TimeZone = "Pacific Standard Time".

Functions

Link copied to clipboard
open override fun toJava(): SettingsArgs