@pulumi/linode 4.40.0-alpha.1750227869 → 5.0.0-alpha.1750670188

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/databaseMysqlV2.d.ts +336 -0
  2. package/databaseMysqlV2.js +56 -0
  3. package/databaseMysqlV2.js.map +1 -1
  4. package/databasePostgresqlV2.d.ts +564 -0
  5. package/databasePostgresqlV2.js +94 -0
  6. package/databasePostgresqlV2.js.map +1 -1
  7. package/getDatabaseMysqlConfig.d.ts +1038 -0
  8. package/getDatabaseMysqlConfig.js +1044 -0
  9. package/getDatabaseMysqlConfig.js.map +1 -0
  10. package/getDatabaseMysqlV2.d.ts +112 -0
  11. package/getDatabaseMysqlV2.js.map +1 -1
  12. package/getDatabasePostgresqlConfig.d.ts +1580 -0
  13. package/getDatabasePostgresqlConfig.js +1584 -0
  14. package/getDatabasePostgresqlConfig.js.map +1 -0
  15. package/getDatabasePostgresqlV2.d.ts +188 -0
  16. package/getDatabasePostgresqlV2.js.map +1 -1
  17. package/getInstanceType.d.ts +2 -2
  18. package/getNodeBalancer.d.ts +4 -0
  19. package/getNodeBalancer.js.map +1 -1
  20. package/getNodeBalancerConfig.d.ts +8 -0
  21. package/getNodeBalancerConfig.js.map +1 -1
  22. package/getObjectStorageQuota.d.ts +3 -3
  23. package/getObjectStorageQuota.js +2 -2
  24. package/getObjectStorageQuotas.d.ts +2 -2
  25. package/getObjectStorageQuotas.js +2 -2
  26. package/getProfile.d.ts +1 -1
  27. package/index.d.ts +6 -0
  28. package/index.js +10 -4
  29. package/index.js.map +1 -1
  30. package/instance.d.ts +4 -4
  31. package/instanceDisk.d.ts +1 -1
  32. package/instanceDisk.js +1 -1
  33. package/nodeBalancer.d.ts +19 -0
  34. package/nodeBalancer.js +3 -0
  35. package/nodeBalancer.js.map +1 -1
  36. package/nodeBalancerConfig.d.ts +27 -0
  37. package/nodeBalancerConfig.js +5 -0
  38. package/nodeBalancerConfig.js.map +1 -1
  39. package/package.json +2 -2
  40. package/types/input.d.ts +28 -4
  41. package/types/output.d.ts +304 -12
