SQLInstanceSettingsArgs

data class SQLInstanceSettingsArgs(val collation: Output<String>? = null, val isIfiEnabled: Output<Boolean>? = null, val isLpimEnabled: Output<Boolean>? = null, val isOptimizeForAdHocWorkloadsEnabled: Output<Boolean>? = null, val maxDop: Output<Int>? = null, val maxServerMemoryMB: Output<Int>? = null, val minServerMemoryMB: Output<Int>? = null) : ConvertibleToJava<SQLInstanceSettingsArgs>

Set the server/instance-level settings for SQL Server.

Constructors

Link copied to clipboard
constructor(collation: Output<String>? = null, isIfiEnabled: Output<Boolean>? = null, isLpimEnabled: Output<Boolean>? = null, isOptimizeForAdHocWorkloadsEnabled: Output<Boolean>? = null, maxDop: Output<Int>? = null, maxServerMemoryMB: Output<Int>? = null, minServerMemoryMB: Output<Int>? = null)

Properties

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

SQL Server Collation.

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

SQL Server IFI.

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

SQL Server LPIM.

Link copied to clipboard

SQL Server Optimize for Adhoc workloads.

Link copied to clipboard
val maxDop: Output<Int>? = null

SQL Server MAXDOP.

Link copied to clipboard
val maxServerMemoryMB: Output<Int>? = null

SQL Server maximum memory.

Link copied to clipboard
val minServerMemoryMB: Output<Int>? = null

SQL Server minimum memory.

Functions

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