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