SQLInstanceSettingsResponse

data class SQLInstanceSettingsResponse(val collation: String? = null, val isIfiEnabled: Boolean? = null, val isLpimEnabled: Boolean? = null, val isOptimizeForAdHocWorkloadsEnabled: Boolean? = null, val maxDop: Int? = null, val maxServerMemoryMB: Int? = null, val minServerMemoryMB: Int? = null)

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

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val collation: String? = null

SQL Server Collation.

Link copied to clipboard
val isIfiEnabled: Boolean? = null

SQL Server IFI.

Link copied to clipboard
val isLpimEnabled: Boolean? = null

SQL Server LPIM.

Link copied to clipboard

SQL Server Optimize for Adhoc workloads.

Link copied to clipboard
val maxDop: Int? = null

SQL Server MAXDOP.

Link copied to clipboard
val maxServerMemoryMB: Int? = null

SQL Server maximum memory.

Link copied to clipboard
val minServerMemoryMB: Int? = null

SQL Server minimum memory.