@@ -0,0 +1,1038 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "./types/output";
3
+ /**
4
+ * Provides information about a Linode MySQL Database's Configuration Options.
5
+ * For more information, see the Linode APIv4 docs.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * Get information about a MySQL database's configuration options:
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as linode from "@pulumi/linode";
14
+ *
15
+ * const my_db_config = linode.getDatabaseMysqlConfig({});
16
+ * ```
17
+ *
18
+ * ## binlogRetentionPeriod
19
+ *
20
+ * The following arguments are supported in the `binlogRetentionPeriod` specification block:
21
+ *
22
+ * * `description` - The description of `binlogRetentionPeriod`.
23
+ *
24
+ * * `example` - An example of a valid value for `binlogRetentionPeriod`.
25
+ *
26
+ * * `maximum` - The maximum valid value of `binlogRetentionPeriod`.
27
+ *
28
+ * * `minimum` - The minimum valid value of `binlogRetentionPeriod`.
29
+ *
30
+ * * `requiresRestart` - Whether changing the value `binlogRetentionPeriod` requires the DB to restart.
31
+ *
32
+ * * `type` - The type of the value of `binlogRetentionPeriod`.
33
+ *
34
+ * ## mysql
35
+ *
36
+ * The following arguments are supported in the `mysql` specification block:
37
+ *
38
+ * * `connectTimeout` - The number of seconds that the mysqld server waits for a connect packet before responding with "Bad handshake".
39
+ *
40
+ * * `defaultTimeZone` - Default server time zone as an offset from UTC (from -12:00 to +12:00), a time zone name, or `SYSTEM` to use the MySQL server default.
41
+ *
42
+ * * `groupConcatMaxLen` - The maximum permitted result length in bytes for the `GROUP_CONCAT()` function.
43
+ *
44
+ * * `informationSchemaStatsExpiry` - The time, in seconds, before cached statistics expire.
45
+ *
46
+ * * `innodbChangeBufferMaxSize` - Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25.
47
+ *
48
+ * * `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.
49
+ *
50
+ * * `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.
51
+ *
52
+ * * `innodbFtServerStopwordTable` - This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables.
53
+ *
54
+ * * `innodbLockWaitTimeout` - The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
55
+ *
56
+ * * `innodbLogBufferSize` - The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
57
+ *
58
+ * * `innodbOnlineAlterLogMaxSize` - The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
59
+ *
60
+ * * `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.
61
+ *
62
+ * * `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.
63
+ *
64
+ * * `innodbThreadConcurrency` - Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
65
+ *
66
+ * * `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.
67
+ *
68
+ * * `interactiveTimeout` - The number of seconds the server waits for activity on an interactive connection before closing it.
69
+ *
70
+ * * `internalTmpMemStorageEngine` - The storage engine for in-memory internal temporary tables.
71
+ *
72
+ * * `maxAllowedPacket` - Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
73
+ *
74
+ * * `maxHeapTableSize` - Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
75
+ *
76
+ * * `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.
77
+ *
78
+ * * `netReadTimeout` - The number of seconds to wait for more data from a connection before aborting the read.
79
+ *
80
+ * * `netWriteTimeout` - The number of seconds to wait for a block to be written to a connection before aborting the write.
81
+ *
82
+ * * `sortBufferSize` - Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
83
+ *
84
+ * * `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.
85
+ *
86
+ * * `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.
87
+ *
88
+ * * `tmpTableSize` - Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
89
+ *
90
+ * * `waitTimeout` - The number of seconds the server waits for activity on a noninteractive connection before closing it.
91
+ *
92
+ * ## connectTimeout
93
+ *
94
+ * The following arguments are supported in the `connectTimeout` specification block:
95
+ *
96
+ * * `description` - The description of `connectTimeout`.
97
+ *
98
+ * * `example` - An example of a valid value for `connectTimeout`.
99
+ *
100
+ * * `maximum` - The maximum valid value of `connectTimeout`.
101
+ *
102
+ * * `minimum` - The minimum valid value of `connectTimeout`.
103
+ *
104
+ * * `requiresRestart` - Whether changing the value `connectTimeout` requires the DB to restart.
105
+ *
106
+ * * `type` - The type of the value of `connectTimeout`.
107
+ *
108
+ * ## defaultTimeZone
109
+ *
110
+ * The following arguments are supported in the `defaultTimeZone` specification block:
111
+ *
112
+ * * `description` - The description of `defaultTimeZone`.
113
+ *
114
+ * * `example` - An example of a valid value for `defaultTimeZone`.
115
+ *
116
+ * * `maxLength` - The maximum length of the `defaultTimeZone` value.
117
+ *
118
+ * * `minLength` - The minimum length of the `defaultTimeZone` value.
119
+ *
120
+ * * `pattern` - A regular expression that the `defaultTimeZone` value must match.
121
+ *
122
+ * * `requiresRestart` - Whether changing the value `defaultTimeZone` requires the DB to restart.
123
+ *
124
+ * * `type` - The type of the value of `defaultTimeZone`.
125
+ *
126
+ * ## groupConcatMaxLen
127
+ *
128
+ * The following arguments are supported in the `groupConcatMaxLen` specification block:
129
+ *
130
+ * * `description` - The description of `groupConcatMaxLen`.
131
+ *
132
+ * * `example` - An example of a valid value for `groupConcatMaxLen`.
133
+ *
134
+ * * `maximum` - The maximum valid value of `groupConcatMaxLen`.
135
+ *
136
+ * * `minimum` - The minimum valid value of `groupConcatMaxLen`.
137
+ *
138
+ * * `requiresRestart` - Whether changing the value `groupConcatMaxLen` requires the DB to restart.
139
+ *
140
+ * * `type` - The type of the value of `groupConcatMaxLen`.
141
+ *
142
+ * ## informationSchemaStatsExpiry
143
+ *
144
+ * The following arguments are supported in the `informationSchemaStatsExpiry` specification block:
145
+ *
146
+ * * `description` - The description of `informationSchemaStatsExpiry`.
147
+ *
148
+ * * `example` - An example of a valid value for `informationSchemaStatsExpiry`.
149
+ *
150
+ * * `maximum` - The maximum valid value of `informationSchemaStatsExpiry`.
151
+ *
152
+ * * `minimum` - The minimum valid value of `informationSchemaStatsExpiry`.
153
+ *
154
+ * * `requiresRestart` - Whether changing the value `informationSchemaStatsExpiry` requires the DB to restart.
155
+ *
156
+ * * `type` - The type of the value of `informationSchemaStatsExpiry`.
157
+ *
158
+ * ## innodbChangeBufferMaxSize
159
+ *
160
+ * The following arguments are supported in the `innodbChangeBufferMaxSize` specification block:
161
+ *
162
+ * * `description` - The description of `innodbChangeBufferMaxSize`.
163
+ *
164
+ * * `example` - An example of a valid value for `innodbChangeBufferMaxSize`.
165
+ *
166
+ * * `maximum` - The maximum valid value of `innodbChangeBufferMaxSize`.
167
+ *
168
+ * * `minimum` - The minimum valid value of `innodbChangeBufferMaxSize`.
169
+ *
170
+ * * `requiresRestart` - Whether changing the value `innodbChangeBufferMaxSize` requires the DB to restart.
171
+ *
172
+ * * `type` - The type of the value of `innodbChangeBufferMaxSize`.
173
+ *
174
+ * ## innodbFlushNeighbors
175
+ *
176
+ * The following arguments are supported in the `innodbFlushNeighbors` specification block:
177
+ *
178
+ * * `description` - The description of `innodbFlushNeighbors`.
179
+ *
180
+ * * `example` - An example of a valid value for `innodbFlushNeighbors`.
181
+ *
182
+ * * `maximum` - The maximum valid value of `innodbFlushNeighbors`.
183
+ *
184
+ * * `minimum` - The minimum valid value of `innodbFlushNeighbors`.
185
+ *
186
+ * * `requiresRestart` - Whether changing the value `innodbFlushNeighbors` requires the DB to restart.
187
+ *
188
+ * * `type` - The type of the value of `innodbFlushNeighbors`.
189
+ *
190
+ * ## innodbFtMinTokenSize
191
+ *
192
+ * The following arguments are supported in the `innodbFtMinTokenSize` specification block:
193
+ *
194
+ * * `description` - The description of `innodbFtMinTokenSize`.
195
+ *
196
+ * * `example` - An example of a valid value for `innodbFtMinTokenSize`.
197
+ *
198
+ * * `maximum` - The maximum valid value of `innodbFtMinTokenSize`.
199
+ *
200
+ * * `minimum` - The minimum valid value of `innodbFtMinTokenSize`.
201
+ *
202
+ * * `requiresRestart` - Whether changing the value `innodbFtMinTokenSize` requires the DB to restart.
203
+ *
204
+ * * `type` - The type of the value of `innodbFtMinTokenSize`.
205
+ *
206
+ * ## innodbFtServerStopwordTable
207
+ *
208
+ * The following arguments are supported in the `innodbFtServerStopwordTable` specification block:
209
+ *
210
+ * * `description` - The description of `innodbFtServerStopwordTable`.
211
+ *
212
+ * * `example` - An example of a valid value for `innodbFtServerStopwordTable`.
213
+ *
214
+ * * `maxLength` - The maximum length of the value for `innodbFtServerStopwordTable`.
215
+ *
216
+ * * `pattern` - A regex pattern that a value of `innodbFtServerStopwordTable` must match.
217
+ *
218
+ * * `requiresRestart` - Whether changing the value `innodbFtServerStopwordTable` requires the DB to restart.
219
+ *
220
+ * * `type` - The type of the value of `innodbFtServerStopwordTable`.
221
+ *
222
+ * ## innodbLockWaitTimeout
223
+ *
224
+ * The following arguments are supported in the `innodbLockWaitTimeout` specification block:
225
+ *
226
+ * * `description` - The description of `innodbLockWaitTimeout`.
227
+ *
228
+ * * `example` - An example of a valid value for `innodbLockWaitTimeout`.
229
+ *
230
+ * * `maximum` - The maximum valid value of `innodbLockWaitTimeout`.
231
+ *
232
+ * * `minimum` - The minimum valid value of `innodbLockWaitTimeout`.
233
+ *
234
+ * * `requiresRestart` - Whether changing the value `innodbLockWaitTimeout` requires the DB to restart.
235
+ *
236
+ * * `type` - The type of the value of `innodbLockWaitTimeout`.
237
+ *
238
+ * ## innodbLogBufferSize
239
+ *
240
+ * The following arguments are supported in the `innodbLogBufferSize` specification block:
241
+ *
242
+ * * `description` - The description of `innodbLogBufferSize`.
243
+ *
244
+ * * `example` - An example of a valid value for `innodbLogBufferSize`.
245
+ *
246
+ * * `maximum` - The maximum valid value of `innodbLogBufferSize`.
247
+ *
248
+ * * `minimum` - The minimum valid value of `innodbLogBufferSize`.
249
+ *
250
+ * * `requiresRestart` - Whether changing the value `innodbLogBufferSize` requires the DB to restart.
251
+ *
252
+ * * `type` - The type of the value of `innodbLogBufferSize`.
253
+ *
254
+ * ## innodbOnlineAlterLogMaxSize
255
+ *
256
+ * The following arguments are supported in the `innodbOnlineAlterLogMaxSize` specification block:
257
+ *
258
+ * * `description` - The description of `innodbOnlineAlterLogMaxSize`.
259
+ *
260
+ * * `example` - An example of a valid value for `innodbOnlineAlterLogMaxSize`.
261
+ *
262
+ * * `maximum` - The maximum valid value of `innodbOnlineAlterLogMaxSize`.
263
+ *
264
+ * * `minimum` - The minimum valid value of `innodbOnlineAlterLogMaxSize`.
265
+ *
266
+ * * `requiresRestart` - Whether changing the value `innodbOnlineAlterLogMaxSize` requires the DB to restart.
267
+ *
268
+ * * `type` - The type of the value of `innodbOnlineAlterLogMaxSize`.
269
+ *
270
+ * ## innodbReadIoThreads
271
+ *
272
+ * The following arguments are supported in the `innodbReadIoThreads` specification block:
273
+ *
274
+ * * `description` - The description of `innodbReadIoThreads`.
275
+ *
276
+ * * `example` - An example of a valid value for `innodbReadIoThreads`.
277
+ *
278
+ * * `maximum` - The maximum valid value of `innodbReadIoThreads`.
279
+ *
280
+ * * `minimum` - The minimum valid value of `innodbReadIoThreads`.
281
+ *
282
+ * * `requiresRestart` - Whether changing the value `innodbReadIoThreads` requires the DB to restart.
283
+ *
284
+ * * `type` - The type of the value of `innodbReadIoThreads`.
285
+ *
286
+ * ## innodbRollbackOnTimeout
287
+ *
288
+ * The following arguments are supported in the `innodbRollbackOnTimeout` specification block:
289
+ *
290
+ * * `description` - The description of `innodbRollbackOnTimeout`.
291
+ *
292
+ * * `example` - An example of a valid value for `innodbRollbackOnTimeout`.
293
+ *
294
+ * * `requiresRestart` - Whether changing the value `innodbRollbackOnTimeout` requires the DB to restart.
295
+ *
296
+ * * `type` - The type of the value of `innodbRollbackOnTimeout`.
297
+ *
298
+ * ## innodbThreadConcurrency
299
+ *
300
+ * The following arguments are supported in the `innodbThreadConcurrency` specification block:
301
+ *
302
+ * * `description` - The description of `innodbThreadConcurrency`.
303
+ *
304
+ * * `example` - An example of a valid value for `innodbThreadConcurrency`.
305
+ *
306
+ * * `maximum` - The maximum valid value of `innodbThreadConcurrency`.
307
+ *
308
+ * * `minimum` - The minimum valid value of `innodbThreadConcurrency`.
309
+ *
310
+ * * `requiresRestart` - Whether changing the value `innodbThreadConcurrency` requires the DB to restart.
311
+ *
312
+ * * `type` - The type of the value of `innodbThreadConcurrency`.
313
+ *
314
+ * ## innodbWriteIoThreads
315
+ *
316
+ * The following arguments are supported in the `innodbWriteIoThreads` specification block:
317
+ *
318
+ * * `description` - The description of `innodbWriteIoThreads`.
319
+ *
320
+ * * `example` - An example of a valid value for `innodbWriteIoThreads`.
321
+ *
322
+ * * `maximum` - The maximum valid value of `innodbWriteIoThreads`.
323
+ *
324
+ * * `minimum` - The minimum valid value of `innodbWriteIoThreads`.
325
+ *
326
+ * * `requiresRestart` - Whether changing the value `innodbWriteIoThreads` requires the DB to restart.
327
+ *
328
+ * * `type` - The type of the value of `innodbWriteIoThreads`.
329
+ *
330
+ * ## interactiveTimeout
331
+ *
332
+ * The following arguments are supported in the `interactiveTimeout` specification block:
333
+ *
334
+ * * `description` - The description of `interactiveTimeout`.
335
+ *
336
+ * * `example` - An example of a valid value for `interactiveTimeout`.
337
+ *
338
+ * * `maximum` - The maximum valid value of `interactiveTimeout`.
339
+ *
340
+ * * `minimum` - The minimum valid value of `interactiveTimeout`.
341
+ *
342
+ * * `requiresRestart` - Whether changing the value `interactiveTimeout` requires the DB to restart.
343
+ *
344
+ * * `type` - The type of the value of `interactiveTimeout`.
345
+ *
346
+ * ## internalTmpMemStorageEngine
347
+ *
348
+ * The following arguments are supported in the `internalTmpMemStorageEngine` specification block:
349
+ *
350
+ * * `description` - The description of `internalTmpMemStorageEngine`.
351
+ *
352
+ * * `enum` - A list of valid enum values for `internalTmpMemStorageEngine`.
353
+ *
354
+ * * `example` - An example of a valid value for `internalTmpMemStorageEngine`.
355
+ *
356
+ * * `requiresRestart` - Whether changing the value `internalTmpMemStorageEngine` requires the DB to restart.
357
+ *
358
+ * * `type` - The type of the value of `internalTmpMemStorageEngine`.
359
+ *
360
+ * ## maxAllowedPacket
361
+ *
362
+ * The following arguments are supported in the `maxAllowedPacket` specification block:
363
+ *
364
+ * * `description` - The description of `maxAllowedPacket`.
365
+ *
366
+ * * `example` - An example of a valid value for `maxAllowedPacket`.
367
+ *
368
+ * * `maximum` - The maximum valid value of `maxAllowedPacket`.
369
+ *
370
+ * * `minimum` - The minimum valid value of `maxAllowedPacket`.
371
+ *
372
+ * * `requiresRestart` - Whether changing the value `maxAllowedPacket` requires the DB to restart.
373
+ *
374
+ * * `type` - The type of the value of `maxAllowedPacket`.
375
+ *
376
+ * ## maxHeapTableSize
377
+ *
378
+ * The following arguments are supported in the `maxHeapTableSize` specification block:
379
+ *
380
+ * * `description` - The description of `maxHeapTableSize`.
381
+ *
382
+ * * `example` - An example of a valid value for `maxHeapTableSize`.
383
+ *
384
+ * * `maximum` - The maximum valid value of `maxHeapTableSize`.
385
+ *
386
+ * * `minimum` - The minimum valid value of `maxHeapTableSize`.
387
+ *
388
+ * * `requiresRestart` - Whether changing the value `maxHeapTableSize` requires the DB to restart.
389
+ *
390
+ * * `type` - The type of the value of `maxHeapTableSize`.
391
+ *
392
+ * ## netBufferLength
393
+ *
394
+ * The following arguments are supported in the `netBufferLength` specification block:
395
+ *
396
+ * * `description` - The description of `netBufferLength`.
397
+ *
398
+ * * `example` - An example of a valid value for `netBufferLength`.
399
+ *
400
+ * * `maximum` - The maximum valid value of `netBufferLength`.
401
+ *
402
+ * * `minimum` - The minimum valid value of `netBufferLength`.
403
+ *
404
+ * * `requiresRestart` - Whether changing the value `netBufferLength` requires the DB to restart.
405
+ *
406
+ * * `type` - The type of the value of `netBufferLength`.
407
+ *
408
+ * ## netReadTimeout
409
+ *
410
+ * The following arguments are supported in the `netReadTimeout` specification block:
411
+ *
412
+ * * `description` - The description of `netReadTimeout`.
413
+ *
414
+ * * `example` - An example of a valid value for `netReadTimeout`.
415
+ *
416
+ * * `maximum` - The maximum valid value of `netReadTimeout`.
417
+ *
418
+ * * `minimum` - The minimum valid value of `netReadTimeout`.
419
+ *
420
+ * * `requiresRestart` - Whether changing the value `netReadTimeout` requires the DB to restart.
421
+ *
422
+ * * `type` - The type of the value of `netReadTimeout`.
423
+ *
424
+ * ## netWriteTimeout
425
+ *
426
+ * The following arguments are supported in the `netWriteTimeout` specification block:
427
+ *
428
+ * * `description` - The description of `netWriteTimeout`.
429
+ *
430
+ * * `example` - An example of a valid value for `netWriteTimeout`.
431
+ *
432
+ * * `maximum` - The maximum valid value of `netWriteTimeout`.
433
+ *
434
+ * * `minimum` - The minimum valid value of `netWriteTimeout`.
435
+ *
436
+ * * `requiresRestart` - Whether changing the value `netWriteTimeout` requires the DB to restart.
437
+ *
438
+ * * `type` - The type of the value of `netWriteTimeout`.
439
+ *
440
+ * ## sortBufferSize
441
+ *
442
+ * The following arguments are supported in the `sortBufferSize` specification block:
443
+ *
444
+ * * `description` - The description of `sortBufferSize`.
445
+ *
446
+ * * `example` - An example of a valid value for `sortBufferSize`.
447
+ *
448
+ * * `maximum` - The maximum valid value of `sortBufferSize`.
449
+ *
450
+ * * `minimum` - The minimum valid value of `sortBufferSize`.
451
+ *
452
+ * * `requiresRestart` - Whether changing the value `sortBufferSize` requires the DB to restart.
453
+ *
454
+ * * `type` - The type of the value of `sortBufferSize`.
455
+ *
456
+ * ## sqlMode
457
+ *
458
+ * The following arguments are supported in the `sqlMode` specification block:
459
+ *
460
+ * * `description` - The description of `sqlMode`.
461
+ *
462
+ * * `example` - An example of a valid value for `sqlMode`.
463
+ *
464
+ * * `maxLength` - The maximum valid length of `sqlMode`.
465
+ *
466
+ * * `pattern` - The pattern to match for `sqlMode`.
467
+ *
468
+ * * `requiresRestart` - Whether changing the value `sqlMode` requires the DB to restart.
469
+ *
470
+ * * `type` - The type of the value of `sqlMode`.
471
+ *
472
+ * ## sqlRequirePrimaryKey
473
+ *
474
+ * The following arguments are supported in the `sqlRequirePrimaryKey` specification block:
475
+ *
476
+ * * `description` - The description of `sqlRequirePrimaryKey`.
477
+ *
478
+ * * `example` - An example of a valid value for `sqlRequirePrimaryKey`.
479
+ *
480
+ * * `requiresRestart` - Whether changing the value `sqlRequirePrimaryKey` requires the DB to restart.
481
+ *
482
+ * * `type` - The type of the value of `sqlRequirePrimaryKey`.
483
+ *
484
+ * ## tmpTableSize
485
+ *
486
+ * The following arguments are supported in the `tmpTableSize` specification block:
487
+ *
488
+ * * `description` - The description of `tmpTableSize`.
489
+ *
490
+ * * `example` - An example of a valid value for `tmpTableSize`.
491
+ *
492
+ * * `maximum` - The maximum valid value of `tmpTableSize`.
493
+ *
494
+ * * `minimum` - The minimum valid value of `tmpTableSize`.
495
+ *
496
+ * * `requiresRestart` - Whether changing the value `tmpTableSize` requires the DB to restart.
497
+ *
498
+ * * `type` - The type of the value of `tmpTableSize`.
499
+ *
500
+ * ## waitTimeout
501
+ *
502
+ * The following arguments are supported in the `waitTimeout` specification block:
503
+ *
504
+ * * `description` - The description of `waitTimeout`.
505
+ *
506
+ * * `example` - An example of a valid value for `waitTimeout`.
507
+ *
508
+ * * `maximum` - The maximum valid value of `waitTimeout`.
509
+ *
510
+ * * `minimum` - The minimum valid value of `waitTimeout`.
511
+ *
512
+ * * `requiresRestart` - Whether changing the value `waitTimeout` requires the DB to restart.
513
+ *
514
+ * * `type` - The type of the value of `waitTimeout`.
515
+ */
516
+ export declare function getDatabaseMysqlConfig(opts?: pulumi.InvokeOptions): Promise<GetDatabaseMysqlConfigResult>;
517
+ /**
518
+ * A collection of values returned by getDatabaseMysqlConfig.
519
+ */
520
+ export interface GetDatabaseMysqlConfigResult {
521
+ readonly binlogRetentionPeriods: outputs.GetDatabaseMysqlConfigBinlogRetentionPeriod[];
522
+ readonly id: string;
523
+ readonly mysqls: outputs.GetDatabaseMysqlConfigMysql[];
524
+ }
525
+ /**
526
+ * Provides information about a Linode MySQL Database's Configuration Options.
527
+ * For more information, see the Linode APIv4 docs.
528
+ *
529
+ * ## Example Usage
530
+ *
531
+ * Get information about a MySQL database's configuration options:
532
+ *
533
+ * ```typescript
534
+ * import * as pulumi from "@pulumi/pulumi";
535
+ * import * as linode from "@pulumi/linode";
536
+ *
537
+ * const my_db_config = linode.getDatabaseMysqlConfig({});
538
+ * ```
539
+ *
540
+ * ## binlogRetentionPeriod
541
+ *
542
+ * The following arguments are supported in the `binlogRetentionPeriod` specification block:
543
+ *
544
+ * * `description` - The description of `binlogRetentionPeriod`.
545
+ *
546
+ * * `example` - An example of a valid value for `binlogRetentionPeriod`.
547
+ *
548
+ * * `maximum` - The maximum valid value of `binlogRetentionPeriod`.
549
+ *
550
+ * * `minimum` - The minimum valid value of `binlogRetentionPeriod`.
551
+ *
552
+ * * `requiresRestart` - Whether changing the value `binlogRetentionPeriod` requires the DB to restart.
553
+ *
554
+ * * `type` - The type of the value of `binlogRetentionPeriod`.
555
+ *
556
+ * ## mysql
557
+ *
558
+ * The following arguments are supported in the `mysql` specification block:
559
+ *
560
+ * * `connectTimeout` - The number of seconds that the mysqld server waits for a connect packet before responding with "Bad handshake".
561
+ *
562
+ * * `defaultTimeZone` - Default server time zone as an offset from UTC (from -12:00 to +12:00), a time zone name, or `SYSTEM` to use the MySQL server default.
563
+ *
564
+ * * `groupConcatMaxLen` - The maximum permitted result length in bytes for the `GROUP_CONCAT()` function.
565
+ *
566
+ * * `informationSchemaStatsExpiry` - The time, in seconds, before cached statistics expire.
567
+ *
568
+ * * `innodbChangeBufferMaxSize` - Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25.
569
+ *
570
+ * * `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.
571
+ *
572
+ * * `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.
573
+ *
574
+ * * `innodbFtServerStopwordTable` - This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables.
575
+ *
576
+ * * `innodbLockWaitTimeout` - The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
577
+ *
578
+ * * `innodbLogBufferSize` - The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
579
+ *
580
+ * * `innodbOnlineAlterLogMaxSize` - The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
581
+ *
582
+ * * `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.
583
+ *
584
+ * * `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.
585
+ *
586
+ * * `innodbThreadConcurrency` - Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
587
+ *
588
+ * * `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.
589
+ *
590
+ * * `interactiveTimeout` - The number of seconds the server waits for activity on an interactive connection before closing it.
591
+ *
592
+ * * `internalTmpMemStorageEngine` - The storage engine for in-memory internal temporary tables.
593
+ *
594
+ * * `maxAllowedPacket` - Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
595
+ *
596
+ * * `maxHeapTableSize` - Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
597
+ *
598
+ * * `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.
599
+ *
600
+ * * `netReadTimeout` - The number of seconds to wait for more data from a connection before aborting the read.
601
+ *
602
+ * * `netWriteTimeout` - The number of seconds to wait for a block to be written to a connection before aborting the write.
603
+ *
604
+ * * `sortBufferSize` - Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
605
+ *
606
+ * * `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.
607
+ *
608
+ * * `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.
609
+ *
610
+ * * `tmpTableSize` - Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
611
+ *
612
+ * * `waitTimeout` - The number of seconds the server waits for activity on a noninteractive connection before closing it.
613
+ *
614
+ * ## connectTimeout
615
+ *
616
+ * The following arguments are supported in the `connectTimeout` specification block:
617
+ *
618
+ * * `description` - The description of `connectTimeout`.
619
+ *
620
+ * * `example` - An example of a valid value for `connectTimeout`.
621
+ *
622
+ * * `maximum` - The maximum valid value of `connectTimeout`.
623
+ *
624
+ * * `minimum` - The minimum valid value of `connectTimeout`.
625
+ *
626
+ * * `requiresRestart` - Whether changing the value `connectTimeout` requires the DB to restart.
627
+ *
628
+ * * `type` - The type of the value of `connectTimeout`.
629
+ *
630
+ * ## defaultTimeZone
631
+ *
632
+ * The following arguments are supported in the `defaultTimeZone` specification block:
633
+ *
634
+ * * `description` - The description of `defaultTimeZone`.
635
+ *
636
+ * * `example` - An example of a valid value for `defaultTimeZone`.
637
+ *
638
+ * * `maxLength` - The maximum length of the `defaultTimeZone` value.
639
+ *
640
+ * * `minLength` - The minimum length of the `defaultTimeZone` value.
641
+ *
642
+ * * `pattern` - A regular expression that the `defaultTimeZone` value must match.
643
+ *
644
+ * * `requiresRestart` - Whether changing the value `defaultTimeZone` requires the DB to restart.
645
+ *
646
+ * * `type` - The type of the value of `defaultTimeZone`.
647
+ *
648
+ * ## groupConcatMaxLen
649
+ *
650
+ * The following arguments are supported in the `groupConcatMaxLen` specification block:
651
+ *
652
+ * * `description` - The description of `groupConcatMaxLen`.
653
+ *
654
+ * * `example` - An example of a valid value for `groupConcatMaxLen`.
655
+ *
656
+ * * `maximum` - The maximum valid value of `groupConcatMaxLen`.
657
+ *
658
+ * * `minimum` - The minimum valid value of `groupConcatMaxLen`.
659
+ *
660
+ * * `requiresRestart` - Whether changing the value `groupConcatMaxLen` requires the DB to restart.
661
+ *
662
+ * * `type` - The type of the value of `groupConcatMaxLen`.
663
+ *
664
+ * ## informationSchemaStatsExpiry
665
+ *
666
+ * The following arguments are supported in the `informationSchemaStatsExpiry` specification block:
667
+ *
668
+ * * `description` - The description of `informationSchemaStatsExpiry`.
669
+ *
670
+ * * `example` - An example of a valid value for `informationSchemaStatsExpiry`.
671
+ *
672
+ * * `maximum` - The maximum valid value of `informationSchemaStatsExpiry`.
673
+ *
674
+ * * `minimum` - The minimum valid value of `informationSchemaStatsExpiry`.
675
+ *
676
+ * * `requiresRestart` - Whether changing the value `informationSchemaStatsExpiry` requires the DB to restart.
677
+ *
678
+ * * `type` - The type of the value of `informationSchemaStatsExpiry`.
679
+ *
680
+ * ## innodbChangeBufferMaxSize
681
+ *
682
+ * The following arguments are supported in the `innodbChangeBufferMaxSize` specification block:
683
+ *
684
+ * * `description` - The description of `innodbChangeBufferMaxSize`.
685
+ *
686
+ * * `example` - An example of a valid value for `innodbChangeBufferMaxSize`.
687
+ *
688
+ * * `maximum` - The maximum valid value of `innodbChangeBufferMaxSize`.
689
+ *
690
+ * * `minimum` - The minimum valid value of `innodbChangeBufferMaxSize`.
691
+ *
692
+ * * `requiresRestart` - Whether changing the value `innodbChangeBufferMaxSize` requires the DB to restart.
693
+ *
694
+ * * `type` - The type of the value of `innodbChangeBufferMaxSize`.
695
+ *
696
+ * ## innodbFlushNeighbors
697
+ *
698
+ * The following arguments are supported in the `innodbFlushNeighbors` specification block:
699
+ *
700
+ * * `description` - The description of `innodbFlushNeighbors`.
701
+ *
702
+ * * `example` - An example of a valid value for `innodbFlushNeighbors`.
703
+ *
704
+ * * `maximum` - The maximum valid value of `innodbFlushNeighbors`.
705
+ *
706
+ * * `minimum` - The minimum valid value of `innodbFlushNeighbors`.
707
+ *
708
+ * * `requiresRestart` - Whether changing the value `innodbFlushNeighbors` requires the DB to restart.
709
+ *
710
+ * * `type` - The type of the value of `innodbFlushNeighbors`.
711
+ *
712
+ * ## innodbFtMinTokenSize
713
+ *
714
+ * The following arguments are supported in the `innodbFtMinTokenSize` specification block:
715
+ *
716
+ * * `description` - The description of `innodbFtMinTokenSize`.
717
+ *
718
+ * * `example` - An example of a valid value for `innodbFtMinTokenSize`.
719
+ *
720
+ * * `maximum` - The maximum valid value of `innodbFtMinTokenSize`.
721
+ *
722
+ * * `minimum` - The minimum valid value of `innodbFtMinTokenSize`.
723
+ *
724
+ * * `requiresRestart` - Whether changing the value `innodbFtMinTokenSize` requires the DB to restart.
725
+ *
726
+ * * `type` - The type of the value of `innodbFtMinTokenSize`.
727
+ *
728
+ * ## innodbFtServerStopwordTable
729
+ *
730
+ * The following arguments are supported in the `innodbFtServerStopwordTable` specification block:
731
+ *
732
+ * * `description` - The description of `innodbFtServerStopwordTable`.
733
+ *
734
+ * * `example` - An example of a valid value for `innodbFtServerStopwordTable`.
735
+ *
736
+ * * `maxLength` - The maximum length of the value for `innodbFtServerStopwordTable`.
737
+ *
738
+ * * `pattern` - A regex pattern that a value of `innodbFtServerStopwordTable` must match.
739
+ *
740
+ * * `requiresRestart` - Whether changing the value `innodbFtServerStopwordTable` requires the DB to restart.
741
+ *
742
+ * * `type` - The type of the value of `innodbFtServerStopwordTable`.
743
+ *
744
+ * ## innodbLockWaitTimeout
745
+ *
746
+ * The following arguments are supported in the `innodbLockWaitTimeout` specification block:
747
+ *
748
+ * * `description` - The description of `innodbLockWaitTimeout`.
749
+ *
750
+ * * `example` - An example of a valid value for `innodbLockWaitTimeout`.
751
+ *
752
+ * * `maximum` - The maximum valid value of `innodbLockWaitTimeout`.
753
+ *
754
+ * * `minimum` - The minimum valid value of `innodbLockWaitTimeout`.
755
+ *
756
+ * * `requiresRestart` - Whether changing the value `innodbLockWaitTimeout` requires the DB to restart.
757
+ *
758
+ * * `type` - The type of the value of `innodbLockWaitTimeout`.
759
+ *
760
+ * ## innodbLogBufferSize
761
+ *
762
+ * The following arguments are supported in the `innodbLogBufferSize` specification block:
763
+ *
764
+ * * `description` - The description of `innodbLogBufferSize`.
765
+ *
766
+ * * `example` - An example of a valid value for `innodbLogBufferSize`.
767
+ *
768
+ * * `maximum` - The maximum valid value of `innodbLogBufferSize`.
769
+ *
770
+ * * `minimum` - The minimum valid value of `innodbLogBufferSize`.
771
+ *
772
+ * * `requiresRestart` - Whether changing the value `innodbLogBufferSize` requires the DB to restart.
773
+ *
774
+ * * `type` - The type of the value of `innodbLogBufferSize`.
775
+ *
776
+ * ## innodbOnlineAlterLogMaxSize
777
+ *
778
+ * The following arguments are supported in the `innodbOnlineAlterLogMaxSize` specification block:
779
+ *
780
+ * * `description` - The description of `innodbOnlineAlterLogMaxSize`.
781
+ *
782
+ * * `example` - An example of a valid value for `innodbOnlineAlterLogMaxSize`.
783
+ *
784
+ * * `maximum` - The maximum valid value of `innodbOnlineAlterLogMaxSize`.
785
+ *
786
+ * * `minimum` - The minimum valid value of `innodbOnlineAlterLogMaxSize`.
787
+ *
788
+ * * `requiresRestart` - Whether changing the value `innodbOnlineAlterLogMaxSize` requires the DB to restart.
789
+ *
790
+ * * `type` - The type of the value of `innodbOnlineAlterLogMaxSize`.
791
+ *
792
+ * ## innodbReadIoThreads
793
+ *
794
+ * The following arguments are supported in the `innodbReadIoThreads` specification block:
795
+ *
796
+ * * `description` - The description of `innodbReadIoThreads`.
797
+ *
798
+ * * `example` - An example of a valid value for `innodbReadIoThreads`.
799
+ *
800
+ * * `maximum` - The maximum valid value of `innodbReadIoThreads`.
801
+ *
802
+ * * `minimum` - The minimum valid value of `innodbReadIoThreads`.
803
+ *
804
+ * * `requiresRestart` - Whether changing the value `innodbReadIoThreads` requires the DB to restart.
805
+ *
806
+ * * `type` - The type of the value of `innodbReadIoThreads`.
807
+ *
808
+ * ## innodbRollbackOnTimeout
809
+ *
810
+ * The following arguments are supported in the `innodbRollbackOnTimeout` specification block:
811
+ *
812
+ * * `description` - The description of `innodbRollbackOnTimeout`.
813
+ *
814
+ * * `example` - An example of a valid value for `innodbRollbackOnTimeout`.
815
+ *
816
+ * * `requiresRestart` - Whether changing the value `innodbRollbackOnTimeout` requires the DB to restart.
817
+ *
818
+ * * `type` - The type of the value of `innodbRollbackOnTimeout`.
819
+ *
820
+ * ## innodbThreadConcurrency
821
+ *
822
+ * The following arguments are supported in the `innodbThreadConcurrency` specification block:
823
+ *
824
+ * * `description` - The description of `innodbThreadConcurrency`.
825
+ *
826
+ * * `example` - An example of a valid value for `innodbThreadConcurrency`.
827
+ *
828
+ * * `maximum` - The maximum valid value of `innodbThreadConcurrency`.
829
+ *
830
+ * * `minimum` - The minimum valid value of `innodbThreadConcurrency`.
831
+ *
832
+ * * `requiresRestart` - Whether changing the value `innodbThreadConcurrency` requires the DB to restart.
833
+ *
834
+ * * `type` - The type of the value of `innodbThreadConcurrency`.
835
+ *
836
+ * ## innodbWriteIoThreads
837
+ *
838
+ * The following arguments are supported in the `innodbWriteIoThreads` specification block:
839
+ *
840
+ * * `description` - The description of `innodbWriteIoThreads`.
841
+ *
842
+ * * `example` - An example of a valid value for `innodbWriteIoThreads`.
843
+ *
844
+ * * `maximum` - The maximum valid value of `innodbWriteIoThreads`.
845
+ *
846
+ * * `minimum` - The minimum valid value of `innodbWriteIoThreads`.
847
+ *
848
+ * * `requiresRestart` - Whether changing the value `innodbWriteIoThreads` requires the DB to restart.
849
+ *
850
+ * * `type` - The type of the value of `innodbWriteIoThreads`.
851
+ *
852
+ * ## interactiveTimeout
853
+ *
854
+ * The following arguments are supported in the `interactiveTimeout` specification block:
855
+ *
856
+ * * `description` - The description of `interactiveTimeout`.
857
+ *
858
+ * * `example` - An example of a valid value for `interactiveTimeout`.
859
+ *
860
+ * * `maximum` - The maximum valid value of `interactiveTimeout`.
861
+ *
862
+ * * `minimum` - The minimum valid value of `interactiveTimeout`.
863
+ *
864
+ * * `requiresRestart` - Whether changing the value `interactiveTimeout` requires the DB to restart.
865
+ *
866
+ * * `type` - The type of the value of `interactiveTimeout`.
867
+ *
868
+ * ## internalTmpMemStorageEngine
869
+ *
870
+ * The following arguments are supported in the `internalTmpMemStorageEngine` specification block:
871
+ *
872
+ * * `description` - The description of `internalTmpMemStorageEngine`.
873
+ *
874
+ * * `enum` - A list of valid enum values for `internalTmpMemStorageEngine`.
875
+ *
876
+ * * `example` - An example of a valid value for `internalTmpMemStorageEngine`.
877
+ *
878
+ * * `requiresRestart` - Whether changing the value `internalTmpMemStorageEngine` requires the DB to restart.
879
+ *
880
+ * * `type` - The type of the value of `internalTmpMemStorageEngine`.
881
+ *
882
+ * ## maxAllowedPacket
883
+ *
884
+ * The following arguments are supported in the `maxAllowedPacket` specification block:
885
+ *
886
+ * * `description` - The description of `maxAllowedPacket`.
887
+ *
888
+ * * `example` - An example of a valid value for `maxAllowedPacket`.
889
+ *
890
+ * * `maximum` - The maximum valid value of `maxAllowedPacket`.
891
+ *
892
+ * * `minimum` - The minimum valid value of `maxAllowedPacket`.
893
+ *
894
+ * * `requiresRestart` - Whether changing the value `maxAllowedPacket` requires the DB to restart.
895
+ *
896
+ * * `type` - The type of the value of `maxAllowedPacket`.
897
+ *
898
+ * ## maxHeapTableSize
899
+ *
900
+ * The following arguments are supported in the `maxHeapTableSize` specification block:
901
+ *
902
+ * * `description` - The description of `maxHeapTableSize`.
903
+ *
904
+ * * `example` - An example of a valid value for `maxHeapTableSize`.
905
+ *
906
+ * * `maximum` - The maximum valid value of `maxHeapTableSize`.
907
+ *
908
+ * * `minimum` - The minimum valid value of `maxHeapTableSize`.
909
+ *
910
+ * * `requiresRestart` - Whether changing the value `maxHeapTableSize` requires the DB to restart.
911
+ *
912
+ * * `type` - The type of the value of `maxHeapTableSize`.
913
+ *
914
+ * ## netBufferLength
915
+ *
916
+ * The following arguments are supported in the `netBufferLength` specification block:
917
+ *
918
+ * * `description` - The description of `netBufferLength`.
919
+ *
920
+ * * `example` - An example of a valid value for `netBufferLength`.
921
+ *
922
+ * * `maximum` - The maximum valid value of `netBufferLength`.
923
+ *
924
+ * * `minimum` - The minimum valid value of `netBufferLength`.
925
+ *
926
+ * * `requiresRestart` - Whether changing the value `netBufferLength` requires the DB to restart.
927
+ *
928
+ * * `type` - The type of the value of `netBufferLength`.
929
+ *
930
+ * ## netReadTimeout
931
+ *
932
+ * The following arguments are supported in the `netReadTimeout` specification block:
933
+ *
934
+ * * `description` - The description of `netReadTimeout`.
935
+ *
936
+ * * `example` - An example of a valid value for `netReadTimeout`.
937
+ *
938
+ * * `maximum` - The maximum valid value of `netReadTimeout`.
939
+ *
940
+ * * `minimum` - The minimum valid value of `netReadTimeout`.
941
+ *
942
+ * * `requiresRestart` - Whether changing the value `netReadTimeout` requires the DB to restart.
943
+ *
944
+ * * `type` - The type of the value of `netReadTimeout`.
945
+ *
946
+ * ## netWriteTimeout
947
+ *
948
+ * The following arguments are supported in the `netWriteTimeout` specification block:
949
+ *
950
+ * * `description` - The description of `netWriteTimeout`.
951
+ *
952
+ * * `example` - An example of a valid value for `netWriteTimeout`.
953
+ *
954
+ * * `maximum` - The maximum valid value of `netWriteTimeout`.
955
+ *
956
+ * * `minimum` - The minimum valid value of `netWriteTimeout`.
957
+ *
958
+ * * `requiresRestart` - Whether changing the value `netWriteTimeout` requires the DB to restart.
959
+ *
960
+ * * `type` - The type of the value of `netWriteTimeout`.
961
+ *
962
+ * ## sortBufferSize
963
+ *
964
+ * The following arguments are supported in the `sortBufferSize` specification block:
965
+ *
966
+ * * `description` - The description of `sortBufferSize`.
967
+ *
968
+ * * `example` - An example of a valid value for `sortBufferSize`.
969
+ *
970
+ * * `maximum` - The maximum valid value of `sortBufferSize`.
971
+ *
972
+ * * `minimum` - The minimum valid value of `sortBufferSize`.
973
+ *
974
+ * * `requiresRestart` - Whether changing the value `sortBufferSize` requires the DB to restart.
975
+ *
976
+ * * `type` - The type of the value of `sortBufferSize`.
977
+ *
978
+ * ## sqlMode
979
+ *
980
+ * The following arguments are supported in the `sqlMode` specification block:
981
+ *
982
+ * * `description` - The description of `sqlMode`.
983
+ *
984
+ * * `example` - An example of a valid value for `sqlMode`.
985
+ *
986
+ * * `maxLength` - The maximum valid length of `sqlMode`.
987
+ *
988
+ * * `pattern` - The pattern to match for `sqlMode`.
989
+ *
990
+ * * `requiresRestart` - Whether changing the value `sqlMode` requires the DB to restart.
991
+ *
992
+ * * `type` - The type of the value of `sqlMode`.
993
+ *
994
+ * ## sqlRequirePrimaryKey
995
+ *
996
+ * The following arguments are supported in the `sqlRequirePrimaryKey` specification block:
997
+ *
998
+ * * `description` - The description of `sqlRequirePrimaryKey`.
999
+ *
1000
+ * * `example` - An example of a valid value for `sqlRequirePrimaryKey`.
1001
+ *
1002
+ * * `requiresRestart` - Whether changing the value `sqlRequirePrimaryKey` requires the DB to restart.
1003
+ *
1004
+ * * `type` - The type of the value of `sqlRequirePrimaryKey`.
1005
+ *
1006
+ * ## tmpTableSize
1007
+ *
1008
+ * The following arguments are supported in the `tmpTableSize` specification block:
1009
+ *
1010
+ * * `description` - The description of `tmpTableSize`.
1011
+ *
1012
+ * * `example` - An example of a valid value for `tmpTableSize`.
1013
+ *
1014
+ * * `maximum` - The maximum valid value of `tmpTableSize`.
1015
+ *
1016
+ * * `minimum` - The minimum valid value of `tmpTableSize`.
1017
+ *
1018
+ * * `requiresRestart` - Whether changing the value `tmpTableSize` requires the DB to restart.
1019
+ *
1020
+ * * `type` - The type of the value of `tmpTableSize`.
1021
+ *
1022
+ * ## waitTimeout
1023
+ *
1024
+ * The following arguments are supported in the `waitTimeout` specification block:
1025
+ *
1026
+ * * `description` - The description of `waitTimeout`.
1027
+ *
1028
+ * * `example` - An example of a valid value for `waitTimeout`.
1029
+ *
1030
+ * * `maximum` - The maximum valid value of `waitTimeout`.
1031
+ *
1032
+ * * `minimum` - The minimum valid value of `waitTimeout`.
1033
+ *
1034
+ * * `requiresRestart` - Whether changing the value `waitTimeout` requires the DB to restart.
1035
+ *
1036
+ * * `type` - The type of the value of `waitTimeout`.
1037
+ */
1038
+ export declare function getDatabaseMysqlConfigOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDatabaseMysqlConfigResult>;