published on Wednesday, May 6, 2026 by Pulumi
published on Wednesday, May 6, 2026 by Pulumi
Provides information about a Linode MySQL Database’s Configuration Options. For more information, see the Linode APIv4 docs.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as linode from "@pulumi/linode";
const my_db_config = linode.getDatabaseMysqlConfig({});
import pulumi
import pulumi_linode as linode
my_db_config = linode.get_database_mysql_config()
package main
import (
"github.com/pulumi/pulumi-linode/sdk/v5/go/linode"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := linode.GetDatabaseMysqlConfig(ctx, map[string]interface{}{}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Linode = Pulumi.Linode;
return await Deployment.RunAsync(() =>
{
var my_db_config = Linode.Index.GetDatabaseMysqlConfig.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.linode.LinodeFunctions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var my-db-config = LinodeFunctions.getDatabaseMysqlConfig(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);
}
}
variables:
my-db-config:
fn::invoke:
function: linode:getDatabaseMysqlConfig
arguments: {}
binlogRetentionPeriod
The following arguments are supported in the binlogRetentionPeriod specification block:
description- The description ofbinlogRetentionPeriod.example- An example of a valid value forbinlogRetentionPeriod.maximum- The maximum valid value ofbinlogRetentionPeriod.minimum- The minimum valid value ofbinlogRetentionPeriod.requiresRestart- Whether changing the valuebinlogRetentionPeriodrequires the DB to restart.type- The type of the value ofbinlogRetentionPeriod.
mysql
The following arguments are supported in the mysql specification block:
connectTimeout- The number of seconds that the mysqld server waits for a connect packet before responding with “Bad handshake”.defaultTimeZone- Default server time zone as an offset from UTC (from -12:00 to +12:00), a time zone name, orSYSTEMto use the MySQL server default.groupConcatMaxLen- The maximum permitted result length in bytes for theGROUP_CONCAT()function.informationSchemaStatsExpiry- The time, in seconds, before cached statistics expire.innodbChangeBufferMaxSize- Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25.innodbFlushNeighbors- Specifies whether flushing a page from the InnoDB buffer pool also flushes other dirty pages in the same extent (default is 1): 0 - dirty pages in the same extent are not flushed, 1 - flush contiguous dirty pages in the same extent, 2 - flush dirty pages in the same extent.innodbFtMinTokenSize- Minimum length of words that are stored in an InnoDB FULLTEXT index. Changing this parameter will lead to a restart of the MySQL service.innodbFtServerStopwordTable- This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables.innodbLockWaitTimeout- The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.innodbLogBufferSize- The size in bytes of the buffer that InnoDB uses to write to the log files on disk.innodbOnlineAlterLogMaxSize- The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.innodbReadIoThreads- The number of I/O threads for read operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.innodbRollbackOnTimeout- When enabled, a transaction timeout causes InnoDB to abort and roll back the entire transaction. Changing this parameter will lead to a restart of the MySQL service.innodbThreadConcurrency- Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).innodbWriteIoThreads- The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.interactiveTimeout- The number of seconds the server waits for activity on an interactive connection before closing it.internalTmpMemStorageEngine- The storage engine for in-memory internal temporary tables.maxAllowedPacket- Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).maxHeapTableSize- Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).netBufferLength- Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.netReadTimeout- The number of seconds to wait for more data from a connection before aborting the read.netWriteTimeout- The number of seconds to wait for a block to be written to a connection before aborting the write.sortBufferSize- Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).sqlMode- Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned.sqlRequirePrimaryKey- Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them.tmpTableSize- Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).waitTimeout- The number of seconds the server waits for activity on a noninteractive connection before closing it.
connectTimeout
The following arguments are supported in the connectTimeout specification block:
description- The description ofconnectTimeout.example- An example of a valid value forconnectTimeout.maximum- The maximum valid value ofconnectTimeout.minimum- The minimum valid value ofconnectTimeout.requiresRestart- Whether changing the valueconnectTimeoutrequires the DB to restart.type- The type of the value ofconnectTimeout.
defaultTimeZone
The following arguments are supported in the defaultTimeZone specification block:
description- The description ofdefaultTimeZone.example- An example of a valid value fordefaultTimeZone.maxLength- The maximum length of thedefaultTimeZonevalue.minLength- The minimum length of thedefaultTimeZonevalue.pattern- A regular expression that thedefaultTimeZonevalue must match.requiresRestart- Whether changing the valuedefaultTimeZonerequires the DB to restart.type- The type of the value ofdefaultTimeZone.
groupConcatMaxLen
The following arguments are supported in the groupConcatMaxLen specification block:
description- The description ofgroupConcatMaxLen.example- An example of a valid value forgroupConcatMaxLen.maximum- The maximum valid value ofgroupConcatMaxLen.minimum- The minimum valid value ofgroupConcatMaxLen.requiresRestart- Whether changing the valuegroupConcatMaxLenrequires the DB to restart.type- The type of the value ofgroupConcatMaxLen.
informationSchemaStatsExpiry
The following arguments are supported in the informationSchemaStatsExpiry specification block:
description- The description ofinformationSchemaStatsExpiry.example- An example of a valid value forinformationSchemaStatsExpiry.maximum- The maximum valid value ofinformationSchemaStatsExpiry.minimum- The minimum valid value ofinformationSchemaStatsExpiry.requiresRestart- Whether changing the valueinformationSchemaStatsExpiryrequires the DB to restart.type- The type of the value ofinformationSchemaStatsExpiry.
innodbChangeBufferMaxSize
The following arguments are supported in the innodbChangeBufferMaxSize specification block:
description- The description ofinnodbChangeBufferMaxSize.example- An example of a valid value forinnodbChangeBufferMaxSize.maximum- The maximum valid value ofinnodbChangeBufferMaxSize.minimum- The minimum valid value ofinnodbChangeBufferMaxSize.requiresRestart- Whether changing the valueinnodbChangeBufferMaxSizerequires the DB to restart.type- The type of the value ofinnodbChangeBufferMaxSize.
innodbFlushNeighbors
The following arguments are supported in the innodbFlushNeighbors specification block:
description- The description ofinnodbFlushNeighbors.example- An example of a valid value forinnodbFlushNeighbors.maximum- The maximum valid value ofinnodbFlushNeighbors.minimum- The minimum valid value ofinnodbFlushNeighbors.requiresRestart- Whether changing the valueinnodbFlushNeighborsrequires the DB to restart.type- The type of the value ofinnodbFlushNeighbors.
innodbFtMinTokenSize
The following arguments are supported in the innodbFtMinTokenSize specification block:
description- The description ofinnodbFtMinTokenSize.example- An example of a valid value forinnodbFtMinTokenSize.maximum- The maximum valid value ofinnodbFtMinTokenSize.minimum- The minimum valid value ofinnodbFtMinTokenSize.requiresRestart- Whether changing the valueinnodbFtMinTokenSizerequires the DB to restart.type- The type of the value ofinnodbFtMinTokenSize.
innodbFtServerStopwordTable
The following arguments are supported in the innodbFtServerStopwordTable specification block:
description- The description ofinnodbFtServerStopwordTable.example- An example of a valid value forinnodbFtServerStopwordTable.maxLength- The maximum length of the value forinnodbFtServerStopwordTable.pattern- A regex pattern that a value ofinnodbFtServerStopwordTablemust match.requiresRestart- Whether changing the valueinnodbFtServerStopwordTablerequires the DB to restart.type- The type of the value ofinnodbFtServerStopwordTable.
innodbLockWaitTimeout
The following arguments are supported in the innodbLockWaitTimeout specification block:
description- The description ofinnodbLockWaitTimeout.example- An example of a valid value forinnodbLockWaitTimeout.maximum- The maximum valid value ofinnodbLockWaitTimeout.minimum- The minimum valid value ofinnodbLockWaitTimeout.requiresRestart- Whether changing the valueinnodbLockWaitTimeoutrequires the DB to restart.type- The type of the value ofinnodbLockWaitTimeout.
innodbLogBufferSize
The following arguments are supported in the innodbLogBufferSize specification block:
description- The description ofinnodbLogBufferSize.example- An example of a valid value forinnodbLogBufferSize.maximum- The maximum valid value ofinnodbLogBufferSize.minimum- The minimum valid value ofinnodbLogBufferSize.requiresRestart- Whether changing the valueinnodbLogBufferSizerequires the DB to restart.type- The type of the value ofinnodbLogBufferSize.
innodbOnlineAlterLogMaxSize
The following arguments are supported in the innodbOnlineAlterLogMaxSize specification block:
description- The description ofinnodbOnlineAlterLogMaxSize.example- An example of a valid value forinnodbOnlineAlterLogMaxSize.maximum- The maximum valid value ofinnodbOnlineAlterLogMaxSize.minimum- The minimum valid value ofinnodbOnlineAlterLogMaxSize.requiresRestart- Whether changing the valueinnodbOnlineAlterLogMaxSizerequires the DB to restart.type- The type of the value ofinnodbOnlineAlterLogMaxSize.
innodbReadIoThreads
The following arguments are supported in the innodbReadIoThreads specification block:
description- The description ofinnodbReadIoThreads.example- An example of a valid value forinnodbReadIoThreads.maximum- The maximum valid value ofinnodbReadIoThreads.minimum- The minimum valid value ofinnodbReadIoThreads.requiresRestart- Whether changing the valueinnodbReadIoThreadsrequires the DB to restart.type- The type of the value ofinnodbReadIoThreads.
innodbRollbackOnTimeout
The following arguments are supported in the innodbRollbackOnTimeout specification block:
description- The description ofinnodbRollbackOnTimeout.example- An example of a valid value forinnodbRollbackOnTimeout.requiresRestart- Whether changing the valueinnodbRollbackOnTimeoutrequires the DB to restart.type- The type of the value ofinnodbRollbackOnTimeout.
innodbThreadConcurrency
The following arguments are supported in the innodbThreadConcurrency specification block:
description- The description ofinnodbThreadConcurrency.example- An example of a valid value forinnodbThreadConcurrency.maximum- The maximum valid value ofinnodbThreadConcurrency.minimum- The minimum valid value ofinnodbThreadConcurrency.requiresRestart- Whether changing the valueinnodbThreadConcurrencyrequires the DB to restart.type- The type of the value ofinnodbThreadConcurrency.
innodbWriteIoThreads
The following arguments are supported in the innodbWriteIoThreads specification block:
description- The description ofinnodbWriteIoThreads.example- An example of a valid value forinnodbWriteIoThreads.maximum- The maximum valid value ofinnodbWriteIoThreads.minimum- The minimum valid value ofinnodbWriteIoThreads.requiresRestart- Whether changing the valueinnodbWriteIoThreadsrequires the DB to restart.type- The type of the value ofinnodbWriteIoThreads.
interactiveTimeout
The following arguments are supported in the interactiveTimeout specification block:
description- The description ofinteractiveTimeout.example- An example of a valid value forinteractiveTimeout.maximum- The maximum valid value ofinteractiveTimeout.minimum- The minimum valid value ofinteractiveTimeout.requiresRestart- Whether changing the valueinteractiveTimeoutrequires the DB to restart.type- The type of the value ofinteractiveTimeout.
internalTmpMemStorageEngine
The following arguments are supported in the internalTmpMemStorageEngine specification block:
description- The description ofinternalTmpMemStorageEngine.enum- A list of valid enum values forinternalTmpMemStorageEngine.example- An example of a valid value forinternalTmpMemStorageEngine.requiresRestart- Whether changing the valueinternalTmpMemStorageEnginerequires the DB to restart.type- The type of the value ofinternalTmpMemStorageEngine.
maxAllowedPacket
The following arguments are supported in the maxAllowedPacket specification block:
description- The description ofmaxAllowedPacket.example- An example of a valid value formaxAllowedPacket.maximum- The maximum valid value ofmaxAllowedPacket.minimum- The minimum valid value ofmaxAllowedPacket.requiresRestart- Whether changing the valuemaxAllowedPacketrequires the DB to restart.type- The type of the value ofmaxAllowedPacket.
maxHeapTableSize
The following arguments are supported in the maxHeapTableSize specification block:
description- The description ofmaxHeapTableSize.example- An example of a valid value formaxHeapTableSize.maximum- The maximum valid value ofmaxHeapTableSize.minimum- The minimum valid value ofmaxHeapTableSize.requiresRestart- Whether changing the valuemaxHeapTableSizerequires the DB to restart.type- The type of the value ofmaxHeapTableSize.
netBufferLength
The following arguments are supported in the netBufferLength specification block:
description- The description ofnetBufferLength.example- An example of a valid value fornetBufferLength.maximum- The maximum valid value ofnetBufferLength.minimum- The minimum valid value ofnetBufferLength.requiresRestart- Whether changing the valuenetBufferLengthrequires the DB to restart.type- The type of the value ofnetBufferLength.
netReadTimeout
The following arguments are supported in the netReadTimeout specification block:
description- The description ofnetReadTimeout.example- An example of a valid value fornetReadTimeout.maximum- The maximum valid value ofnetReadTimeout.minimum- The minimum valid value ofnetReadTimeout.requiresRestart- Whether changing the valuenetReadTimeoutrequires the DB to restart.type- The type of the value ofnetReadTimeout.
netWriteTimeout
The following arguments are supported in the netWriteTimeout specification block:
description- The description ofnetWriteTimeout.example- An example of a valid value fornetWriteTimeout.maximum- The maximum valid value ofnetWriteTimeout.minimum- The minimum valid value ofnetWriteTimeout.requiresRestart- Whether changing the valuenetWriteTimeoutrequires the DB to restart.type- The type of the value ofnetWriteTimeout.
sortBufferSize
The following arguments are supported in the sortBufferSize specification block:
description- The description ofsortBufferSize.example- An example of a valid value forsortBufferSize.maximum- The maximum valid value ofsortBufferSize.minimum- The minimum valid value ofsortBufferSize.requiresRestart- Whether changing the valuesortBufferSizerequires the DB to restart.type- The type of the value ofsortBufferSize.
sqlMode
The following arguments are supported in the sqlMode specification block:
description- The description ofsqlMode.example- An example of a valid value forsqlMode.maxLength- The maximum valid length ofsqlMode.pattern- The pattern to match forsqlMode.requiresRestart- Whether changing the valuesqlModerequires the DB to restart.type- The type of the value ofsqlMode.
sqlRequirePrimaryKey
The following arguments are supported in the sqlRequirePrimaryKey specification block:
description- The description ofsqlRequirePrimaryKey.example- An example of a valid value forsqlRequirePrimaryKey.requiresRestart- Whether changing the valuesqlRequirePrimaryKeyrequires the DB to restart.type- The type of the value ofsqlRequirePrimaryKey.
tmpTableSize
The following arguments are supported in the tmpTableSize specification block:
description- The description oftmpTableSize.example- An example of a valid value fortmpTableSize.maximum- The maximum valid value oftmpTableSize.minimum- The minimum valid value oftmpTableSize.requiresRestart- Whether changing the valuetmpTableSizerequires the DB to restart.type- The type of the value oftmpTableSize.
waitTimeout
The following arguments are supported in the waitTimeout specification block:
description- The description ofwaitTimeout.example- An example of a valid value forwaitTimeout.maximum- The maximum valid value ofwaitTimeout.minimum- The minimum valid value ofwaitTimeout.requiresRestart- Whether changing the valuewaitTimeoutrequires the DB to restart.type- The type of the value ofwaitTimeout.
Using getDatabaseMysqlConfig
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getDatabaseMysqlConfig(opts?: InvokeOptions): Promise<GetDatabaseMysqlConfigResult>
function getDatabaseMysqlConfigOutput(opts?: InvokeOptions): Output<GetDatabaseMysqlConfigResult>def get_database_mysql_config(opts: Optional[InvokeOptions] = None) -> GetDatabaseMysqlConfigResult
def get_database_mysql_config_output(opts: Optional[InvokeOptions] = None) -> Output[GetDatabaseMysqlConfigResult]func GetDatabaseMysqlConfig(ctx *Context, opts ...InvokeOption) (*GetDatabaseMysqlConfigResult, error)
func GetDatabaseMysqlConfigOutput(ctx *Context, opts ...InvokeOption) GetDatabaseMysqlConfigResultOutput> Note: This function is named GetDatabaseMysqlConfig in the Go SDK.
public static class GetDatabaseMysqlConfig
{
public static Task<GetDatabaseMysqlConfigResult> InvokeAsync(InvokeOptions? opts = null)
public static Output<GetDatabaseMysqlConfigResult> Invoke(InvokeOptions? opts = null)
}public static CompletableFuture<GetDatabaseMysqlConfigResult> getDatabaseMysqlConfig(InvokeOptions options)
public static Output<GetDatabaseMysqlConfigResult> getDatabaseMysqlConfig(InvokeOptions options)
fn::invoke:
function: linode:index/getDatabaseMysqlConfig:getDatabaseMysqlConfig
arguments:
# arguments dictionarygetDatabaseMysqlConfig Result
The following output properties are available:
Supporting Types
GetDatabaseMysqlConfigBinlogRetentionPeriod
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysql
- Connect
Timeout GetDatabase Mysql Config Mysql Connect Timeout - Default
Time GetZone Database Mysql Config Mysql Default Time Zone - Group
Concat GetMax Len Database Mysql Config Mysql Group Concat Max Len - Information
Schema GetStats Expiry Database Mysql Config Mysql Information Schema Stats Expiry - Innodb
Change GetBuffer Max Size Database Mysql Config Mysql Innodb Change Buffer Max Size - Innodb
Flush GetNeighbors Database Mysql Config Mysql Innodb Flush Neighbors - Innodb
Ft GetMin Token Size Database Mysql Config Mysql Innodb Ft Min Token Size - Innodb
Ft GetServer Stopword Table Database Mysql Config Mysql Innodb Ft Server Stopword Table - Innodb
Lock GetWait Timeout Database Mysql Config Mysql Innodb Lock Wait Timeout - Innodb
Log GetBuffer Size Database Mysql Config Mysql Innodb Log Buffer Size - Innodb
Online GetAlter Log Max Size Database Mysql Config Mysql Innodb Online Alter Log Max Size - Innodb
Read GetIo Threads Database Mysql Config Mysql Innodb Read Io Threads - Innodb
Rollback GetOn Timeout Database Mysql Config Mysql Innodb Rollback On Timeout - Innodb
Thread GetConcurrency Database Mysql Config Mysql Innodb Thread Concurrency - Innodb
Write GetIo Threads Database Mysql Config Mysql Innodb Write Io Threads - Interactive
Timeout GetDatabase Mysql Config Mysql Interactive Timeout - Internal
Tmp GetMem Storage Engine Database Mysql Config Mysql Internal Tmp Mem Storage Engine - Max
Allowed GetPacket Database Mysql Config Mysql Max Allowed Packet - Max
Heap GetTable Size Database Mysql Config Mysql Max Heap Table Size - Net
Buffer GetLength Database Mysql Config Mysql Net Buffer Length - Net
Read GetTimeout Database Mysql Config Mysql Net Read Timeout - Net
Write GetTimeout Database Mysql Config Mysql Net Write Timeout - Sort
Buffer GetSize Database Mysql Config Mysql Sort Buffer Size - Sql
Mode GetDatabase Mysql Config Mysql Sql Mode - Sql
Require GetPrimary Key Database Mysql Config Mysql Sql Require Primary Key - Tmp
Table GetSize Database Mysql Config Mysql Tmp Table Size - Wait
Timeout GetDatabase Mysql Config Mysql Wait Timeout
- Connect
Timeout GetDatabase Mysql Config Mysql Connect Timeout - Default
Time GetZone Database Mysql Config Mysql Default Time Zone - Group
Concat GetMax Len Database Mysql Config Mysql Group Concat Max Len - Information
Schema GetStats Expiry Database Mysql Config Mysql Information Schema Stats Expiry - Innodb
Change GetBuffer Max Size Database Mysql Config Mysql Innodb Change Buffer Max Size - Innodb
Flush GetNeighbors Database Mysql Config Mysql Innodb Flush Neighbors - Innodb
Ft GetMin Token Size Database Mysql Config Mysql Innodb Ft Min Token Size - Innodb
Ft GetServer Stopword Table Database Mysql Config Mysql Innodb Ft Server Stopword Table - Innodb
Lock GetWait Timeout Database Mysql Config Mysql Innodb Lock Wait Timeout - Innodb
Log GetBuffer Size Database Mysql Config Mysql Innodb Log Buffer Size - Innodb
Online GetAlter Log Max Size Database Mysql Config Mysql Innodb Online Alter Log Max Size - Innodb
Read GetIo Threads Database Mysql Config Mysql Innodb Read Io Threads - Innodb
Rollback GetOn Timeout Database Mysql Config Mysql Innodb Rollback On Timeout - Innodb
Thread GetConcurrency Database Mysql Config Mysql Innodb Thread Concurrency - Innodb
Write GetIo Threads Database Mysql Config Mysql Innodb Write Io Threads - Interactive
Timeout GetDatabase Mysql Config Mysql Interactive Timeout - Internal
Tmp GetMem Storage Engine Database Mysql Config Mysql Internal Tmp Mem Storage Engine - Max
Allowed GetPacket Database Mysql Config Mysql Max Allowed Packet - Max
Heap GetTable Size Database Mysql Config Mysql Max Heap Table Size - Net
Buffer GetLength Database Mysql Config Mysql Net Buffer Length - Net
Read GetTimeout Database Mysql Config Mysql Net Read Timeout - Net
Write GetTimeout Database Mysql Config Mysql Net Write Timeout - Sort
Buffer GetSize Database Mysql Config Mysql Sort Buffer Size - Sql
Mode GetDatabase Mysql Config Mysql Sql Mode - Sql
Require GetPrimary Key Database Mysql Config Mysql Sql Require Primary Key - Tmp
Table GetSize Database Mysql Config Mysql Tmp Table Size - Wait
Timeout GetDatabase Mysql Config Mysql Wait Timeout
- connect
Timeout GetDatabase Mysql Config Mysql Connect Timeout - default
Time GetZone Database Mysql Config Mysql Default Time Zone - group
Concat GetMax Len Database Mysql Config Mysql Group Concat Max Len - information
Schema GetStats Expiry Database Mysql Config Mysql Information Schema Stats Expiry - innodb
Change GetBuffer Max Size Database Mysql Config Mysql Innodb Change Buffer Max Size - innodb
Flush GetNeighbors Database Mysql Config Mysql Innodb Flush Neighbors - innodb
Ft GetMin Token Size Database Mysql Config Mysql Innodb Ft Min Token Size - innodb
Ft GetServer Stopword Table Database Mysql Config Mysql Innodb Ft Server Stopword Table - innodb
Lock GetWait Timeout Database Mysql Config Mysql Innodb Lock Wait Timeout - innodb
Log GetBuffer Size Database Mysql Config Mysql Innodb Log Buffer Size - innodb
Online GetAlter Log Max Size Database Mysql Config Mysql Innodb Online Alter Log Max Size - innodb
Read GetIo Threads Database Mysql Config Mysql Innodb Read Io Threads - innodb
Rollback GetOn Timeout Database Mysql Config Mysql Innodb Rollback On Timeout - innodb
Thread GetConcurrency Database Mysql Config Mysql Innodb Thread Concurrency - innodb
Write GetIo Threads Database Mysql Config Mysql Innodb Write Io Threads - interactive
Timeout GetDatabase Mysql Config Mysql Interactive Timeout - internal
Tmp GetMem Storage Engine Database Mysql Config Mysql Internal Tmp Mem Storage Engine - max
Allowed GetPacket Database Mysql Config Mysql Max Allowed Packet - max
Heap GetTable Size Database Mysql Config Mysql Max Heap Table Size - net
Buffer GetLength Database Mysql Config Mysql Net Buffer Length - net
Read GetTimeout Database Mysql Config Mysql Net Read Timeout - net
Write GetTimeout Database Mysql Config Mysql Net Write Timeout - sort
Buffer GetSize Database Mysql Config Mysql Sort Buffer Size - sql
Mode GetDatabase Mysql Config Mysql Sql Mode - sql
Require GetPrimary Key Database Mysql Config Mysql Sql Require Primary Key - tmp
Table GetSize Database Mysql Config Mysql Tmp Table Size - wait
Timeout GetDatabase Mysql Config Mysql Wait Timeout
- connect
Timeout GetDatabase Mysql Config Mysql Connect Timeout - default
Time GetZone Database Mysql Config Mysql Default Time Zone - group
Concat GetMax Len Database Mysql Config Mysql Group Concat Max Len - information
Schema GetStats Expiry Database Mysql Config Mysql Information Schema Stats Expiry - innodb
Change GetBuffer Max Size Database Mysql Config Mysql Innodb Change Buffer Max Size - innodb
Flush GetNeighbors Database Mysql Config Mysql Innodb Flush Neighbors - innodb
Ft GetMin Token Size Database Mysql Config Mysql Innodb Ft Min Token Size - innodb
Ft GetServer Stopword Table Database Mysql Config Mysql Innodb Ft Server Stopword Table - innodb
Lock GetWait Timeout Database Mysql Config Mysql Innodb Lock Wait Timeout - innodb
Log GetBuffer Size Database Mysql Config Mysql Innodb Log Buffer Size - innodb
Online GetAlter Log Max Size Database Mysql Config Mysql Innodb Online Alter Log Max Size - innodb
Read GetIo Threads Database Mysql Config Mysql Innodb Read Io Threads - innodb
Rollback GetOn Timeout Database Mysql Config Mysql Innodb Rollback On Timeout - innodb
Thread GetConcurrency Database Mysql Config Mysql Innodb Thread Concurrency - innodb
Write GetIo Threads Database Mysql Config Mysql Innodb Write Io Threads - interactive
Timeout GetDatabase Mysql Config Mysql Interactive Timeout - internal
Tmp GetMem Storage Engine Database Mysql Config Mysql Internal Tmp Mem Storage Engine - max
Allowed GetPacket Database Mysql Config Mysql Max Allowed Packet - max
Heap GetTable Size Database Mysql Config Mysql Max Heap Table Size - net
Buffer GetLength Database Mysql Config Mysql Net Buffer Length - net
Read GetTimeout Database Mysql Config Mysql Net Read Timeout - net
Write GetTimeout Database Mysql Config Mysql Net Write Timeout - sort
Buffer GetSize Database Mysql Config Mysql Sort Buffer Size - sql
Mode GetDatabase Mysql Config Mysql Sql Mode - sql
Require GetPrimary Key Database Mysql Config Mysql Sql Require Primary Key - tmp
Table GetSize Database Mysql Config Mysql Tmp Table Size - wait
Timeout GetDatabase Mysql Config Mysql Wait Timeout
- connect_
timeout GetDatabase Mysql Config Mysql Connect Timeout - default_
time_ Getzone Database Mysql Config Mysql Default Time Zone - group_
concat_ Getmax_ len Database Mysql Config Mysql Group Concat Max Len - information_
schema_ Getstats_ expiry Database Mysql Config Mysql Information Schema Stats Expiry - innodb_
change_ Getbuffer_ max_ size Database Mysql Config Mysql Innodb Change Buffer Max Size - innodb_
flush_ Getneighbors Database Mysql Config Mysql Innodb Flush Neighbors - innodb_
ft_ Getmin_ token_ size Database Mysql Config Mysql Innodb Ft Min Token Size - innodb_
ft_ Getserver_ stopword_ table Database Mysql Config Mysql Innodb Ft Server Stopword Table - innodb_
lock_ Getwait_ timeout Database Mysql Config Mysql Innodb Lock Wait Timeout - innodb_
log_ Getbuffer_ size Database Mysql Config Mysql Innodb Log Buffer Size - innodb_
online_ Getalter_ log_ max_ size Database Mysql Config Mysql Innodb Online Alter Log Max Size - innodb_
read_ Getio_ threads Database Mysql Config Mysql Innodb Read Io Threads - innodb_
rollback_ Geton_ timeout Database Mysql Config Mysql Innodb Rollback On Timeout - innodb_
thread_ Getconcurrency Database Mysql Config Mysql Innodb Thread Concurrency - innodb_
write_ Getio_ threads Database Mysql Config Mysql Innodb Write Io Threads - interactive_
timeout GetDatabase Mysql Config Mysql Interactive Timeout - internal_
tmp_ Getmem_ storage_ engine Database Mysql Config Mysql Internal Tmp Mem Storage Engine - max_
allowed_ Getpacket Database Mysql Config Mysql Max Allowed Packet - max_
heap_ Gettable_ size Database Mysql Config Mysql Max Heap Table Size - net_
buffer_ Getlength Database Mysql Config Mysql Net Buffer Length - net_
read_ Gettimeout Database Mysql Config Mysql Net Read Timeout - net_
write_ Gettimeout Database Mysql Config Mysql Net Write Timeout - sort_
buffer_ Getsize Database Mysql Config Mysql Sort Buffer Size - sql_
mode GetDatabase Mysql Config Mysql Sql Mode - sql_
require_ Getprimary_ key Database Mysql Config Mysql Sql Require Primary Key - tmp_
table_ Getsize Database Mysql Config Mysql Tmp Table Size - wait_
timeout GetDatabase Mysql Config Mysql Wait Timeout
- connect
Timeout Property Map - default
Time Property MapZone - group
Concat Property MapMax Len - information
Schema Property MapStats Expiry - innodb
Change Property MapBuffer Max Size - innodb
Flush Property MapNeighbors - innodb
Ft Property MapMin Token Size - innodb
Ft Property MapServer Stopword Table - innodb
Lock Property MapWait Timeout - innodb
Log Property MapBuffer Size - innodb
Online Property MapAlter Log Max Size - innodb
Read Property MapIo Threads - innodb
Rollback Property MapOn Timeout - innodb
Thread Property MapConcurrency - innodb
Write Property MapIo Threads - interactive
Timeout Property Map - internal
Tmp Property MapMem Storage Engine - max
Allowed Property MapPacket - max
Heap Property MapTable Size - net
Buffer Property MapLength - net
Read Property MapTimeout - net
Write Property MapTimeout - sort
Buffer Property MapSize - sql
Mode Property Map - sql
Require Property MapPrimary Key - tmp
Table Property MapSize - wait
Timeout Property Map
GetDatabaseMysqlConfigMysqlConnectTimeout
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlDefaultTimeZone
- Description string
- Example string
- Max
Length int - Min
Length int - Pattern string
- Requires
Restart bool - Type string
- Description string
- Example string
- Max
Length int - Min
Length int - Pattern string
- Requires
Restart bool - Type string
- description String
- example String
- max
Length Integer - min
Length Integer - pattern String
- requires
Restart Boolean - type String
- description string
- example string
- max
Length number - min
Length number - pattern string
- requires
Restart boolean - type string
- description str
- example str
- max_
length int - min_
length int - pattern str
- requires_
restart bool - type str
- description String
- example String
- max
Length Number - min
Length Number - pattern String
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlGroupConcatMaxLen
- Description string
- Example double
- Maximum double
- Minimum double
- Requires
Restart bool - Type string
- Description string
- Example float64
- Maximum float64
- Minimum float64
- Requires
Restart bool - Type string
- description String
- example Double
- maximum Double
- minimum Double
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example float
- maximum float
- minimum float
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlInformationSchemaStatsExpiry
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlInnodbChangeBufferMaxSize
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlInnodbFlushNeighbors
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlInnodbFtMinTokenSize
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlInnodbFtServerStopwordTable
- Description string
- Example string
- Max
Length int - Pattern string
- Requires
Restart bool - Types List<string>
- Description string
- Example string
- Max
Length int - Pattern string
- Requires
Restart bool - Types []string
- description String
- example String
- max
Length Integer - pattern String
- requires
Restart Boolean - types List<String>
- description string
- example string
- max
Length number - pattern string
- requires
Restart boolean - types string[]
- description str
- example str
- max_
length int - pattern str
- requires_
restart bool - types Sequence[str]
- description String
- example String
- max
Length Number - pattern String
- requires
Restart Boolean - types List<String>
GetDatabaseMysqlConfigMysqlInnodbLockWaitTimeout
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlInnodbLogBufferSize
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlInnodbOnlineAlterLogMaxSize
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlInnodbReadIoThreads
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlInnodbRollbackOnTimeout
- Description string
- Example bool
- Requires
Restart bool - Type string
- Description string
- Example bool
- Requires
Restart bool - Type string
- description String
- example Boolean
- requires
Restart Boolean - type String
- description string
- example boolean
- requires
Restart boolean - type string
- description str
- example bool
- requires_
restart bool - type str
- description String
- example Boolean
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlInnodbThreadConcurrency
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlInnodbWriteIoThreads
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlInteractiveTimeout
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlInternalTmpMemStorageEngine
- Description string
- Enums List<string>
- Example string
- Requires
Restart bool - Type string
- Description string
- Enums []string
- Example string
- Requires
Restart bool - Type string
- description String
- enums List<String>
- example String
- requires
Restart Boolean - type String
- description string
- enums string[]
- example string
- requires
Restart boolean - type string
- description str
- enums Sequence[str]
- example str
- requires_
restart bool - type str
- description String
- enums List<String>
- example String
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlMaxAllowedPacket
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlMaxHeapTableSize
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlNetBufferLength
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlNetReadTimeout
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlNetWriteTimeout
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlSortBufferSize
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlSqlMode
- Description string
- Example string
- Max
Length int - Pattern string
- Requires
Restart bool - Type string
- Description string
- Example string
- Max
Length int - Pattern string
- Requires
Restart bool - Type string
- description String
- example String
- max
Length Integer - pattern String
- requires
Restart Boolean - type String
- description string
- example string
- max
Length number - pattern string
- requires
Restart boolean - type string
- description str
- example str
- max_
length int - pattern str
- requires_
restart bool - type str
- description String
- example String
- max
Length Number - pattern String
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlSqlRequirePrimaryKey
- Description string
- Example bool
- Requires
Restart bool - Type string
- Description string
- Example bool
- Requires
Restart bool - Type string
- description String
- example Boolean
- requires
Restart Boolean - type String
- description string
- example boolean
- requires
Restart boolean - type string
- description str
- example bool
- requires_
restart bool - type str
- description String
- example Boolean
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlTmpTableSize
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
GetDatabaseMysqlConfigMysqlWaitTimeout
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- Description string
- Example int
- Maximum int
- Minimum int
- Requires
Restart bool - Type string
- description String
- example Integer
- maximum Integer
- minimum Integer
- requires
Restart Boolean - type String
- description string
- example number
- maximum number
- minimum number
- requires
Restart boolean - type string
- description str
- example int
- maximum int
- minimum int
- requires_
restart bool - type str
- description String
- example Number
- maximum Number
- minimum Number
- requires
Restart Boolean - type String
Package Details
- Repository
- Linode pulumi/pulumi-linode
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
linodeTerraform Provider.
published on Wednesday, May 6, 2026 by Pulumi
