terrars-gitlabhq-gitlab 0.1.0

Pre-generated Terrars Gitlab bindings
Documentation
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
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
use serde::Serialize;
use std::cell::RefCell;
use std::rc::Rc;
use terrars::*;
use super::provider::ProviderGitlab;

#[derive(Serialize)]
struct ApplicationSettingsData {
    #[serde(skip_serializing_if = "Vec::is_empty")]
    depends_on: Vec<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    provider: Option<String>,
    #[serde(skip_serializing_if = "SerdeSkipDefault::is_default")]
    lifecycle: ResourceLifecycle,
    #[serde(skip_serializing_if = "Option::is_none")]
    for_each: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    abuse_notification_email: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    admin_mode: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    after_sign_out_path: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    after_sign_up_text: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    akismet_api_key: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    akismet_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    allow_group_owners_to_manage_ldap: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    allow_local_requests_from_system_hooks: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    allow_local_requests_from_web_hooks_and_services: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    archive_builds_in_human_readable: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    asset_proxy_allowlist: Option<ListField<PrimField<String>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    asset_proxy_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    asset_proxy_secret_key: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    asset_proxy_url: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    authorized_keys_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    auto_devops_domain: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    auto_devops_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    automatic_purchased_storage_allocation: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    can_create_group: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    check_namespace_plan: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    commit_email_hostname: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    container_expiration_policies_enable_historic_entries: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    container_registry_cleanup_tags_service_max_list_size: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    container_registry_delete_tags_service_timeout: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    container_registry_expiration_policies_caching: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    container_registry_expiration_policies_worker_capacity: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    container_registry_token_expire_delay: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    deactivate_dormant_users: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    default_artifacts_expire_in: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    default_branch_name: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    default_branch_protection: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    default_ci_config_path: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    default_group_visibility: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    default_project_creation: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    default_project_visibility: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    default_projects_limit: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    default_snippet_visibility: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    delete_inactive_projects: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    deletion_adjourned_period: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    diff_max_files: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    diff_max_lines: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    diff_max_patch_bytes: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    disable_feed_token: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    disabled_oauth_sign_in_sources: Option<ListField<PrimField<String>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    dns_rebinding_protection_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    domain_allowlist: Option<ListField<PrimField<String>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    domain_denylist: Option<ListField<PrimField<String>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    domain_denylist_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    dsa_key_restriction: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    ecdsa_key_restriction: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    ecdsa_sk_key_restriction: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    ed25519_key_restriction: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    ed25519_sk_key_restriction: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    eks_access_key_id: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    eks_account_id: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    eks_integration_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    eks_secret_access_key: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_aws: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_aws_access_key: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_aws_region: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_aws_secret_access_key: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_indexed_field_length_limit: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_indexed_file_size_limit_kb: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_indexing: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_limit_indexing: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_max_bulk_concurrency: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_max_bulk_size_mb: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_namespace_ids: Option<ListField<PrimField<f64>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_password: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_project_ids: Option<ListField<PrimField<f64>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_search: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_url: Option<ListField<PrimField<String>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    elasticsearch_username: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    email_additional_text: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    email_author_in_body: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    enabled_git_access_protocol: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    enforce_namespace_storage_limit: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    enforce_terms: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    external_auth_client_cert: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    external_auth_client_key: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    external_auth_client_key_pass: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    external_authorization_service_default_label: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    external_authorization_service_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    external_authorization_service_timeout: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    external_authorization_service_url: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    external_pipeline_validation_service_timeout: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    external_pipeline_validation_service_token: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    external_pipeline_validation_service_url: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    file_template_project_id: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    first_day_of_week: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    geo_node_allowed_ips: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    geo_status_timeout: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    git_rate_limit_users_allowlist: Option<ListField<PrimField<String>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    git_two_factor_session_expiry: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    gitaly_timeout_default: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    gitaly_timeout_fast: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    gitaly_timeout_medium: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    grafana_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    grafana_url: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    gravatar_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    group_owners_can_manage_default_branch_protection: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    hashed_storage_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    help_page_hide_commercial_content: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    help_page_support_url: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    help_page_text: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    help_text: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    hide_third_party_offers: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    home_page_url: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    housekeeping_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    housekeeping_full_repack_period: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    housekeeping_gc_period: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    housekeeping_incremental_repack_period: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    housekeeping_optimize_repository_period: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    html_emails_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    id: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    import_sources: Option<ListField<PrimField<String>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    in_product_marketing_emails_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    inactive_projects_delete_after_months: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    inactive_projects_min_size_mb: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    inactive_projects_send_warning_email_after_months: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    invisible_captcha_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    issues_create_limit: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    keep_latest_artifact: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    local_markdown_version: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    mailgun_events_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    mailgun_signing_key: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    maintenance_mode: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    maintenance_mode_message: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    max_artifacts_size: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    max_attachment_size: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    max_export_size: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    max_import_size: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    max_number_of_repository_downloads: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    max_number_of_repository_downloads_within_time_period: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    max_pages_size: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    max_personal_access_token_lifetime: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    max_ssh_key_lifetime: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    metrics_method_call_threshold: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    minimum_password_length: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    mirror_available: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    mirror_capacity_threshold: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    mirror_max_capacity: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    mirror_max_delay: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    npm_package_requests_forwarding: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    outbound_local_requests_whitelist: Option<ListField<PrimField<String>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    package_registry_cleanup_policies_worker_capacity: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pages_domain_verification_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    password_authentication_enabled_for_git: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    password_authentication_enabled_for_web: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    password_lowercase_required: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    password_number_required: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    password_symbol_required: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    password_uppercase_required: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    performance_bar_allowed_group_path: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    personal_access_token_prefix: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pipeline_limit_per_project_user_sha: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    plantuml_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    plantuml_url: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    polling_interval_multiplier: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    project_export_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    prometheus_metrics_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    protected_ci_variables: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    push_event_activities_limit: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    push_event_hooks_limit: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pypi_package_requests_forwarding: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    rate_limiting_response_text: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    raw_blob_request_limit: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    recaptcha_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    recaptcha_private_key: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    recaptcha_site_key: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    receive_max_input_size: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    repository_checks_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    repository_size_limit: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    repository_storages: Option<ListField<PrimField<String>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    repository_storages_weighted: Option<RecField<PrimField<f64>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    require_admin_approval_after_user_signup: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    require_two_factor_authentication: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    restricted_visibility_levels: Option<ListField<PrimField<String>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    rsa_key_restriction: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    search_rate_limit: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    search_rate_limit_unauthenticated: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    send_user_confirmation_email: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    session_expire_delay: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    shared_runners_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    shared_runners_minutes: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    shared_runners_text: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    sidekiq_job_limiter_compression_threshold_bytes: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    sidekiq_job_limiter_limit_bytes: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    sidekiq_job_limiter_mode: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    sign_in_text: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    signup_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    slack_app_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    slack_app_id: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    slack_app_secret: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    slack_app_signing_secret: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    slack_app_verification_token: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    snippet_size_limit: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    snowplow_app_id: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    snowplow_collector_hostname: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    snowplow_cookie_domain: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    snowplow_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    sourcegraph_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    sourcegraph_public_only: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    sourcegraph_url: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    spam_check_api_key: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    spam_check_endpoint_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    spam_check_endpoint_url: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    suggest_pipeline_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    terminal_max_session_time: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    terms: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_authenticated_api_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_authenticated_api_period_in_seconds: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_authenticated_api_requests_per_period: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_authenticated_packages_api_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_authenticated_packages_api_period_in_seconds: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_authenticated_packages_api_requests_per_period: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_authenticated_web_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_authenticated_web_period_in_seconds: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_authenticated_web_requests_per_period: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_unauthenticated_api_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_unauthenticated_api_period_in_seconds: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_unauthenticated_api_requests_per_period: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_unauthenticated_packages_api_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_unauthenticated_packages_api_period_in_seconds: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_unauthenticated_packages_api_requests_per_period: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_unauthenticated_web_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_unauthenticated_web_period_in_seconds: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    throttle_unauthenticated_web_requests_per_period: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    time_tracking_limit_to_hours: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    two_factor_grace_period: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    unique_ips_limit_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    unique_ips_limit_per_user: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    unique_ips_limit_time_window: Option<PrimField<f64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    usage_ping_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    user_deactivation_emails_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    user_default_external: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    user_default_internal_regex: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    user_oauth_applications: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    user_show_add_ssh_key_message: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    version_check_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    web_ide_clientside_preview_enabled: Option<PrimField<bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    whats_new_variant: Option<PrimField<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    wiki_page_max_content_bytes: Option<PrimField<f64>>,
}

struct ApplicationSettings_ {
    shared: StackShared,
    tf_id: String,
    data: RefCell<ApplicationSettingsData>,
}

#[derive(Clone)]
pub struct ApplicationSettings(Rc<ApplicationSettings_>);

impl ApplicationSettings {
    fn shared(&self) -> &StackShared {
        &self.0.shared
    }

    pub fn depends_on(self, dep: &impl Referable) -> Self {
        self.0.data.borrow_mut().depends_on.push(dep.extract_ref());
        self
    }

    pub fn set_provider(self, provider: &ProviderGitlab) -> Self {
        self.0.data.borrow_mut().provider = Some(provider.provider_ref());
        self
    }

    pub fn set_create_before_destroy(self, v: bool) -> Self {
        self.0.data.borrow_mut().lifecycle.create_before_destroy = v;
        self
    }

    pub fn set_prevent_destroy(self, v: bool) -> Self {
        self.0.data.borrow_mut().lifecycle.prevent_destroy = v;
        self
    }

    pub fn ignore_changes_to_all(self) -> Self {
        self.0.data.borrow_mut().lifecycle.ignore_changes = Some(IgnoreChanges::All(IgnoreChangesAll::All));
        self
    }

    pub fn ignore_changes_to_attr(self, attr: impl ToString) -> Self {
        {
            let mut d = self.0.data.borrow_mut();
            if match &mut d.lifecycle.ignore_changes {
                Some(i) => match i {
                    IgnoreChanges::All(_) => {
                        true
                    },
                    IgnoreChanges::Refs(r) => {
                        r.push(attr.to_string());
                        false
                    },
                },
                None => true,
            } {
                d.lifecycle.ignore_changes = Some(IgnoreChanges::Refs(vec![attr.to_string()]));
            }
        }
        self
    }

    pub fn replace_triggered_by_resource(self, r: &impl Resource) -> Self {
        self.0.data.borrow_mut().lifecycle.replace_triggered_by.push(r.extract_ref());
        self
    }

    pub fn replace_triggered_by_attr(self, attr: impl ToString) -> Self {
        self.0.data.borrow_mut().lifecycle.replace_triggered_by.push(attr.to_string());
        self
    }

    #[doc= "Set the field `abuse_notification_email`.\nIf set, abuse reports are sent to this address. Abuse reports are always available in the Admin Area."]
    pub fn set_abuse_notification_email(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().abuse_notification_email = Some(v.into());
        self
    }

    #[doc= "Set the field `admin_mode`.\nRequire administrators to enable Admin Mode by re-authenticating for administrative tasks."]
    pub fn set_admin_mode(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().admin_mode = Some(v.into());
        self
    }

    #[doc= "Set the field `after_sign_out_path`.\nWhere to redirect users after logout."]
    pub fn set_after_sign_out_path(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().after_sign_out_path = Some(v.into());
        self
    }

    #[doc= "Set the field `after_sign_up_text`.\nText shown to the user after signing up."]
    pub fn set_after_sign_up_text(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().after_sign_up_text = Some(v.into());
        self
    }

    #[doc= "Set the field `akismet_api_key`.\nAPI key for Akismet spam protection."]
    pub fn set_akismet_api_key(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().akismet_api_key = Some(v.into());
        self
    }

    #[doc= "Set the field `akismet_enabled`.\n(If enabled, requires: akismet_api_key) Enable or disable Akismet spam protection."]
    pub fn set_akismet_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().akismet_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `allow_group_owners_to_manage_ldap`.\nSet to true to allow group owners to manage LDAP."]
    pub fn set_allow_group_owners_to_manage_ldap(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().allow_group_owners_to_manage_ldap = Some(v.into());
        self
    }

    #[doc= "Set the field `allow_local_requests_from_system_hooks`.\nAllow requests to the local network from system hooks."]
    pub fn set_allow_local_requests_from_system_hooks(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().allow_local_requests_from_system_hooks = Some(v.into());
        self
    }

    #[doc= "Set the field `allow_local_requests_from_web_hooks_and_services`.\nAllow requests to the local network from web hooks and services."]
    pub fn set_allow_local_requests_from_web_hooks_and_services(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().allow_local_requests_from_web_hooks_and_services = Some(v.into());
        self
    }

    #[doc= "Set the field `archive_builds_in_human_readable`.\nSet the duration for which the jobs are considered as old and expired. After that time passes, the jobs are archived and no longer able to be retried. Make it empty to never expire jobs. It has to be no less than 1 day, for example: 15 days, 1 month, 2 years."]
    pub fn set_archive_builds_in_human_readable(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().archive_builds_in_human_readable = Some(v.into());
        self
    }

    #[doc= "Set the field `asset_proxy_allowlist`.\nAssets that match these domains are not proxied. Wildcards allowed. Your GitLab installation URL is automatically allowlisted. GitLab restart is required to apply changes."]
    pub fn set_asset_proxy_allowlist(self, v: impl Into<ListField<PrimField<String>>>) -> Self {
        self.0.data.borrow_mut().asset_proxy_allowlist = Some(v.into());
        self
    }

    #[doc= "Set the field `asset_proxy_enabled`.\n(If enabled, requires: asset_proxy_url) Enable proxying of assets. GitLab restart is required to apply changes."]
    pub fn set_asset_proxy_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().asset_proxy_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `asset_proxy_secret_key`.\nShared secret with the asset proxy server. GitLab restart is required to apply changes."]
    pub fn set_asset_proxy_secret_key(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().asset_proxy_secret_key = Some(v.into());
        self
    }

    #[doc= "Set the field `asset_proxy_url`.\nURL of the asset proxy server. GitLab restart is required to apply changes."]
    pub fn set_asset_proxy_url(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().asset_proxy_url = Some(v.into());
        self
    }

    #[doc= "Set the field `authorized_keys_enabled`.\nBy default, we write to the authorized_keys file to support Git over SSH without additional configuration. GitLab can be optimized to authenticate SSH keys via the database file. Only disable this if you have configured your OpenSSH server to use the AuthorizedKeysCommand."]
    pub fn set_authorized_keys_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().authorized_keys_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `auto_devops_domain`.\nSpecify a domain to use by default for every project’s Auto Review Apps and Auto Deploy stages."]
    pub fn set_auto_devops_domain(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().auto_devops_domain = Some(v.into());
        self
    }

    #[doc= "Set the field `auto_devops_enabled`.\nEnable Auto DevOps for projects by default. It automatically builds, tests, and deploys applications based on a predefined CI/CD configuration."]
    pub fn set_auto_devops_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().auto_devops_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `automatic_purchased_storage_allocation`.\nEnabling this permits automatic allocation of purchased storage in a namespace."]
    pub fn set_automatic_purchased_storage_allocation(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().automatic_purchased_storage_allocation = Some(v.into());
        self
    }

    #[doc= "Set the field `can_create_group`.\nIndicates whether users can create top-level groups. Introduced in GitLab 15.5."]
    pub fn set_can_create_group(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().can_create_group = Some(v.into());
        self
    }

    #[doc= "Set the field `check_namespace_plan`.\nEnabling this makes only licensed EE features available to projects if the project namespace’s plan includes the feature or if the project is public."]
    pub fn set_check_namespace_plan(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().check_namespace_plan = Some(v.into());
        self
    }

    #[doc= "Set the field `commit_email_hostname`.\nCustom hostname (for private commit emails)."]
    pub fn set_commit_email_hostname(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().commit_email_hostname = Some(v.into());
        self
    }

    #[doc= "Set the field `container_expiration_policies_enable_historic_entries`.\nEnable cleanup policies for all projects."]
    pub fn set_container_expiration_policies_enable_historic_entries(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().container_expiration_policies_enable_historic_entries = Some(v.into());
        self
    }

    #[doc= "Set the field `container_registry_cleanup_tags_service_max_list_size`.\nThe maximum number of tags that can be deleted in a single execution of cleanup policies."]
    pub fn set_container_registry_cleanup_tags_service_max_list_size(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().container_registry_cleanup_tags_service_max_list_size = Some(v.into());
        self
    }

    #[doc= "Set the field `container_registry_delete_tags_service_timeout`.\nThe maximum time, in seconds, that the cleanup process can take to delete a batch of tags for cleanup policies."]
    pub fn set_container_registry_delete_tags_service_timeout(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().container_registry_delete_tags_service_timeout = Some(v.into());
        self
    }

    #[doc= "Set the field `container_registry_expiration_policies_caching`.\nCaching during the execution of cleanup policies."]
    pub fn set_container_registry_expiration_policies_caching(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().container_registry_expiration_policies_caching = Some(v.into());
        self
    }

    #[doc= "Set the field `container_registry_expiration_policies_worker_capacity`.\nNumber of workers for cleanup policies."]
    pub fn set_container_registry_expiration_policies_worker_capacity(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().container_registry_expiration_policies_worker_capacity = Some(v.into());
        self
    }

    #[doc= "Set the field `container_registry_token_expire_delay`.\nContainer Registry token duration in minutes."]
    pub fn set_container_registry_token_expire_delay(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().container_registry_token_expire_delay = Some(v.into());
        self
    }

    #[doc= "Set the field `deactivate_dormant_users`.\nEnable automatic deactivation of dormant users."]
    pub fn set_deactivate_dormant_users(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().deactivate_dormant_users = Some(v.into());
        self
    }

    #[doc= "Set the field `default_artifacts_expire_in`.\nSet the default expiration time for each job’s artifacts."]
    pub fn set_default_artifacts_expire_in(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().default_artifacts_expire_in = Some(v.into());
        self
    }

    #[doc= "Set the field `default_branch_name`.\nInstance-level custom initial branch name (introduced in GitLab 13.2)."]
    pub fn set_default_branch_name(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().default_branch_name = Some(v.into());
        self
    }

    #[doc= "Set the field `default_branch_protection`.\nDetermine if developers can push to the default branch. Can take: 0 (not protected, both users with the Developer role or Maintainer role can push new commits and force push), 1 (partially protected, users with the Developer role or Maintainer role can push new commits, but cannot force push) or 2 (fully protected, users with the Developer or Maintainer role cannot push new commits, but users with the Developer or Maintainer role can; no one can force push) as a parameter. Default is 2."]
    pub fn set_default_branch_protection(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().default_branch_protection = Some(v.into());
        self
    }

    #[doc= "Set the field `default_ci_config_path`.\nDefault CI/CD configuration file and path for new projects (.gitlab-ci.yml if not set)."]
    pub fn set_default_ci_config_path(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().default_ci_config_path = Some(v.into());
        self
    }

    #[doc= "Set the field `default_group_visibility`.\nWhat visibility level new groups receive. Can take private, internal and public as a parameter."]
    pub fn set_default_group_visibility(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().default_group_visibility = Some(v.into());
        self
    }

    #[doc= "Set the field `default_project_creation`.\nDefault project creation protection. Can take: 0 (No one), 1 (Maintainers) or 2 (Developers + Maintainers)."]
    pub fn set_default_project_creation(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().default_project_creation = Some(v.into());
        self
    }

    #[doc= "Set the field `default_project_visibility`.\nWhat visibility level new projects receive. Can take private, internal and public as a parameter."]
    pub fn set_default_project_visibility(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().default_project_visibility = Some(v.into());
        self
    }

    #[doc= "Set the field `default_projects_limit`.\nProject limit per user."]
    pub fn set_default_projects_limit(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().default_projects_limit = Some(v.into());
        self
    }

    #[doc= "Set the field `default_snippet_visibility`.\nWhat visibility level new snippets receive. Can take private, internal and public as a parameter."]
    pub fn set_default_snippet_visibility(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().default_snippet_visibility = Some(v.into());
        self
    }

    #[doc= "Set the field `delete_inactive_projects`.\nEnable inactive project deletion feature. Introduced in GitLab 14.10. Became operational in GitLab 15.0 (with feature flag inactive_projects_deletion)."]
    pub fn set_delete_inactive_projects(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().delete_inactive_projects = Some(v.into());
        self
    }

    #[doc= "Set the field `deletion_adjourned_period`.\nThe number of days to wait before deleting a project or group that is marked for deletion. Value must be between 1 and 90."]
    pub fn set_deletion_adjourned_period(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().deletion_adjourned_period = Some(v.into());
        self
    }

    #[doc= "Set the field `diff_max_files`.\nMaximum files in a diff."]
    pub fn set_diff_max_files(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().diff_max_files = Some(v.into());
        self
    }

    #[doc= "Set the field `diff_max_lines`.\nMaximum lines in a diff."]
    pub fn set_diff_max_lines(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().diff_max_lines = Some(v.into());
        self
    }

    #[doc= "Set the field `diff_max_patch_bytes`.\nMaximum diff patch size, in bytes."]
    pub fn set_diff_max_patch_bytes(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().diff_max_patch_bytes = Some(v.into());
        self
    }

    #[doc= "Set the field `disable_feed_token`.\nDisable display of RSS/Atom and calendar feed tokens (introduced in GitLab 13.7)."]
    pub fn set_disable_feed_token(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().disable_feed_token = Some(v.into());
        self
    }

    #[doc= "Set the field `disabled_oauth_sign_in_sources`.\nDisabled OAuth sign-in sources."]
    pub fn set_disabled_oauth_sign_in_sources(self, v: impl Into<ListField<PrimField<String>>>) -> Self {
        self.0.data.borrow_mut().disabled_oauth_sign_in_sources = Some(v.into());
        self
    }

    #[doc= "Set the field `dns_rebinding_protection_enabled`.\nEnforce DNS rebinding attack protection."]
    pub fn set_dns_rebinding_protection_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().dns_rebinding_protection_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `domain_allowlist`.\nForce people to use only corporate emails for sign-up. Null means there is no restriction."]
    pub fn set_domain_allowlist(self, v: impl Into<ListField<PrimField<String>>>) -> Self {
        self.0.data.borrow_mut().domain_allowlist = Some(v.into());
        self
    }

    #[doc= "Set the field `domain_denylist`.\nUsers with email addresses that match these domains cannot sign up. Wildcards allowed. Use separate lines for multiple entries. Ex: domain.com, *.domain.com."]
    pub fn set_domain_denylist(self, v: impl Into<ListField<PrimField<String>>>) -> Self {
        self.0.data.borrow_mut().domain_denylist = Some(v.into());
        self
    }

