1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
/// Options and structure of `MysqlConfig5_7` reflects MySQL 5.7 configuration file.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MysqlConfig57 {
/// Size of the InnoDB buffer pool used for caching table and index data.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_buffer_pool_size>) for details.
#[prost(message, optional, tag = "1")]
pub innodb_buffer_pool_size: ::core::option::Option<i64>,
/// The maximum permitted number of simultaneous client connections.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_max_connections>) for details.
#[prost(message, optional, tag = "2")]
pub max_connections: ::core::option::Option<i64>,
/// Time that it takes to process a query before it is considered slow.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_long_query_time>) for details.
#[prost(message, optional, tag = "3")]
pub long_query_time: ::core::option::Option<f64>,
/// Enable writing of general query log of MySQL.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_general_log>) for details.
#[prost(message, optional, tag = "4")]
pub general_log: ::core::option::Option<bool>,
/// Enable writing of audit log of MySQL.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/mysql-security-excerpt/5.7/en/audit-log-reference.html#audit-log-options-variables>) for details.
#[prost(message, optional, tag = "5")]
pub audit_log: ::core::option::Option<bool>,
/// Server SQL mode of MySQL.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html#sql-mode-setting>) for details.
#[prost(enumeration = "mysql_config5_7::SqlMode", repeated, tag = "6")]
pub sql_mode: ::prost::alloc::vec::Vec<i32>,
/// The maximum size in bytes of one packet.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_max_allowed_packet>) for details.
#[prost(message, optional, tag = "7")]
pub max_allowed_packet: ::core::option::Option<i64>,
/// Authentication plugin used in the managed MySQL cluster.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_default_authentication_plugin>) for details.
#[prost(enumeration = "mysql_config5_7::AuthPlugin", tag = "8")]
pub default_authentication_plugin: i32,
/// Transaction log flush behaviour.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_flush_log_at_trx_commit>) for details.
#[prost(message, optional, tag = "9")]
pub innodb_flush_log_at_trx_commit: ::core::option::Option<i64>,
/// Max time in seconds for a transaction to wait for a row lock.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_lock_wait_timeout>) for details.
#[prost(message, optional, tag = "10")]
pub innodb_lock_wait_timeout: ::core::option::Option<i64>,
/// Default transaction isolation level.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_transaction_isolation>) for details.
#[prost(enumeration = "mysql_config5_7::TransactionIsolation", tag = "11")]
pub transaction_isolation: i32,
/// Print information about deadlocks in error log.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_print_all_deadlocks>) for details.
#[prost(message, optional, tag = "12")]
pub innodb_print_all_deadlocks: ::core::option::Option<bool>,
/// The number of seconds to wait for more data from a connection before aborting the read.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_net_read_timeout>) for details.
#[prost(message, optional, tag = "13")]
pub net_read_timeout: ::core::option::Option<i64>,
/// The number of seconds to wait for a block to be written to a connection before aborting the write.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_net_write_timeout>) for details.
#[prost(message, optional, tag = "14")]
pub net_write_timeout: ::core::option::Option<i64>,
/// The maximum permitted result length in bytes for the GROUP_CONCAT() function.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_group_concat_max_len>) for details.
#[prost(message, optional, tag = "15")]
pub group_concat_max_len: ::core::option::Option<i64>,
/// The maximum size of internal in-memory temporary tables.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_tmp_table_size>) for details.
#[prost(message, optional, tag = "16")]
pub tmp_table_size: ::core::option::Option<i64>,
/// This variable sets the maximum size to which user-created MEMORY tables are permitted to grow.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_max_heap_table_size>) for details.
#[prost(message, optional, tag = "17")]
pub max_heap_table_size: ::core::option::Option<i64>,
/// The servers default time zone.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-options.html#option_mysqld_default-time-zone>) for details.
#[prost(string, tag = "18")]
pub default_time_zone: ::prost::alloc::string::String,
/// The servers default character set.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_character_set_server>) for details.
#[prost(string, tag = "19")]
pub character_set_server: ::prost::alloc::string::String,
/// The server default collation.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_collation_server>) for details.
#[prost(string, tag = "20")]
pub collation_server: ::prost::alloc::string::String,
/// Enables InnoDB adaptive hash index.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_adaptive_hash_index>) for details.
#[prost(message, optional, tag = "21")]
pub innodb_adaptive_hash_index: ::core::option::Option<bool>,
/// Enables the NUMA interleave memory policy for allocation of the InnoDB buffer pool.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_numa_interleave>) for details.
#[prost(message, optional, tag = "22")]
pub innodb_numa_interleave: ::core::option::Option<bool>,
/// The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_log_buffer_size>) for details.
#[prost(message, optional, tag = "23")]
pub innodb_log_buffer_size: ::core::option::Option<i64>,
/// The size in bytes of the single InnoDB Redo log file.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_log_file_size>) for details.
#[prost(message, optional, tag = "24")]
pub innodb_log_file_size: ::core::option::Option<i64>,
/// Limits IO available for InnoDB background tasks.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_io_capacity>) for details.
#[prost(message, optional, tag = "25")]
pub innodb_io_capacity: ::core::option::Option<i64>,
/// Limits IO available for InnoDB background tasks.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_io_capacity_max>) for details.
#[prost(message, optional, tag = "26")]
pub innodb_io_capacity_max: ::core::option::Option<i64>,
/// The number of I/O threads for read operations in InnoDB.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_read_io_threads>) for details.
#[prost(message, optional, tag = "27")]
pub innodb_read_io_threads: ::core::option::Option<i64>,
/// The number of I/O threads for write operations in InnoDB.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_write_io_threads>) for details.
#[prost(message, optional, tag = "28")]
pub innodb_write_io_threads: ::core::option::Option<i64>,
/// The number of background threads devoted to the InnoDB purge operation.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_purge_threads>) for details.
#[prost(message, optional, tag = "29")]
pub innodb_purge_threads: ::core::option::Option<i64>,
/// Defines the maximum number of threads permitted inside of InnoDB.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_thread_concurrency>) for details.
#[prost(message, optional, tag = "30")]
pub innodb_thread_concurrency: ::core::option::Option<i64>,
/// Limits the max size of InnoDB temp tablespace.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_temp_data_file_path>) for details.
#[prost(message, optional, tag = "31")]
pub innodb_temp_data_file_max_size: ::core::option::Option<i64>,
/// A number of threads the server should cache for reuse.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_thread_cache_size>) for details.
#[prost(message, optional, tag = "32")]
pub thread_cache_size: ::core::option::Option<i64>,
/// The stack size for each thread. The default is large enough for normal operation.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_thread_stack>) for details.
#[prost(message, optional, tag = "33")]
pub thread_stack: ::core::option::Option<i64>,
/// The minimum size of the buffer that is used for plain index scans, range index scans, and joins that do not use indexes and thus perform full table scans.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_join_buffer_size>) for details.
#[prost(message, optional, tag = "34")]
pub join_buffer_size: ::core::option::Option<i64>,
/// Each session that must perform a sort allocates a buffer of this size.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_sort_buffer_size>) for details.
#[prost(message, optional, tag = "35")]
pub sort_buffer_size: ::core::option::Option<i64>,
/// The number of table definitions that can be stored in the definition cache.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_table_definition_cache>) for details.
#[prost(message, optional, tag = "36")]
pub table_definition_cache: ::core::option::Option<i64>,
/// The number of open tables for all threads.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_table_open_cache>) for details.
#[prost(message, optional, tag = "37")]
pub table_open_cache: ::core::option::Option<i64>,
/// The number of open tables cache instances.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_table_open_cache_instances>) for details.
#[prost(message, optional, tag = "38")]
pub table_open_cache_instances: ::core::option::Option<i64>,
/// Determines whether the server enables certain nonstandard behaviors for default values and NULL-value handling in TIMESTAMP columns.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_explicit_defaults_for_timestamp>) for details.
#[prost(message, optional, tag = "39")]
pub explicit_defaults_for_timestamp: ::core::option::Option<bool>,
/// Can be used to control the operation of AUTO_INCREMENT columns.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/replication-options-source.html#sysvar_auto_increment_increment>) for details.
#[prost(message, optional, tag = "40")]
pub auto_increment_increment: ::core::option::Option<i64>,
/// Can be used to control the operation of AUTO_INCREMENT columns.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/replication-options-source.html#sysvar_auto_increment_offset>) for details.
#[prost(message, optional, tag = "41")]
pub auto_increment_offset: ::core::option::Option<i64>,
/// Controls how often the MySQL server synchronizes the binary log to disk.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/replication-options-binary-log.html#sysvar_sync_binlog>) for details.
#[prost(message, optional, tag = "42")]
pub sync_binlog: ::core::option::Option<i64>,
/// The size of the cache to hold changes to the binary log during a transaction.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/replication-options-binary-log.html#sysvar_binlog_cache_size>) for details.
#[prost(message, optional, tag = "43")]
pub binlog_cache_size: ::core::option::Option<i64>,
/// Controls how many microseconds the binary log commit waits before synchronizing the binary log file to disk.
///
/// See [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/replication-options-binary-log.html#sysvar_binlog_group_commit_sync_delay>) for details.
#[prost(message, optional, tag = "44")]
pub binlog_group_commit_sync_delay: ::core::option::Option<i64>,
/// For MySQL row-based replication, this variable determines how row images are written to the binary log.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/replication-options-binary-log.html#sysvar_binlog_row_image>) for details.
#[prost(enumeration = "mysql_config5_7::BinlogRowImage", tag = "45")]
pub binlog_row_image: i32,
/// When enabled, it causes the server to write informational log events such as row query log events into its binary log.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/replication-options-binary-log.html#sysvar_binlog_rows_query_log_events>) for details.
#[prost(message, optional, tag = "46")]
pub binlog_rows_query_log_events: ::core::option::Option<bool>,
/// The number of replica acknowledgments the source must receive per transaction before proceeding.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/replication-options-source.html#sysvar_rpl_semi_sync_master_wait_for_slave_count>) for details.
#[prost(message, optional, tag = "47")]
pub rpl_semi_sync_master_wait_for_slave_count: ::core::option::Option<i64>,
/// When using a multi-threaded replica, this variable specifies the policy used to decide which transactions are allowed to execute in parallel on the replica.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/replication-options-replica.html#sysvar_slave_parallel_type>) for details.
#[prost(enumeration = "mysql_config5_7::SlaveParallelType", tag = "48")]
pub slave_parallel_type: i32,
/// Sets the number of applier threads for executing replication transactions in parallel.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/replication-options-replica.html#sysvar_slave_parallel_workers>) for details.
#[prost(message, optional, tag = "49")]
pub slave_parallel_workers: ::core::option::Option<i64>,
/// The size of the binary log to hold.
#[prost(message, optional, tag = "50")]
pub mdb_preserve_binlog_bytes: ::core::option::Option<i64>,
/// The number of seconds the server waits for activity on an interactive connection before closing it.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_interactive_timeout>) for details.
#[prost(message, optional, tag = "51")]
pub interactive_timeout: ::core::option::Option<i64>,
/// The number of seconds the server waits for activity on a noninteractive connection before closing it.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_wait_timeout>) for details.
#[prost(message, optional, tag = "52")]
pub wait_timeout: ::core::option::Option<i64>,
/// Replication lag threshold (seconds) which will switch MySQL to 'offline_mode = ON' to prevent users from reading stale data.
#[prost(message, optional, tag = "53")]
pub mdb_offline_mode_enable_lag: ::core::option::Option<i64>,
/// Replication lag threshold (seconds) which will switch MySQL to 'offline_mode = OFF'.
/// Should be less than mdb_offline_mode_enable_lag value.
#[prost(message, optional, tag = "54")]
pub mdb_offline_mode_disable_lag: ::core::option::Option<i64>,
/// The limit on memory consumption for the range optimizer.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_range_optimizer_max_mem_size>) for details.
#[prost(message, optional, tag = "55")]
pub range_optimizer_max_mem_size: ::core::option::Option<i64>,
/// Manages slow query log.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_slow_query_log>) for details.
#[prost(message, optional, tag = "56")]
pub slow_query_log: ::core::option::Option<bool>,
/// Query execution time, after which query to be logged unconditionally, that is, `log_slow_rate_limit`` will not apply to it.
///
/// See [Percona documentation](<https://www.percona.com/doc/percona-server/8.0/diagnostics/slow_extended.html#slow_query_log_always_write_time>) for details.
#[prost(message, optional, tag = "57")]
pub slow_query_log_always_write_time: ::core::option::Option<f64>,
/// Specifies slow log granularity for `log_slow_rate_limit` values QUERY or SESSION.
///
/// See [Percona documentation](<https://www.percona.com/doc/percona-server/8.0/diagnostics/slow_extended.html#log_slow_rate_type>) for details.
#[prost(enumeration = "mysql_config5_7::LogSlowRateType", tag = "58")]
pub log_slow_rate_type: i32,
/// Specifies what fraction of session/query should be logged. Logging is enabled for every nth session/query.
///
/// See [Percona documentation](<https://www.percona.com/doc/percona-server/8.0/diagnostics/slow_extended.html#log_slow_rate_limit>) for details.
#[prost(message, optional, tag = "59")]
pub log_slow_rate_limit: ::core::option::Option<i64>,
/// When TRUE, statements executed by stored procedures are logged to the slow log.
///
/// See [Percona documentation](<https://www.percona.com/doc/percona-server/8.0/diagnostics/slow_extended.html#log_slow_sp_statements>) for details.
#[prost(message, optional, tag = "60")]
pub log_slow_sp_statements: ::core::option::Option<bool>,
/// Filters the slow log by the query's execution plan.
///
/// See [Percona documentation](<https://www.percona.com/doc/percona-server/8.0/diagnostics/slow_extended.html#log_slow_filter>) for details.
#[prost(enumeration = "mysql_config5_7::LogSlowFilterType", repeated, tag = "61")]
pub log_slow_filter: ::prost::alloc::vec::Vec<i32>,
/// Replication lag threshold (seconds) which allows replica to be promoted to master while executing "switchover from".
/// Should be less than mdb_offline_mode_disable_lag.
#[prost(message, optional, tag = "62")]
pub mdb_priority_choice_max_lag: ::core::option::Option<i64>,
/// Specifies the page size for InnoDB tablespaces.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_page_size>).
#[prost(message, optional, tag = "63")]
pub innodb_page_size: ::core::option::Option<i64>,
/// The limit in bytes on the size of the temporary log files used during online DDL operations
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_online_alter_log_max_size>).
#[prost(message, optional, tag = "64")]
pub innodb_online_alter_log_max_size: ::core::option::Option<i64>,
/// Minimum length of words that are stored in an InnoDB FULLTEXT index
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_ft_min_token_size>).
#[prost(message, optional, tag = "65")]
pub innodb_ft_min_token_size: ::core::option::Option<i64>,
/// Maximum length of words that are stored in an InnoDB FULLTEXT index
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_ft_max_token_size>).
#[prost(message, optional, tag = "66")]
pub innodb_ft_max_token_size: ::core::option::Option<i64>,
/// Table names storage and comparison strategy
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_lower_case_table_names>).
#[prost(message, optional, tag = "67")]
pub lower_case_table_names: ::core::option::Option<i64>,
/// Manages MySQL 5.6 compatibility
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_show_compatibility_56>).
#[prost(message, optional, tag = "68")]
pub show_compatibility_56: ::core::option::Option<bool>,
/// The number of times that any given stored procedure may be called recursively.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_max_sp_recursion_depth>).
#[prost(message, optional, tag = "69")]
pub max_sp_recursion_depth: ::core::option::Option<i64>,
/// The level of zlib compression to use for InnoDB compressed tables and indexes.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_compression_level>).
#[prost(message, optional, tag = "70")]
pub innodb_compression_level: ::core::option::Option<i64>,
/// Specifies how the source mysqld generates the dependency information that it writes in the binary log to help replicas determine which transactions can be executed in parallel.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/replication-options-binary-log.html#sysvar_binlog_transaction_dependency_tracking>).
#[prost(
enumeration = "mysql_config5_7::BinlogTransactionDependencyTracking",
tag = "71"
)]
pub binlog_transaction_dependency_tracking: i32,
/// Config specific will be all changes to a table take effect immediately or you must use COMMIT to accept a transaction or ROLLBACK to cancel it.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_autocommit>).
#[prost(message, optional, tag = "72")]
pub autocommit: ::core::option::Option<bool>,
/// Enables or disables periodic output for the standard InnoDB Monitor.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_status_output>).
#[prost(message, optional, tag = "73")]
pub innodb_status_output: ::core::option::Option<bool>,
/// When innodb_strict_mode is enabled, InnoDB returns errors rather than warnings when checking for invalid or incompatible table options.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_strict_mode>).
#[prost(message, optional, tag = "74")]
pub innodb_strict_mode: ::core::option::Option<bool>,
/// Makes InnoDB to write information about all lock wait timeout errors into the log file.
///
/// For details, see [Percona documentation for the variable](<https://docs.percona.com/percona-server/5.7/diagnostics/innodb_show_status.html?highlight=innodb_print_lock_wait_timeout_info>).
#[prost(message, optional, tag = "75")]
pub innodb_print_lock_wait_timeout_info: ::core::option::Option<bool>,
/// System variable specifies the verbosity for handling events intended for the error log
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_log_error_verbosity>).
#[prost(message, optional, tag = "76")]
pub log_error_verbosity: ::core::option::Option<i64>,
/// The maximum number of bytes of memory reserved per session for computation of normalized statement digests.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_max_digest_length>).
#[prost(message, optional, tag = "77")]
pub max_digest_length: ::core::option::Option<i64>,
/// Do not cache results that are larger than this number of bytes.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_query_cache_limit>).
#[prost(message, optional, tag = "78")]
pub query_cache_limit: ::core::option::Option<i64>,
/// The amount of memory allocated for caching query results.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_query_cache_size>).
#[prost(message, optional, tag = "79")]
pub query_cache_size: ::core::option::Option<i64>,
/// Set the query cache type.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_query_cache_type>).
#[prost(message, optional, tag = "80")]
pub query_cache_type: ::core::option::Option<i64>,
/// // This variable specifies the timeout in seconds for attempts to acquire metadata locks
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_lock_wait_timeout>).
#[prost(message, optional, tag = "81")]
pub lock_wait_timeout: ::core::option::Option<i64>,
/// This variable limits the total number of prepared statements in the server.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_max_prepared_stmt_count>).
#[prost(message, optional, tag = "82")]
pub max_prepared_stmt_count: ::core::option::Option<i64>,
/// The system variable enables control over optimizer behavior.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_optimizer_switch>)
/// <https://dev.mysql.com/doc/refman/5.7/en/switchable-optimizations.html>
#[prost(string, tag = "83")]
pub optimizer_switch: ::prost::alloc::string::String,
/// The maximum depth of search performed by the query optimizer
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html>)
#[prost(message, optional, tag = "84")]
pub optimizer_search_depth: ::core::option::Option<i64>,
/// Enables and disables collection of query times
///
/// For details, see [Percona documentation for the variable](<https://docs.percona.com/percona-server/5.7/diagnostics/response_time_distribution.html#query_response_time_stats>).
#[prost(message, optional, tag = "85")]
pub query_response_time_stats: ::core::option::Option<bool>,
/// Enables or disables collection of statistics
///
/// For details, see [Percona documentation for the variable](<https://docs.percona.com/percona-server/5.7/diagnostics/user_stats.html#userstat>).
#[prost(message, optional, tag = "86")]
pub userstat: ::core::option::Option<bool>,
/// The execution timeout for SELECT statements, in milliseconds. If the value is 0, timeouts are not enabled.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_max_execution_time>)
#[prost(message, optional, tag = "87")]
pub max_execution_time: ::core::option::Option<i64>,
/// The policy controlling how the audit log plugin writes events to its log file
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/audit-log-reference.html#sysvar_audit_log_policy>)
#[prost(enumeration = "mysql_config5_7::AuditLogPolicy", tag = "88")]
pub audit_log_policy: i32,
/// A parameter that influences the algorithms and heuristics for the flush operation for the InnoDB buffer pool
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_lru_scan_depth>)
#[prost(message, optional, tag = "89")]
pub innodb_lru_scan_depth: ::core::option::Option<i64>,
/// Force ssl on all hosts (require_secure_transport)
#[prost(message, optional, tag = "90")]
pub mdb_force_ssl: ::core::option::Option<bool>,
/// An optimization for change buffering
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_change_buffering>).
#[prost(enumeration = "mysql_config5_7::InnodbChangeBuffering", tag = "91")]
pub innodb_change_buffering: i32,
}
/// Nested message and enum types in `MysqlConfig5_7`.
pub mod mysql_config5_7 {
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum SqlMode {
SqlmodeUnspecified = 0,
AllowInvalidDates = 1,
AnsiQuotes = 2,
ErrorForDivisionByZero = 3,
HighNotPrecedence = 4,
IgnoreSpace = 5,
NoAutoValueOnZero = 6,
NoBackslashEscapes = 7,
NoEngineSubstitution = 8,
NoUnsignedSubtraction = 9,
NoZeroDate = 10,
NoZeroInDate = 11,
NoFieldOptions = 12,
NoKeyOptions = 13,
NoTableOptions = 14,
OnlyFullGroupBy = 15,
PadCharToFullLength = 16,
PipesAsConcat = 17,
RealAsFloat = 18,
StrictAllTables = 19,
StrictTransTables = 20,
Ansi = 21,
Traditional = 22,
Db2 = 23,
Maxdb = 24,
Mssql = 25,
Mysql323 = 26,
Mysql40 = 27,
Oracle = 28,
Postgresql = 29,
NoAutoCreateUser = 30,
NoDirInCreate = 31,
}
impl SqlMode {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
SqlMode::SqlmodeUnspecified => "SQLMODE_UNSPECIFIED",
SqlMode::AllowInvalidDates => "ALLOW_INVALID_DATES",
SqlMode::AnsiQuotes => "ANSI_QUOTES",
SqlMode::ErrorForDivisionByZero => "ERROR_FOR_DIVISION_BY_ZERO",
SqlMode::HighNotPrecedence => "HIGH_NOT_PRECEDENCE",
SqlMode::IgnoreSpace => "IGNORE_SPACE",
SqlMode::NoAutoValueOnZero => "NO_AUTO_VALUE_ON_ZERO",
SqlMode::NoBackslashEscapes => "NO_BACKSLASH_ESCAPES",
SqlMode::NoEngineSubstitution => "NO_ENGINE_SUBSTITUTION",
SqlMode::NoUnsignedSubtraction => "NO_UNSIGNED_SUBTRACTION",
SqlMode::NoZeroDate => "NO_ZERO_DATE",
SqlMode::NoZeroInDate => "NO_ZERO_IN_DATE",
SqlMode::NoFieldOptions => "NO_FIELD_OPTIONS",
SqlMode::NoKeyOptions => "NO_KEY_OPTIONS",
SqlMode::NoTableOptions => "NO_TABLE_OPTIONS",
SqlMode::OnlyFullGroupBy => "ONLY_FULL_GROUP_BY",
SqlMode::PadCharToFullLength => "PAD_CHAR_TO_FULL_LENGTH",
SqlMode::PipesAsConcat => "PIPES_AS_CONCAT",
SqlMode::RealAsFloat => "REAL_AS_FLOAT",
SqlMode::StrictAllTables => "STRICT_ALL_TABLES",
SqlMode::StrictTransTables => "STRICT_TRANS_TABLES",
SqlMode::Ansi => "ANSI",
SqlMode::Traditional => "TRADITIONAL",
SqlMode::Db2 => "DB2",
SqlMode::Maxdb => "MAXDB",
SqlMode::Mssql => "MSSQL",
SqlMode::Mysql323 => "MYSQL323",
SqlMode::Mysql40 => "MYSQL40",
SqlMode::Oracle => "ORACLE",
SqlMode::Postgresql => "POSTGRESQL",
SqlMode::NoAutoCreateUser => "NO_AUTO_CREATE_USER",
SqlMode::NoDirInCreate => "NO_DIR_IN_CREATE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"SQLMODE_UNSPECIFIED" => Some(Self::SqlmodeUnspecified),
"ALLOW_INVALID_DATES" => Some(Self::AllowInvalidDates),
"ANSI_QUOTES" => Some(Self::AnsiQuotes),
"ERROR_FOR_DIVISION_BY_ZERO" => Some(Self::ErrorForDivisionByZero),
"HIGH_NOT_PRECEDENCE" => Some(Self::HighNotPrecedence),
"IGNORE_SPACE" => Some(Self::IgnoreSpace),
"NO_AUTO_VALUE_ON_ZERO" => Some(Self::NoAutoValueOnZero),
"NO_BACKSLASH_ESCAPES" => Some(Self::NoBackslashEscapes),
"NO_ENGINE_SUBSTITUTION" => Some(Self::NoEngineSubstitution),
"NO_UNSIGNED_SUBTRACTION" => Some(Self::NoUnsignedSubtraction),
"NO_ZERO_DATE" => Some(Self::NoZeroDate),
"NO_ZERO_IN_DATE" => Some(Self::NoZeroInDate),
"NO_FIELD_OPTIONS" => Some(Self::NoFieldOptions),
"NO_KEY_OPTIONS" => Some(Self::NoKeyOptions),
"NO_TABLE_OPTIONS" => Some(Self::NoTableOptions),
"ONLY_FULL_GROUP_BY" => Some(Self::OnlyFullGroupBy),
"PAD_CHAR_TO_FULL_LENGTH" => Some(Self::PadCharToFullLength),
"PIPES_AS_CONCAT" => Some(Self::PipesAsConcat),
"REAL_AS_FLOAT" => Some(Self::RealAsFloat),
"STRICT_ALL_TABLES" => Some(Self::StrictAllTables),
"STRICT_TRANS_TABLES" => Some(Self::StrictTransTables),
"ANSI" => Some(Self::Ansi),
"TRADITIONAL" => Some(Self::Traditional),
"DB2" => Some(Self::Db2),
"MAXDB" => Some(Self::Maxdb),
"MSSQL" => Some(Self::Mssql),
"MYSQL323" => Some(Self::Mysql323),
"MYSQL40" => Some(Self::Mysql40),
"ORACLE" => Some(Self::Oracle),
"POSTGRESQL" => Some(Self::Postgresql),
"NO_AUTO_CREATE_USER" => Some(Self::NoAutoCreateUser),
"NO_DIR_IN_CREATE" => Some(Self::NoDirInCreate),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum AuthPlugin {
Unspecified = 0,
/// Using [Native Pluggable Authentication](<https://dev.mysql.com/doc/refman/5.7/en/native-pluggable-authentication.html>).
MysqlNativePassword = 1,
CachingSha2Password = 2,
/// Using [SHA-256 Pluggable Authentication](<https://dev.mysql.com/doc/refman/5.7/en/sha256-pluggable-authentication.html>).
Sha256Password = 3,
/// Use [MYSQL_NO_LOGIN Pluggable Authentication](<https://dev.mysql.com/doc/refman/5.7/en/no-login-pluggable-authentication.html>).
MysqlNoLogin = 4,
/// Use [IAM Pluggable Authentication](<https://yandex.cloud/en/docs/iam/concepts/authorization/>).
MdbIamproxyAuth = 5,
}
impl AuthPlugin {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
AuthPlugin::Unspecified => "AUTH_PLUGIN_UNSPECIFIED",
AuthPlugin::MysqlNativePassword => "MYSQL_NATIVE_PASSWORD",
AuthPlugin::CachingSha2Password => "CACHING_SHA2_PASSWORD",
AuthPlugin::Sha256Password => "SHA256_PASSWORD",
AuthPlugin::MysqlNoLogin => "MYSQL_NO_LOGIN",
AuthPlugin::MdbIamproxyAuth => "MDB_IAMPROXY_AUTH",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"AUTH_PLUGIN_UNSPECIFIED" => Some(Self::Unspecified),
"MYSQL_NATIVE_PASSWORD" => Some(Self::MysqlNativePassword),
"CACHING_SHA2_PASSWORD" => Some(Self::CachingSha2Password),
"SHA256_PASSWORD" => Some(Self::Sha256Password),
"MYSQL_NO_LOGIN" => Some(Self::MysqlNoLogin),
"MDB_IAMPROXY_AUTH" => Some(Self::MdbIamproxyAuth),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum TransactionIsolation {
Unspecified = 0,
ReadCommitted = 1,
RepeatableRead = 2,
Serializable = 3,
}
impl TransactionIsolation {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
TransactionIsolation::Unspecified => "TRANSACTION_ISOLATION_UNSPECIFIED",
TransactionIsolation::ReadCommitted => "READ_COMMITTED",
TransactionIsolation::RepeatableRead => "REPEATABLE_READ",
TransactionIsolation::Serializable => "SERIALIZABLE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"TRANSACTION_ISOLATION_UNSPECIFIED" => Some(Self::Unspecified),
"READ_COMMITTED" => Some(Self::ReadCommitted),
"REPEATABLE_READ" => Some(Self::RepeatableRead),
"SERIALIZABLE" => Some(Self::Serializable),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum BinlogRowImage {
Unspecified = 0,
Full = 1,
Minimal = 2,
Noblob = 3,
}
impl BinlogRowImage {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
BinlogRowImage::Unspecified => "BINLOG_ROW_IMAGE_UNSPECIFIED",
BinlogRowImage::Full => "FULL",
BinlogRowImage::Minimal => "MINIMAL",
BinlogRowImage::Noblob => "NOBLOB",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"BINLOG_ROW_IMAGE_UNSPECIFIED" => Some(Self::Unspecified),
"FULL" => Some(Self::Full),
"MINIMAL" => Some(Self::Minimal),
"NOBLOB" => Some(Self::Noblob),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum SlaveParallelType {
Unspecified = 0,
Database = 1,
LogicalClock = 2,
}
impl SlaveParallelType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
SlaveParallelType::Unspecified => "SLAVE_PARALLEL_TYPE_UNSPECIFIED",
SlaveParallelType::Database => "DATABASE",
SlaveParallelType::LogicalClock => "LOGICAL_CLOCK",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"SLAVE_PARALLEL_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"DATABASE" => Some(Self::Database),
"LOGICAL_CLOCK" => Some(Self::LogicalClock),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum LogSlowRateType {
Unspecified = 0,
Session = 1,
Query = 2,
}
impl LogSlowRateType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
LogSlowRateType::Unspecified => "LOG_SLOW_RATE_TYPE_UNSPECIFIED",
LogSlowRateType::Session => "SESSION",
LogSlowRateType::Query => "QUERY",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"LOG_SLOW_RATE_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"SESSION" => Some(Self::Session),
"QUERY" => Some(Self::Query),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum LogSlowFilterType {
Unspecified = 0,
FullScan = 1,
FullJoin = 2,
TmpTable = 3,
TmpTableOnDisk = 4,
Filesort = 5,
FilesortOnDisk = 6,
}
impl LogSlowFilterType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
LogSlowFilterType::Unspecified => "LOG_SLOW_FILTER_TYPE_UNSPECIFIED",
LogSlowFilterType::FullScan => "FULL_SCAN",
LogSlowFilterType::FullJoin => "FULL_JOIN",
LogSlowFilterType::TmpTable => "TMP_TABLE",
LogSlowFilterType::TmpTableOnDisk => "TMP_TABLE_ON_DISK",
LogSlowFilterType::Filesort => "FILESORT",
LogSlowFilterType::FilesortOnDisk => "FILESORT_ON_DISK",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"LOG_SLOW_FILTER_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"FULL_SCAN" => Some(Self::FullScan),
"FULL_JOIN" => Some(Self::FullJoin),
"TMP_TABLE" => Some(Self::TmpTable),
"TMP_TABLE_ON_DISK" => Some(Self::TmpTableOnDisk),
"FILESORT" => Some(Self::Filesort),
"FILESORT_ON_DISK" => Some(Self::FilesortOnDisk),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum BinlogTransactionDependencyTracking {
Unspecified = 0,
CommitOrder = 1,
Writeset = 2,
WritesetSession = 3,
}
impl BinlogTransactionDependencyTracking {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
BinlogTransactionDependencyTracking::Unspecified => {
"BINLOG_TRANSACTION_DEPENDENCY_TRACKING_UNSPECIFIED"
}
BinlogTransactionDependencyTracking::CommitOrder => "COMMIT_ORDER",
BinlogTransactionDependencyTracking::Writeset => "WRITESET",
BinlogTransactionDependencyTracking::WritesetSession => {
"WRITESET_SESSION"
}
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"BINLOG_TRANSACTION_DEPENDENCY_TRACKING_UNSPECIFIED" => {
Some(Self::Unspecified)
}
"COMMIT_ORDER" => Some(Self::CommitOrder),
"WRITESET" => Some(Self::Writeset),
"WRITESET_SESSION" => Some(Self::WritesetSession),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum AuditLogPolicy {
Unspecified = 0,
All = 1,
Logins = 2,
Queries = 3,
None = 4,
}
impl AuditLogPolicy {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
AuditLogPolicy::Unspecified => "AUDIT_LOG_POLICY_UNSPECIFIED",
AuditLogPolicy::All => "ALL",
AuditLogPolicy::Logins => "LOGINS",
AuditLogPolicy::Queries => "QUERIES",
AuditLogPolicy::None => "NONE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"AUDIT_LOG_POLICY_UNSPECIFIED" => Some(Self::Unspecified),
"ALL" => Some(Self::All),
"LOGINS" => Some(Self::Logins),
"QUERIES" => Some(Self::Queries),
"NONE" => Some(Self::None),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum InnodbChangeBuffering {
Unspecified = 0,
None = 1,
Inserts = 2,
Deletes = 3,
Changes = 4,
Purges = 5,
All = 6,
}
impl InnodbChangeBuffering {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
InnodbChangeBuffering::Unspecified => {
"INNODB_CHANGE_BUFFERING_UNSPECIFIED"
}
InnodbChangeBuffering::None => "INNODB_CHANGE_BUFFERING_NONE",
InnodbChangeBuffering::Inserts => "INNODB_CHANGE_BUFFERING_INSERTS",
InnodbChangeBuffering::Deletes => "INNODB_CHANGE_BUFFERING_DELETES",
InnodbChangeBuffering::Changes => "INNODB_CHANGE_BUFFERING_CHANGES",
InnodbChangeBuffering::Purges => "INNODB_CHANGE_BUFFERING_PURGES",
InnodbChangeBuffering::All => "INNODB_CHANGE_BUFFERING_ALL",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"INNODB_CHANGE_BUFFERING_UNSPECIFIED" => Some(Self::Unspecified),
"INNODB_CHANGE_BUFFERING_NONE" => Some(Self::None),
"INNODB_CHANGE_BUFFERING_INSERTS" => Some(Self::Inserts),
"INNODB_CHANGE_BUFFERING_DELETES" => Some(Self::Deletes),
"INNODB_CHANGE_BUFFERING_CHANGES" => Some(Self::Changes),
"INNODB_CHANGE_BUFFERING_PURGES" => Some(Self::Purges),
"INNODB_CHANGE_BUFFERING_ALL" => Some(Self::All),
_ => None,
}
}
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MysqlConfigSet57 {
/// Effective settings for a MySQL 5.7 cluster (a combination of settings defined
/// in \[user_config\] and \[default_config\]).
#[prost(message, optional, tag = "1")]
pub effective_config: ::core::option::Option<MysqlConfig57>,
/// User-defined settings for a MySQL 5.7 cluster.
#[prost(message, optional, tag = "2")]
pub user_config: ::core::option::Option<MysqlConfig57>,
/// Default configuration for a MySQL 5.7 cluster.
#[prost(message, optional, tag = "3")]
pub default_config: ::core::option::Option<MysqlConfig57>,
}
/// Options and structure of `MysqlConfig8_0` reflects MySQL 8.0 configuration file.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MysqlConfig80 {
/// Size of the InnoDB buffer pool used for caching table and index data.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_buffer_pool_size>) for details.
#[prost(message, optional, tag = "1")]
pub innodb_buffer_pool_size: ::core::option::Option<i64>,
/// The maximum permitted number of simultaneous client connections.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_connections>) for details.
#[prost(message, optional, tag = "2")]
pub max_connections: ::core::option::Option<i64>,
/// Time that it takes to process a query before it is considered slow.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_long_query_time>) for details.
#[prost(message, optional, tag = "3")]
pub long_query_time: ::core::option::Option<f64>,
/// Enable writing of general query log of MySQL.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_general_log>) for details.
#[prost(message, optional, tag = "4")]
pub general_log: ::core::option::Option<bool>,
/// Enable writing of audit log of MySQL.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/audit-log-reference.html#audit-log-options-variables>) for details.
#[prost(message, optional, tag = "5")]
pub audit_log: ::core::option::Option<bool>,
/// Server SQL mode of MySQL.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/sql-mode.html#sql-mode-setting>) for details.
#[prost(enumeration = "mysql_config8_0::SqlMode", repeated, tag = "6")]
pub sql_mode: ::prost::alloc::vec::Vec<i32>,
/// The maximum size in bytes of one packet.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_allowed_packet>) for details.
#[prost(message, optional, tag = "7")]
pub max_allowed_packet: ::core::option::Option<i64>,
/// Authentication plugin used in the managed MySQL cluster.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_default_authentication_plugin>) for details.
#[prost(enumeration = "mysql_config8_0::AuthPlugin", tag = "8")]
pub default_authentication_plugin: i32,
/// Transaction log flush behaviour.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_flush_log_at_trx_commit>) for details.
#[prost(message, optional, tag = "9")]
pub innodb_flush_log_at_trx_commit: ::core::option::Option<i64>,
/// Max time in seconds for a transaction to wait for a row lock.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_lock_wait_timeout>) for details.
#[prost(message, optional, tag = "10")]
pub innodb_lock_wait_timeout: ::core::option::Option<i64>,
/// Default transaction isolation level.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_transaction_isolation>) for details.
#[prost(enumeration = "mysql_config8_0::TransactionIsolation", tag = "11")]
pub transaction_isolation: i32,
/// Print information about deadlocks in error log.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_print_all_deadlocks>) for details.
#[prost(message, optional, tag = "12")]
pub innodb_print_all_deadlocks: ::core::option::Option<bool>,
/// The number of seconds to wait for more data from a connection before aborting the read.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_net_read_timeout>) for details.
#[prost(message, optional, tag = "13")]
pub net_read_timeout: ::core::option::Option<i64>,
/// The number of seconds to wait for a block to be written to a connection before aborting the write.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_net_write_timeout>) for details.
#[prost(message, optional, tag = "14")]
pub net_write_timeout: ::core::option::Option<i64>,
/// The maximum permitted result length in bytes for the GROUP_CONCAT() function.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_group_concat_max_len>) for details.
#[prost(message, optional, tag = "15")]
pub group_concat_max_len: ::core::option::Option<i64>,
/// The maximum size of internal in-memory temporary tables.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_tmp_table_size>) for details.
#[prost(message, optional, tag = "16")]
pub tmp_table_size: ::core::option::Option<i64>,
/// This variable sets the maximum size to which user-created MEMORY tables are permitted to grow.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_heap_table_size>) for details.
#[prost(message, optional, tag = "17")]
pub max_heap_table_size: ::core::option::Option<i64>,
/// The servers default time zone.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-options.html#option_mysqld_default-time-zone>) for details.
#[prost(string, tag = "18")]
pub default_time_zone: ::prost::alloc::string::String,
/// The servers default character set.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_character_set_server>) for details.
#[prost(string, tag = "19")]
pub character_set_server: ::prost::alloc::string::String,
/// The server default collation.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_collation_server>) for details.
#[prost(string, tag = "20")]
pub collation_server: ::prost::alloc::string::String,
/// Enables InnoDB adaptive hash index.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_adaptive_hash_index>) for details.
#[prost(message, optional, tag = "21")]
pub innodb_adaptive_hash_index: ::core::option::Option<bool>,
/// Enables the NUMA interleave memory policy for allocation of the InnoDB buffer pool.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_numa_interleave>) for details.
#[prost(message, optional, tag = "22")]
pub innodb_numa_interleave: ::core::option::Option<bool>,
/// The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_log_buffer_size>) for details.
#[prost(message, optional, tag = "23")]
pub innodb_log_buffer_size: ::core::option::Option<i64>,
/// The size in bytes of the single InnoDB Redo log file.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_log_file_size>) for details.
#[prost(message, optional, tag = "24")]
pub innodb_log_file_size: ::core::option::Option<i64>,
/// Limits IO available for InnoDB background tasks.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_io_capacity>) for details.
#[prost(message, optional, tag = "25")]
pub innodb_io_capacity: ::core::option::Option<i64>,
/// Limits IO available for InnoDB background tasks.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_io_capacity_max>) for details.
#[prost(message, optional, tag = "26")]
pub innodb_io_capacity_max: ::core::option::Option<i64>,
/// The number of I/O threads for read operations in InnoDB.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_read_io_threads>) for details.
#[prost(message, optional, tag = "27")]
pub innodb_read_io_threads: ::core::option::Option<i64>,
/// The number of I/O threads for write operations in InnoDB.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_write_io_threads>) for details.
#[prost(message, optional, tag = "28")]
pub innodb_write_io_threads: ::core::option::Option<i64>,
/// The number of background threads devoted to the InnoDB purge operation.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_purge_threads>) for details.
#[prost(message, optional, tag = "29")]
pub innodb_purge_threads: ::core::option::Option<i64>,
/// Defines the maximum number of threads permitted inside of InnoDB.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_thread_concurrency>) for details.
#[prost(message, optional, tag = "30")]
pub innodb_thread_concurrency: ::core::option::Option<i64>,
/// Limits the max size of InnoDB temp tablespace.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_temp_data_file_path>) for details.
#[prost(message, optional, tag = "31")]
pub innodb_temp_data_file_max_size: ::core::option::Option<i64>,
/// How many threads the server should cache for reuse.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_thread_cache_size>) for details.
#[prost(message, optional, tag = "32")]
pub thread_cache_size: ::core::option::Option<i64>,
/// The stack size for each thread. The default is large enough for normal operation.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_thread_stack>) for details.
#[prost(message, optional, tag = "33")]
pub thread_stack: ::core::option::Option<i64>,
/// The minimum size of the buffer that is used for plain index scans, range index scans, and joins that do not use indexes and thus perform full table scans.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_join_buffer_size>) for details.
#[prost(message, optional, tag = "34")]
pub join_buffer_size: ::core::option::Option<i64>,
/// Each session that must perform a sort allocates a buffer of this size.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_sort_buffer_size>) for details.
#[prost(message, optional, tag = "35")]
pub sort_buffer_size: ::core::option::Option<i64>,
/// The number of table definitions that can be stored in the definition cache.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_table_definition_cache>) for details.
#[prost(message, optional, tag = "36")]
pub table_definition_cache: ::core::option::Option<i64>,
/// The number of open tables for all threads.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_table_open_cache>) for details.
#[prost(message, optional, tag = "37")]
pub table_open_cache: ::core::option::Option<i64>,
/// The number of open tables cache instances.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_table_open_cache_instances>) for details.
#[prost(message, optional, tag = "38")]
pub table_open_cache_instances: ::core::option::Option<i64>,
/// Determines whether the server enables certain nonstandard behaviors for default values and NULL-value handling in TIMESTAMP columns.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_explicit_defaults_for_timestamp>) for details.
#[prost(message, optional, tag = "39")]
pub explicit_defaults_for_timestamp: ::core::option::Option<bool>,
/// Can be used to control the operation of AUTO_INCREMENT columns.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-source.html#sysvar_auto_increment_increment>) for details.
#[prost(message, optional, tag = "40")]
pub auto_increment_increment: ::core::option::Option<i64>,
/// Can be used to control the operation of AUTO_INCREMENT columns.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-source.html#sysvar_auto_increment_offset>) for details.
#[prost(message, optional, tag = "41")]
pub auto_increment_offset: ::core::option::Option<i64>,
/// Controls how often the MySQL server synchronizes the binary log to disk.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_sync_binlog>) for details.
#[prost(message, optional, tag = "42")]
pub sync_binlog: ::core::option::Option<i64>,
/// The size of the cache to hold changes to the binary log during a transaction.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_cache_size>) for details.
#[prost(message, optional, tag = "43")]
pub binlog_cache_size: ::core::option::Option<i64>,
/// Controls how many microseconds the binary log commit waits before synchronizing the binary log file to disk.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_group_commit_sync_delay>) for details.
#[prost(message, optional, tag = "44")]
pub binlog_group_commit_sync_delay: ::core::option::Option<i64>,
/// For MySQL row-based replication, this variable determines how row images are written to the binary log.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_row_image>) for details.
#[prost(enumeration = "mysql_config8_0::BinlogRowImage", tag = "45")]
pub binlog_row_image: i32,
/// When enabled, it causes the server to write informational log events such as row query log events into its binary log.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_rows_query_log_events>) for details.
#[prost(message, optional, tag = "46")]
pub binlog_rows_query_log_events: ::core::option::Option<bool>,
/// The number of replica acknowledgments the source must receive per transaction before proceeding.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-source.html#sysvar_rpl_semi_sync_master_wait_for_slave_count>) for details.
#[prost(message, optional, tag = "47")]
pub rpl_semi_sync_master_wait_for_slave_count: ::core::option::Option<i64>,
/// When using a multi-threaded replica, this variable specifies the policy used to decide which transactions are allowed to execute in parallel on the replica.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_slave_parallel_type>) for details.
#[prost(enumeration = "mysql_config8_0::SlaveParallelType", tag = "48")]
pub slave_parallel_type: i32,
/// Sets the number of applier threads for executing replication transactions in parallel.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_slave_parallel_workers>) for details.
#[prost(message, optional, tag = "49")]
pub slave_parallel_workers: ::core::option::Option<i64>,
/// The time limit for regular expression matching operations performed by REGEXP_LIKE and similar functions.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_regexp_time_limit>) for details.
#[prost(message, optional, tag = "50")]
pub regexp_time_limit: ::core::option::Option<i64>,
/// The size of the binary log to hold.
#[prost(message, optional, tag = "51")]
pub mdb_preserve_binlog_bytes: ::core::option::Option<i64>,
/// The number of seconds the server waits for activity on an interactive connection before closing it.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_interactive_timeout>) for details.
#[prost(message, optional, tag = "52")]
pub interactive_timeout: ::core::option::Option<i64>,
/// The number of seconds the server waits for activity on a noninteractive connection before closing it.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_wait_timeout>) for details.
#[prost(message, optional, tag = "53")]
pub wait_timeout: ::core::option::Option<i64>,
/// Replication lag threshold (seconds) which will switch MySQL to 'offline_mode = ON' to prevent users from reading stale data.
#[prost(message, optional, tag = "54")]
pub mdb_offline_mode_enable_lag: ::core::option::Option<i64>,
/// Replication lag threshold (seconds) which will switch MySQL to 'offline_mode = OFF'.
/// Should be less than mdb_offline_mode_enable_lag.
#[prost(message, optional, tag = "55")]
pub mdb_offline_mode_disable_lag: ::core::option::Option<i64>,
/// The limit on memory consumption for the range optimizer.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_range_optimizer_max_mem_size>) for details.
#[prost(message, optional, tag = "56")]
pub range_optimizer_max_mem_size: ::core::option::Option<i64>,
/// Manages slow query log.
///
/// See [MySQL documentation](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_slow_query_log>) for details.
#[prost(message, optional, tag = "57")]
pub slow_query_log: ::core::option::Option<bool>,
/// Query execution time, after which query to be logged unconditionally, that is, `log_slow_rate_limit` will not apply to it.
///
/// See [Percona documentation](<https://www.percona.com/doc/percona-server/8.0/diagnostics/slow_extended.html#slow_query_log_always_write_time>) for details.
#[prost(message, optional, tag = "58")]
pub slow_query_log_always_write_time: ::core::option::Option<f64>,
/// Specifies slow log granularity for `log_slow_rate_limit` QUERY or SESSION value.
///
/// See [Percona documentation](<https://www.percona.com/doc/percona-server/8.0/diagnostics/slow_extended.html#log_slow_rate_type>) for details.
#[prost(enumeration = "mysql_config8_0::LogSlowRateType", tag = "59")]
pub log_slow_rate_type: i32,
/// Specifies what fraction of session/query should be logged. Logging is enabled for every nth session/query.
///
/// See [Percona documentation](<https://www.percona.com/doc/percona-server/8.0/diagnostics/slow_extended.html#log_slow_rate_limit>) for details.
#[prost(message, optional, tag = "60")]
pub log_slow_rate_limit: ::core::option::Option<i64>,
/// When TRUE, statements executed by stored procedures are logged to the slow log.
///
/// See [Percona documentation](<https://www.percona.com/doc/percona-server/8.0/diagnostics/slow_extended.html#log_slow_sp_statements>) for details.
#[prost(message, optional, tag = "61")]
pub log_slow_sp_statements: ::core::option::Option<bool>,
/// Filters the slow log by the query's execution plan.
///
/// See [Percona documentation](<https://www.percona.com/doc/percona-server/8.0/diagnostics/slow_extended.html#log_slow_filter>) for details.
#[prost(enumeration = "mysql_config8_0::LogSlowFilterType", repeated, tag = "62")]
pub log_slow_filter: ::prost::alloc::vec::Vec<i32>,
/// Replication lag threshold (seconds) which allows replica to be promoted to master while executing "switchover from".
/// Should be less than mdb_offline_mode_disable_lag.
#[prost(message, optional, tag = "63")]
pub mdb_priority_choice_max_lag: ::core::option::Option<i64>,
/// Specifies the page size for InnoDB tablespaces.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_page_size>).
#[prost(message, optional, tag = "64")]
pub innodb_page_size: ::core::option::Option<i64>,
/// The limit in bytes on the size of the temporary log files used during online DDL operations
///
/// See [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_online_alter_log_max_size>) for details.
#[prost(message, optional, tag = "65")]
pub innodb_online_alter_log_max_size: ::core::option::Option<i64>,
/// Minimum length of words that are stored in an InnoDB FULLTEXT index
///
/// See [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_ft_min_token_size>) for details.
#[prost(message, optional, tag = "66")]
pub innodb_ft_min_token_size: ::core::option::Option<i64>,
/// Maximum length of words that are stored in an InnoDB FULLTEXT index
///
/// See [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_ft_max_token_size>) for details.
#[prost(message, optional, tag = "67")]
pub innodb_ft_max_token_size: ::core::option::Option<i64>,
/// Table names storage and comparison strategy
///
/// See [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_lower_case_table_names>) for details.
#[prost(message, optional, tag = "68")]
pub lower_case_table_names: ::core::option::Option<i64>,
/// The number of times that any given stored procedure may be called recursively.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_sp_recursion_depth>).
#[prost(message, optional, tag = "69")]
pub max_sp_recursion_depth: ::core::option::Option<i64>,
/// The level of zlib compression to use for InnoDB compressed tables and indexes.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_compression_level>).
#[prost(message, optional, tag = "70")]
pub innodb_compression_level: ::core::option::Option<i64>,
/// Specifies how the source mysqld generates the dependency information that it writes in the binary log to help replicas determine which transactions can be executed in parallel.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_transaction_dependency_tracking>).
#[prost(
enumeration = "mysql_config8_0::BinlogTransactionDependencyTracking",
tag = "71"
)]
pub binlog_transaction_dependency_tracking: i32,
/// Config specific will be all changes to a table take effect immediately or you must use COMMIT to accept a transaction or ROLLBACK to cancel it.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_autocommit>).
#[prost(message, optional, tag = "72")]
pub autocommit: ::core::option::Option<bool>,
/// Enables or disables periodic output for the standard InnoDB Monitor.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_status_output>).
#[prost(message, optional, tag = "73")]
pub innodb_status_output: ::core::option::Option<bool>,
/// When innodb_strict_mode is enabled, InnoDB returns errors rather than warnings when checking for invalid or incompatible table options.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_strict_mode>).
#[prost(message, optional, tag = "74")]
pub innodb_strict_mode: ::core::option::Option<bool>,
/// Makes InnoDB to write information about all lock wait timeout errors into the log file.
///
/// For details, see [Percona documentation for the variable](<https://docs.percona.com/percona-server/8.0/diagnostics/innodb_show_status.html?highlight=innodb_print_lock_wait_timeout_info>).
#[prost(message, optional, tag = "75")]
pub innodb_print_lock_wait_timeout_info: ::core::option::Option<bool>,
/// System variable specifies the verbosity for handling events intended for the error log
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_log_error_verbosity>).
#[prost(message, optional, tag = "76")]
pub log_error_verbosity: ::core::option::Option<i64>,
/// The maximum number of bytes of memory reserved per session for computation of normalized statement digests.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_digest_length>).
#[prost(message, optional, tag = "77")]
pub max_digest_length: ::core::option::Option<i64>,
/// This variable specifies the timeout in seconds for attempts to acquire metadata locks
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_lock_wait_timeout>).
#[prost(message, optional, tag = "78")]
pub lock_wait_timeout: ::core::option::Option<i64>,
/// This variable limits the total number of prepared statements in the server.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_prepared_stmt_count>).
#[prost(message, optional, tag = "79")]
pub max_prepared_stmt_count: ::core::option::Option<i64>,
/// The system variable enables control over optimizer behavior.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_optimizer_switch>)
/// <https://dev.mysql.com/doc/refman/8.0/en/switchable-optimizations.html>
#[prost(string, tag = "80")]
pub optimizer_switch: ::prost::alloc::string::String,
/// The maximum depth of search performed by the query optimizer
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html>)
#[prost(message, optional, tag = "81")]
pub optimizer_search_depth: ::core::option::Option<i64>,
/// Enables or disables collection of statistics
///
/// For details, see [Percona documentation for the variable](<https://docs.percona.com/percona-server/8.0/diagnostics/user_stats.html#userstat>).
#[prost(message, optional, tag = "82")]
pub userstat: ::core::option::Option<bool>,
/// The execution timeout for SELECT statements, in milliseconds. If the value is 0, timeouts are not enabled.
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_execution_time>)
#[prost(message, optional, tag = "83")]
pub max_execution_time: ::core::option::Option<i64>,
/// The policy controlling how the audit log plugin writes events to its log file
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/audit-log-reference.html#sysvar_audit_log_policy>)
#[prost(enumeration = "mysql_config8_0::AuditLogPolicy", tag = "84")]
pub audit_log_policy: i32,
/// Limit callbacks to improve performance for semisynchronous replication
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_replication_sender_observe_commit_only>).
#[prost(message, optional, tag = "85")]
pub replication_sender_observe_commit_only: ::core::option::Option<bool>,
/// Use shared locks, and avoid unnecessary lock acquisitions, to improve performance for semisynchronous replication
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_replication_optimize_for_static_plugin_config>).
#[prost(message, optional, tag = "86")]
pub replication_optimize_for_static_plugin_config: ::core::option::Option<bool>,
/// A parameter that influences the algorithms and heuristics for the flush operation for the InnoDB buffer pool
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_lru_scan_depth>)
#[prost(message, optional, tag = "87")]
pub innodb_lru_scan_depth: ::core::option::Option<i64>,
/// Whether statements that create new tables or alter the structure of existing tables enforce the requirement that tables have a primary key
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_sql_require_primary_key>).
#[prost(message, optional, tag = "88")]
pub sql_require_primary_key: ::core::option::Option<bool>,
/// Force ssl on all hosts (require_secure_transport)
#[prost(message, optional, tag = "89")]
pub mdb_force_ssl: ::core::option::Option<bool>,
/// An optimization for change buffering
///
/// For details, see [MySQL documentation for the variable](<https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_change_buffering>).
#[prost(enumeration = "mysql_config8_0::InnodbChangeBuffering", tag = "90")]
pub innodb_change_buffering: i32,
}
/// Nested message and enum types in `MysqlConfig8_0`.
pub mod mysql_config8_0 {
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum SqlMode {
SqlmodeUnspecified = 0,
AllowInvalidDates = 1,
AnsiQuotes = 2,
ErrorForDivisionByZero = 3,
HighNotPrecedence = 4,
IgnoreSpace = 5,
NoAutoValueOnZero = 6,
NoBackslashEscapes = 7,
NoEngineSubstitution = 8,
NoUnsignedSubtraction = 9,
NoZeroDate = 10,
NoZeroInDate = 11,
OnlyFullGroupBy = 15,
PadCharToFullLength = 16,
PipesAsConcat = 17,
RealAsFloat = 18,
StrictAllTables = 19,
StrictTransTables = 20,
TimeTruncateFractional = 21,
Ansi = 22,
Traditional = 23,
NoDirInCreate = 24,
}
impl SqlMode {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
SqlMode::SqlmodeUnspecified => "SQLMODE_UNSPECIFIED",
SqlMode::AllowInvalidDates => "ALLOW_INVALID_DATES",
SqlMode::AnsiQuotes => "ANSI_QUOTES",
SqlMode::ErrorForDivisionByZero => "ERROR_FOR_DIVISION_BY_ZERO",
SqlMode::HighNotPrecedence => "HIGH_NOT_PRECEDENCE",
SqlMode::IgnoreSpace => "IGNORE_SPACE",
SqlMode::NoAutoValueOnZero => "NO_AUTO_VALUE_ON_ZERO",
SqlMode::NoBackslashEscapes => "NO_BACKSLASH_ESCAPES",
SqlMode::NoEngineSubstitution => "NO_ENGINE_SUBSTITUTION",
SqlMode::NoUnsignedSubtraction => "NO_UNSIGNED_SUBTRACTION",
SqlMode::NoZeroDate => "NO_ZERO_DATE",
SqlMode::NoZeroInDate => "NO_ZERO_IN_DATE",
SqlMode::OnlyFullGroupBy => "ONLY_FULL_GROUP_BY",
SqlMode::PadCharToFullLength => "PAD_CHAR_TO_FULL_LENGTH",
SqlMode::PipesAsConcat => "PIPES_AS_CONCAT",
SqlMode::RealAsFloat => "REAL_AS_FLOAT",
SqlMode::StrictAllTables => "STRICT_ALL_TABLES",
SqlMode::StrictTransTables => "STRICT_TRANS_TABLES",
SqlMode::TimeTruncateFractional => "TIME_TRUNCATE_FRACTIONAL",
SqlMode::Ansi => "ANSI",
SqlMode::Traditional => "TRADITIONAL",
SqlMode::NoDirInCreate => "NO_DIR_IN_CREATE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"SQLMODE_UNSPECIFIED" => Some(Self::SqlmodeUnspecified),
"ALLOW_INVALID_DATES" => Some(Self::AllowInvalidDates),
"ANSI_QUOTES" => Some(Self::AnsiQuotes),
"ERROR_FOR_DIVISION_BY_ZERO" => Some(Self::ErrorForDivisionByZero),
"HIGH_NOT_PRECEDENCE" => Some(Self::HighNotPrecedence),
"IGNORE_SPACE" => Some(Self::IgnoreSpace),
"NO_AUTO_VALUE_ON_ZERO" => Some(Self::NoAutoValueOnZero),
"NO_BACKSLASH_ESCAPES" => Some(Self::NoBackslashEscapes),
"NO_ENGINE_SUBSTITUTION" => Some(Self::NoEngineSubstitution),
"NO_UNSIGNED_SUBTRACTION" => Some(Self::NoUnsignedSubtraction),
"NO_ZERO_DATE" => Some(Self::NoZeroDate),
"NO_ZERO_IN_DATE" => Some(Self::NoZeroInDate),
"ONLY_FULL_GROUP_BY" => Some(Self::OnlyFullGroupBy),
"PAD_CHAR_TO_FULL_LENGTH" => Some(Self::PadCharToFullLength),
"PIPES_AS_CONCAT" => Some(Self::PipesAsConcat),
"REAL_AS_FLOAT" => Some(Self::RealAsFloat),
"STRICT_ALL_TABLES" => Some(Self::StrictAllTables),
"STRICT_TRANS_TABLES" => Some(Self::StrictTransTables),
"TIME_TRUNCATE_FRACTIONAL" => Some(Self::TimeTruncateFractional),
"ANSI" => Some(Self::Ansi),
"TRADITIONAL" => Some(Self::Traditional),
"NO_DIR_IN_CREATE" => Some(Self::NoDirInCreate),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum AuthPlugin {
Unspecified = 0,
/// Using [Native Pluggable Authentication](<https://dev.mysql.com/doc/refman/8.0/en/native-pluggable-authentication.html>).
MysqlNativePassword = 1,
/// Using [Caching SHA-2 Pluggable Authentication](<https://dev.mysql.com/doc/refman/8.0/en/caching-sha2-pluggable-authentication.html>).
CachingSha2Password = 2,
/// Using [SHA-256 Pluggable Authentication](<https://dev.mysql.com/doc/refman/8.0/en/sha256-pluggable-authentication.html>).
Sha256Password = 3,
/// Use [MYSQL_NO_LOGIN Pluggable Authentication](<https://dev.mysql.com/doc/refman/8.0/en/no-login-pluggable-authentication.html>).
MysqlNoLogin = 4,
/// Use [IAM Pluggable Authentication](<https://yandex.cloud/en/docs/iam/concepts/authorization/>).
MdbIamproxyAuth = 5,
}
impl AuthPlugin {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
AuthPlugin::Unspecified => "AUTH_PLUGIN_UNSPECIFIED",
AuthPlugin::MysqlNativePassword => "MYSQL_NATIVE_PASSWORD",
AuthPlugin::CachingSha2Password => "CACHING_SHA2_PASSWORD",
AuthPlugin::Sha256Password => "SHA256_PASSWORD",
AuthPlugin::MysqlNoLogin => "MYSQL_NO_LOGIN",
AuthPlugin::MdbIamproxyAuth => "MDB_IAMPROXY_AUTH",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"AUTH_PLUGIN_UNSPECIFIED" => Some(Self::Unspecified),
"MYSQL_NATIVE_PASSWORD" => Some(Self::MysqlNativePassword),
"CACHING_SHA2_PASSWORD" => Some(Self::CachingSha2Password),
"SHA256_PASSWORD" => Some(Self::Sha256Password),
"MYSQL_NO_LOGIN" => Some(Self::MysqlNoLogin),
"MDB_IAMPROXY_AUTH" => Some(Self::MdbIamproxyAuth),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum TransactionIsolation {
Unspecified = 0,
ReadCommitted = 1,
RepeatableRead = 2,
Serializable = 3,
}
impl TransactionIsolation {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
TransactionIsolation::Unspecified => "TRANSACTION_ISOLATION_UNSPECIFIED",
TransactionIsolation::ReadCommitted => "READ_COMMITTED",
TransactionIsolation::RepeatableRead => "REPEATABLE_READ",
TransactionIsolation::Serializable => "SERIALIZABLE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"TRANSACTION_ISOLATION_UNSPECIFIED" => Some(Self::Unspecified),
"READ_COMMITTED" => Some(Self::ReadCommitted),
"REPEATABLE_READ" => Some(Self::RepeatableRead),
"SERIALIZABLE" => Some(Self::Serializable),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum BinlogRowImage {
Unspecified = 0,
Full = 1,
Minimal = 2,
Noblob = 3,
}
impl BinlogRowImage {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
BinlogRowImage::Unspecified => "BINLOG_ROW_IMAGE_UNSPECIFIED",
BinlogRowImage::Full => "FULL",
BinlogRowImage::Minimal => "MINIMAL",
BinlogRowImage::Noblob => "NOBLOB",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"BINLOG_ROW_IMAGE_UNSPECIFIED" => Some(Self::Unspecified),
"FULL" => Some(Self::Full),
"MINIMAL" => Some(Self::Minimal),
"NOBLOB" => Some(Self::Noblob),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum SlaveParallelType {
Unspecified = 0,
Database = 1,
LogicalClock = 2,
}
impl SlaveParallelType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
SlaveParallelType::Unspecified => "SLAVE_PARALLEL_TYPE_UNSPECIFIED",
SlaveParallelType::Database => "DATABASE",
SlaveParallelType::LogicalClock => "LOGICAL_CLOCK",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"SLAVE_PARALLEL_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"DATABASE" => Some(Self::Database),
"LOGICAL_CLOCK" => Some(Self::LogicalClock),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum LogSlowRateType {
Unspecified = 0,
Session = 1,
Query = 2,
}
impl LogSlowRateType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
LogSlowRateType::Unspecified => "LOG_SLOW_RATE_TYPE_UNSPECIFIED",
LogSlowRateType::Session => "SESSION",
LogSlowRateType::Query => "QUERY",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"LOG_SLOW_RATE_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"SESSION" => Some(Self::Session),
"QUERY" => Some(Self::Query),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum LogSlowFilterType {
Unspecified = 0,
FullScan = 1,
FullJoin = 2,
TmpTable = 3,
TmpTableOnDisk = 4,
Filesort = 5,
FilesortOnDisk = 6,
}
impl LogSlowFilterType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
LogSlowFilterType::Unspecified => "LOG_SLOW_FILTER_TYPE_UNSPECIFIED",
LogSlowFilterType::FullScan => "FULL_SCAN",
LogSlowFilterType::FullJoin => "FULL_JOIN",
LogSlowFilterType::TmpTable => "TMP_TABLE",
LogSlowFilterType::TmpTableOnDisk => "TMP_TABLE_ON_DISK",
LogSlowFilterType::Filesort => "FILESORT",
LogSlowFilterType::FilesortOnDisk => "FILESORT_ON_DISK",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"LOG_SLOW_FILTER_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"FULL_SCAN" => Some(Self::FullScan),
"FULL_JOIN" => Some(Self::FullJoin),
"TMP_TABLE" => Some(Self::TmpTable),
"TMP_TABLE_ON_DISK" => Some(Self::TmpTableOnDisk),
"FILESORT" => Some(Self::Filesort),
"FILESORT_ON_DISK" => Some(Self::FilesortOnDisk),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum BinlogTransactionDependencyTracking {
Unspecified = 0,
CommitOrder = 1,
Writeset = 2,
WritesetSession = 3,
}
impl BinlogTransactionDependencyTracking {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
BinlogTransactionDependencyTracking::Unspecified => {
"BINLOG_TRANSACTION_DEPENDENCY_TRACKING_UNSPECIFIED"
}
BinlogTransactionDependencyTracking::CommitOrder => "COMMIT_ORDER",
BinlogTransactionDependencyTracking::Writeset => "WRITESET",
BinlogTransactionDependencyTracking::WritesetSession => {
"WRITESET_SESSION"
}
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"BINLOG_TRANSACTION_DEPENDENCY_TRACKING_UNSPECIFIED" => {
Some(Self::Unspecified)
}
"COMMIT_ORDER" => Some(Self::CommitOrder),
"WRITESET" => Some(Self::Writeset),
"WRITESET_SESSION" => Some(Self::WritesetSession),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum AuditLogPolicy {
Unspecified = 0,
All = 1,
Logins = 2,
Queries = 3,
None = 4,
}
impl AuditLogPolicy {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
AuditLogPolicy::Unspecified => "AUDIT_LOG_POLICY_UNSPECIFIED",
AuditLogPolicy::All => "ALL",
AuditLogPolicy::Logins => "LOGINS",
AuditLogPolicy::Queries => "QUERIES",
AuditLogPolicy::None => "NONE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"AUDIT_LOG_POLICY_UNSPECIFIED" => Some(Self::Unspecified),
"ALL" => Some(Self::All),
"LOGINS" => Some(Self::Logins),
"QUERIES" => Some(Self::Queries),
"NONE" => Some(Self::None),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum InnodbChangeBuffering {
Unspecified = 0,
None = 1,
Inserts = 2,
Deletes = 3,
Changes = 4,
Purges = 5,
All = 6,
}
impl InnodbChangeBuffering {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
InnodbChangeBuffering::Unspecified => {
"INNODB_CHANGE_BUFFERING_UNSPECIFIED"
}
InnodbChangeBuffering::None => "INNODB_CHANGE_BUFFERING_NONE",
InnodbChangeBuffering::Inserts => "INNODB_CHANGE_BUFFERING_INSERTS",
InnodbChangeBuffering::Deletes => "INNODB_CHANGE_BUFFERING_DELETES",
InnodbChangeBuffering::Changes => "INNODB_CHANGE_BUFFERING_CHANGES",
InnodbChangeBuffering::Purges => "INNODB_CHANGE_BUFFERING_PURGES",
InnodbChangeBuffering::All => "INNODB_CHANGE_BUFFERING_ALL",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"INNODB_CHANGE_BUFFERING_UNSPECIFIED" => Some(Self::Unspecified),
"INNODB_CHANGE_BUFFERING_NONE" => Some(Self::None),
"INNODB_CHANGE_BUFFERING_INSERTS" => Some(Self::Inserts),
"INNODB_CHANGE_BUFFERING_DELETES" => Some(Self::Deletes),
"INNODB_CHANGE_BUFFERING_CHANGES" => Some(Self::Changes),
"INNODB_CHANGE_BUFFERING_PURGES" => Some(Self::Purges),
"INNODB_CHANGE_BUFFERING_ALL" => Some(Self::All),
_ => None,
}
}
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MysqlConfigSet80 {
/// Effective settings for a MySQL 8.0 cluster (a combination of settings defined
/// in \[user_config\] and \[default_config\]).
#[prost(message, optional, tag = "1")]
pub effective_config: ::core::option::Option<MysqlConfig80>,
/// User-defined settings for a MySQL 8.0 cluster.
#[prost(message, optional, tag = "2")]
pub user_config: ::core::option::Option<MysqlConfig80>,
/// Default configuration for a MySQL 8.0 cluster.
#[prost(message, optional, tag = "3")]
pub default_config: ::core::option::Option<MysqlConfig80>,
}