    #[doc= "Set the field `domain_denylist_enabled`.\n(If enabled, requires: domain_denylist) Allows blocking sign-ups from emails from specific domains."]
    pub fn set_domain_denylist_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().domain_denylist_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `dsa_key_restriction`.\nThe minimum allowed bit length of an uploaded DSA key. 0 means no restriction. -1 disables DSA keys."]
    pub fn set_dsa_key_restriction(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().dsa_key_restriction = Some(v.into());
        self
    }

    #[doc= "Set the field `ecdsa_key_restriction`.\nThe minimum allowed curve size (in bits) of an uploaded ECDSA key. 0 means no restriction. -1 disables ECDSA keys."]
    pub fn set_ecdsa_key_restriction(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().ecdsa_key_restriction = Some(v.into());
        self
    }

    #[doc= "Set the field `ecdsa_sk_key_restriction`.\nThe minimum allowed curve size (in bits) of an uploaded ECDSA_SK key. 0 means no restriction. -1 disables ECDSA_SK keys."]
    pub fn set_ecdsa_sk_key_restriction(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().ecdsa_sk_key_restriction = Some(v.into());
        self
    }

    #[doc= "Set the field `ed25519_key_restriction`.\nThe minimum allowed curve size (in bits) of an uploaded ED25519 key. 0 means no restriction. -1 disables ED25519 keys."]
    pub fn set_ed25519_key_restriction(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().ed25519_key_restriction = Some(v.into());
        self
    }

    #[doc= "Set the field `ed25519_sk_key_restriction`.\nThe minimum allowed curve size (in bits) of an uploaded ED25519_SK key. 0 means no restriction. -1 disables ED25519_SK keys."]
    pub fn set_ed25519_sk_key_restriction(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().ed25519_sk_key_restriction = Some(v.into());
        self
    }

    #[doc= "Set the field `eks_access_key_id`.\nAWS IAM access key ID."]
    pub fn set_eks_access_key_id(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().eks_access_key_id = Some(v.into());
        self
    }

    #[doc= "Set the field `eks_account_id`.\nAmazon account ID."]
    pub fn set_eks_account_id(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().eks_account_id = Some(v.into());
        self
    }

    #[doc= "Set the field `eks_integration_enabled`.\nEnable integration with Amazon EKS."]
    pub fn set_eks_integration_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().eks_integration_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `eks_secret_access_key`.\nAWS IAM secret access key."]
    pub fn set_eks_secret_access_key(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().eks_secret_access_key = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_aws`.\nEnable the use of AWS hosted Elasticsearch."]
    pub fn set_elasticsearch_aws(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_aws = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_aws_access_key`.\nAWS IAM access key."]
    pub fn set_elasticsearch_aws_access_key(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_aws_access_key = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_aws_region`.\nThe AWS region the Elasticsearch domain is configured."]
    pub fn set_elasticsearch_aws_region(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_aws_region = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_aws_secret_access_key`.\nAWS IAM secret access key."]
    pub fn set_elasticsearch_aws_secret_access_key(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_aws_secret_access_key = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_indexed_field_length_limit`.\nMaximum size of text fields to index by Elasticsearch. 0 value means no limit. This does not apply to repository and wiki indexing."]
    pub fn set_elasticsearch_indexed_field_length_limit(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_indexed_field_length_limit = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_indexed_file_size_limit_kb`.\nMaximum size of repository and wiki files that are indexed by Elasticsearch."]
    pub fn set_elasticsearch_indexed_file_size_limit_kb(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_indexed_file_size_limit_kb = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_indexing`.\nEnable Elasticsearch indexing."]
    pub fn set_elasticsearch_indexing(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_indexing = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_limit_indexing`.\nLimit Elasticsearch to index certain namespaces and projects."]
    pub fn set_elasticsearch_limit_indexing(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_limit_indexing = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_max_bulk_concurrency`.\nMaximum concurrency of Elasticsearch bulk requests per indexing operation. This only applies to repository indexing operations."]
    pub fn set_elasticsearch_max_bulk_concurrency(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_max_bulk_concurrency = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_max_bulk_size_mb`.\nMaximum size of Elasticsearch bulk indexing requests in MB. This only applies to repository indexing operations."]
    pub fn set_elasticsearch_max_bulk_size_mb(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_max_bulk_size_mb = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_namespace_ids`.\nThe namespaces to index via Elasticsearch if elasticsearch_limit_indexing is enabled."]
    pub fn set_elasticsearch_namespace_ids(self, v: impl Into<ListField<PrimField<f64>>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_namespace_ids = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_password`.\nThe password of your Elasticsearch instance."]
    pub fn set_elasticsearch_password(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_password = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_project_ids`.\nThe projects to index via Elasticsearch if elasticsearch_limit_indexing is enabled."]
    pub fn set_elasticsearch_project_ids(self, v: impl Into<ListField<PrimField<f64>>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_project_ids = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_search`.\nEnable Elasticsearch search."]
    pub fn set_elasticsearch_search(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_search = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_url`.\nThe URL to use for connecting to Elasticsearch. Use a comma-separated list to support cluster (for example, http://localhost:9200, http://localhost:9201)."]
    pub fn set_elasticsearch_url(self, v: impl Into<ListField<PrimField<String>>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_url = Some(v.into());
        self
    }

    #[doc= "Set the field `elasticsearch_username`.\nThe username of your Elasticsearch instance."]
    pub fn set_elasticsearch_username(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().elasticsearch_username = Some(v.into());
        self
    }

    #[doc= "Set the field `email_additional_text`.\nAdditional text added to the bottom of every email for legal/auditing/compliance reasons."]
    pub fn set_email_additional_text(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().email_additional_text = Some(v.into());
        self
    }

    #[doc= "Set the field `email_author_in_body`.\nSome email servers do not support overriding the email sender name. Enable this option to include the name of the author of the issue, merge request or comment in the email body instead."]
    pub fn set_email_author_in_body(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().email_author_in_body = Some(v.into());
        self
    }

    #[doc= "Set the field `enabled_git_access_protocol`.\nEnabled protocols for Git access. Allowed values are: ssh, http, and nil to allow both protocols."]
    pub fn set_enabled_git_access_protocol(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().enabled_git_access_protocol = Some(v.into());
        self
    }

    #[doc= "Set the field `enforce_namespace_storage_limit`.\nEnabling this permits enforcement of namespace storage limits."]
    pub fn set_enforce_namespace_storage_limit(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().enforce_namespace_storage_limit = Some(v.into());
        self
    }

    #[doc= "Set the field `enforce_terms`.\n(If enabled, requires: terms) Enforce application ToS to all users."]
    pub fn set_enforce_terms(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().enforce_terms = Some(v.into());
        self
    }

    #[doc= "Set the field `external_auth_client_cert`.\n(If enabled, requires: external_auth_client_key) The certificate to use to authenticate with the external authorization service."]
    pub fn set_external_auth_client_cert(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().external_auth_client_cert = Some(v.into());
        self
    }

    #[doc= "Set the field `external_auth_client_key`.\nPrivate key for the certificate when authentication is required for the external authorization service, this is encrypted when stored."]
    pub fn set_external_auth_client_key(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().external_auth_client_key = Some(v.into());
        self
    }

    #[doc= "Set the field `external_auth_client_key_pass`.\nPassphrase to use for the private key when authenticating with the external service this is encrypted when stored."]
    pub fn set_external_auth_client_key_pass(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().external_auth_client_key_pass = Some(v.into());
        self
    }

    #[doc= "Set the field `external_authorization_service_default_label`.\nThe default classification label to use when requesting authorization and no classification label has been specified on the project."]
    pub fn set_external_authorization_service_default_label(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().external_authorization_service_default_label = Some(v.into());
        self
    }

    #[doc= "Set the field `external_authorization_service_enabled`.\n(If enabled, requires: external_authorization_service_default_label, external_authorization_service_timeout and external_authorization_service_url) Enable using an external authorization service for accessing projects."]
    pub fn set_external_authorization_service_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().external_authorization_service_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `external_authorization_service_timeout`.\nThe timeout after which an authorization request is aborted, in seconds. When a request times out, access is denied to the user. (min: 0.001, max: 10, step: 0.001)."]
    pub fn set_external_authorization_service_timeout(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().external_authorization_service_timeout = Some(v.into());
        self
    }

    #[doc= "Set the field `external_authorization_service_url`.\nURL to which authorization requests are directed."]
    pub fn set_external_authorization_service_url(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().external_authorization_service_url = Some(v.into());
        self
    }

    #[doc= "Set the field `external_pipeline_validation_service_timeout`.\nHow long to wait for a response from the pipeline validation service. Assumes OK if it times out."]
    pub fn set_external_pipeline_validation_service_timeout(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().external_pipeline_validation_service_timeout = Some(v.into());
        self
    }

    #[doc= "Set the field `external_pipeline_validation_service_token`.\nOptional. Token to include as the X-Gitlab-Token header in requests to the URL in external_pipeline_validation_service_url."]
    pub fn set_external_pipeline_validation_service_token(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().external_pipeline_validation_service_token = Some(v.into());
        self
    }

    #[doc= "Set the field `external_pipeline_validation_service_url`.\nURL to use for pipeline validation requests."]
    pub fn set_external_pipeline_validation_service_url(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().external_pipeline_validation_service_url = Some(v.into());
        self
    }

    #[doc= "Set the field `file_template_project_id`.\nThe ID of a project to load custom file templates from."]
    pub fn set_file_template_project_id(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().file_template_project_id = Some(v.into());
        self
    }

    #[doc= "Set the field `first_day_of_week`.\nStart day of the week for calendar views and date pickers. Valid values are 0 for Sunday, 1 for Monday, and 6 for Saturday."]
    pub fn set_first_day_of_week(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().first_day_of_week = Some(v.into());
        self
    }

    #[doc= "Set the field `geo_node_allowed_ips`.\nComma-separated list of IPs and CIDRs of allowed secondary nodes. For example, 1.1.1.1, 2.2.2.0/24."]
    pub fn set_geo_node_allowed_ips(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().geo_node_allowed_ips = Some(v.into());
        self
    }

    #[doc= "Set the field `geo_status_timeout`.\nThe amount of seconds after which a request to get a secondary node status times out."]
    pub fn set_geo_status_timeout(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().geo_status_timeout = Some(v.into());
        self
    }

    #[doc= "Set the field `git_rate_limit_users_allowlist`.\nList of usernames excluded from Git anti-abuse rate limits. Maximum: 100 usernames. Introduced in GitLab 15.2."]
    pub fn set_git_rate_limit_users_allowlist(self, v: impl Into<ListField<PrimField<String>>>) -> Self {
        self.0.data.borrow_mut().git_rate_limit_users_allowlist = Some(v.into());
        self
    }

    #[doc= "Set the field `git_two_factor_session_expiry`.\nMaximum duration (in minutes) of a session for Git operations when 2FA is enabled."]
    pub fn set_git_two_factor_session_expiry(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().git_two_factor_session_expiry = Some(v.into());
        self
    }

    #[doc= "Set the field `gitaly_timeout_default`.\nDefault Gitaly timeout, in seconds. This timeout is not enforced for Git fetch/push operations or Sidekiq jobs. Set to 0 to disable timeouts."]
    pub fn set_gitaly_timeout_default(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().gitaly_timeout_default = Some(v.into());
        self
    }

    #[doc= "Set the field `gitaly_timeout_fast`.\nGitaly fast operation timeout, in seconds. Some Gitaly operations are expected to be fast. If they exceed this threshold, there may be a problem with a storage shard and ‘failing fast’ can help maintain the stability of the GitLab instance. Set to 0 to disable timeouts."]
    pub fn set_gitaly_timeout_fast(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().gitaly_timeout_fast = Some(v.into());
        self
    }

    #[doc= "Set the field `gitaly_timeout_medium`.\nMedium Gitaly timeout, in seconds. This should be a value between the Fast and the Default timeout. Set to 0 to disable timeouts."]
    pub fn set_gitaly_timeout_medium(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().gitaly_timeout_medium = Some(v.into());
        self
    }

    #[doc= "Set the field `grafana_enabled`.\nEnable Grafana."]
    pub fn set_grafana_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().grafana_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `grafana_url`.\nGrafana URL."]
    pub fn set_grafana_url(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().grafana_url = Some(v.into());
        self
    }

    #[doc= "Set the field `gravatar_enabled`.\nEnable Gravatar."]
    pub fn set_gravatar_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().gravatar_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `group_owners_can_manage_default_branch_protection`.\nPrevent overrides of default branch protection."]
    pub fn set_group_owners_can_manage_default_branch_protection(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().group_owners_can_manage_default_branch_protection = Some(v.into());
        self
    }

    #[doc= "Set the field `hashed_storage_enabled`.\nCreate new projects using hashed storage paths: Enable immutable, hash-based paths and repository names to store repositories on disk. This prevents repositories from having to be moved or renamed when the Project URL changes and may improve disk I/O performance. (Always enabled in GitLab versions 13.0 and later, configuration is scheduled for removal in 14.0)."]
    pub fn set_hashed_storage_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().hashed_storage_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `help_page_hide_commercial_content`.\nHide marketing-related entries from help."]
    pub fn set_help_page_hide_commercial_content(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().help_page_hide_commercial_content = Some(v.into());
        self
    }

    #[doc= "Set the field `help_page_support_url`.\nAlternate support URL for help page and help dropdown."]
    pub fn set_help_page_support_url(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().help_page_support_url = Some(v.into());
        self
    }

    #[doc= "Set the field `help_page_text`.\nCustom text displayed on the help page."]
    pub fn set_help_page_text(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().help_page_text = Some(v.into());
        self
    }

    #[doc= "Set the field `help_text`.\nGitLab server administrator information."]
    pub fn set_help_text(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().help_text = Some(v.into());
        self
    }

    #[doc= "Set the field `hide_third_party_offers`.\nDo not display offers from third parties in GitLab."]
    pub fn set_hide_third_party_offers(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().hide_third_party_offers = Some(v.into());
        self
    }

    #[doc= "Set the field `home_page_url`.\nRedirect to this URL when not logged in."]
    pub fn set_home_page_url(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().home_page_url = Some(v.into());
        self
    }

    #[doc= "Set the field `housekeeping_enabled`.\n\n\t\t\t\tEnable or disable Git housekeeping.\n\t\t\t\tIf enabled, requires either housekeeping_optimize_repository_period OR housekeeping_bitmaps_enabled, housekeeping_full_repack_period, housekeeping_gc_period, and housekeeping_incremental_repack_period.\n\t\t\t\tOptions housekeeping_bitmaps_enabled, housekeeping_full_repack_period, housekeeping_gc_period, and housekeeping_incremental_repack_period are deprecated. Use housekeeping_optimize_repository_period instead.\n\t\t\t"]
    pub fn set_housekeeping_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().housekeeping_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `housekeeping_full_repack_period`.\nNumber of Git pushes after which an incremental git repack is run."]
    pub fn set_housekeeping_full_repack_period(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().housekeeping_full_repack_period = Some(v.into());
        self
    }

    #[doc= "Set the field `housekeeping_gc_period`.\nNumber of Git pushes after which git gc is run."]
    pub fn set_housekeeping_gc_period(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().housekeeping_gc_period = Some(v.into());
        self
    }

    #[doc= "Set the field `housekeeping_incremental_repack_period`.\nNumber of Git pushes after which an incremental git repack is run."]
    pub fn set_housekeeping_incremental_repack_period(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().housekeeping_incremental_repack_period = Some(v.into());
        self
    }

    #[doc= "Set the field `housekeeping_optimize_repository_period`.\nNumber of Git pushes after which an incremental git repack is run."]
    pub fn set_housekeeping_optimize_repository_period(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().housekeeping_optimize_repository_period = Some(v.into());
        self
    }

    #[doc= "Set the field `html_emails_enabled`.\nEnable HTML emails."]
    pub fn set_html_emails_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().html_emails_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `id`.\n"]
    pub fn set_id(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().id = Some(v.into());
        self
    }

    #[doc= "Set the field `import_sources`.\nSources to allow project import from. Valid values are: `github`, `bitbucket`, `bitbucket_server`, `fogbugz`, `git`, `gitlab_project`, `gitea`, `manifest`"]
    pub fn set_import_sources(self, v: impl Into<ListField<PrimField<String>>>) -> Self {
        self.0.data.borrow_mut().import_sources = Some(v.into());
        self
    }

    #[doc= "Set the field `in_product_marketing_emails_enabled`.\nEnable in-product marketing emails."]
    pub fn set_in_product_marketing_emails_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().in_product_marketing_emails_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `inactive_projects_delete_after_months`.\nIf delete_inactive_projects is true, the time (in months) to wait before deleting inactive projects. Introduced in GitLab 14.10. Became operational in GitLab 15.0."]
    pub fn set_inactive_projects_delete_after_months(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().inactive_projects_delete_after_months = Some(v.into());
        self
    }

    #[doc= "Set the field `inactive_projects_min_size_mb`.\nIf delete_inactive_projects is true, the minimum repository size for projects to be checked for inactivity. Introduced in GitLab 14.10. Became operational in GitLab 15.0."]
    pub fn set_inactive_projects_min_size_mb(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().inactive_projects_min_size_mb = Some(v.into());
        self
    }

    #[doc= "Set the field `inactive_projects_send_warning_email_after_months`.\nIf delete_inactive_projects is true, sets the time (in months) to wait before emailing maintainers that the project is scheduled be deleted because it is inactive. Introduced in GitLab 14.10. Became operational in GitLab 15.0."]
    pub fn set_inactive_projects_send_warning_email_after_months(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().inactive_projects_send_warning_email_after_months = Some(v.into());
        self
    }

    #[doc= "Set the field `invisible_captcha_enabled`.\nEnable Invisible CAPTCHA spam detection during sign-up."]
    pub fn set_invisible_captcha_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().invisible_captcha_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `issues_create_limit`.\nMax number of issue creation requests per minute per user."]
    pub fn set_issues_create_limit(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().issues_create_limit = Some(v.into());
        self
    }

    #[doc= "Set the field `keep_latest_artifact`.\nPrevent the deletion of the artifacts from the most recent successful jobs, regardless of the expiry time."]
    pub fn set_keep_latest_artifact(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().keep_latest_artifact = Some(v.into());
        self
    }

    #[doc= "Set the field `local_markdown_version`.\nIncrease this value when any cached Markdown should be invalidated."]
    pub fn set_local_markdown_version(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().local_markdown_version = Some(v.into());
        self
    }

    #[doc= "Set the field `mailgun_events_enabled`.\nEnable Mailgun event receiver."]
    pub fn set_mailgun_events_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().mailgun_events_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `mailgun_signing_key`.\nThe Mailgun HTTP webhook signing key for receiving events from webhook."]
    pub fn set_mailgun_signing_key(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().mailgun_signing_key = Some(v.into());
        self
    }

    #[doc= "Set the field `maintenance_mode`.\nWhen instance is in maintenance mode, non-administrative users can sign in with read-only access and make read-only API requests."]
    pub fn set_maintenance_mode(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().maintenance_mode = Some(v.into());
        self
    }

    #[doc= "Set the field `maintenance_mode_message`.\nMessage displayed when instance is in maintenance mode."]
    pub fn set_maintenance_mode_message(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().maintenance_mode_message = Some(v.into());
        self
    }

    #[doc= "Set the field `max_artifacts_size`.\nMaximum artifacts size in MB."]
    pub fn set_max_artifacts_size(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().max_artifacts_size = Some(v.into());
        self
    }

    #[doc= "Set the field `max_attachment_size`.\nLimit attachment size in MB."]
    pub fn set_max_attachment_size(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().max_attachment_size = Some(v.into());
        self
    }

    #[doc= "Set the field `max_export_size`.\nMaximum export size in MB. 0 for unlimited."]
    pub fn set_max_export_size(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().max_export_size = Some(v.into());
        self
    }

    #[doc= "Set the field `max_import_size`.\nMaximum import size in MB. 0 for unlimited."]
    pub fn set_max_import_size(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().max_import_size = Some(v.into());
        self
    }

    #[doc= "Set the field `max_number_of_repository_downloads`.\nMaximum number of unique repositories a user can download in the specified time period before they are banned. Maximum: 10,000 repositories. Introduced in GitLab 15.1."]
    pub fn set_max_number_of_repository_downloads(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().max_number_of_repository_downloads = Some(v.into());
        self
    }

    #[doc= "Set the field `max_number_of_repository_downloads_within_time_period`.\nReporting time period (in seconds). Maximum: 864000 seconds (10 days). Introduced in GitLab 15.1."]
    pub fn set_max_number_of_repository_downloads_within_time_period(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().max_number_of_repository_downloads_within_time_period = Some(v.into());
        self
    }

    #[doc= "Set the field `max_pages_size`.\nMaximum size of pages repositories in MB."]
    pub fn set_max_pages_size(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().max_pages_size = Some(v.into());
        self
    }

    #[doc= "Set the field `max_personal_access_token_lifetime`.\nMaximum allowable lifetime for access tokens in days."]
    pub fn set_max_personal_access_token_lifetime(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().max_personal_access_token_lifetime = Some(v.into());
        self
    }

    #[doc= "Set the field `max_ssh_key_lifetime`.\nMaximum allowable lifetime for SSH keys in days. Introduced in GitLab 14.6."]
    pub fn set_max_ssh_key_lifetime(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().max_ssh_key_lifetime = Some(v.into());
        self
    }

    #[doc= "Set the field `metrics_method_call_threshold`.\nA method call is only tracked when it takes longer than the given amount of milliseconds."]
    pub fn set_metrics_method_call_threshold(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().metrics_method_call_threshold = Some(v.into());
        self
    }

    #[doc= "Set the field `minimum_password_length`.\nIndicates whether passwords require a minimum length. Introduced in GitLab 15.1. Premium and Ultimate only."]
    pub fn set_minimum_password_length(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().minimum_password_length = Some(v.into());
        self
    }

    #[doc= "Set the field `mirror_available`.\nAllow repository mirroring to configured by project Maintainers. If disabled, only Administrators can configure repository mirroring."]
    pub fn set_mirror_available(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().mirror_available = Some(v.into());
        self
    }

    #[doc= "Set the field `mirror_capacity_threshold`.\nMinimum capacity to be available before scheduling more mirrors preemptively."]
    pub fn set_mirror_capacity_threshold(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().mirror_capacity_threshold = Some(v.into());
        self
    }

    #[doc= "Set the field `mirror_max_capacity`.\nMaximum number of mirrors that can be synchronizing at the same time."]
    pub fn set_mirror_max_capacity(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().mirror_max_capacity = Some(v.into());
        self
    }

    #[doc= "Set the field `mirror_max_delay`.\nMaximum time (in minutes) between updates that a mirror can have when scheduled to synchronize."]
    pub fn set_mirror_max_delay(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().mirror_max_delay = Some(v.into());
        self
    }

    #[doc= "Set the field `npm_package_requests_forwarding`.\nUse npmjs.org as a default remote repository when the package is not found in the GitLab Package Registry for npm."]
    pub fn set_npm_package_requests_forwarding(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().npm_package_requests_forwarding = Some(v.into());
        self
    }

    #[doc= "Set the field `outbound_local_requests_whitelist`.\nDefine a list of trusted domains or IP addresses to which local requests are allowed when local requests for hooks and services are disabled."]
    pub fn set_outbound_local_requests_whitelist(self, v: impl Into<ListField<PrimField<String>>>) -> Self {
        self.0.data.borrow_mut().outbound_local_requests_whitelist = Some(v.into());
        self
    }

    #[doc= "Set the field `package_registry_cleanup_policies_worker_capacity`.\nNumber of workers assigned to the packages cleanup policies."]
    pub fn set_package_registry_cleanup_policies_worker_capacity(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().package_registry_cleanup_policies_worker_capacity = Some(v.into());
        self
    }

    #[doc= "Set the field `pages_domain_verification_enabled`.\nRequire users to prove ownership of custom domains. Domain verification is an essential security measure for public GitLab sites. Users are required to demonstrate they control a domain before it is enabled."]
    pub fn set_pages_domain_verification_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().pages_domain_verification_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `password_authentication_enabled_for_git`.\nEnable authentication for Git over HTTP(S) via a GitLab account password."]
    pub fn set_password_authentication_enabled_for_git(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().password_authentication_enabled_for_git = Some(v.into());
        self
    }

    #[doc= "Set the field `password_authentication_enabled_for_web`.\nEnable authentication for the web interface via a GitLab account password."]
    pub fn set_password_authentication_enabled_for_web(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().password_authentication_enabled_for_web = Some(v.into());
        self
    }

    #[doc= "Set the field `password_lowercase_required`.\nIndicates whether passwords require at least one lowercase letter. Introduced in GitLab 15.1."]
    pub fn set_password_lowercase_required(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().password_lowercase_required = Some(v.into());
        self
    }

    #[doc= "Set the field `password_number_required`.\nIndicates whether passwords require at least one number. Introduced in GitLab 15.1."]
    pub fn set_password_number_required(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().password_number_required = Some(v.into());
        self
    }

    #[doc= "Set the field `password_symbol_required`.\nIndicates whether passwords require at least one symbol character. Introduced in GitLab 15.1."]
    pub fn set_password_symbol_required(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().password_symbol_required = Some(v.into());
        self
    }

    #[doc= "Set the field `password_uppercase_required`.\nIndicates whether passwords require at least one uppercase letter. Introduced in GitLab 15.1."]
    pub fn set_password_uppercase_required(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().password_uppercase_required = Some(v.into());
        self
    }

    #[doc= "Set the field `performance_bar_allowed_group_path`.\nPath of the group that is allowed to toggle the performance bar."]
    pub fn set_performance_bar_allowed_group_path(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().performance_bar_allowed_group_path = Some(v.into());
        self
    }

    #[doc= "Set the field `personal_access_token_prefix`.\nPrefix for all generated personal access tokens."]
    pub fn set_personal_access_token_prefix(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().personal_access_token_prefix = Some(v.into());
        self
    }

    #[doc= "Set the field `pipeline_limit_per_project_user_sha`.\nMaximum number of pipeline creation requests per minute per user and commit."]
    pub fn set_pipeline_limit_per_project_user_sha(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().pipeline_limit_per_project_user_sha = Some(v.into());
        self
    }

    #[doc= "Set the field `plantuml_enabled`.\n(If enabled, requires: plantuml_url) Enable PlantUML integration."]
    pub fn set_plantuml_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().plantuml_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `plantuml_url`.\nThe PlantUML instance URL for integration."]
    pub fn set_plantuml_url(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().plantuml_url = Some(v.into());
        self
    }

    #[doc= "Set the field `polling_interval_multiplier`.\nInterval multiplier used by endpoints that perform polling. Set to 0 to disable polling."]
    pub fn set_polling_interval_multiplier(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().polling_interval_multiplier = Some(v.into());
        self
    }

    #[doc= "Set the field `project_export_enabled`.\nEnable project export."]
    pub fn set_project_export_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().project_export_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `prometheus_metrics_enabled`.\nEnable Prometheus metrics."]
    pub fn set_prometheus_metrics_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().prometheus_metrics_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `protected_ci_variables`.\nCI/CD variables are protected by default."]
    pub fn set_protected_ci_variables(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().protected_ci_variables = Some(v.into());
        self
    }

    #[doc= "Set the field `push_event_activities_limit`.\nNumber of changes (branches or tags) in a single push to determine whether individual push events or bulk push events are created. Bulk push events are created if it surpasses that value."]
    pub fn set_push_event_activities_limit(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().push_event_activities_limit = Some(v.into());
        self
    }

    #[doc= "Set the field `push_event_hooks_limit`.\nNumber of changes (branches or tags) in a single push to determine whether webhooks and services fire or not. Webhooks and services aren’t submitted if it surpasses that value."]
    pub fn set_push_event_hooks_limit(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().push_event_hooks_limit = Some(v.into());
        self
    }

    #[doc= "Set the field `pypi_package_requests_forwarding`.\nUse pypi.org as a default remote repository when the package is not found in the GitLab Package Registry for PyPI."]
    pub fn set_pypi_package_requests_forwarding(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().pypi_package_requests_forwarding = Some(v.into());
        self
    }

    #[doc= "Set the field `rate_limiting_response_text`.\nWhen rate limiting is enabled via the throttle_* settings, send this plain text response when a rate limit is exceeded. ‘Retry later’ is sent if this is blank."]
    pub fn set_rate_limiting_response_text(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().rate_limiting_response_text = Some(v.into());
        self
    }

    #[doc= "Set the field `raw_blob_request_limit`.\nMax number of requests per minute for each raw path. To disable throttling set to 0."]
    pub fn set_raw_blob_request_limit(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().raw_blob_request_limit = Some(v.into());
        self
    }

    #[doc= "Set the field `recaptcha_enabled`.\n(If enabled, requires: recaptcha_private_key and recaptcha_site_key) Enable reCAPTCHA."]
    pub fn set_recaptcha_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().recaptcha_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `recaptcha_private_key`.\nPrivate key for reCAPTCHA."]
    pub fn set_recaptcha_private_key(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().recaptcha_private_key = Some(v.into());
        self
    }

    #[doc= "Set the field `recaptcha_site_key`.\nSite key for reCAPTCHA."]
    pub fn set_recaptcha_site_key(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().recaptcha_site_key = Some(v.into());
        self
    }

    #[doc= "Set the field `receive_max_input_size`.\nMaximum push size (MB)."]
    pub fn set_receive_max_input_size(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().receive_max_input_size = Some(v.into());
        self
    }

    #[doc= "Set the field `repository_checks_enabled`.\nGitLab periodically runs git fsck in all project and wiki repositories to look for silent disk corruption issues."]
    pub fn set_repository_checks_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().repository_checks_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `repository_size_limit`.\nSize limit per repository (MB)."]
    pub fn set_repository_size_limit(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().repository_size_limit = Some(v.into());
        self
    }

    #[doc= "Set the field `repository_storages`.\n(GitLab 13.0 and earlier) List of names of enabled storage paths, taken from gitlab.yml. New projects are created in one of these stores, chosen at random."]
    pub fn set_repository_storages(self, v: impl Into<ListField<PrimField<String>>>) -> Self {
        self.0.data.borrow_mut().repository_storages = Some(v.into());
        self
    }

    #[doc= "Set the field `repository_storages_weighted`.\n(GitLab 13.1 and later) Hash of names of taken from gitlab.yml to weights. New projects are created in one of these stores, chosen by a weighted random selection."]
    pub fn set_repository_storages_weighted(self, v: impl Into<RecField<PrimField<f64>>>) -> Self {
        self.0.data.borrow_mut().repository_storages_weighted = Some(v.into());
        self
    }

    #[doc= "Set the field `require_admin_approval_after_user_signup`.\nWhen enabled, any user that signs up for an account using the registration form is placed under a Pending approval state and has to be explicitly approved by an administrator."]
    pub fn set_require_admin_approval_after_user_signup(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().require_admin_approval_after_user_signup = Some(v.into());
        self
    }

    #[doc= "Set the field `require_two_factor_authentication`.\n(If enabled, requires: two_factor_grace_period) Require all users to set up Two-factor authentication."]
    pub fn set_require_two_factor_authentication(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().require_two_factor_authentication = Some(v.into());
        self
    }

    #[doc= "Set the field `restricted_visibility_levels`.\nSelected levels cannot be used by non-Administrator users for groups, projects or snippets. Can take private, internal and public as a parameter. Null means there is no restriction."]
    pub fn set_restricted_visibility_levels(self, v: impl Into<ListField<PrimField<String>>>) -> Self {
        self.0.data.borrow_mut().restricted_visibility_levels = Some(v.into());
        self
    }

    #[doc= "Set the field `rsa_key_restriction`.\nThe minimum allowed bit length of an uploaded RSA key. 0 means no restriction. -1 disables RSA keys."]
    pub fn set_rsa_key_restriction(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().rsa_key_restriction = Some(v.into());
        self
    }

    #[doc= "Set the field `search_rate_limit`.\nMax number of requests per minute for performing a search while authenticated. To disable throttling set to 0."]
    pub fn set_search_rate_limit(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().search_rate_limit = Some(v.into());
        self
    }

    #[doc= "Set the field `search_rate_limit_unauthenticated`.\nMax number of requests per minute for performing a search while unauthenticated. To disable throttling set to 0."]
    pub fn set_search_rate_limit_unauthenticated(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().search_rate_limit_unauthenticated = Some(v.into());
        self
    }

    #[doc= "Set the field `send_user_confirmation_email`.\nSend confirmation email on sign-up."]
    pub fn set_send_user_confirmation_email(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().send_user_confirmation_email = Some(v.into());
        self
    }

    #[doc= "Set the field `session_expire_delay`.\nSession duration in minutes. GitLab restart is required to apply changes."]
    pub fn set_session_expire_delay(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().session_expire_delay = Some(v.into());
        self
    }

    #[doc= "Set the field `shared_runners_enabled`.\n(If enabled, requires: shared_runners_text and shared_runners_minutes) Enable shared runners for new projects."]
    pub fn set_shared_runners_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().shared_runners_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `shared_runners_minutes`.\nSet the maximum number of CI/CD minutes that a group can use on shared runners per month."]
    pub fn set_shared_runners_minutes(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().shared_runners_minutes = Some(v.into());
        self
    }

    #[doc= "Set the field `shared_runners_text`.\nShared runners text."]
    pub fn set_shared_runners_text(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().shared_runners_text = Some(v.into());
        self
    }

    #[doc= "Set the field `sidekiq_job_limiter_compression_threshold_bytes`.\nThe threshold in bytes at which Sidekiq jobs are compressed before being stored in Redis."]
    pub fn set_sidekiq_job_limiter_compression_threshold_bytes(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().sidekiq_job_limiter_compression_threshold_bytes = Some(v.into());
        self
    }

    #[doc= "Set the field `sidekiq_job_limiter_limit_bytes`.\nThe threshold in bytes at which Sidekiq jobs are rejected. 0 means do not reject any job."]
    pub fn set_sidekiq_job_limiter_limit_bytes(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().sidekiq_job_limiter_limit_bytes = Some(v.into());
        self
    }

    #[doc= "Set the field `sidekiq_job_limiter_mode`.\ntrack or compress. Sets the behavior for Sidekiq job size limits."]
    pub fn set_sidekiq_job_limiter_mode(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().sidekiq_job_limiter_mode = Some(v.into());
        self
    }

    #[doc= "Set the field `sign_in_text`.\nText on the login page."]
    pub fn set_sign_in_text(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().sign_in_text = Some(v.into());
        self
    }

    #[doc= "Set the field `signup_enabled`.\nEnable registration."]
    pub fn set_signup_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().signup_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `slack_app_enabled`.\n(If enabled, requires: slack_app_id, slack_app_secret and slack_app_secret) Enable Slack app."]
    pub fn set_slack_app_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().slack_app_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `slack_app_id`.\nThe app ID of the Slack-app."]
    pub fn set_slack_app_id(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().slack_app_id = Some(v.into());
        self
    }

    #[doc= "Set the field `slack_app_secret`.\nThe app secret of the Slack-app."]
    pub fn set_slack_app_secret(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().slack_app_secret = Some(v.into());
        self
    }

    #[doc= "Set the field `slack_app_signing_secret`.\nThe signing secret of the Slack-app."]
    pub fn set_slack_app_signing_secret(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().slack_app_signing_secret = Some(v.into());
        self
    }

    #[doc= "Set the field `slack_app_verification_token`.\nThe verification token of the Slack-app."]
    pub fn set_slack_app_verification_token(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().slack_app_verification_token = Some(v.into());
        self
    }

    #[doc= "Set the field `snippet_size_limit`.\nMax snippet content size in bytes."]
    pub fn set_snippet_size_limit(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().snippet_size_limit = Some(v.into());
        self
    }

    #[doc= "Set the field `snowplow_app_id`.\nThe Snowplow site name / application ID. (for example, gitlab)"]
    pub fn set_snowplow_app_id(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().snowplow_app_id = Some(v.into());
        self
    }

    #[doc= "Set the field `snowplow_collector_hostname`.\nThe Snowplow collector hostname. (for example, snowplow.trx.gitlab.net)"]
    pub fn set_snowplow_collector_hostname(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().snowplow_collector_hostname = Some(v.into());
        self
    }

    #[doc= "Set the field `snowplow_cookie_domain`.\nThe Snowplow cookie domain. (for example, .gitlab.com)"]
    pub fn set_snowplow_cookie_domain(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().snowplow_cookie_domain = Some(v.into());
        self
    }

    #[doc= "Set the field `snowplow_enabled`.\nEnable snowplow tracking."]
    pub fn set_snowplow_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().snowplow_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `sourcegraph_enabled`.\nEnables Sourcegraph integration. If enabled, requires sourcegraph_url."]
    pub fn set_sourcegraph_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().sourcegraph_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `sourcegraph_public_only`.\nBlocks Sourcegraph from being loaded on private and internal projects."]
    pub fn set_sourcegraph_public_only(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().sourcegraph_public_only = Some(v.into());
        self
    }

    #[doc= "Set the field `sourcegraph_url`.\nThe Sourcegraph instance URL for integration."]
    pub fn set_sourcegraph_url(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().sourcegraph_url = Some(v.into());
        self
    }

    #[doc= "Set the field `spam_check_api_key`.\nAPI key used by GitLab for accessing the Spam Check service endpoint."]
    pub fn set_spam_check_api_key(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().spam_check_api_key = Some(v.into());
        self
    }

    #[doc= "Set the field `spam_check_endpoint_enabled`.\nEnables spam checking using external Spam Check API endpoint."]
    pub fn set_spam_check_endpoint_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().spam_check_endpoint_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `spam_check_endpoint_url`.\nURL of the external Spamcheck service endpoint. Valid URI schemes are grpc or tls. Specifying tls forces communication to be encrypted."]
    pub fn set_spam_check_endpoint_url(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().spam_check_endpoint_url = Some(v.into());
        self
    }

    #[doc= "Set the field `suggest_pipeline_enabled`.\nEnable pipeline suggestion banner."]
    pub fn set_suggest_pipeline_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().suggest_pipeline_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `terminal_max_session_time`.\nMaximum time for web terminal websocket connection (in seconds). Set to 0 for unlimited time."]
    pub fn set_terminal_max_session_time(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().terminal_max_session_time = Some(v.into());
        self
    }

    #[doc= "Set the field `terms`.\n(Required by: enforce_terms) Markdown content for the ToS."]
    pub fn set_terms(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().terms = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_authenticated_api_enabled`.\n(If enabled, requires: throttle_authenticated_api_period_in_seconds and throttle_authenticated_api_requests_per_period) Enable authenticated API request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots)."]
    pub fn set_throttle_authenticated_api_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().throttle_authenticated_api_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_authenticated_api_period_in_seconds`.\nRate limit period (in seconds)."]
    pub fn set_throttle_authenticated_api_period_in_seconds(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().throttle_authenticated_api_period_in_seconds = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_authenticated_api_requests_per_period`.\nMaximum requests per period per user."]
    pub fn set_throttle_authenticated_api_requests_per_period(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().throttle_authenticated_api_requests_per_period = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_authenticated_packages_api_enabled`.\n(If enabled, requires: throttle_authenticated_packages_api_period_in_seconds and throttle_authenticated_packages_api_requests_per_period) Enable authenticated API request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots). View Package Registry rate limits for more details."]
    pub fn set_throttle_authenticated_packages_api_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().throttle_authenticated_packages_api_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_authenticated_packages_api_period_in_seconds`.\nRate limit period (in seconds). View Package Registry rate limits for more details."]
    pub fn set_throttle_authenticated_packages_api_period_in_seconds(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().throttle_authenticated_packages_api_period_in_seconds = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_authenticated_packages_api_requests_per_period`.\nMaximum requests per period per user. View Package Registry rate limits for more details."]
    pub fn set_throttle_authenticated_packages_api_requests_per_period(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().throttle_authenticated_packages_api_requests_per_period = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_authenticated_web_enabled`.\n(If enabled, requires: throttle_authenticated_web_period_in_seconds and throttle_authenticated_web_requests_per_period) Enable authenticated web request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots)."]
    pub fn set_throttle_authenticated_web_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().throttle_authenticated_web_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_authenticated_web_period_in_seconds`.\nRate limit period (in seconds)."]
    pub fn set_throttle_authenticated_web_period_in_seconds(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().throttle_authenticated_web_period_in_seconds = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_authenticated_web_requests_per_period`.\nMaximum requests per period per user."]
    pub fn set_throttle_authenticated_web_requests_per_period(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().throttle_authenticated_web_requests_per_period = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_unauthenticated_api_enabled`.\n(If enabled, requires: throttle_unauthenticated_api_period_in_seconds and throttle_unauthenticated_api_requests_per_period) Enable unauthenticated API request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots)."]
    pub fn set_throttle_unauthenticated_api_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().throttle_unauthenticated_api_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_unauthenticated_api_period_in_seconds`.\nRate limit period in seconds."]
    pub fn set_throttle_unauthenticated_api_period_in_seconds(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().throttle_unauthenticated_api_period_in_seconds = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_unauthenticated_api_requests_per_period`.\nMax requests per period per IP."]
    pub fn set_throttle_unauthenticated_api_requests_per_period(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().throttle_unauthenticated_api_requests_per_period = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_unauthenticated_packages_api_enabled`.\n(If enabled, requires: throttle_unauthenticated_packages_api_period_in_seconds and throttle_unauthenticated_packages_api_requests_per_period) Enable authenticated API request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots). View Package Registry rate limits for more details."]
    pub fn set_throttle_unauthenticated_packages_api_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().throttle_unauthenticated_packages_api_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_unauthenticated_packages_api_period_in_seconds`.\nRate limit period (in seconds). View Package Registry rate limits for more details."]
    pub fn set_throttle_unauthenticated_packages_api_period_in_seconds(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().throttle_unauthenticated_packages_api_period_in_seconds = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_unauthenticated_packages_api_requests_per_period`.\nMaximum requests per period per user. View Package Registry rate limits for more details."]
    pub fn set_throttle_unauthenticated_packages_api_requests_per_period(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().throttle_unauthenticated_packages_api_requests_per_period = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_unauthenticated_web_enabled`.\n(If enabled, requires: throttle_unauthenticated_web_period_in_seconds and throttle_unauthenticated_web_requests_per_period) Enable unauthenticated web request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots)."]
    pub fn set_throttle_unauthenticated_web_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().throttle_unauthenticated_web_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_unauthenticated_web_period_in_seconds`.\nRate limit period in seconds."]
    pub fn set_throttle_unauthenticated_web_period_in_seconds(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().throttle_unauthenticated_web_period_in_seconds = Some(v.into());
        self
    }

    #[doc= "Set the field `throttle_unauthenticated_web_requests_per_period`.\nMax requests per period per IP."]
    pub fn set_throttle_unauthenticated_web_requests_per_period(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().throttle_unauthenticated_web_requests_per_period = Some(v.into());
        self
    }

    #[doc= "Set the field `time_tracking_limit_to_hours`.\nLimit display of time tracking units to hours."]
    pub fn set_time_tracking_limit_to_hours(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().time_tracking_limit_to_hours = Some(v.into());
        self
    }

    #[doc= "Set the field `two_factor_grace_period`.\nAmount of time (in hours) that users are allowed to skip forced configuration of two-factor authentication."]
    pub fn set_two_factor_grace_period(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().two_factor_grace_period = Some(v.into());
        self
    }

    #[doc= "Set the field `unique_ips_limit_enabled`.\n(If enabled, requires: unique_ips_limit_per_user and unique_ips_limit_time_window) Limit sign in from multiple IPs."]
    pub fn set_unique_ips_limit_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().unique_ips_limit_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `unique_ips_limit_per_user`.\nMaximum number of IPs per user."]
    pub fn set_unique_ips_limit_per_user(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().unique_ips_limit_per_user = Some(v.into());
        self
    }

    #[doc= "Set the field `unique_ips_limit_time_window`.\nHow many seconds an IP is counted towards the limit."]
    pub fn set_unique_ips_limit_time_window(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().unique_ips_limit_time_window = Some(v.into());
        self
    }

    #[doc= "Set the field `usage_ping_enabled`.\nEvery week GitLab reports license usage back to GitLab, Inc."]
    pub fn set_usage_ping_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().usage_ping_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `user_deactivation_emails_enabled`.\nSend an email to users upon account deactivation."]
    pub fn set_user_deactivation_emails_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().user_deactivation_emails_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `user_default_external`.\nNewly registered users are external by default."]
    pub fn set_user_default_external(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().user_default_external = Some(v.into());
        self
    }

    #[doc= "Set the field `user_default_internal_regex`.\nSpecify an email address regex pattern to identify default internal users."]
    pub fn set_user_default_internal_regex(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().user_default_internal_regex = Some(v.into());
        self
    }

    #[doc= "Set the field `user_oauth_applications`.\nAllow users to register any application to use GitLab as an OAuth provider."]
    pub fn set_user_oauth_applications(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().user_oauth_applications = Some(v.into());
        self
    }

    #[doc= "Set the field `user_show_add_ssh_key_message`.\nWhen set to false disable the You won't be able to pull or push project code via SSH warning shown to users with no uploaded SSH key."]
    pub fn set_user_show_add_ssh_key_message(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().user_show_add_ssh_key_message = Some(v.into());
        self
    }

    #[doc= "Set the field `version_check_enabled`.\nLet GitLab inform you when an update is available."]
    pub fn set_version_check_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().version_check_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `web_ide_clientside_preview_enabled`.\nLive Preview (allow live previews of JavaScript projects in the Web IDE using CodeSandbox Live Preview)."]
    pub fn set_web_ide_clientside_preview_enabled(self, v: impl Into<PrimField<bool>>) -> Self {
        self.0.data.borrow_mut().web_ide_clientside_preview_enabled = Some(v.into());
        self
    }

    #[doc= "Set the field `whats_new_variant`.\nWhat’s new variant, possible values: all_tiers, current_tier, and disabled."]
    pub fn set_whats_new_variant(self, v: impl Into<PrimField<String>>) -> Self {
        self.0.data.borrow_mut().whats_new_variant = Some(v.into());
        self
    }

    #[doc= "Set the field `wiki_page_max_content_bytes`.\nMaximum wiki page content size in bytes. The minimum value is 1024 bytes."]
    pub fn set_wiki_page_max_content_bytes(self, v: impl Into<PrimField<f64>>) -> Self {
        self.0.data.borrow_mut().wiki_page_max_content_bytes = Some(v.into());
        self
    }

    #[doc= "Get a reference to the value of field `abuse_notification_email` after provisioning.\nIf set, abuse reports are sent to this address. Abuse reports are always available in the Admin Area."]
    pub fn abuse_notification_email(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.abuse_notification_email", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `admin_mode` after provisioning.\nRequire administrators to enable Admin Mode by re-authenticating for administrative tasks."]
    pub fn admin_mode(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.admin_mode", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `after_sign_out_path` after provisioning.\nWhere to redirect users after logout."]
    pub fn after_sign_out_path(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.after_sign_out_path", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `after_sign_up_text` after provisioning.\nText shown to the user after signing up."]
    pub fn after_sign_up_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.after_sign_up_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `akismet_api_key` after provisioning.\nAPI key for Akismet spam protection."]
    pub fn akismet_api_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.akismet_api_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `akismet_enabled` after provisioning.\n(If enabled, requires: akismet_api_key) Enable or disable Akismet spam protection."]
    pub fn akismet_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.akismet_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `allow_group_owners_to_manage_ldap` after provisioning.\nSet to true to allow group owners to manage LDAP."]
    pub fn allow_group_owners_to_manage_ldap(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.allow_group_owners_to_manage_ldap", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `allow_local_requests_from_system_hooks` after provisioning.\nAllow requests to the local network from system hooks."]
    pub fn allow_local_requests_from_system_hooks(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.allow_local_requests_from_system_hooks", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `allow_local_requests_from_web_hooks_and_services` after provisioning.\nAllow requests to the local network from web hooks and services."]
    pub fn allow_local_requests_from_web_hooks_and_services(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.allow_local_requests_from_web_hooks_and_services", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `archive_builds_in_human_readable` after provisioning.\nSet the duration for which the jobs are considered as old and expired. After that time passes, the jobs are archived and no longer able to be retried. Make it empty to never expire jobs. It has to be no less than 1 day, for example: 15 days, 1 month, 2 years."]
    pub fn archive_builds_in_human_readable(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.archive_builds_in_human_readable", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `asset_proxy_allowlist` after provisioning.\nAssets that match these domains are not proxied. Wildcards allowed. Your GitLab installation URL is automatically allowlisted. GitLab restart is required to apply changes."]
    pub fn asset_proxy_allowlist(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.asset_proxy_allowlist", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `asset_proxy_enabled` after provisioning.\n(If enabled, requires: asset_proxy_url) Enable proxying of assets. GitLab restart is required to apply changes."]
    pub fn asset_proxy_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.asset_proxy_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `asset_proxy_secret_key` after provisioning.\nShared secret with the asset proxy server. GitLab restart is required to apply changes."]
    pub fn asset_proxy_secret_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.asset_proxy_secret_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `asset_proxy_url` after provisioning.\nURL of the asset proxy server. GitLab restart is required to apply changes."]
    pub fn asset_proxy_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.asset_proxy_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `authorized_keys_enabled` after provisioning.\nBy default, we write to the authorized_keys file to support Git over SSH without additional configuration. GitLab can be optimized to authenticate SSH keys via the database file. Only disable this if you have configured your OpenSSH server to use the AuthorizedKeysCommand."]
    pub fn authorized_keys_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.authorized_keys_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `auto_devops_domain` after provisioning.\nSpecify a domain to use by default for every project’s Auto Review Apps and Auto Deploy stages."]
    pub fn auto_devops_domain(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.auto_devops_domain", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `auto_devops_enabled` after provisioning.\nEnable Auto DevOps for projects by default. It automatically builds, tests, and deploys applications based on a predefined CI/CD configuration."]
    pub fn auto_devops_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.auto_devops_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `automatic_purchased_storage_allocation` after provisioning.\nEnabling this permits automatic allocation of purchased storage in a namespace."]
    pub fn automatic_purchased_storage_allocation(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.automatic_purchased_storage_allocation", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `can_create_group` after provisioning.\nIndicates whether users can create top-level groups. Introduced in GitLab 15.5."]
    pub fn can_create_group(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.can_create_group", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `check_namespace_plan` after provisioning.\nEnabling this makes only licensed EE features available to projects if the project namespace’s plan includes the feature or if the project is public."]
    pub fn check_namespace_plan(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.check_namespace_plan", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `commit_email_hostname` after provisioning.\nCustom hostname (for private commit emails)."]
    pub fn commit_email_hostname(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.commit_email_hostname", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `container_expiration_policies_enable_historic_entries` after provisioning.\nEnable cleanup policies for all projects."]
    pub fn container_expiration_policies_enable_historic_entries(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.container_expiration_policies_enable_historic_entries", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `container_registry_cleanup_tags_service_max_list_size` after provisioning.\nThe maximum number of tags that can be deleted in a single execution of cleanup policies."]
    pub fn container_registry_cleanup_tags_service_max_list_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.container_registry_cleanup_tags_service_max_list_size", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `container_registry_delete_tags_service_timeout` after provisioning.\nThe maximum time, in seconds, that the cleanup process can take to delete a batch of tags for cleanup policies."]
    pub fn container_registry_delete_tags_service_timeout(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.container_registry_delete_tags_service_timeout", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `container_registry_expiration_policies_caching` after provisioning.\nCaching during the execution of cleanup policies."]
    pub fn container_registry_expiration_policies_caching(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.container_registry_expiration_policies_caching", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `container_registry_expiration_policies_worker_capacity` after provisioning.\nNumber of workers for cleanup policies."]
    pub fn container_registry_expiration_policies_worker_capacity(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.container_registry_expiration_policies_worker_capacity", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `container_registry_token_expire_delay` after provisioning.\nContainer Registry token duration in minutes."]
    pub fn container_registry_token_expire_delay(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.container_registry_token_expire_delay", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `deactivate_dormant_users` after provisioning.\nEnable automatic deactivation of dormant users."]
    pub fn deactivate_dormant_users(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.deactivate_dormant_users", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_artifacts_expire_in` after provisioning.\nSet the default expiration time for each job’s artifacts."]
    pub fn default_artifacts_expire_in(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_artifacts_expire_in", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_branch_name` after provisioning.\nInstance-level custom initial branch name (introduced in GitLab 13.2)."]
    pub fn default_branch_name(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_branch_name", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_branch_protection` after provisioning.\nDetermine if developers can push to the default branch. Can take: 0 (not protected, both users with the Developer role or Maintainer role can push new commits and force push), 1 (partially protected, users with the Developer role or Maintainer role can push new commits, but cannot force push) or 2 (fully protected, users with the Developer or Maintainer role cannot push new commits, but users with the Developer or Maintainer role can; no one can force push) as a parameter. Default is 2."]
    pub fn default_branch_protection(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_branch_protection", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_ci_config_path` after provisioning.\nDefault CI/CD configuration file and path for new projects (.gitlab-ci.yml if not set)."]
    pub fn default_ci_config_path(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_ci_config_path", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_group_visibility` after provisioning.\nWhat visibility level new groups receive. Can take private, internal and public as a parameter."]
    pub fn default_group_visibility(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_group_visibility", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_project_creation` after provisioning.\nDefault project creation protection. Can take: 0 (No one), 1 (Maintainers) or 2 (Developers + Maintainers)."]
    pub fn default_project_creation(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_project_creation", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_project_visibility` after provisioning.\nWhat visibility level new projects receive. Can take private, internal and public as a parameter."]
    pub fn default_project_visibility(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_project_visibility", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_projects_limit` after provisioning.\nProject limit per user."]
    pub fn default_projects_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_projects_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_snippet_visibility` after provisioning.\nWhat visibility level new snippets receive. Can take private, internal and public as a parameter."]
    pub fn default_snippet_visibility(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_snippet_visibility", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `delete_inactive_projects` after provisioning.\nEnable inactive project deletion feature. Introduced in GitLab 14.10. Became operational in GitLab 15.0 (with feature flag inactive_projects_deletion)."]
    pub fn delete_inactive_projects(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.delete_inactive_projects", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `deletion_adjourned_period` after provisioning.\nThe number of days to wait before deleting a project or group that is marked for deletion. Value must be between 1 and 90."]
    pub fn deletion_adjourned_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.deletion_adjourned_period", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `diff_max_files` after provisioning.\nMaximum files in a diff."]
    pub fn diff_max_files(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.diff_max_files", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `diff_max_lines` after provisioning.\nMaximum lines in a diff."]
    pub fn diff_max_lines(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.diff_max_lines", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `diff_max_patch_bytes` after provisioning.\nMaximum diff patch size, in bytes."]
    pub fn diff_max_patch_bytes(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.diff_max_patch_bytes", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `disable_feed_token` after provisioning.\nDisable display of RSS/Atom and calendar feed tokens (introduced in GitLab 13.7)."]
    pub fn disable_feed_token(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.disable_feed_token", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `disabled_oauth_sign_in_sources` after provisioning.\nDisabled OAuth sign-in sources."]
    pub fn disabled_oauth_sign_in_sources(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.disabled_oauth_sign_in_sources", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `dns_rebinding_protection_enabled` after provisioning.\nEnforce DNS rebinding attack protection."]
    pub fn dns_rebinding_protection_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.dns_rebinding_protection_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `domain_allowlist` after provisioning.\nForce people to use only corporate emails for sign-up. Null means there is no restriction."]
    pub fn domain_allowlist(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.domain_allowlist", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `domain_denylist` after provisioning.\nUsers with email addresses that match these domains cannot sign up. Wildcards allowed. Use separate lines for multiple entries. Ex: domain.com, *.domain.com."]
    pub fn domain_denylist(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.domain_denylist", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `domain_denylist_enabled` after provisioning.\n(If enabled, requires: domain_denylist) Allows blocking sign-ups from emails from specific domains."]
    pub fn domain_denylist_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.domain_denylist_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `dsa_key_restriction` after provisioning.\nThe minimum allowed bit length of an uploaded DSA key. 0 means no restriction. -1 disables DSA keys."]
    pub fn dsa_key_restriction(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.dsa_key_restriction", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `ecdsa_key_restriction` after provisioning.\nThe minimum allowed curve size (in bits) of an uploaded ECDSA key. 0 means no restriction. -1 disables ECDSA keys."]
    pub fn ecdsa_key_restriction(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.ecdsa_key_restriction", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `ecdsa_sk_key_restriction` after provisioning.\nThe minimum allowed curve size (in bits) of an uploaded ECDSA_SK key. 0 means no restriction. -1 disables ECDSA_SK keys."]
    pub fn ecdsa_sk_key_restriction(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.ecdsa_sk_key_restriction", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `ed25519_key_restriction` after provisioning.\nThe minimum allowed curve size (in bits) of an uploaded ED25519 key. 0 means no restriction. -1 disables ED25519 keys."]
    pub fn ed25519_key_restriction(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.ed25519_key_restriction", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `ed25519_sk_key_restriction` after provisioning.\nThe minimum allowed curve size (in bits) of an uploaded ED25519_SK key. 0 means no restriction. -1 disables ED25519_SK keys."]
    pub fn ed25519_sk_key_restriction(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.ed25519_sk_key_restriction", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `eks_access_key_id` after provisioning.\nAWS IAM access key ID."]
    pub fn eks_access_key_id(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.eks_access_key_id", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `eks_account_id` after provisioning.\nAmazon account ID."]
    pub fn eks_account_id(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.eks_account_id", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `eks_integration_enabled` after provisioning.\nEnable integration with Amazon EKS."]
    pub fn eks_integration_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.eks_integration_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `eks_secret_access_key` after provisioning.\nAWS IAM secret access key."]
    pub fn eks_secret_access_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.eks_secret_access_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_aws` after provisioning.\nEnable the use of AWS hosted Elasticsearch."]
    pub fn elasticsearch_aws(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_aws", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_aws_access_key` after provisioning.\nAWS IAM access key."]
    pub fn elasticsearch_aws_access_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_aws_access_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_aws_region` after provisioning.\nThe AWS region the Elasticsearch domain is configured."]
    pub fn elasticsearch_aws_region(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_aws_region", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_aws_secret_access_key` after provisioning.\nAWS IAM secret access key."]
    pub fn elasticsearch_aws_secret_access_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_aws_secret_access_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_indexed_field_length_limit` after provisioning.\nMaximum size of text fields to index by Elasticsearch. 0 value means no limit. This does not apply to repository and wiki indexing."]
    pub fn elasticsearch_indexed_field_length_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.elasticsearch_indexed_field_length_limit", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `elasticsearch_indexed_file_size_limit_kb` after provisioning.\nMaximum size of repository and wiki files that are indexed by Elasticsearch."]
    pub fn elasticsearch_indexed_file_size_limit_kb(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.elasticsearch_indexed_file_size_limit_kb", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `elasticsearch_indexing` after provisioning.\nEnable Elasticsearch indexing."]
    pub fn elasticsearch_indexing(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_indexing", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_limit_indexing` after provisioning.\nLimit Elasticsearch to index certain namespaces and projects."]
    pub fn elasticsearch_limit_indexing(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_limit_indexing", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_max_bulk_concurrency` after provisioning.\nMaximum concurrency of Elasticsearch bulk requests per indexing operation. This only applies to repository indexing operations."]
    pub fn elasticsearch_max_bulk_concurrency(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_max_bulk_concurrency", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_max_bulk_size_mb` after provisioning.\nMaximum size of Elasticsearch bulk indexing requests in MB. This only applies to repository indexing operations."]
    pub fn elasticsearch_max_bulk_size_mb(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_max_bulk_size_mb", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_namespace_ids` after provisioning.\nThe namespaces to index via Elasticsearch if elasticsearch_limit_indexing is enabled."]
    pub fn elasticsearch_namespace_ids(&self) -> ListRef<PrimExpr<f64>> {
        ListRef::new(self.shared().clone(), format!("{}.elasticsearch_namespace_ids", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_password` after provisioning.\nThe password of your Elasticsearch instance."]
    pub fn elasticsearch_password(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_password", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_project_ids` after provisioning.\nThe projects to index via Elasticsearch if elasticsearch_limit_indexing is enabled."]
    pub fn elasticsearch_project_ids(&self) -> ListRef<PrimExpr<f64>> {
        ListRef::new(self.shared().clone(), format!("{}.elasticsearch_project_ids", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_search` after provisioning.\nEnable Elasticsearch search."]
    pub fn elasticsearch_search(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_search", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_url` after provisioning.\nThe URL to use for connecting to Elasticsearch. Use a comma-separated list to support cluster (for example, http://localhost:9200, http://localhost:9201)."]
    pub fn elasticsearch_url(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.elasticsearch_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_username` after provisioning.\nThe username of your Elasticsearch instance."]
    pub fn elasticsearch_username(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_username", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `email_additional_text` after provisioning.\nAdditional text added to the bottom of every email for legal/auditing/compliance reasons."]
    pub fn email_additional_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.email_additional_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `email_author_in_body` after provisioning.\nSome email servers do not support overriding the email sender name. Enable this option to include the name of the author of the issue, merge request or comment in the email body instead."]
    pub fn email_author_in_body(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.email_author_in_body", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `enabled_git_access_protocol` after provisioning.\nEnabled protocols for Git access. Allowed values are: ssh, http, and nil to allow both protocols."]
    pub fn enabled_git_access_protocol(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.enabled_git_access_protocol", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `enforce_namespace_storage_limit` after provisioning.\nEnabling this permits enforcement of namespace storage limits."]
    pub fn enforce_namespace_storage_limit(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.enforce_namespace_storage_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `enforce_terms` after provisioning.\n(If enabled, requires: terms) Enforce application ToS to all users."]
    pub fn enforce_terms(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.enforce_terms", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `external_auth_client_cert` after provisioning.\n(If enabled, requires: external_auth_client_key) The certificate to use to authenticate with the external authorization service."]
    pub fn external_auth_client_cert(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.external_auth_client_cert", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `external_auth_client_key` after provisioning.\nPrivate key for the certificate when authentication is required for the external authorization service, this is encrypted when stored."]
    pub fn external_auth_client_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.external_auth_client_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `external_auth_client_key_pass` after provisioning.\nPassphrase to use for the private key when authenticating with the external service this is encrypted when stored."]
    pub fn external_auth_client_key_pass(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.external_auth_client_key_pass", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `external_authorization_service_default_label` after provisioning.\nThe default classification label to use when requesting authorization and no classification label has been specified on the project."]
    pub fn external_authorization_service_default_label(&self) -> PrimExpr<String> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.external_authorization_service_default_label", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `external_authorization_service_enabled` after provisioning.\n(If enabled, requires: external_authorization_service_default_label, external_authorization_service_timeout and external_authorization_service_url) Enable using an external authorization service for accessing projects."]
    pub fn external_authorization_service_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.external_authorization_service_enabled", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `external_authorization_service_timeout` after provisioning.\nThe timeout after which an authorization request is aborted, in seconds. When a request times out, access is denied to the user. (min: 0.001, max: 10, step: 0.001)."]
    pub fn external_authorization_service_timeout(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.external_authorization_service_timeout", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `external_authorization_service_url` after provisioning.\nURL to which authorization requests are directed."]
    pub fn external_authorization_service_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.external_authorization_service_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `external_pipeline_validation_service_timeout` after provisioning.\nHow long to wait for a response from the pipeline validation service. Assumes OK if it times out."]
    pub fn external_pipeline_validation_service_timeout(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.external_pipeline_validation_service_timeout", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `external_pipeline_validation_service_token` after provisioning.\nOptional. Token to include as the X-Gitlab-Token header in requests to the URL in external_pipeline_validation_service_url."]
    pub fn external_pipeline_validation_service_token(&self) -> PrimExpr<String> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.external_pipeline_validation_service_token", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `external_pipeline_validation_service_url` after provisioning.\nURL to use for pipeline validation requests."]
    pub fn external_pipeline_validation_service_url(&self) -> PrimExpr<String> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.external_pipeline_validation_service_url", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `file_template_project_id` after provisioning.\nThe ID of a project to load custom file templates from."]
    pub fn file_template_project_id(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.file_template_project_id", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `first_day_of_week` after provisioning.\nStart day of the week for calendar views and date pickers. Valid values are 0 for Sunday, 1 for Monday, and 6 for Saturday."]
    pub fn first_day_of_week(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.first_day_of_week", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `geo_node_allowed_ips` after provisioning.\nComma-separated list of IPs and CIDRs of allowed secondary nodes. For example, 1.1.1.1, 2.2.2.0/24."]
    pub fn geo_node_allowed_ips(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.geo_node_allowed_ips", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `geo_status_timeout` after provisioning.\nThe amount of seconds after which a request to get a secondary node status times out."]
    pub fn geo_status_timeout(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.geo_status_timeout", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `git_rate_limit_users_allowlist` after provisioning.\nList of usernames excluded from Git anti-abuse rate limits. Maximum: 100 usernames. Introduced in GitLab 15.2."]
    pub fn git_rate_limit_users_allowlist(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.git_rate_limit_users_allowlist", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `git_two_factor_session_expiry` after provisioning.\nMaximum duration (in minutes) of a session for Git operations when 2FA is enabled."]
    pub fn git_two_factor_session_expiry(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.git_two_factor_session_expiry", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `gitaly_timeout_default` after provisioning.\nDefault Gitaly timeout, in seconds. This timeout is not enforced for Git fetch/push operations or Sidekiq jobs. Set to 0 to disable timeouts."]
    pub fn gitaly_timeout_default(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.gitaly_timeout_default", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `gitaly_timeout_fast` after provisioning.\nGitaly fast operation timeout, in seconds. Some Gitaly operations are expected to be fast. If they exceed this threshold, there may be a problem with a storage shard and ‘failing fast’ can help maintain the stability of the GitLab instance. Set to 0 to disable timeouts."]
    pub fn gitaly_timeout_fast(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.gitaly_timeout_fast", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `gitaly_timeout_medium` after provisioning.\nMedium Gitaly timeout, in seconds. This should be a value between the Fast and the Default timeout. Set to 0 to disable timeouts."]
    pub fn gitaly_timeout_medium(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.gitaly_timeout_medium", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `grafana_enabled` after provisioning.\nEnable Grafana."]
    pub fn grafana_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.grafana_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `grafana_url` after provisioning.\nGrafana URL."]
    pub fn grafana_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.grafana_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `gravatar_enabled` after provisioning.\nEnable Gravatar."]
    pub fn gravatar_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.gravatar_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `group_owners_can_manage_default_branch_protection` after provisioning.\nPrevent overrides of default branch protection."]
    pub fn group_owners_can_manage_default_branch_protection(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.group_owners_can_manage_default_branch_protection", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `hashed_storage_enabled` after provisioning.\nCreate new projects using hashed storage paths: Enable immutable, hash-based paths and repository names to store repositories on disk. This prevents repositories from having to be moved or renamed when the Project URL changes and may improve disk I/O performance. (Always enabled in GitLab versions 13.0 and later, configuration is scheduled for removal in 14.0)."]
    pub fn hashed_storage_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.hashed_storage_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `help_page_hide_commercial_content` after provisioning.\nHide marketing-related entries from help."]
    pub fn help_page_hide_commercial_content(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.help_page_hide_commercial_content", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `help_page_support_url` after provisioning.\nAlternate support URL for help page and help dropdown."]
    pub fn help_page_support_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.help_page_support_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `help_page_text` after provisioning.\nCustom text displayed on the help page."]
    pub fn help_page_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.help_page_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `help_text` after provisioning.\nGitLab server administrator information."]
    pub fn help_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.help_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `hide_third_party_offers` after provisioning.\nDo not display offers from third parties in GitLab."]
    pub fn hide_third_party_offers(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.hide_third_party_offers", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `home_page_url` after provisioning.\nRedirect to this URL when not logged in."]
    pub fn home_page_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.home_page_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `housekeeping_enabled` after provisioning.\n\n\t\t\t\tEnable or disable Git housekeeping.\n\t\t\t\tIf enabled, requires either housekeeping_optimize_repository_period OR housekeeping_bitmaps_enabled, housekeeping_full_repack_period, housekeeping_gc_period, and housekeeping_incremental_repack_period.\n\t\t\t\tOptions housekeeping_bitmaps_enabled, housekeeping_full_repack_period, housekeeping_gc_period, and housekeeping_incremental_repack_period are deprecated. Use housekeeping_optimize_repository_period instead.\n\t\t\t"]
    pub fn housekeeping_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.housekeeping_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `housekeeping_full_repack_period` after provisioning.\nNumber of Git pushes after which an incremental git repack is run."]
    pub fn housekeeping_full_repack_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.housekeeping_full_repack_period", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `housekeeping_gc_period` after provisioning.\nNumber of Git pushes after which git gc is run."]
    pub fn housekeeping_gc_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.housekeeping_gc_period", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `housekeeping_incremental_repack_period` after provisioning.\nNumber of Git pushes after which an incremental git repack is run."]
    pub fn housekeeping_incremental_repack_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.housekeeping_incremental_repack_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `housekeeping_optimize_repository_period` after provisioning.\nNumber of Git pushes after which an incremental git repack is run."]
    pub fn housekeeping_optimize_repository_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.housekeeping_optimize_repository_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `html_emails_enabled` after provisioning.\nEnable HTML emails."]
    pub fn html_emails_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.html_emails_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `id` after provisioning.\n"]
    pub fn id(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.id", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `import_sources` after provisioning.\nSources to allow project import from. Valid values are: `github`, `bitbucket`, `bitbucket_server`, `fogbugz`, `git`, `gitlab_project`, `gitea`, `manifest`"]
    pub fn import_sources(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.import_sources", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `in_product_marketing_emails_enabled` after provisioning.\nEnable in-product marketing emails."]
    pub fn in_product_marketing_emails_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.in_product_marketing_emails_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `inactive_projects_delete_after_months` after provisioning.\nIf delete_inactive_projects is true, the time (in months) to wait before deleting inactive projects. Introduced in GitLab 14.10. Became operational in GitLab 15.0."]
    pub fn inactive_projects_delete_after_months(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.inactive_projects_delete_after_months", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `inactive_projects_min_size_mb` after provisioning.\nIf delete_inactive_projects is true, the minimum repository size for projects to be checked for inactivity. Introduced in GitLab 14.10. Became operational in GitLab 15.0."]
    pub fn inactive_projects_min_size_mb(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.inactive_projects_min_size_mb", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `inactive_projects_send_warning_email_after_months` after provisioning.\nIf delete_inactive_projects is true, sets the time (in months) to wait before emailing maintainers that the project is scheduled be deleted because it is inactive. Introduced in GitLab 14.10. Became operational in GitLab 15.0."]
    pub fn inactive_projects_send_warning_email_after_months(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.inactive_projects_send_warning_email_after_months", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `invisible_captcha_enabled` after provisioning.\nEnable Invisible CAPTCHA spam detection during sign-up."]
    pub fn invisible_captcha_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.invisible_captcha_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `issues_create_limit` after provisioning.\nMax number of issue creation requests per minute per user."]
    pub fn issues_create_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.issues_create_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `keep_latest_artifact` after provisioning.\nPrevent the deletion of the artifacts from the most recent successful jobs, regardless of the expiry time."]
    pub fn keep_latest_artifact(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.keep_latest_artifact", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `local_markdown_version` after provisioning.\nIncrease this value when any cached Markdown should be invalidated."]
    pub fn local_markdown_version(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.local_markdown_version", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `mailgun_events_enabled` after provisioning.\nEnable Mailgun event receiver."]
    pub fn mailgun_events_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.mailgun_events_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `mailgun_signing_key` after provisioning.\nThe Mailgun HTTP webhook signing key for receiving events from webhook."]
    pub fn mailgun_signing_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.mailgun_signing_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `maintenance_mode` after provisioning.\nWhen instance is in maintenance mode, non-administrative users can sign in with read-only access and make read-only API requests."]
    pub fn maintenance_mode(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.maintenance_mode", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `maintenance_mode_message` after provisioning.\nMessage displayed when instance is in maintenance mode."]
    pub fn maintenance_mode_message(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.maintenance_mode_message", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_artifacts_size` after provisioning.\nMaximum artifacts size in MB."]
    pub fn max_artifacts_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_artifacts_size", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_attachment_size` after provisioning.\nLimit attachment size in MB."]
    pub fn max_attachment_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_attachment_size", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_export_size` after provisioning.\nMaximum export size in MB. 0 for unlimited."]
    pub fn max_export_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_export_size", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_import_size` after provisioning.\nMaximum import size in MB. 0 for unlimited."]
    pub fn max_import_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_import_size", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_number_of_repository_downloads` after provisioning.\nMaximum number of unique repositories a user can download in the specified time period before they are banned. Maximum: 10,000 repositories. Introduced in GitLab 15.1."]
    pub fn max_number_of_repository_downloads(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_number_of_repository_downloads", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_number_of_repository_downloads_within_time_period` after provisioning.\nReporting time period (in seconds). Maximum: 864000 seconds (10 days). Introduced in GitLab 15.1."]
    pub fn max_number_of_repository_downloads_within_time_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.max_number_of_repository_downloads_within_time_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `max_pages_size` after provisioning.\nMaximum size of pages repositories in MB."]
    pub fn max_pages_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_pages_size", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_personal_access_token_lifetime` after provisioning.\nMaximum allowable lifetime for access tokens in days."]
    pub fn max_personal_access_token_lifetime(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_personal_access_token_lifetime", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_ssh_key_lifetime` after provisioning.\nMaximum allowable lifetime for SSH keys in days. Introduced in GitLab 14.6."]
    pub fn max_ssh_key_lifetime(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_ssh_key_lifetime", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `metrics_method_call_threshold` after provisioning.\nA method call is only tracked when it takes longer than the given amount of milliseconds."]
    pub fn metrics_method_call_threshold(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.metrics_method_call_threshold", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `minimum_password_length` after provisioning.\nIndicates whether passwords require a minimum length. Introduced in GitLab 15.1. Premium and Ultimate only."]
    pub fn minimum_password_length(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.minimum_password_length", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `mirror_available` after provisioning.\nAllow repository mirroring to configured by project Maintainers. If disabled, only Administrators can configure repository mirroring."]
    pub fn mirror_available(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.mirror_available", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `mirror_capacity_threshold` after provisioning.\nMinimum capacity to be available before scheduling more mirrors preemptively."]
    pub fn mirror_capacity_threshold(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.mirror_capacity_threshold", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `mirror_max_capacity` after provisioning.\nMaximum number of mirrors that can be synchronizing at the same time."]
    pub fn mirror_max_capacity(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.mirror_max_capacity", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `mirror_max_delay` after provisioning.\nMaximum time (in minutes) between updates that a mirror can have when scheduled to synchronize."]
    pub fn mirror_max_delay(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.mirror_max_delay", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `npm_package_requests_forwarding` after provisioning.\nUse npmjs.org as a default remote repository when the package is not found in the GitLab Package Registry for npm."]
    pub fn npm_package_requests_forwarding(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.npm_package_requests_forwarding", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `outbound_local_requests_whitelist` after provisioning.\nDefine a list of trusted domains or IP addresses to which local requests are allowed when local requests for hooks and services are disabled."]
    pub fn outbound_local_requests_whitelist(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.outbound_local_requests_whitelist", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `package_registry_cleanup_policies_worker_capacity` after provisioning.\nNumber of workers assigned to the packages cleanup policies."]
    pub fn package_registry_cleanup_policies_worker_capacity(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.package_registry_cleanup_policies_worker_capacity", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `pages_domain_verification_enabled` after provisioning.\nRequire users to prove ownership of custom domains. Domain verification is an essential security measure for public GitLab sites. Users are required to demonstrate they control a domain before it is enabled."]
    pub fn pages_domain_verification_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.pages_domain_verification_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `password_authentication_enabled_for_git` after provisioning.\nEnable authentication for Git over HTTP(S) via a GitLab account password."]
    pub fn password_authentication_enabled_for_git(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.password_authentication_enabled_for_git", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `password_authentication_enabled_for_web` after provisioning.\nEnable authentication for the web interface via a GitLab account password."]
    pub fn password_authentication_enabled_for_web(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.password_authentication_enabled_for_web", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `password_lowercase_required` after provisioning.\nIndicates whether passwords require at least one lowercase letter. Introduced in GitLab 15.1."]
    pub fn password_lowercase_required(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.password_lowercase_required", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `password_number_required` after provisioning.\nIndicates whether passwords require at least one number. Introduced in GitLab 15.1."]
    pub fn password_number_required(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.password_number_required", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `password_symbol_required` after provisioning.\nIndicates whether passwords require at least one symbol character. Introduced in GitLab 15.1."]
    pub fn password_symbol_required(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.password_symbol_required", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `password_uppercase_required` after provisioning.\nIndicates whether passwords require at least one uppercase letter. Introduced in GitLab 15.1."]
    pub fn password_uppercase_required(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.password_uppercase_required", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `performance_bar_allowed_group_path` after provisioning.\nPath of the group that is allowed to toggle the performance bar."]
    pub fn performance_bar_allowed_group_path(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.performance_bar_allowed_group_path", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `personal_access_token_prefix` after provisioning.\nPrefix for all generated personal access tokens."]
    pub fn personal_access_token_prefix(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.personal_access_token_prefix", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `pipeline_limit_per_project_user_sha` after provisioning.\nMaximum number of pipeline creation requests per minute per user and commit."]
    pub fn pipeline_limit_per_project_user_sha(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.pipeline_limit_per_project_user_sha", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `plantuml_enabled` after provisioning.\n(If enabled, requires: plantuml_url) Enable PlantUML integration."]
    pub fn plantuml_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.plantuml_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `plantuml_url` after provisioning.\nThe PlantUML instance URL for integration."]
    pub fn plantuml_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.plantuml_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `polling_interval_multiplier` after provisioning.\nInterval multiplier used by endpoints that perform polling. Set to 0 to disable polling."]
    pub fn polling_interval_multiplier(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.polling_interval_multiplier", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `project_export_enabled` after provisioning.\nEnable project export."]
    pub fn project_export_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.project_export_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `prometheus_metrics_enabled` after provisioning.\nEnable Prometheus metrics."]
    pub fn prometheus_metrics_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.prometheus_metrics_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `protected_ci_variables` after provisioning.\nCI/CD variables are protected by default."]
    pub fn protected_ci_variables(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.protected_ci_variables", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `push_event_activities_limit` after provisioning.\nNumber of changes (branches or tags) in a single push to determine whether individual push events or bulk push events are created. Bulk push events are created if it surpasses that value."]
    pub fn push_event_activities_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.push_event_activities_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `push_event_hooks_limit` after provisioning.\nNumber of changes (branches or tags) in a single push to determine whether webhooks and services fire or not. Webhooks and services aren’t submitted if it surpasses that value."]
    pub fn push_event_hooks_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.push_event_hooks_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `pypi_package_requests_forwarding` after provisioning.\nUse pypi.org as a default remote repository when the package is not found in the GitLab Package Registry for PyPI."]
    pub fn pypi_package_requests_forwarding(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.pypi_package_requests_forwarding", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `rate_limiting_response_text` after provisioning.\nWhen rate limiting is enabled via the throttle_* settings, send this plain text response when a rate limit is exceeded. ‘Retry later’ is sent if this is blank."]
    pub fn rate_limiting_response_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.rate_limiting_response_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `raw_blob_request_limit` after provisioning.\nMax number of requests per minute for each raw path. To disable throttling set to 0."]
    pub fn raw_blob_request_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.raw_blob_request_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `recaptcha_enabled` after provisioning.\n(If enabled, requires: recaptcha_private_key and recaptcha_site_key) Enable reCAPTCHA."]
    pub fn recaptcha_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.recaptcha_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `recaptcha_private_key` after provisioning.\nPrivate key for reCAPTCHA."]
    pub fn recaptcha_private_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.recaptcha_private_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `recaptcha_site_key` after provisioning.\nSite key for reCAPTCHA."]
    pub fn recaptcha_site_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.recaptcha_site_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `receive_max_input_size` after provisioning.\nMaximum push size (MB)."]
    pub fn receive_max_input_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.receive_max_input_size", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `repository_checks_enabled` after provisioning.\nGitLab periodically runs git fsck in all project and wiki repositories to look for silent disk corruption issues."]
    pub fn repository_checks_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.repository_checks_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `repository_size_limit` after provisioning.\nSize limit per repository (MB)."]
    pub fn repository_size_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.repository_size_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `repository_storages` after provisioning.\n(GitLab 13.0 and earlier) List of names of enabled storage paths, taken from gitlab.yml. New projects are created in one of these stores, chosen at random."]
    pub fn repository_storages(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.repository_storages", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `repository_storages_weighted` after provisioning.\n(GitLab 13.1 and later) Hash of names of taken from gitlab.yml to weights. New projects are created in one of these stores, chosen by a weighted random selection."]
    pub fn repository_storages_weighted(&self) -> RecRef<PrimExpr<f64>> {
        RecRef::new(self.shared().clone(), format!("{}.repository_storages_weighted", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `require_admin_approval_after_user_signup` after provisioning.\nWhen enabled, any user that signs up for an account using the registration form is placed under a Pending approval state and has to be explicitly approved by an administrator."]
    pub fn require_admin_approval_after_user_signup(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.require_admin_approval_after_user_signup", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `require_two_factor_authentication` after provisioning.\n(If enabled, requires: two_factor_grace_period) Require all users to set up Two-factor authentication."]
    pub fn require_two_factor_authentication(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.require_two_factor_authentication", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `restricted_visibility_levels` after provisioning.\nSelected levels cannot be used by non-Administrator users for groups, projects or snippets. Can take private, internal and public as a parameter. Null means there is no restriction."]
    pub fn restricted_visibility_levels(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.restricted_visibility_levels", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `rsa_key_restriction` after provisioning.\nThe minimum allowed bit length of an uploaded RSA key. 0 means no restriction. -1 disables RSA keys."]
    pub fn rsa_key_restriction(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.rsa_key_restriction", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `search_rate_limit` after provisioning.\nMax number of requests per minute for performing a search while authenticated. To disable throttling set to 0."]
    pub fn search_rate_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.search_rate_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `search_rate_limit_unauthenticated` after provisioning.\nMax number of requests per minute for performing a search while unauthenticated. To disable throttling set to 0."]
    pub fn search_rate_limit_unauthenticated(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.search_rate_limit_unauthenticated", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `send_user_confirmation_email` after provisioning.\nSend confirmation email on sign-up."]
    pub fn send_user_confirmation_email(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.send_user_confirmation_email", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `session_expire_delay` after provisioning.\nSession duration in minutes. GitLab restart is required to apply changes."]
    pub fn session_expire_delay(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.session_expire_delay", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `shared_runners_enabled` after provisioning.\n(If enabled, requires: shared_runners_text and shared_runners_minutes) Enable shared runners for new projects."]
    pub fn shared_runners_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.shared_runners_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `shared_runners_minutes` after provisioning.\nSet the maximum number of CI/CD minutes that a group can use on shared runners per month."]
    pub fn shared_runners_minutes(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.shared_runners_minutes", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `shared_runners_text` after provisioning.\nShared runners text."]
    pub fn shared_runners_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.shared_runners_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `sidekiq_job_limiter_compression_threshold_bytes` after provisioning.\nThe threshold in bytes at which Sidekiq jobs are compressed before being stored in Redis."]
    pub fn sidekiq_job_limiter_compression_threshold_bytes(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.sidekiq_job_limiter_compression_threshold_bytes", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `sidekiq_job_limiter_limit_bytes` after provisioning.\nThe threshold in bytes at which Sidekiq jobs are rejected. 0 means do not reject any job."]
    pub fn sidekiq_job_limiter_limit_bytes(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.sidekiq_job_limiter_limit_bytes", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `sidekiq_job_limiter_mode` after provisioning.\ntrack or compress. Sets the behavior for Sidekiq job size limits."]
    pub fn sidekiq_job_limiter_mode(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.sidekiq_job_limiter_mode", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `sign_in_text` after provisioning.\nText on the login page."]
    pub fn sign_in_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.sign_in_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `signup_enabled` after provisioning.\nEnable registration."]
    pub fn signup_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.signup_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `slack_app_enabled` after provisioning.\n(If enabled, requires: slack_app_id, slack_app_secret and slack_app_secret) Enable Slack app."]
    pub fn slack_app_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.slack_app_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `slack_app_id` after provisioning.\nThe app ID of the Slack-app."]
    pub fn slack_app_id(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.slack_app_id", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `slack_app_secret` after provisioning.\nThe app secret of the Slack-app."]
    pub fn slack_app_secret(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.slack_app_secret", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `slack_app_signing_secret` after provisioning.\nThe signing secret of the Slack-app."]
    pub fn slack_app_signing_secret(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.slack_app_signing_secret", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `slack_app_verification_token` after provisioning.\nThe verification token of the Slack-app."]
    pub fn slack_app_verification_token(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.slack_app_verification_token", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `snippet_size_limit` after provisioning.\nMax snippet content size in bytes."]
    pub fn snippet_size_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.snippet_size_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `snowplow_app_id` after provisioning.\nThe Snowplow site name / application ID. (for example, gitlab)"]
    pub fn snowplow_app_id(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.snowplow_app_id", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `snowplow_collector_hostname` after provisioning.\nThe Snowplow collector hostname. (for example, snowplow.trx.gitlab.net)"]
    pub fn snowplow_collector_hostname(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.snowplow_collector_hostname", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `snowplow_cookie_domain` after provisioning.\nThe Snowplow cookie domain. (for example, .gitlab.com)"]
    pub fn snowplow_cookie_domain(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.snowplow_cookie_domain", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `snowplow_enabled` after provisioning.\nEnable snowplow tracking."]
    pub fn snowplow_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.snowplow_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `sourcegraph_enabled` after provisioning.\nEnables Sourcegraph integration. If enabled, requires sourcegraph_url."]
    pub fn sourcegraph_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.sourcegraph_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `sourcegraph_public_only` after provisioning.\nBlocks Sourcegraph from being loaded on private and internal projects."]
    pub fn sourcegraph_public_only(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.sourcegraph_public_only", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `sourcegraph_url` after provisioning.\nThe Sourcegraph instance URL for integration."]
    pub fn sourcegraph_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.sourcegraph_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `spam_check_api_key` after provisioning.\nAPI key used by GitLab for accessing the Spam Check service endpoint."]
    pub fn spam_check_api_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.spam_check_api_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `spam_check_endpoint_enabled` after provisioning.\nEnables spam checking using external Spam Check API endpoint."]
    pub fn spam_check_endpoint_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.spam_check_endpoint_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `spam_check_endpoint_url` after provisioning.\nURL of the external Spamcheck service endpoint. Valid URI schemes are grpc or tls. Specifying tls forces communication to be encrypted."]
    pub fn spam_check_endpoint_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.spam_check_endpoint_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `suggest_pipeline_enabled` after provisioning.\nEnable pipeline suggestion banner."]
    pub fn suggest_pipeline_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.suggest_pipeline_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `terminal_max_session_time` after provisioning.\nMaximum time for web terminal websocket connection (in seconds). Set to 0 for unlimited time."]
    pub fn terminal_max_session_time(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.terminal_max_session_time", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `terms` after provisioning.\n(Required by: enforce_terms) Markdown content for the ToS."]
    pub fn terms(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.terms", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_api_enabled` after provisioning.\n(If enabled, requires: throttle_authenticated_api_period_in_seconds and throttle_authenticated_api_requests_per_period) Enable authenticated API request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots)."]
    pub fn throttle_authenticated_api_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.throttle_authenticated_api_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_api_period_in_seconds` after provisioning.\nRate limit period (in seconds)."]
    pub fn throttle_authenticated_api_period_in_seconds(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_api_period_in_seconds", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_api_requests_per_period` after provisioning.\nMaximum requests per period per user."]
    pub fn throttle_authenticated_api_requests_per_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_api_requests_per_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_packages_api_enabled` after provisioning.\n(If enabled, requires: throttle_authenticated_packages_api_period_in_seconds and throttle_authenticated_packages_api_requests_per_period) Enable authenticated API request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots). View Package Registry rate limits for more details."]
    pub fn throttle_authenticated_packages_api_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_packages_api_enabled", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_packages_api_period_in_seconds` after provisioning.\nRate limit period (in seconds). View Package Registry rate limits for more details."]
    pub fn throttle_authenticated_packages_api_period_in_seconds(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_packages_api_period_in_seconds", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_packages_api_requests_per_period` after provisioning.\nMaximum requests per period per user. View Package Registry rate limits for more details."]
    pub fn throttle_authenticated_packages_api_requests_per_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_packages_api_requests_per_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_web_enabled` after provisioning.\n(If enabled, requires: throttle_authenticated_web_period_in_seconds and throttle_authenticated_web_requests_per_period) Enable authenticated web request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots)."]
    pub fn throttle_authenticated_web_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.throttle_authenticated_web_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_web_period_in_seconds` after provisioning.\nRate limit period (in seconds)."]
    pub fn throttle_authenticated_web_period_in_seconds(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_web_period_in_seconds", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_web_requests_per_period` after provisioning.\nMaximum requests per period per user."]
    pub fn throttle_authenticated_web_requests_per_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_web_requests_per_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_api_enabled` after provisioning.\n(If enabled, requires: throttle_unauthenticated_api_period_in_seconds and throttle_unauthenticated_api_requests_per_period) Enable unauthenticated API request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots)."]
    pub fn throttle_unauthenticated_api_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.throttle_unauthenticated_api_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_api_period_in_seconds` after provisioning.\nRate limit period in seconds."]
    pub fn throttle_unauthenticated_api_period_in_seconds(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_api_period_in_seconds", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_api_requests_per_period` after provisioning.\nMax requests per period per IP."]
    pub fn throttle_unauthenticated_api_requests_per_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_api_requests_per_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_packages_api_enabled` after provisioning.\n(If enabled, requires: throttle_unauthenticated_packages_api_period_in_seconds and throttle_unauthenticated_packages_api_requests_per_period) Enable authenticated API request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots). View Package Registry rate limits for more details."]
    pub fn throttle_unauthenticated_packages_api_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_packages_api_enabled", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_packages_api_period_in_seconds` after provisioning.\nRate limit period (in seconds). View Package Registry rate limits for more details."]
    pub fn throttle_unauthenticated_packages_api_period_in_seconds(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_packages_api_period_in_seconds", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_packages_api_requests_per_period` after provisioning.\nMaximum requests per period per user. View Package Registry rate limits for more details."]
    pub fn throttle_unauthenticated_packages_api_requests_per_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_packages_api_requests_per_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_web_enabled` after provisioning.\n(If enabled, requires: throttle_unauthenticated_web_period_in_seconds and throttle_unauthenticated_web_requests_per_period) Enable unauthenticated web request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots)."]
    pub fn throttle_unauthenticated_web_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.throttle_unauthenticated_web_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_web_period_in_seconds` after provisioning.\nRate limit period in seconds."]
    pub fn throttle_unauthenticated_web_period_in_seconds(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_web_period_in_seconds", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_web_requests_per_period` after provisioning.\nMax requests per period per IP."]
    pub fn throttle_unauthenticated_web_requests_per_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_web_requests_per_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `time_tracking_limit_to_hours` after provisioning.\nLimit display of time tracking units to hours."]
    pub fn time_tracking_limit_to_hours(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.time_tracking_limit_to_hours", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `two_factor_grace_period` after provisioning.\nAmount of time (in hours) that users are allowed to skip forced configuration of two-factor authentication."]
    pub fn two_factor_grace_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.two_factor_grace_period", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `unique_ips_limit_enabled` after provisioning.\n(If enabled, requires: unique_ips_limit_per_user and unique_ips_limit_time_window) Limit sign in from multiple IPs."]
    pub fn unique_ips_limit_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.unique_ips_limit_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `unique_ips_limit_per_user` after provisioning.\nMaximum number of IPs per user."]
    pub fn unique_ips_limit_per_user(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.unique_ips_limit_per_user", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `unique_ips_limit_time_window` after provisioning.\nHow many seconds an IP is counted towards the limit."]
    pub fn unique_ips_limit_time_window(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.unique_ips_limit_time_window", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `usage_ping_enabled` after provisioning.\nEvery week GitLab reports license usage back to GitLab, Inc."]
    pub fn usage_ping_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.usage_ping_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `user_deactivation_emails_enabled` after provisioning.\nSend an email to users upon account deactivation."]
    pub fn user_deactivation_emails_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.user_deactivation_emails_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `user_default_external` after provisioning.\nNewly registered users are external by default."]
    pub fn user_default_external(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.user_default_external", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `user_default_internal_regex` after provisioning.\nSpecify an email address regex pattern to identify default internal users."]
    pub fn user_default_internal_regex(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.user_default_internal_regex", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `user_oauth_applications` after provisioning.\nAllow users to register any application to use GitLab as an OAuth provider."]
    pub fn user_oauth_applications(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.user_oauth_applications", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `user_show_add_ssh_key_message` after provisioning.\nWhen set to false disable the You won't be able to pull or push project code via SSH warning shown to users with no uploaded SSH key."]
    pub fn user_show_add_ssh_key_message(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.user_show_add_ssh_key_message", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `version_check_enabled` after provisioning.\nLet GitLab inform you when an update is available."]
    pub fn version_check_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.version_check_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `web_ide_clientside_preview_enabled` after provisioning.\nLive Preview (allow live previews of JavaScript projects in the Web IDE using CodeSandbox Live Preview)."]
    pub fn web_ide_clientside_preview_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.web_ide_clientside_preview_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `whats_new_variant` after provisioning.\nWhat’s new variant, possible values: all_tiers, current_tier, and disabled."]
    pub fn whats_new_variant(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.whats_new_variant", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `wiki_page_max_content_bytes` after provisioning.\nMaximum wiki page content size in bytes. The minimum value is 1024 bytes."]
    pub fn wiki_page_max_content_bytes(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.wiki_page_max_content_bytes", self.extract_ref()))
    }
}

impl Referable for ApplicationSettings {
    fn extract_ref(&self) -> String {
        format!("{}.{}", self.0.extract_resource_type(), self.0.extract_tf_id())
    }
}

impl Resource for ApplicationSettings { }

impl ToListMappable for ApplicationSettings {
    type O = ListRef<ApplicationSettingsRef>;

    fn do_map(self, base: String) -> Self::O {
        self.0.data.borrow_mut().for_each = Some(format!("${{{}}}", base));
        ListRef::new(self.0.shared.clone(), self.extract_ref())
    }
}

impl Resource_ for ApplicationSettings_ {
    fn extract_resource_type(&self) -> String {
        "gitlab_application_settings".into()
    }

    fn extract_tf_id(&self) -> String {
        self.tf_id.clone()
    }

    fn extract_value(&self) -> serde_json::Value {
        serde_json::to_value(&self.data).unwrap()
    }
}

pub struct BuildApplicationSettings {
    pub tf_id: String,
}

impl BuildApplicationSettings {
    pub fn build(self, stack: &mut Stack) -> ApplicationSettings {
        let out = ApplicationSettings(Rc::new(ApplicationSettings_ {
            shared: stack.shared.clone(),
            tf_id: self.tf_id,
            data: RefCell::new(ApplicationSettingsData {
                depends_on: core::default::Default::default(),
                provider: None,
                lifecycle: core::default::Default::default(),
                for_each: None,
                abuse_notification_email: core::default::Default::default(),
                admin_mode: core::default::Default::default(),
                after_sign_out_path: core::default::Default::default(),
                after_sign_up_text: core::default::Default::default(),
                akismet_api_key: core::default::Default::default(),
                akismet_enabled: core::default::Default::default(),
                allow_group_owners_to_manage_ldap: core::default::Default::default(),
                allow_local_requests_from_system_hooks: core::default::Default::default(),
                allow_local_requests_from_web_hooks_and_services: core::default::Default::default(),
                archive_builds_in_human_readable: core::default::Default::default(),
                asset_proxy_allowlist: core::default::Default::default(),
                asset_proxy_enabled: core::default::Default::default(),
                asset_proxy_secret_key: core::default::Default::default(),
                asset_proxy_url: core::default::Default::default(),
                authorized_keys_enabled: core::default::Default::default(),
                auto_devops_domain: core::default::Default::default(),
                auto_devops_enabled: core::default::Default::default(),
                automatic_purchased_storage_allocation: core::default::Default::default(),
                can_create_group: core::default::Default::default(),
                check_namespace_plan: core::default::Default::default(),
                commit_email_hostname: core::default::Default::default(),
                container_expiration_policies_enable_historic_entries: core::default::Default::default(),
                container_registry_cleanup_tags_service_max_list_size: core::default::Default::default(),
                container_registry_delete_tags_service_timeout: core::default::Default::default(),
                container_registry_expiration_policies_caching: core::default::Default::default(),
                container_registry_expiration_policies_worker_capacity: core::default::Default::default(),
                container_registry_token_expire_delay: core::default::Default::default(),
                deactivate_dormant_users: core::default::Default::default(),
                default_artifacts_expire_in: core::default::Default::default(),
                default_branch_name: core::default::Default::default(),
                default_branch_protection: core::default::Default::default(),
                default_ci_config_path: core::default::Default::default(),
                default_group_visibility: core::default::Default::default(),
                default_project_creation: core::default::Default::default(),
                default_project_visibility: core::default::Default::default(),
                default_projects_limit: core::default::Default::default(),
                default_snippet_visibility: core::default::Default::default(),
                delete_inactive_projects: core::default::Default::default(),
                deletion_adjourned_period: core::default::Default::default(),
                diff_max_files: core::default::Default::default(),
                diff_max_lines: core::default::Default::default(),
                diff_max_patch_bytes: core::default::Default::default(),
                disable_feed_token: core::default::Default::default(),
                disabled_oauth_sign_in_sources: core::default::Default::default(),
                dns_rebinding_protection_enabled: core::default::Default::default(),
                domain_allowlist: core::default::Default::default(),
                domain_denylist: core::default::Default::default(),
                domain_denylist_enabled: core::default::Default::default(),
                dsa_key_restriction: core::default::Default::default(),
                ecdsa_key_restriction: core::default::Default::default(),
                ecdsa_sk_key_restriction: core::default::Default::default(),
                ed25519_key_restriction: core::default::Default::default(),
                ed25519_sk_key_restriction: core::default::Default::default(),
                eks_access_key_id: core::default::Default::default(),
                eks_account_id: core::default::Default::default(),
                eks_integration_enabled: core::default::Default::default(),
                eks_secret_access_key: core::default::Default::default(),
                elasticsearch_aws: core::default::Default::default(),
                elasticsearch_aws_access_key: core::default::Default::default(),
                elasticsearch_aws_region: core::default::Default::default(),
                elasticsearch_aws_secret_access_key: core::default::Default::default(),
                elasticsearch_indexed_field_length_limit: core::default::Default::default(),
                elasticsearch_indexed_file_size_limit_kb: core::default::Default::default(),
                elasticsearch_indexing: core::default::Default::default(),
                elasticsearch_limit_indexing: core::default::Default::default(),
                elasticsearch_max_bulk_concurrency: core::default::Default::default(),
                elasticsearch_max_bulk_size_mb: core::default::Default::default(),
                elasticsearch_namespace_ids: core::default::Default::default(),
                elasticsearch_password: core::default::Default::default(),
                elasticsearch_project_ids: core::default::Default::default(),
                elasticsearch_search: core::default::Default::default(),
                elasticsearch_url: core::default::Default::default(),
                elasticsearch_username: core::default::Default::default(),
                email_additional_text: core::default::Default::default(),
                email_author_in_body: core::default::Default::default(),
                enabled_git_access_protocol: core::default::Default::default(),
                enforce_namespace_storage_limit: core::default::Default::default(),
                enforce_terms: core::default::Default::default(),
                external_auth_client_cert: core::default::Default::default(),
                external_auth_client_key: core::default::Default::default(),
                external_auth_client_key_pass: core::default::Default::default(),
                external_authorization_service_default_label: core::default::Default::default(),
                external_authorization_service_enabled: core::default::Default::default(),
                external_authorization_service_timeout: core::default::Default::default(),
                external_authorization_service_url: core::default::Default::default(),
                external_pipeline_validation_service_timeout: core::default::Default::default(),
                external_pipeline_validation_service_token: core::default::Default::default(),
                external_pipeline_validation_service_url: core::default::Default::default(),
                file_template_project_id: core::default::Default::default(),
                first_day_of_week: core::default::Default::default(),
                geo_node_allowed_ips: core::default::Default::default(),
                geo_status_timeout: core::default::Default::default(),
                git_rate_limit_users_allowlist: core::default::Default::default(),
                git_two_factor_session_expiry: core::default::Default::default(),
                gitaly_timeout_default: core::default::Default::default(),
                gitaly_timeout_fast: core::default::Default::default(),
                gitaly_timeout_medium: core::default::Default::default(),
                grafana_enabled: core::default::Default::default(),
                grafana_url: core::default::Default::default(),
                gravatar_enabled: core::default::Default::default(),
                group_owners_can_manage_default_branch_protection: core::default::Default::default(),
                hashed_storage_enabled: core::default::Default::default(),
                help_page_hide_commercial_content: core::default::Default::default(),
                help_page_support_url: core::default::Default::default(),
                help_page_text: core::default::Default::default(),
                help_text: core::default::Default::default(),
                hide_third_party_offers: core::default::Default::default(),
                home_page_url: core::default::Default::default(),
                housekeeping_enabled: core::default::Default::default(),
                housekeeping_full_repack_period: core::default::Default::default(),
                housekeeping_gc_period: core::default::Default::default(),
                housekeeping_incremental_repack_period: core::default::Default::default(),
                housekeeping_optimize_repository_period: core::default::Default::default(),
                html_emails_enabled: core::default::Default::default(),
                id: core::default::Default::default(),
                import_sources: core::default::Default::default(),
                in_product_marketing_emails_enabled: core::default::Default::default(),
                inactive_projects_delete_after_months: core::default::Default::default(),
                inactive_projects_min_size_mb: core::default::Default::default(),
                inactive_projects_send_warning_email_after_months: core::default::Default::default(),
                invisible_captcha_enabled: core::default::Default::default(),
                issues_create_limit: core::default::Default::default(),
                keep_latest_artifact: core::default::Default::default(),
                local_markdown_version: core::default::Default::default(),
                mailgun_events_enabled: core::default::Default::default(),
                mailgun_signing_key: core::default::Default::default(),
                maintenance_mode: core::default::Default::default(),
                maintenance_mode_message: core::default::Default::default(),
                max_artifacts_size: core::default::Default::default(),
                max_attachment_size: core::default::Default::default(),
                max_export_size: core::default::Default::default(),
                max_import_size: core::default::Default::default(),
                max_number_of_repository_downloads: core::default::Default::default(),
                max_number_of_repository_downloads_within_time_period: core::default::Default::default(),
                max_pages_size: core::default::Default::default(),
                max_personal_access_token_lifetime: core::default::Default::default(),
                max_ssh_key_lifetime: core::default::Default::default(),
                metrics_method_call_threshold: core::default::Default::default(),
                minimum_password_length: core::default::Default::default(),
                mirror_available: core::default::Default::default(),
                mirror_capacity_threshold: core::default::Default::default(),
                mirror_max_capacity: core::default::Default::default(),
                mirror_max_delay: core::default::Default::default(),
                npm_package_requests_forwarding: core::default::Default::default(),
                outbound_local_requests_whitelist: core::default::Default::default(),
                package_registry_cleanup_policies_worker_capacity: core::default::Default::default(),
                pages_domain_verification_enabled: core::default::Default::default(),
                password_authentication_enabled_for_git: core::default::Default::default(),
                password_authentication_enabled_for_web: core::default::Default::default(),
                password_lowercase_required: core::default::Default::default(),
                password_number_required: core::default::Default::default(),
                password_symbol_required: core::default::Default::default(),
                password_uppercase_required: core::default::Default::default(),
                performance_bar_allowed_group_path: core::default::Default::default(),
                personal_access_token_prefix: core::default::Default::default(),
                pipeline_limit_per_project_user_sha: core::default::Default::default(),
                plantuml_enabled: core::default::Default::default(),
                plantuml_url: core::default::Default::default(),
                polling_interval_multiplier: core::default::Default::default(),
                project_export_enabled: core::default::Default::default(),
                prometheus_metrics_enabled: core::default::Default::default(),
                protected_ci_variables: core::default::Default::default(),
                push_event_activities_limit: core::default::Default::default(),
                push_event_hooks_limit: core::default::Default::default(),
                pypi_package_requests_forwarding: core::default::Default::default(),
                rate_limiting_response_text: core::default::Default::default(),
                raw_blob_request_limit: core::default::Default::default(),
                recaptcha_enabled: core::default::Default::default(),
                recaptcha_private_key: core::default::Default::default(),
                recaptcha_site_key: core::default::Default::default(),
                receive_max_input_size: core::default::Default::default(),
                repository_checks_enabled: core::default::Default::default(),
                repository_size_limit: core::default::Default::default(),
                repository_storages: core::default::Default::default(),
                repository_storages_weighted: core::default::Default::default(),
                require_admin_approval_after_user_signup: core::default::Default::default(),
                require_two_factor_authentication: core::default::Default::default(),
                restricted_visibility_levels: core::default::Default::default(),
                rsa_key_restriction: core::default::Default::default(),
                search_rate_limit: core::default::Default::default(),
                search_rate_limit_unauthenticated: core::default::Default::default(),
                send_user_confirmation_email: core::default::Default::default(),
                session_expire_delay: core::default::Default::default(),
                shared_runners_enabled: core::default::Default::default(),
                shared_runners_minutes: core::default::Default::default(),
                shared_runners_text: core::default::Default::default(),
                sidekiq_job_limiter_compression_threshold_bytes: core::default::Default::default(),
                sidekiq_job_limiter_limit_bytes: core::default::Default::default(),
                sidekiq_job_limiter_mode: core::default::Default::default(),
                sign_in_text: core::default::Default::default(),
                signup_enabled: core::default::Default::default(),
                slack_app_enabled: core::default::Default::default(),
                slack_app_id: core::default::Default::default(),
                slack_app_secret: core::default::Default::default(),
                slack_app_signing_secret: core::default::Default::default(),
                slack_app_verification_token: core::default::Default::default(),
                snippet_size_limit: core::default::Default::default(),
                snowplow_app_id: core::default::Default::default(),
                snowplow_collector_hostname: core::default::Default::default(),
                snowplow_cookie_domain: core::default::Default::default(),
                snowplow_enabled: core::default::Default::default(),
                sourcegraph_enabled: core::default::Default::default(),
                sourcegraph_public_only: core::default::Default::default(),
                sourcegraph_url: core::default::Default::default(),
                spam_check_api_key: core::default::Default::default(),
                spam_check_endpoint_enabled: core::default::Default::default(),
                spam_check_endpoint_url: core::default::Default::default(),
                suggest_pipeline_enabled: core::default::Default::default(),
                terminal_max_session_time: core::default::Default::default(),
                terms: core::default::Default::default(),
                throttle_authenticated_api_enabled: core::default::Default::default(),
                throttle_authenticated_api_period_in_seconds: core::default::Default::default(),
                throttle_authenticated_api_requests_per_period: core::default::Default::default(),
                throttle_authenticated_packages_api_enabled: core::default::Default::default(),
                throttle_authenticated_packages_api_period_in_seconds: core::default::Default::default(),
                throttle_authenticated_packages_api_requests_per_period: core::default::Default::default(),
                throttle_authenticated_web_enabled: core::default::Default::default(),
                throttle_authenticated_web_period_in_seconds: core::default::Default::default(),
                throttle_authenticated_web_requests_per_period: core::default::Default::default(),
                throttle_unauthenticated_api_enabled: core::default::Default::default(),
                throttle_unauthenticated_api_period_in_seconds: core::default::Default::default(),
                throttle_unauthenticated_api_requests_per_period: core::default::Default::default(),
                throttle_unauthenticated_packages_api_enabled: core::default::Default::default(),
                throttle_unauthenticated_packages_api_period_in_seconds: core::default::Default::default(),
                throttle_unauthenticated_packages_api_requests_per_period: core::default::Default::default(),
                throttle_unauthenticated_web_enabled: core::default::Default::default(),
                throttle_unauthenticated_web_period_in_seconds: core::default::Default::default(),
                throttle_unauthenticated_web_requests_per_period: core::default::Default::default(),
                time_tracking_limit_to_hours: core::default::Default::default(),
                two_factor_grace_period: core::default::Default::default(),
                unique_ips_limit_enabled: core::default::Default::default(),
                unique_ips_limit_per_user: core::default::Default::default(),
                unique_ips_limit_time_window: core::default::Default::default(),
                usage_ping_enabled: core::default::Default::default(),
                user_deactivation_emails_enabled: core::default::Default::default(),
                user_default_external: core::default::Default::default(),
                user_default_internal_regex: core::default::Default::default(),
                user_oauth_applications: core::default::Default::default(),
                user_show_add_ssh_key_message: core::default::Default::default(),
                version_check_enabled: core::default::Default::default(),
                web_ide_clientside_preview_enabled: core::default::Default::default(),
                whats_new_variant: core::default::Default::default(),
                wiki_page_max_content_bytes: core::default::Default::default(),
            }),
        }));
        stack.add_resource(out.0.clone());
        out
    }
}

pub struct ApplicationSettingsRef {
    shared: StackShared,
    base: String,
}

impl Ref for ApplicationSettingsRef {
    fn new(shared: StackShared, base: String) -> Self {
        Self {
            shared: shared,
            base: base,
        }
    }
}

impl ApplicationSettingsRef {
    fn extract_ref(&self) -> String {
        self.base.clone()
    }

    fn shared(&self) -> &StackShared {
        &self.shared
    }

    #[doc= "Get a reference to the value of field `abuse_notification_email` after provisioning.\nIf set, abuse reports are sent to this address. Abuse reports are always available in the Admin Area."]
    pub fn abuse_notification_email(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.abuse_notification_email", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `admin_mode` after provisioning.\nRequire administrators to enable Admin Mode by re-authenticating for administrative tasks."]
    pub fn admin_mode(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.admin_mode", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `after_sign_out_path` after provisioning.\nWhere to redirect users after logout."]
    pub fn after_sign_out_path(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.after_sign_out_path", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `after_sign_up_text` after provisioning.\nText shown to the user after signing up."]
    pub fn after_sign_up_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.after_sign_up_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `akismet_api_key` after provisioning.\nAPI key for Akismet spam protection."]
    pub fn akismet_api_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.akismet_api_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `akismet_enabled` after provisioning.\n(If enabled, requires: akismet_api_key) Enable or disable Akismet spam protection."]
    pub fn akismet_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.akismet_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `allow_group_owners_to_manage_ldap` after provisioning.\nSet to true to allow group owners to manage LDAP."]
    pub fn allow_group_owners_to_manage_ldap(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.allow_group_owners_to_manage_ldap", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `allow_local_requests_from_system_hooks` after provisioning.\nAllow requests to the local network from system hooks."]
    pub fn allow_local_requests_from_system_hooks(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.allow_local_requests_from_system_hooks", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `allow_local_requests_from_web_hooks_and_services` after provisioning.\nAllow requests to the local network from web hooks and services."]
    pub fn allow_local_requests_from_web_hooks_and_services(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.allow_local_requests_from_web_hooks_and_services", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `archive_builds_in_human_readable` after provisioning.\nSet the duration for which the jobs are considered as old and expired. After that time passes, the jobs are archived and no longer able to be retried. Make it empty to never expire jobs. It has to be no less than 1 day, for example: 15 days, 1 month, 2 years."]
    pub fn archive_builds_in_human_readable(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.archive_builds_in_human_readable", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `asset_proxy_allowlist` after provisioning.\nAssets that match these domains are not proxied. Wildcards allowed. Your GitLab installation URL is automatically allowlisted. GitLab restart is required to apply changes."]
    pub fn asset_proxy_allowlist(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.asset_proxy_allowlist", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `asset_proxy_enabled` after provisioning.\n(If enabled, requires: asset_proxy_url) Enable proxying of assets. GitLab restart is required to apply changes."]
    pub fn asset_proxy_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.asset_proxy_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `asset_proxy_secret_key` after provisioning.\nShared secret with the asset proxy server. GitLab restart is required to apply changes."]
    pub fn asset_proxy_secret_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.asset_proxy_secret_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `asset_proxy_url` after provisioning.\nURL of the asset proxy server. GitLab restart is required to apply changes."]
    pub fn asset_proxy_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.asset_proxy_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `authorized_keys_enabled` after provisioning.\nBy default, we write to the authorized_keys file to support Git over SSH without additional configuration. GitLab can be optimized to authenticate SSH keys via the database file. Only disable this if you have configured your OpenSSH server to use the AuthorizedKeysCommand."]
    pub fn authorized_keys_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.authorized_keys_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `auto_devops_domain` after provisioning.\nSpecify a domain to use by default for every project’s Auto Review Apps and Auto Deploy stages."]
    pub fn auto_devops_domain(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.auto_devops_domain", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `auto_devops_enabled` after provisioning.\nEnable Auto DevOps for projects by default. It automatically builds, tests, and deploys applications based on a predefined CI/CD configuration."]
    pub fn auto_devops_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.auto_devops_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `automatic_purchased_storage_allocation` after provisioning.\nEnabling this permits automatic allocation of purchased storage in a namespace."]
    pub fn automatic_purchased_storage_allocation(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.automatic_purchased_storage_allocation", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `can_create_group` after provisioning.\nIndicates whether users can create top-level groups. Introduced in GitLab 15.5."]
    pub fn can_create_group(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.can_create_group", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `check_namespace_plan` after provisioning.\nEnabling this makes only licensed EE features available to projects if the project namespace’s plan includes the feature or if the project is public."]
    pub fn check_namespace_plan(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.check_namespace_plan", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `commit_email_hostname` after provisioning.\nCustom hostname (for private commit emails)."]
    pub fn commit_email_hostname(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.commit_email_hostname", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `container_expiration_policies_enable_historic_entries` after provisioning.\nEnable cleanup policies for all projects."]
    pub fn container_expiration_policies_enable_historic_entries(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.container_expiration_policies_enable_historic_entries", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `container_registry_cleanup_tags_service_max_list_size` after provisioning.\nThe maximum number of tags that can be deleted in a single execution of cleanup policies."]
    pub fn container_registry_cleanup_tags_service_max_list_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.container_registry_cleanup_tags_service_max_list_size", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `container_registry_delete_tags_service_timeout` after provisioning.\nThe maximum time, in seconds, that the cleanup process can take to delete a batch of tags for cleanup policies."]
    pub fn container_registry_delete_tags_service_timeout(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.container_registry_delete_tags_service_timeout", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `container_registry_expiration_policies_caching` after provisioning.\nCaching during the execution of cleanup policies."]
    pub fn container_registry_expiration_policies_caching(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.container_registry_expiration_policies_caching", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `container_registry_expiration_policies_worker_capacity` after provisioning.\nNumber of workers for cleanup policies."]
    pub fn container_registry_expiration_policies_worker_capacity(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.container_registry_expiration_policies_worker_capacity", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `container_registry_token_expire_delay` after provisioning.\nContainer Registry token duration in minutes."]
    pub fn container_registry_token_expire_delay(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.container_registry_token_expire_delay", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `deactivate_dormant_users` after provisioning.\nEnable automatic deactivation of dormant users."]
    pub fn deactivate_dormant_users(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.deactivate_dormant_users", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_artifacts_expire_in` after provisioning.\nSet the default expiration time for each job’s artifacts."]
    pub fn default_artifacts_expire_in(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_artifacts_expire_in", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_branch_name` after provisioning.\nInstance-level custom initial branch name (introduced in GitLab 13.2)."]
    pub fn default_branch_name(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_branch_name", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_branch_protection` after provisioning.\nDetermine if developers can push to the default branch. Can take: 0 (not protected, both users with the Developer role or Maintainer role can push new commits and force push), 1 (partially protected, users with the Developer role or Maintainer role can push new commits, but cannot force push) or 2 (fully protected, users with the Developer or Maintainer role cannot push new commits, but users with the Developer or Maintainer role can; no one can force push) as a parameter. Default is 2."]
    pub fn default_branch_protection(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_branch_protection", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_ci_config_path` after provisioning.\nDefault CI/CD configuration file and path for new projects (.gitlab-ci.yml if not set)."]
    pub fn default_ci_config_path(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_ci_config_path", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_group_visibility` after provisioning.\nWhat visibility level new groups receive. Can take private, internal and public as a parameter."]
    pub fn default_group_visibility(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_group_visibility", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_project_creation` after provisioning.\nDefault project creation protection. Can take: 0 (No one), 1 (Maintainers) or 2 (Developers + Maintainers)."]
    pub fn default_project_creation(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_project_creation", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_project_visibility` after provisioning.\nWhat visibility level new projects receive. Can take private, internal and public as a parameter."]
    pub fn default_project_visibility(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_project_visibility", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_projects_limit` after provisioning.\nProject limit per user."]
    pub fn default_projects_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_projects_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `default_snippet_visibility` after provisioning.\nWhat visibility level new snippets receive. Can take private, internal and public as a parameter."]
    pub fn default_snippet_visibility(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.default_snippet_visibility", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `delete_inactive_projects` after provisioning.\nEnable inactive project deletion feature. Introduced in GitLab 14.10. Became operational in GitLab 15.0 (with feature flag inactive_projects_deletion)."]
    pub fn delete_inactive_projects(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.delete_inactive_projects", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `deletion_adjourned_period` after provisioning.\nThe number of days to wait before deleting a project or group that is marked for deletion. Value must be between 1 and 90."]
    pub fn deletion_adjourned_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.deletion_adjourned_period", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `diff_max_files` after provisioning.\nMaximum files in a diff."]
    pub fn diff_max_files(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.diff_max_files", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `diff_max_lines` after provisioning.\nMaximum lines in a diff."]
    pub fn diff_max_lines(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.diff_max_lines", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `diff_max_patch_bytes` after provisioning.\nMaximum diff patch size, in bytes."]
    pub fn diff_max_patch_bytes(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.diff_max_patch_bytes", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `disable_feed_token` after provisioning.\nDisable display of RSS/Atom and calendar feed tokens (introduced in GitLab 13.7)."]
    pub fn disable_feed_token(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.disable_feed_token", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `disabled_oauth_sign_in_sources` after provisioning.\nDisabled OAuth sign-in sources."]
    pub fn disabled_oauth_sign_in_sources(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.disabled_oauth_sign_in_sources", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `dns_rebinding_protection_enabled` after provisioning.\nEnforce DNS rebinding attack protection."]
    pub fn dns_rebinding_protection_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.dns_rebinding_protection_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `domain_allowlist` after provisioning.\nForce people to use only corporate emails for sign-up. Null means there is no restriction."]
    pub fn domain_allowlist(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.domain_allowlist", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `domain_denylist` after provisioning.\nUsers with email addresses that match these domains cannot sign up. Wildcards allowed. Use separate lines for multiple entries. Ex: domain.com, *.domain.com."]
    pub fn domain_denylist(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.domain_denylist", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `domain_denylist_enabled` after provisioning.\n(If enabled, requires: domain_denylist) Allows blocking sign-ups from emails from specific domains."]
    pub fn domain_denylist_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.domain_denylist_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `dsa_key_restriction` after provisioning.\nThe minimum allowed bit length of an uploaded DSA key. 0 means no restriction. -1 disables DSA keys."]
    pub fn dsa_key_restriction(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.dsa_key_restriction", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `ecdsa_key_restriction` after provisioning.\nThe minimum allowed curve size (in bits) of an uploaded ECDSA key. 0 means no restriction. -1 disables ECDSA keys."]
    pub fn ecdsa_key_restriction(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.ecdsa_key_restriction", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `ecdsa_sk_key_restriction` after provisioning.\nThe minimum allowed curve size (in bits) of an uploaded ECDSA_SK key. 0 means no restriction. -1 disables ECDSA_SK keys."]
    pub fn ecdsa_sk_key_restriction(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.ecdsa_sk_key_restriction", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `ed25519_key_restriction` after provisioning.\nThe minimum allowed curve size (in bits) of an uploaded ED25519 key. 0 means no restriction. -1 disables ED25519 keys."]
    pub fn ed25519_key_restriction(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.ed25519_key_restriction", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `ed25519_sk_key_restriction` after provisioning.\nThe minimum allowed curve size (in bits) of an uploaded ED25519_SK key. 0 means no restriction. -1 disables ED25519_SK keys."]
    pub fn ed25519_sk_key_restriction(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.ed25519_sk_key_restriction", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `eks_access_key_id` after provisioning.\nAWS IAM access key ID."]
    pub fn eks_access_key_id(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.eks_access_key_id", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `eks_account_id` after provisioning.\nAmazon account ID."]
    pub fn eks_account_id(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.eks_account_id", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `eks_integration_enabled` after provisioning.\nEnable integration with Amazon EKS."]
    pub fn eks_integration_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.eks_integration_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `eks_secret_access_key` after provisioning.\nAWS IAM secret access key."]
    pub fn eks_secret_access_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.eks_secret_access_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_aws` after provisioning.\nEnable the use of AWS hosted Elasticsearch."]
    pub fn elasticsearch_aws(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_aws", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_aws_access_key` after provisioning.\nAWS IAM access key."]
    pub fn elasticsearch_aws_access_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_aws_access_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_aws_region` after provisioning.\nThe AWS region the Elasticsearch domain is configured."]
    pub fn elasticsearch_aws_region(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_aws_region", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_aws_secret_access_key` after provisioning.\nAWS IAM secret access key."]
    pub fn elasticsearch_aws_secret_access_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_aws_secret_access_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_indexed_field_length_limit` after provisioning.\nMaximum size of text fields to index by Elasticsearch. 0 value means no limit. This does not apply to repository and wiki indexing."]
    pub fn elasticsearch_indexed_field_length_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.elasticsearch_indexed_field_length_limit", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `elasticsearch_indexed_file_size_limit_kb` after provisioning.\nMaximum size of repository and wiki files that are indexed by Elasticsearch."]
    pub fn elasticsearch_indexed_file_size_limit_kb(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.elasticsearch_indexed_file_size_limit_kb", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `elasticsearch_indexing` after provisioning.\nEnable Elasticsearch indexing."]
    pub fn elasticsearch_indexing(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_indexing", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_limit_indexing` after provisioning.\nLimit Elasticsearch to index certain namespaces and projects."]
    pub fn elasticsearch_limit_indexing(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_limit_indexing", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_max_bulk_concurrency` after provisioning.\nMaximum concurrency of Elasticsearch bulk requests per indexing operation. This only applies to repository indexing operations."]
    pub fn elasticsearch_max_bulk_concurrency(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_max_bulk_concurrency", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_max_bulk_size_mb` after provisioning.\nMaximum size of Elasticsearch bulk indexing requests in MB. This only applies to repository indexing operations."]
    pub fn elasticsearch_max_bulk_size_mb(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_max_bulk_size_mb", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_namespace_ids` after provisioning.\nThe namespaces to index via Elasticsearch if elasticsearch_limit_indexing is enabled."]
    pub fn elasticsearch_namespace_ids(&self) -> ListRef<PrimExpr<f64>> {
        ListRef::new(self.shared().clone(), format!("{}.elasticsearch_namespace_ids", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_password` after provisioning.\nThe password of your Elasticsearch instance."]
    pub fn elasticsearch_password(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_password", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_project_ids` after provisioning.\nThe projects to index via Elasticsearch if elasticsearch_limit_indexing is enabled."]
    pub fn elasticsearch_project_ids(&self) -> ListRef<PrimExpr<f64>> {
        ListRef::new(self.shared().clone(), format!("{}.elasticsearch_project_ids", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_search` after provisioning.\nEnable Elasticsearch search."]
    pub fn elasticsearch_search(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_search", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_url` after provisioning.\nThe URL to use for connecting to Elasticsearch. Use a comma-separated list to support cluster (for example, http://localhost:9200, http://localhost:9201)."]
    pub fn elasticsearch_url(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.elasticsearch_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `elasticsearch_username` after provisioning.\nThe username of your Elasticsearch instance."]
    pub fn elasticsearch_username(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.elasticsearch_username", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `email_additional_text` after provisioning.\nAdditional text added to the bottom of every email for legal/auditing/compliance reasons."]
    pub fn email_additional_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.email_additional_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `email_author_in_body` after provisioning.\nSome email servers do not support overriding the email sender name. Enable this option to include the name of the author of the issue, merge request or comment in the email body instead."]
    pub fn email_author_in_body(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.email_author_in_body", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `enabled_git_access_protocol` after provisioning.\nEnabled protocols for Git access. Allowed values are: ssh, http, and nil to allow both protocols."]
    pub fn enabled_git_access_protocol(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.enabled_git_access_protocol", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `enforce_namespace_storage_limit` after provisioning.\nEnabling this permits enforcement of namespace storage limits."]
    pub fn enforce_namespace_storage_limit(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.enforce_namespace_storage_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `enforce_terms` after provisioning.\n(If enabled, requires: terms) Enforce application ToS to all users."]
    pub fn enforce_terms(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.enforce_terms", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `external_auth_client_cert` after provisioning.\n(If enabled, requires: external_auth_client_key) The certificate to use to authenticate with the external authorization service."]
    pub fn external_auth_client_cert(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.external_auth_client_cert", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `external_auth_client_key` after provisioning.\nPrivate key for the certificate when authentication is required for the external authorization service, this is encrypted when stored."]
    pub fn external_auth_client_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.external_auth_client_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `external_auth_client_key_pass` after provisioning.\nPassphrase to use for the private key when authenticating with the external service this is encrypted when stored."]
    pub fn external_auth_client_key_pass(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.external_auth_client_key_pass", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `external_authorization_service_default_label` after provisioning.\nThe default classification label to use when requesting authorization and no classification label has been specified on the project."]
    pub fn external_authorization_service_default_label(&self) -> PrimExpr<String> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.external_authorization_service_default_label", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `external_authorization_service_enabled` after provisioning.\n(If enabled, requires: external_authorization_service_default_label, external_authorization_service_timeout and external_authorization_service_url) Enable using an external authorization service for accessing projects."]
    pub fn external_authorization_service_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.external_authorization_service_enabled", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `external_authorization_service_timeout` after provisioning.\nThe timeout after which an authorization request is aborted, in seconds. When a request times out, access is denied to the user. (min: 0.001, max: 10, step: 0.001)."]
    pub fn external_authorization_service_timeout(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.external_authorization_service_timeout", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `external_authorization_service_url` after provisioning.\nURL to which authorization requests are directed."]
    pub fn external_authorization_service_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.external_authorization_service_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `external_pipeline_validation_service_timeout` after provisioning.\nHow long to wait for a response from the pipeline validation service. Assumes OK if it times out."]
    pub fn external_pipeline_validation_service_timeout(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.external_pipeline_validation_service_timeout", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `external_pipeline_validation_service_token` after provisioning.\nOptional. Token to include as the X-Gitlab-Token header in requests to the URL in external_pipeline_validation_service_url."]
    pub fn external_pipeline_validation_service_token(&self) -> PrimExpr<String> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.external_pipeline_validation_service_token", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `external_pipeline_validation_service_url` after provisioning.\nURL to use for pipeline validation requests."]
    pub fn external_pipeline_validation_service_url(&self) -> PrimExpr<String> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.external_pipeline_validation_service_url", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `file_template_project_id` after provisioning.\nThe ID of a project to load custom file templates from."]
    pub fn file_template_project_id(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.file_template_project_id", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `first_day_of_week` after provisioning.\nStart day of the week for calendar views and date pickers. Valid values are 0 for Sunday, 1 for Monday, and 6 for Saturday."]
    pub fn first_day_of_week(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.first_day_of_week", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `geo_node_allowed_ips` after provisioning.\nComma-separated list of IPs and CIDRs of allowed secondary nodes. For example, 1.1.1.1, 2.2.2.0/24."]
    pub fn geo_node_allowed_ips(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.geo_node_allowed_ips", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `geo_status_timeout` after provisioning.\nThe amount of seconds after which a request to get a secondary node status times out."]
    pub fn geo_status_timeout(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.geo_status_timeout", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `git_rate_limit_users_allowlist` after provisioning.\nList of usernames excluded from Git anti-abuse rate limits. Maximum: 100 usernames. Introduced in GitLab 15.2."]
    pub fn git_rate_limit_users_allowlist(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.git_rate_limit_users_allowlist", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `git_two_factor_session_expiry` after provisioning.\nMaximum duration (in minutes) of a session for Git operations when 2FA is enabled."]
    pub fn git_two_factor_session_expiry(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.git_two_factor_session_expiry", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `gitaly_timeout_default` after provisioning.\nDefault Gitaly timeout, in seconds. This timeout is not enforced for Git fetch/push operations or Sidekiq jobs. Set to 0 to disable timeouts."]
    pub fn gitaly_timeout_default(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.gitaly_timeout_default", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `gitaly_timeout_fast` after provisioning.\nGitaly fast operation timeout, in seconds. Some Gitaly operations are expected to be fast. If they exceed this threshold, there may be a problem with a storage shard and ‘failing fast’ can help maintain the stability of the GitLab instance. Set to 0 to disable timeouts."]
    pub fn gitaly_timeout_fast(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.gitaly_timeout_fast", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `gitaly_timeout_medium` after provisioning.\nMedium Gitaly timeout, in seconds. This should be a value between the Fast and the Default timeout. Set to 0 to disable timeouts."]
    pub fn gitaly_timeout_medium(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.gitaly_timeout_medium", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `grafana_enabled` after provisioning.\nEnable Grafana."]
    pub fn grafana_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.grafana_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `grafana_url` after provisioning.\nGrafana URL."]
    pub fn grafana_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.grafana_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `gravatar_enabled` after provisioning.\nEnable Gravatar."]
    pub fn gravatar_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.gravatar_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `group_owners_can_manage_default_branch_protection` after provisioning.\nPrevent overrides of default branch protection."]
    pub fn group_owners_can_manage_default_branch_protection(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.group_owners_can_manage_default_branch_protection", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `hashed_storage_enabled` after provisioning.\nCreate new projects using hashed storage paths: Enable immutable, hash-based paths and repository names to store repositories on disk. This prevents repositories from having to be moved or renamed when the Project URL changes and may improve disk I/O performance. (Always enabled in GitLab versions 13.0 and later, configuration is scheduled for removal in 14.0)."]
    pub fn hashed_storage_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.hashed_storage_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `help_page_hide_commercial_content` after provisioning.\nHide marketing-related entries from help."]
    pub fn help_page_hide_commercial_content(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.help_page_hide_commercial_content", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `help_page_support_url` after provisioning.\nAlternate support URL for help page and help dropdown."]
    pub fn help_page_support_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.help_page_support_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `help_page_text` after provisioning.\nCustom text displayed on the help page."]
    pub fn help_page_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.help_page_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `help_text` after provisioning.\nGitLab server administrator information."]
    pub fn help_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.help_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `hide_third_party_offers` after provisioning.\nDo not display offers from third parties in GitLab."]
    pub fn hide_third_party_offers(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.hide_third_party_offers", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `home_page_url` after provisioning.\nRedirect to this URL when not logged in."]
    pub fn home_page_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.home_page_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `housekeeping_enabled` after provisioning.\n\n\t\t\t\tEnable or disable Git housekeeping.\n\t\t\t\tIf enabled, requires either housekeeping_optimize_repository_period OR housekeeping_bitmaps_enabled, housekeeping_full_repack_period, housekeeping_gc_period, and housekeeping_incremental_repack_period.\n\t\t\t\tOptions housekeeping_bitmaps_enabled, housekeeping_full_repack_period, housekeeping_gc_period, and housekeeping_incremental_repack_period are deprecated. Use housekeeping_optimize_repository_period instead.\n\t\t\t"]
    pub fn housekeeping_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.housekeeping_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `housekeeping_full_repack_period` after provisioning.\nNumber of Git pushes after which an incremental git repack is run."]
    pub fn housekeeping_full_repack_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.housekeeping_full_repack_period", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `housekeeping_gc_period` after provisioning.\nNumber of Git pushes after which git gc is run."]
    pub fn housekeeping_gc_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.housekeeping_gc_period", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `housekeeping_incremental_repack_period` after provisioning.\nNumber of Git pushes after which an incremental git repack is run."]
    pub fn housekeeping_incremental_repack_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.housekeeping_incremental_repack_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `housekeeping_optimize_repository_period` after provisioning.\nNumber of Git pushes after which an incremental git repack is run."]
    pub fn housekeeping_optimize_repository_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.housekeeping_optimize_repository_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `html_emails_enabled` after provisioning.\nEnable HTML emails."]
    pub fn html_emails_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.html_emails_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `id` after provisioning.\n"]
    pub fn id(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.id", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `import_sources` after provisioning.\nSources to allow project import from. Valid values are: `github`, `bitbucket`, `bitbucket_server`, `fogbugz`, `git`, `gitlab_project`, `gitea`, `manifest`"]
    pub fn import_sources(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.import_sources", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `in_product_marketing_emails_enabled` after provisioning.\nEnable in-product marketing emails."]
    pub fn in_product_marketing_emails_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.in_product_marketing_emails_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `inactive_projects_delete_after_months` after provisioning.\nIf delete_inactive_projects is true, the time (in months) to wait before deleting inactive projects. Introduced in GitLab 14.10. Became operational in GitLab 15.0."]
    pub fn inactive_projects_delete_after_months(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.inactive_projects_delete_after_months", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `inactive_projects_min_size_mb` after provisioning.\nIf delete_inactive_projects is true, the minimum repository size for projects to be checked for inactivity. Introduced in GitLab 14.10. Became operational in GitLab 15.0."]
    pub fn inactive_projects_min_size_mb(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.inactive_projects_min_size_mb", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `inactive_projects_send_warning_email_after_months` after provisioning.\nIf delete_inactive_projects is true, sets the time (in months) to wait before emailing maintainers that the project is scheduled be deleted because it is inactive. Introduced in GitLab 14.10. Became operational in GitLab 15.0."]
    pub fn inactive_projects_send_warning_email_after_months(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.inactive_projects_send_warning_email_after_months", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `invisible_captcha_enabled` after provisioning.\nEnable Invisible CAPTCHA spam detection during sign-up."]
    pub fn invisible_captcha_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.invisible_captcha_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `issues_create_limit` after provisioning.\nMax number of issue creation requests per minute per user."]
    pub fn issues_create_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.issues_create_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `keep_latest_artifact` after provisioning.\nPrevent the deletion of the artifacts from the most recent successful jobs, regardless of the expiry time."]
    pub fn keep_latest_artifact(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.keep_latest_artifact", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `local_markdown_version` after provisioning.\nIncrease this value when any cached Markdown should be invalidated."]
    pub fn local_markdown_version(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.local_markdown_version", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `mailgun_events_enabled` after provisioning.\nEnable Mailgun event receiver."]
    pub fn mailgun_events_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.mailgun_events_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `mailgun_signing_key` after provisioning.\nThe Mailgun HTTP webhook signing key for receiving events from webhook."]
    pub fn mailgun_signing_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.mailgun_signing_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `maintenance_mode` after provisioning.\nWhen instance is in maintenance mode, non-administrative users can sign in with read-only access and make read-only API requests."]
    pub fn maintenance_mode(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.maintenance_mode", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `maintenance_mode_message` after provisioning.\nMessage displayed when instance is in maintenance mode."]
    pub fn maintenance_mode_message(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.maintenance_mode_message", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_artifacts_size` after provisioning.\nMaximum artifacts size in MB."]
    pub fn max_artifacts_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_artifacts_size", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_attachment_size` after provisioning.\nLimit attachment size in MB."]
    pub fn max_attachment_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_attachment_size", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_export_size` after provisioning.\nMaximum export size in MB. 0 for unlimited."]
    pub fn max_export_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_export_size", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_import_size` after provisioning.\nMaximum import size in MB. 0 for unlimited."]
    pub fn max_import_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_import_size", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_number_of_repository_downloads` after provisioning.\nMaximum number of unique repositories a user can download in the specified time period before they are banned. Maximum: 10,000 repositories. Introduced in GitLab 15.1."]
    pub fn max_number_of_repository_downloads(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_number_of_repository_downloads", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_number_of_repository_downloads_within_time_period` after provisioning.\nReporting time period (in seconds). Maximum: 864000 seconds (10 days). Introduced in GitLab 15.1."]
    pub fn max_number_of_repository_downloads_within_time_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.max_number_of_repository_downloads_within_time_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `max_pages_size` after provisioning.\nMaximum size of pages repositories in MB."]
    pub fn max_pages_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_pages_size", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_personal_access_token_lifetime` after provisioning.\nMaximum allowable lifetime for access tokens in days."]
    pub fn max_personal_access_token_lifetime(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_personal_access_token_lifetime", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `max_ssh_key_lifetime` after provisioning.\nMaximum allowable lifetime for SSH keys in days. Introduced in GitLab 14.6."]
    pub fn max_ssh_key_lifetime(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.max_ssh_key_lifetime", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `metrics_method_call_threshold` after provisioning.\nA method call is only tracked when it takes longer than the given amount of milliseconds."]
    pub fn metrics_method_call_threshold(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.metrics_method_call_threshold", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `minimum_password_length` after provisioning.\nIndicates whether passwords require a minimum length. Introduced in GitLab 15.1. Premium and Ultimate only."]
    pub fn minimum_password_length(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.minimum_password_length", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `mirror_available` after provisioning.\nAllow repository mirroring to configured by project Maintainers. If disabled, only Administrators can configure repository mirroring."]
    pub fn mirror_available(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.mirror_available", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `mirror_capacity_threshold` after provisioning.\nMinimum capacity to be available before scheduling more mirrors preemptively."]
    pub fn mirror_capacity_threshold(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.mirror_capacity_threshold", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `mirror_max_capacity` after provisioning.\nMaximum number of mirrors that can be synchronizing at the same time."]
    pub fn mirror_max_capacity(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.mirror_max_capacity", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `mirror_max_delay` after provisioning.\nMaximum time (in minutes) between updates that a mirror can have when scheduled to synchronize."]
    pub fn mirror_max_delay(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.mirror_max_delay", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `npm_package_requests_forwarding` after provisioning.\nUse npmjs.org as a default remote repository when the package is not found in the GitLab Package Registry for npm."]
    pub fn npm_package_requests_forwarding(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.npm_package_requests_forwarding", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `outbound_local_requests_whitelist` after provisioning.\nDefine a list of trusted domains or IP addresses to which local requests are allowed when local requests for hooks and services are disabled."]
    pub fn outbound_local_requests_whitelist(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.outbound_local_requests_whitelist", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `package_registry_cleanup_policies_worker_capacity` after provisioning.\nNumber of workers assigned to the packages cleanup policies."]
    pub fn package_registry_cleanup_policies_worker_capacity(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.package_registry_cleanup_policies_worker_capacity", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `pages_domain_verification_enabled` after provisioning.\nRequire users to prove ownership of custom domains. Domain verification is an essential security measure for public GitLab sites. Users are required to demonstrate they control a domain before it is enabled."]
    pub fn pages_domain_verification_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.pages_domain_verification_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `password_authentication_enabled_for_git` after provisioning.\nEnable authentication for Git over HTTP(S) via a GitLab account password."]
    pub fn password_authentication_enabled_for_git(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.password_authentication_enabled_for_git", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `password_authentication_enabled_for_web` after provisioning.\nEnable authentication for the web interface via a GitLab account password."]
    pub fn password_authentication_enabled_for_web(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.password_authentication_enabled_for_web", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `password_lowercase_required` after provisioning.\nIndicates whether passwords require at least one lowercase letter. Introduced in GitLab 15.1."]
    pub fn password_lowercase_required(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.password_lowercase_required", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `password_number_required` after provisioning.\nIndicates whether passwords require at least one number. Introduced in GitLab 15.1."]
    pub fn password_number_required(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.password_number_required", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `password_symbol_required` after provisioning.\nIndicates whether passwords require at least one symbol character. Introduced in GitLab 15.1."]
    pub fn password_symbol_required(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.password_symbol_required", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `password_uppercase_required` after provisioning.\nIndicates whether passwords require at least one uppercase letter. Introduced in GitLab 15.1."]
    pub fn password_uppercase_required(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.password_uppercase_required", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `performance_bar_allowed_group_path` after provisioning.\nPath of the group that is allowed to toggle the performance bar."]
    pub fn performance_bar_allowed_group_path(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.performance_bar_allowed_group_path", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `personal_access_token_prefix` after provisioning.\nPrefix for all generated personal access tokens."]
    pub fn personal_access_token_prefix(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.personal_access_token_prefix", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `pipeline_limit_per_project_user_sha` after provisioning.\nMaximum number of pipeline creation requests per minute per user and commit."]
    pub fn pipeline_limit_per_project_user_sha(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.pipeline_limit_per_project_user_sha", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `plantuml_enabled` after provisioning.\n(If enabled, requires: plantuml_url) Enable PlantUML integration."]
    pub fn plantuml_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.plantuml_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `plantuml_url` after provisioning.\nThe PlantUML instance URL for integration."]
    pub fn plantuml_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.plantuml_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `polling_interval_multiplier` after provisioning.\nInterval multiplier used by endpoints that perform polling. Set to 0 to disable polling."]
    pub fn polling_interval_multiplier(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.polling_interval_multiplier", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `project_export_enabled` after provisioning.\nEnable project export."]
    pub fn project_export_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.project_export_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `prometheus_metrics_enabled` after provisioning.\nEnable Prometheus metrics."]
    pub fn prometheus_metrics_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.prometheus_metrics_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `protected_ci_variables` after provisioning.\nCI/CD variables are protected by default."]
    pub fn protected_ci_variables(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.protected_ci_variables", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `push_event_activities_limit` after provisioning.\nNumber of changes (branches or tags) in a single push to determine whether individual push events or bulk push events are created. Bulk push events are created if it surpasses that value."]
    pub fn push_event_activities_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.push_event_activities_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `push_event_hooks_limit` after provisioning.\nNumber of changes (branches or tags) in a single push to determine whether webhooks and services fire or not. Webhooks and services aren’t submitted if it surpasses that value."]
    pub fn push_event_hooks_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.push_event_hooks_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `pypi_package_requests_forwarding` after provisioning.\nUse pypi.org as a default remote repository when the package is not found in the GitLab Package Registry for PyPI."]
    pub fn pypi_package_requests_forwarding(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.pypi_package_requests_forwarding", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `rate_limiting_response_text` after provisioning.\nWhen rate limiting is enabled via the throttle_* settings, send this plain text response when a rate limit is exceeded. ‘Retry later’ is sent if this is blank."]
    pub fn rate_limiting_response_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.rate_limiting_response_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `raw_blob_request_limit` after provisioning.\nMax number of requests per minute for each raw path. To disable throttling set to 0."]
    pub fn raw_blob_request_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.raw_blob_request_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `recaptcha_enabled` after provisioning.\n(If enabled, requires: recaptcha_private_key and recaptcha_site_key) Enable reCAPTCHA."]
    pub fn recaptcha_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.recaptcha_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `recaptcha_private_key` after provisioning.\nPrivate key for reCAPTCHA."]
    pub fn recaptcha_private_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.recaptcha_private_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `recaptcha_site_key` after provisioning.\nSite key for reCAPTCHA."]
    pub fn recaptcha_site_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.recaptcha_site_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `receive_max_input_size` after provisioning.\nMaximum push size (MB)."]
    pub fn receive_max_input_size(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.receive_max_input_size", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `repository_checks_enabled` after provisioning.\nGitLab periodically runs git fsck in all project and wiki repositories to look for silent disk corruption issues."]
    pub fn repository_checks_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.repository_checks_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `repository_size_limit` after provisioning.\nSize limit per repository (MB)."]
    pub fn repository_size_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.repository_size_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `repository_storages` after provisioning.\n(GitLab 13.0 and earlier) List of names of enabled storage paths, taken from gitlab.yml. New projects are created in one of these stores, chosen at random."]
    pub fn repository_storages(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.repository_storages", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `repository_storages_weighted` after provisioning.\n(GitLab 13.1 and later) Hash of names of taken from gitlab.yml to weights. New projects are created in one of these stores, chosen by a weighted random selection."]
    pub fn repository_storages_weighted(&self) -> RecRef<PrimExpr<f64>> {
        RecRef::new(self.shared().clone(), format!("{}.repository_storages_weighted", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `require_admin_approval_after_user_signup` after provisioning.\nWhen enabled, any user that signs up for an account using the registration form is placed under a Pending approval state and has to be explicitly approved by an administrator."]
    pub fn require_admin_approval_after_user_signup(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.require_admin_approval_after_user_signup", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `require_two_factor_authentication` after provisioning.\n(If enabled, requires: two_factor_grace_period) Require all users to set up Two-factor authentication."]
    pub fn require_two_factor_authentication(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.require_two_factor_authentication", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `restricted_visibility_levels` after provisioning.\nSelected levels cannot be used by non-Administrator users for groups, projects or snippets. Can take private, internal and public as a parameter. Null means there is no restriction."]
    pub fn restricted_visibility_levels(&self) -> ListRef<PrimExpr<String>> {
        ListRef::new(self.shared().clone(), format!("{}.restricted_visibility_levels", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `rsa_key_restriction` after provisioning.\nThe minimum allowed bit length of an uploaded RSA key. 0 means no restriction. -1 disables RSA keys."]
    pub fn rsa_key_restriction(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.rsa_key_restriction", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `search_rate_limit` after provisioning.\nMax number of requests per minute for performing a search while authenticated. To disable throttling set to 0."]
    pub fn search_rate_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.search_rate_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `search_rate_limit_unauthenticated` after provisioning.\nMax number of requests per minute for performing a search while unauthenticated. To disable throttling set to 0."]
    pub fn search_rate_limit_unauthenticated(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.search_rate_limit_unauthenticated", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `send_user_confirmation_email` after provisioning.\nSend confirmation email on sign-up."]
    pub fn send_user_confirmation_email(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.send_user_confirmation_email", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `session_expire_delay` after provisioning.\nSession duration in minutes. GitLab restart is required to apply changes."]
    pub fn session_expire_delay(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.session_expire_delay", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `shared_runners_enabled` after provisioning.\n(If enabled, requires: shared_runners_text and shared_runners_minutes) Enable shared runners for new projects."]
    pub fn shared_runners_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.shared_runners_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `shared_runners_minutes` after provisioning.\nSet the maximum number of CI/CD minutes that a group can use on shared runners per month."]
    pub fn shared_runners_minutes(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.shared_runners_minutes", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `shared_runners_text` after provisioning.\nShared runners text."]
    pub fn shared_runners_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.shared_runners_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `sidekiq_job_limiter_compression_threshold_bytes` after provisioning.\nThe threshold in bytes at which Sidekiq jobs are compressed before being stored in Redis."]
    pub fn sidekiq_job_limiter_compression_threshold_bytes(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.sidekiq_job_limiter_compression_threshold_bytes", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `sidekiq_job_limiter_limit_bytes` after provisioning.\nThe threshold in bytes at which Sidekiq jobs are rejected. 0 means do not reject any job."]
    pub fn sidekiq_job_limiter_limit_bytes(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.sidekiq_job_limiter_limit_bytes", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `sidekiq_job_limiter_mode` after provisioning.\ntrack or compress. Sets the behavior for Sidekiq job size limits."]
    pub fn sidekiq_job_limiter_mode(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.sidekiq_job_limiter_mode", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `sign_in_text` after provisioning.\nText on the login page."]
    pub fn sign_in_text(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.sign_in_text", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `signup_enabled` after provisioning.\nEnable registration."]
    pub fn signup_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.signup_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `slack_app_enabled` after provisioning.\n(If enabled, requires: slack_app_id, slack_app_secret and slack_app_secret) Enable Slack app."]
    pub fn slack_app_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.slack_app_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `slack_app_id` after provisioning.\nThe app ID of the Slack-app."]
    pub fn slack_app_id(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.slack_app_id", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `slack_app_secret` after provisioning.\nThe app secret of the Slack-app."]
    pub fn slack_app_secret(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.slack_app_secret", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `slack_app_signing_secret` after provisioning.\nThe signing secret of the Slack-app."]
    pub fn slack_app_signing_secret(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.slack_app_signing_secret", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `slack_app_verification_token` after provisioning.\nThe verification token of the Slack-app."]
    pub fn slack_app_verification_token(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.slack_app_verification_token", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `snippet_size_limit` after provisioning.\nMax snippet content size in bytes."]
    pub fn snippet_size_limit(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.snippet_size_limit", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `snowplow_app_id` after provisioning.\nThe Snowplow site name / application ID. (for example, gitlab)"]
    pub fn snowplow_app_id(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.snowplow_app_id", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `snowplow_collector_hostname` after provisioning.\nThe Snowplow collector hostname. (for example, snowplow.trx.gitlab.net)"]
    pub fn snowplow_collector_hostname(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.snowplow_collector_hostname", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `snowplow_cookie_domain` after provisioning.\nThe Snowplow cookie domain. (for example, .gitlab.com)"]
    pub fn snowplow_cookie_domain(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.snowplow_cookie_domain", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `snowplow_enabled` after provisioning.\nEnable snowplow tracking."]
    pub fn snowplow_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.snowplow_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `sourcegraph_enabled` after provisioning.\nEnables Sourcegraph integration. If enabled, requires sourcegraph_url."]
    pub fn sourcegraph_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.sourcegraph_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `sourcegraph_public_only` after provisioning.\nBlocks Sourcegraph from being loaded on private and internal projects."]
    pub fn sourcegraph_public_only(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.sourcegraph_public_only", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `sourcegraph_url` after provisioning.\nThe Sourcegraph instance URL for integration."]
    pub fn sourcegraph_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.sourcegraph_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `spam_check_api_key` after provisioning.\nAPI key used by GitLab for accessing the Spam Check service endpoint."]
    pub fn spam_check_api_key(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.spam_check_api_key", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `spam_check_endpoint_enabled` after provisioning.\nEnables spam checking using external Spam Check API endpoint."]
    pub fn spam_check_endpoint_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.spam_check_endpoint_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `spam_check_endpoint_url` after provisioning.\nURL of the external Spamcheck service endpoint. Valid URI schemes are grpc or tls. Specifying tls forces communication to be encrypted."]
    pub fn spam_check_endpoint_url(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.spam_check_endpoint_url", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `suggest_pipeline_enabled` after provisioning.\nEnable pipeline suggestion banner."]
    pub fn suggest_pipeline_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.suggest_pipeline_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `terminal_max_session_time` after provisioning.\nMaximum time for web terminal websocket connection (in seconds). Set to 0 for unlimited time."]
    pub fn terminal_max_session_time(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.terminal_max_session_time", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `terms` after provisioning.\n(Required by: enforce_terms) Markdown content for the ToS."]
    pub fn terms(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.terms", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_api_enabled` after provisioning.\n(If enabled, requires: throttle_authenticated_api_period_in_seconds and throttle_authenticated_api_requests_per_period) Enable authenticated API request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots)."]
    pub fn throttle_authenticated_api_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.throttle_authenticated_api_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_api_period_in_seconds` after provisioning.\nRate limit period (in seconds)."]
    pub fn throttle_authenticated_api_period_in_seconds(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_api_period_in_seconds", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_api_requests_per_period` after provisioning.\nMaximum requests per period per user."]
    pub fn throttle_authenticated_api_requests_per_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_api_requests_per_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_packages_api_enabled` after provisioning.\n(If enabled, requires: throttle_authenticated_packages_api_period_in_seconds and throttle_authenticated_packages_api_requests_per_period) Enable authenticated API request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots). View Package Registry rate limits for more details."]
    pub fn throttle_authenticated_packages_api_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_packages_api_enabled", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_packages_api_period_in_seconds` after provisioning.\nRate limit period (in seconds). View Package Registry rate limits for more details."]
    pub fn throttle_authenticated_packages_api_period_in_seconds(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_packages_api_period_in_seconds", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_packages_api_requests_per_period` after provisioning.\nMaximum requests per period per user. View Package Registry rate limits for more details."]
    pub fn throttle_authenticated_packages_api_requests_per_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_packages_api_requests_per_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_web_enabled` after provisioning.\n(If enabled, requires: throttle_authenticated_web_period_in_seconds and throttle_authenticated_web_requests_per_period) Enable authenticated web request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots)."]
    pub fn throttle_authenticated_web_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.throttle_authenticated_web_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_web_period_in_seconds` after provisioning.\nRate limit period (in seconds)."]
    pub fn throttle_authenticated_web_period_in_seconds(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_web_period_in_seconds", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_authenticated_web_requests_per_period` after provisioning.\nMaximum requests per period per user."]
    pub fn throttle_authenticated_web_requests_per_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_authenticated_web_requests_per_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_api_enabled` after provisioning.\n(If enabled, requires: throttle_unauthenticated_api_period_in_seconds and throttle_unauthenticated_api_requests_per_period) Enable unauthenticated API request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots)."]
    pub fn throttle_unauthenticated_api_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.throttle_unauthenticated_api_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_api_period_in_seconds` after provisioning.\nRate limit period in seconds."]
    pub fn throttle_unauthenticated_api_period_in_seconds(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_api_period_in_seconds", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_api_requests_per_period` after provisioning.\nMax requests per period per IP."]
    pub fn throttle_unauthenticated_api_requests_per_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_api_requests_per_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_packages_api_enabled` after provisioning.\n(If enabled, requires: throttle_unauthenticated_packages_api_period_in_seconds and throttle_unauthenticated_packages_api_requests_per_period) Enable authenticated API request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots). View Package Registry rate limits for more details."]
    pub fn throttle_unauthenticated_packages_api_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_packages_api_enabled", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_packages_api_period_in_seconds` after provisioning.\nRate limit period (in seconds). View Package Registry rate limits for more details."]
    pub fn throttle_unauthenticated_packages_api_period_in_seconds(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_packages_api_period_in_seconds", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_packages_api_requests_per_period` after provisioning.\nMaximum requests per period per user. View Package Registry rate limits for more details."]
    pub fn throttle_unauthenticated_packages_api_requests_per_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_packages_api_requests_per_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_web_enabled` after provisioning.\n(If enabled, requires: throttle_unauthenticated_web_period_in_seconds and throttle_unauthenticated_web_requests_per_period) Enable unauthenticated web request rate limit. Helps reduce request volume (for example, from crawlers or abusive bots)."]
    pub fn throttle_unauthenticated_web_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.throttle_unauthenticated_web_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_web_period_in_seconds` after provisioning.\nRate limit period in seconds."]
    pub fn throttle_unauthenticated_web_period_in_seconds(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_web_period_in_seconds", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `throttle_unauthenticated_web_requests_per_period` after provisioning.\nMax requests per period per IP."]
    pub fn throttle_unauthenticated_web_requests_per_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(
            self.shared().clone(),
            format!("{}.throttle_unauthenticated_web_requests_per_period", self.extract_ref()),
        )
    }

    #[doc= "Get a reference to the value of field `time_tracking_limit_to_hours` after provisioning.\nLimit display of time tracking units to hours."]
    pub fn time_tracking_limit_to_hours(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.time_tracking_limit_to_hours", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `two_factor_grace_period` after provisioning.\nAmount of time (in hours) that users are allowed to skip forced configuration of two-factor authentication."]
    pub fn two_factor_grace_period(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.two_factor_grace_period", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `unique_ips_limit_enabled` after provisioning.\n(If enabled, requires: unique_ips_limit_per_user and unique_ips_limit_time_window) Limit sign in from multiple IPs."]
    pub fn unique_ips_limit_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.unique_ips_limit_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `unique_ips_limit_per_user` after provisioning.\nMaximum number of IPs per user."]
    pub fn unique_ips_limit_per_user(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.unique_ips_limit_per_user", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `unique_ips_limit_time_window` after provisioning.\nHow many seconds an IP is counted towards the limit."]
    pub fn unique_ips_limit_time_window(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.unique_ips_limit_time_window", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `usage_ping_enabled` after provisioning.\nEvery week GitLab reports license usage back to GitLab, Inc."]
    pub fn usage_ping_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.usage_ping_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `user_deactivation_emails_enabled` after provisioning.\nSend an email to users upon account deactivation."]
    pub fn user_deactivation_emails_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.user_deactivation_emails_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `user_default_external` after provisioning.\nNewly registered users are external by default."]
    pub fn user_default_external(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.user_default_external", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `user_default_internal_regex` after provisioning.\nSpecify an email address regex pattern to identify default internal users."]
    pub fn user_default_internal_regex(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.user_default_internal_regex", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `user_oauth_applications` after provisioning.\nAllow users to register any application to use GitLab as an OAuth provider."]
    pub fn user_oauth_applications(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.user_oauth_applications", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `user_show_add_ssh_key_message` after provisioning.\nWhen set to false disable the You won't be able to pull or push project code via SSH warning shown to users with no uploaded SSH key."]
    pub fn user_show_add_ssh_key_message(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.user_show_add_ssh_key_message", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `version_check_enabled` after provisioning.\nLet GitLab inform you when an update is available."]
    pub fn version_check_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.version_check_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `web_ide_clientside_preview_enabled` after provisioning.\nLive Preview (allow live previews of JavaScript projects in the Web IDE using CodeSandbox Live Preview)."]
    pub fn web_ide_clientside_preview_enabled(&self) -> PrimExpr<bool> {
        PrimExpr::new(self.shared().clone(), format!("{}.web_ide_clientside_preview_enabled", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `whats_new_variant` after provisioning.\nWhat’s new variant, possible values: all_tiers, current_tier, and disabled."]
    pub fn whats_new_variant(&self) -> PrimExpr<String> {
        PrimExpr::new(self.shared().clone(), format!("{}.whats_new_variant", self.extract_ref()))
    }

    #[doc= "Get a reference to the value of field `wiki_page_max_content_bytes` after provisioning.\nMaximum wiki page content size in bytes. The minimum value is 1024 bytes."]
    pub fn wiki_page_max_content_bytes(&self) -> PrimExpr<f64> {
        PrimExpr::new(self.shared().clone(), format!("{}.wiki_page_max_content_bytes", self.extract_ref()))
    }
}