Class: DatadogAPIClient::DatadogAPIClientInflector

Inherits:
Zeitwerk::Inflector
  • Object
show all
Defined in:
lib/datadog_api_client/inflector.rb

Instance Method Summary collapse

Instance Method Details

#camelize(basename, abspath) ⇒ Object



5
6
7
8
# File 'lib/datadog_api_client/inflector.rb', line 5

def camelize(basename, abspath)
  model_name = "#{abspath.scan(/v[0-9]/).last}.#{basename}"
  overrides[model_name] || basename.split('_').each(&:capitalize!).join
end

#overridesObject



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
# File 'lib/datadog_api_client/inflector.rb', line 10

def overrides
  @overrides ||= {
    # Models
      "v1.access_role" => "AccessRole",
      "v1.add_signal_to_incident_request" => "AddSignalToIncidentRequest",
      "v1.alert_graph_widget_definition" => "AlertGraphWidgetDefinition",
      "v1.alert_graph_widget_definition_type" => "AlertGraphWidgetDefinitionType",
      "v1.alert_value_widget_definition" => "AlertValueWidgetDefinition",
      "v1.alert_value_widget_definition_type" => "AlertValueWidgetDefinitionType",
      "v1.api_error_response" => "APIErrorResponse",
      "v1.api_key" => "ApiKey",
      "v1.api_key_list_response" => "ApiKeyListResponse",
      "v1.api_key_response" => "ApiKeyResponse",
      "v1.apm_stats_query_column_type" => "ApmStatsQueryColumnType",
      "v1.apm_stats_query_definition" => "ApmStatsQueryDefinition",
      "v1.apm_stats_query_row_type" => "ApmStatsQueryRowType",
      "v1.application_key" => "ApplicationKey",
      "v1.application_key_list_response" => "ApplicationKeyListResponse",
      "v1.application_key_response" => "ApplicationKeyResponse",
      "v1.authentication_validation_response" => "AuthenticationValidationResponse",
      "v1.aws_account" => "AWSAccount",
      "v1.aws_account_and_lambda_request" => "AWSAccountAndLambdaRequest",
      "v1.aws_account_create_response" => "AWSAccountCreateResponse",
      "v1.aws_account_delete_request" => "AWSAccountDeleteRequest",
      "v1.aws_account_list_response" => "AWSAccountListResponse",
      "v1.aws_event_bridge_account_configuration" => "AWSEventBridgeAccountConfiguration",
      "v1.aws_event_bridge_create_request" => "AWSEventBridgeCreateRequest",
      "v1.aws_event_bridge_create_response" => "AWSEventBridgeCreateResponse",
      "v1.aws_event_bridge_create_status" => "AWSEventBridgeCreateStatus",
      "v1.aws_event_bridge_delete_request" => "AWSEventBridgeDeleteRequest",
      "v1.aws_event_bridge_delete_response" => "AWSEventBridgeDeleteResponse",
      "v1.aws_event_bridge_delete_status" => "AWSEventBridgeDeleteStatus",
      "v1.aws_event_bridge_list_response" => "AWSEventBridgeListResponse",
      "v1.aws_event_bridge_source" => "AWSEventBridgeSource",
      "v1.aws_logs_async_error" => "AWSLogsAsyncError",
      "v1.aws_logs_async_response" => "AWSLogsAsyncResponse",
      "v1.aws_logs_lambda" => "AWSLogsLambda",
      "v1.aws_logs_list_response" => "AWSLogsListResponse",
      "v1.aws_logs_list_services_response" => "AWSLogsListServicesResponse",
      "v1.aws_logs_services_request" => "AWSLogsServicesRequest",
      "v1.aws_namespace" => "AWSNamespace",
      "v1.aws_tag_filter" => "AWSTagFilter",
      "v1.aws_tag_filter_create_request" => "AWSTagFilterCreateRequest",
      "v1.aws_tag_filter_delete_request" => "AWSTagFilterDeleteRequest",
      "v1.aws_tag_filter_list_response" => "AWSTagFilterListResponse",
      "v1.azure_account" => "AzureAccount",
      "v1.cancel_downtimes_by_scope_request" => "CancelDowntimesByScopeRequest",
      "v1.canceled_downtimes_ids" => "CanceledDowntimesIds",
      "v1.change_widget_definition" => "ChangeWidgetDefinition",
      "v1.change_widget_definition_type" => "ChangeWidgetDefinitionType",
      "v1.change_widget_request" => "ChangeWidgetRequest",
      "v1.check_can_delete_monitor_response" => "CheckCanDeleteMonitorResponse",
      "v1.check_can_delete_monitor_response_data" => "CheckCanDeleteMonitorResponseData",
      "v1.check_can_delete_slo_response" => "CheckCanDeleteSLOResponse",
      "v1.check_can_delete_slo_response_data" => "CheckCanDeleteSLOResponseData",
      "v1.check_status_widget_definition" => "CheckStatusWidgetDefinition",
      "v1.check_status_widget_definition_type" => "CheckStatusWidgetDefinitionType",
      "v1.content_encoding" => "ContentEncoding",
      "v1.creator" => "Creator",
      "v1.dashboard" => "Dashboard",
      "v1.dashboard_bulk_action_data" => "DashboardBulkActionData",
      "v1.dashboard_bulk_delete_request" => "DashboardBulkDeleteRequest",
      "v1.dashboard_delete_response" => "DashboardDeleteResponse",
      "v1.dashboard_global_time" => "DashboardGlobalTime",
      "v1.dashboard_global_time_live_span" => "DashboardGlobalTimeLiveSpan",
      "v1.dashboard_invite_type" => "DashboardInviteType",
      "v1.dashboard_layout_type" => "DashboardLayoutType",
      "v1.dashboard_list" => "DashboardList",
      "v1.dashboard_list_delete_response" => "DashboardListDeleteResponse",
      "v1.dashboard_list_list_response" => "DashboardListListResponse",
      "v1.dashboard_reflow_type" => "DashboardReflowType",
      "v1.dashboard_resource_type" => "DashboardResourceType",
      "v1.dashboard_restore_request" => "DashboardRestoreRequest",
      "v1.dashboard_share_type" => "DashboardShareType",
      "v1.dashboard_summary" => "DashboardSummary",
      "v1.dashboard_summary_definition" => "DashboardSummaryDefinition",
      "v1.dashboard_template_variable" => "DashboardTemplateVariable",
      "v1.dashboard_template_variable_preset" => "DashboardTemplateVariablePreset",
      "v1.dashboard_template_variable_preset_value" => "DashboardTemplateVariablePresetValue",
      "v1.dashboard_type" => "DashboardType",
      "v1.deleted_monitor" => "DeletedMonitor",
      "v1.delete_shared_dashboard_response" => "DeleteSharedDashboardResponse",
      "v1.distribution_point_item" => "DistributionPointItem",
      "v1.distribution_points_content_encoding" => "DistributionPointsContentEncoding",
      "v1.distribution_points_payload" => "DistributionPointsPayload",
      "v1.distribution_points_series" => "DistributionPointsSeries",
      "v1.distribution_points_type" => "DistributionPointsType",
      "v1.distribution_widget_definition" => "DistributionWidgetDefinition",
      "v1.distribution_widget_definition_type" => "DistributionWidgetDefinitionType",
      "v1.distribution_widget_histogram_request_query" => "DistributionWidgetHistogramRequestQuery",
      "v1.distribution_widget_histogram_request_type" => "DistributionWidgetHistogramRequestType",
      "v1.distribution_widget_request" => "DistributionWidgetRequest",
      "v1.distribution_widget_x_axis" => "DistributionWidgetXAxis",
      "v1.distribution_widget_y_axis" => "DistributionWidgetYAxis",
      "v1.downtime" => "Downtime",
      "v1.downtime_child" => "DowntimeChild",
      "v1.downtime_recurrence" => "DowntimeRecurrence",
      "v1.event" => "Event",
      "v1.event_alert_type" => "EventAlertType",
      "v1.event_create_request" => "EventCreateRequest",
      "v1.event_create_response" => "EventCreateResponse",
      "v1.event_list_response" => "EventListResponse",
      "v1.event_priority" => "EventPriority",
      "v1.event_query_definition" => "EventQueryDefinition",
      "v1.event_response" => "EventResponse",
      "v1.event_stream_widget_definition" => "EventStreamWidgetDefinition",
      "v1.event_stream_widget_definition_type" => "EventStreamWidgetDefinitionType",
      "v1.event_timeline_widget_definition" => "EventTimelineWidgetDefinition",
      "v1.event_timeline_widget_definition_type" => "EventTimelineWidgetDefinitionType",
      "v1.formula_and_function_apm_dependency_stat_name" => "FormulaAndFunctionApmDependencyStatName",
      "v1.formula_and_function_apm_dependency_stats_data_source" => "FormulaAndFunctionApmDependencyStatsDataSource",
      "v1.formula_and_function_apm_dependency_stats_query_definition" => "FormulaAndFunctionApmDependencyStatsQueryDefinition",
      "v1.formula_and_function_apm_resource_stat_name" => "FormulaAndFunctionApmResourceStatName",
      "v1.formula_and_function_apm_resource_stats_data_source" => "FormulaAndFunctionApmResourceStatsDataSource",
      "v1.formula_and_function_apm_resource_stats_query_definition" => "FormulaAndFunctionApmResourceStatsQueryDefinition",
      "v1.formula_and_function_cloud_cost_data_source" => "FormulaAndFunctionCloudCostDataSource",
      "v1.formula_and_function_cloud_cost_query_definition" => "FormulaAndFunctionCloudCostQueryDefinition",
      "v1.formula_and_function_event_aggregation" => "FormulaAndFunctionEventAggregation",
      "v1.formula_and_function_event_query_definition" => "FormulaAndFunctionEventQueryDefinition",
      "v1.formula_and_function_event_query_definition_compute" => "FormulaAndFunctionEventQueryDefinitionCompute",
      "v1.formula_and_function_event_query_definition_search" => "FormulaAndFunctionEventQueryDefinitionSearch",
      "v1.formula_and_function_event_query_group_by" => "FormulaAndFunctionEventQueryGroupBy",
      "v1.formula_and_function_event_query_group_by_sort" => "FormulaAndFunctionEventQueryGroupBySort",
      "v1.formula_and_function_events_data_source" => "FormulaAndFunctionEventsDataSource",
      "v1.formula_and_function_metric_aggregation" => "FormulaAndFunctionMetricAggregation",
      "v1.formula_and_function_metric_data_source" => "FormulaAndFunctionMetricDataSource",
      "v1.formula_and_function_metric_query_definition" => "FormulaAndFunctionMetricQueryDefinition",
      "v1.formula_and_function_process_query_data_source" => "FormulaAndFunctionProcessQueryDataSource",
      "v1.formula_and_function_process_query_definition" => "FormulaAndFunctionProcessQueryDefinition",
      "v1.formula_and_function_query_definition" => "FormulaAndFunctionQueryDefinition",
      "v1.formula_and_function_response_format" => "FormulaAndFunctionResponseFormat",
      "v1.formula_and_function_slo_data_source" => "FormulaAndFunctionSLODataSource",
      "v1.formula_and_function_slo_group_mode" => "FormulaAndFunctionSLOGroupMode",
      "v1.formula_and_function_slo_measure" => "FormulaAndFunctionSLOMeasure",
      "v1.formula_and_function_slo_query_definition" => "FormulaAndFunctionSLOQueryDefinition",
      "v1.formula_and_function_slo_query_type" => "FormulaAndFunctionSLOQueryType",
      "v1.free_text_widget_definition" => "FreeTextWidgetDefinition",
      "v1.free_text_widget_definition_type" => "FreeTextWidgetDefinitionType",
      "v1.funnel_query" => "FunnelQuery",
      "v1.funnel_request_type" => "FunnelRequestType",
      "v1.funnel_source" => "FunnelSource",
      "v1.funnel_step" => "FunnelStep",
      "v1.funnel_widget_definition" => "FunnelWidgetDefinition",
      "v1.funnel_widget_definition_type" => "FunnelWidgetDefinitionType",
      "v1.funnel_widget_request" => "FunnelWidgetRequest",
      "v1.gcp_account" => "GCPAccount",
      "v1.geomap_widget_definition" => "GeomapWidgetDefinition",
      "v1.geomap_widget_definition_style" => "GeomapWidgetDefinitionStyle",
      "v1.geomap_widget_definition_type" => "GeomapWidgetDefinitionType",
      "v1.geomap_widget_definition_view" => "GeomapWidgetDefinitionView",
      "v1.geomap_widget_request" => "GeomapWidgetRequest",
      "v1.graph_snapshot" => "GraphSnapshot",
      "v1.group_widget_definition" => "GroupWidgetDefinition",
      "v1.group_widget_definition_type" => "GroupWidgetDefinitionType",
      "v1.heat_map_widget_definition" => "HeatMapWidgetDefinition",
      "v1.heat_map_widget_definition_type" => "HeatMapWidgetDefinitionType",
      "v1.heat_map_widget_request" => "HeatMapWidgetRequest",
      "v1.host" => "Host",
      "v1.host_list_response" => "HostListResponse",
      "v1.host_map_request" => "HostMapRequest",
      "v1.host_map_widget_definition" => "HostMapWidgetDefinition",
      "v1.host_map_widget_definition_requests" => "HostMapWidgetDefinitionRequests",
      "v1.host_map_widget_definition_style" => "HostMapWidgetDefinitionStyle",
      "v1.host_map_widget_definition_type" => "HostMapWidgetDefinitionType",
      "v1.host_meta" => "HostMeta",
      "v1.host_meta_install_method" => "HostMetaInstallMethod",
      "v1.host_metrics" => "HostMetrics",
      "v1.host_mute_response" => "HostMuteResponse",
      "v1.host_mute_settings" => "HostMuteSettings",
      "v1.host_tags" => "HostTags",
      "v1.host_totals" => "HostTotals",
      "v1.hourly_usage_attribution_body" => "HourlyUsageAttributionBody",
      "v1.hourly_usage_attribution_metadata" => "HourlyUsageAttributionMetadata",
      "v1.hourly_usage_attribution_pagination" => "HourlyUsageAttributionPagination",
      "v1.hourly_usage_attribution_response" => "HourlyUsageAttributionResponse",
      "v1.hourly_usage_attribution_usage_type" => "HourlyUsageAttributionUsageType",
      "v1.http_log_error" => "HTTPLogError",
      "v1.http_log_item" => "HTTPLogItem",
      "v1.idp_form_data" => "IdpFormData",
      "v1.idp_response" => "IdpResponse",
      "v1.i_frame_widget_definition" => "IFrameWidgetDefinition",
      "v1.i_frame_widget_definition_type" => "IFrameWidgetDefinitionType",
      "v1.image_widget_definition" => "ImageWidgetDefinition",
      "v1.image_widget_definition_type" => "ImageWidgetDefinitionType",
      "v1.intake_payload_accepted" => "IntakePayloadAccepted",
      "v1.ip_prefixes_agents" => "IPPrefixesAgents",
      "v1.ip_prefixes_api" => "IPPrefixesAPI",
      "v1.ip_prefixes_apm" => "IPPrefixesAPM",
      "v1.ip_prefixes_global" => "IPPrefixesGlobal",
      "v1.ip_prefixes_logs" => "IPPrefixesLogs",
      "v1.ip_prefixes_orchestrator" => "IPPrefixesOrchestrator",
      "v1.ip_prefixes_process" => "IPPrefixesProcess",
      "v1.ip_prefixes_remote_configuration" => "IPPrefixesRemoteConfiguration",
      "v1.ip_prefixes_synthetics" => "IPPrefixesSynthetics",
      "v1.ip_prefixes_synthetics_private_locations" => "IPPrefixesSyntheticsPrivateLocations",
      "v1.ip_prefixes_webhooks" => "IPPrefixesWebhooks",
      "v1.ip_ranges" => "IPRanges",
      "v1.list_stream_column" => "ListStreamColumn",
      "v1.list_stream_column_width" => "ListStreamColumnWidth",
      "v1.list_stream_compute_aggregation" => "ListStreamComputeAggregation",
      "v1.list_stream_compute_items" => "ListStreamComputeItems",
      "v1.list_stream_group_by_items" => "ListStreamGroupByItems",
      "v1.list_stream_query" => "ListStreamQuery",
      "v1.list_stream_response_format" => "ListStreamResponseFormat",
      "v1.list_stream_source" => "ListStreamSource",
      "v1.list_stream_widget_definition" => "ListStreamWidgetDefinition",
      "v1.list_stream_widget_definition_type" => "ListStreamWidgetDefinitionType",
      "v1.list_stream_widget_request" => "ListStreamWidgetRequest",
      "v1.log" => "Log",
      "v1.log_content" => "LogContent",
      "v1.log_query_definition" => "LogQueryDefinition",
      "v1.log_query_definition_group_by" => "LogQueryDefinitionGroupBy",
      "v1.log_query_definition_group_by_sort" => "LogQueryDefinitionGroupBySort",
      "v1.log_query_definition_search" => "LogQueryDefinitionSearch",
      "v1.logs_api_error" => "LogsAPIError",
      "v1.logs_api_error_response" => "LogsAPIErrorResponse",
      "v1.logs_arithmetic_processor" => "LogsArithmeticProcessor",
      "v1.logs_arithmetic_processor_type" => "LogsArithmeticProcessorType",
      "v1.logs_attribute_remapper" => "LogsAttributeRemapper",
      "v1.logs_attribute_remapper_type" => "LogsAttributeRemapperType",
      "v1.logs_by_retention" => "LogsByRetention",
      "v1.logs_by_retention_monthly_usage" => "LogsByRetentionMonthlyUsage",
      "v1.logs_by_retention_orgs" => "LogsByRetentionOrgs",
      "v1.logs_by_retention_org_usage" => "LogsByRetentionOrgUsage",
      "v1.logs_category_processor" => "LogsCategoryProcessor",
      "v1.logs_category_processor_category" => "LogsCategoryProcessorCategory",
      "v1.logs_category_processor_type" => "LogsCategoryProcessorType",
      "v1.logs_daily_limit_reset" => "LogsDailyLimitReset",
      "v1.logs_date_remapper" => "LogsDateRemapper",
      "v1.logs_date_remapper_type" => "LogsDateRemapperType",
      "v1.logs_exclusion" => "LogsExclusion",
      "v1.logs_exclusion_filter" => "LogsExclusionFilter",
      "v1.logs_filter" => "LogsFilter",
      "v1.logs_geo_ip_parser" => "LogsGeoIPParser",
      "v1.logs_geo_ip_parser_type" => "LogsGeoIPParserType",
      "v1.logs_grok_parser" => "LogsGrokParser",
      "v1.logs_grok_parser_rules" => "LogsGrokParserRules",
      "v1.logs_grok_parser_type" => "LogsGrokParserType",
      "v1.logs_index" => "LogsIndex",
      "v1.logs_indexes_order" => "LogsIndexesOrder",
      "v1.logs_index_list_response" => "LogsIndexListResponse",
      "v1.logs_index_update_request" => "LogsIndexUpdateRequest",
      "v1.logs_list_request" => "LogsListRequest",
      "v1.logs_list_request_time" => "LogsListRequestTime",
      "v1.logs_list_response" => "LogsListResponse",
      "v1.logs_lookup_processor" => "LogsLookupProcessor",
      "v1.logs_lookup_processor_type" => "LogsLookupProcessorType",
      "v1.logs_message_remapper" => "LogsMessageRemapper",
      "v1.logs_message_remapper_type" => "LogsMessageRemapperType",
      "v1.logs_pipeline" => "LogsPipeline",
      "v1.logs_pipeline_processor" => "LogsPipelineProcessor",
      "v1.logs_pipeline_processor_type" => "LogsPipelineProcessorType",
      "v1.logs_pipelines_order" => "LogsPipelinesOrder",
      "v1.logs_processor" => "LogsProcessor",
      "v1.logs_query_compute" => "LogsQueryCompute",
      "v1.logs_retention_agg_sum_usage" => "LogsRetentionAggSumUsage",
      "v1.logs_retention_sum_usage" => "LogsRetentionSumUsage",
      "v1.logs_service_remapper" => "LogsServiceRemapper",
      "v1.logs_service_remapper_type" => "LogsServiceRemapperType",
      "v1.logs_sort" => "LogsSort",
      "v1.logs_status_remapper" => "LogsStatusRemapper",
      "v1.logs_status_remapper_type" => "LogsStatusRemapperType",
      "v1.logs_string_builder_processor" => "LogsStringBuilderProcessor",
      "v1.logs_string_builder_processor_type" => "LogsStringBuilderProcessorType",
      "v1.logs_trace_remapper" => "LogsTraceRemapper",
      "v1.logs_trace_remapper_type" => "LogsTraceRemapperType",
      "v1.log_stream_widget_definition" => "LogStreamWidgetDefinition",
      "v1.log_stream_widget_definition_type" => "LogStreamWidgetDefinitionType",
      "v1.logs_url_parser" => "LogsURLParser",
      "v1.logs_url_parser_type" => "LogsURLParserType",
      "v1.logs_user_agent_parser" => "LogsUserAgentParser",
      "v1.logs_user_agent_parser_type" => "LogsUserAgentParserType",
      "v1.matching_downtime" => "MatchingDowntime",
      "v1.metric_content_encoding" => "MetricContentEncoding",
      "v1.metric_metadata" => "MetricMetadata",
      "v1.metric_search_response" => "MetricSearchResponse",
      "v1.metric_search_response_results" => "MetricSearchResponseResults",
      "v1.metrics_list_response" => "MetricsListResponse",
      "v1.metrics_payload" => "MetricsPayload",
      "v1.metrics_query_metadata" => "MetricsQueryMetadata",
      "v1.metrics_query_response" => "MetricsQueryResponse",
      "v1.metrics_query_unit" => "MetricsQueryUnit",
      "v1.monitor" => "Monitor",
      "v1.monitor_device_id" => "MonitorDeviceID",
      "v1.monitor_formula_and_function_event_aggregation" => "MonitorFormulaAndFunctionEventAggregation",
      "v1.monitor_formula_and_function_event_query_definition" => "MonitorFormulaAndFunctionEventQueryDefinition",
      "v1.monitor_formula_and_function_event_query_definition_compute" => "MonitorFormulaAndFunctionEventQueryDefinitionCompute",
      "v1.monitor_formula_and_function_event_query_definition_search" => "MonitorFormulaAndFunctionEventQueryDefinitionSearch",
      "v1.monitor_formula_and_function_event_query_group_by" => "MonitorFormulaAndFunctionEventQueryGroupBy",
      "v1.monitor_formula_and_function_event_query_group_by_sort" => "MonitorFormulaAndFunctionEventQueryGroupBySort",
      "v1.monitor_formula_and_function_events_data_source" => "MonitorFormulaAndFunctionEventsDataSource",
      "v1.monitor_formula_and_function_query_definition" => "MonitorFormulaAndFunctionQueryDefinition",
      "v1.monitor_group_search_response" => "MonitorGroupSearchResponse",
      "v1.monitor_group_search_response_counts" => "MonitorGroupSearchResponseCounts",
      "v1.monitor_group_search_result" => "MonitorGroupSearchResult",
      "v1.monitor_options" => "MonitorOptions",
      "v1.monitor_options_aggregation" => "MonitorOptionsAggregation",
      "v1.monitor_options_custom_schedule" => "MonitorOptionsCustomSchedule",
      "v1.monitor_options_custom_schedule_recurrence" => "MonitorOptionsCustomScheduleRecurrence",
      "v1.monitor_options_notification_presets" => "MonitorOptionsNotificationPresets",
      "v1.monitor_options_scheduling_options" => "MonitorOptionsSchedulingOptions",
      "v1.monitor_options_scheduling_options_evaluation_window" => "MonitorOptionsSchedulingOptionsEvaluationWindow",
      "v1.monitor_overall_states" => "MonitorOverallStates",
      "v1.monitor_renotify_status_type" => "MonitorRenotifyStatusType",
      "v1.monitor_search_count_item" => "MonitorSearchCountItem",
      "v1.monitor_search_response" => "MonitorSearchResponse",
      "v1.monitor_search_response_counts" => "MonitorSearchResponseCounts",
      "v1.monitor_search_response_metadata" => "MonitorSearchResponseMetadata",
      "v1.monitor_search_result" => "MonitorSearchResult",
      "v1.monitor_search_result_notification" => "MonitorSearchResultNotification",
      "v1.monitor_state" => "MonitorState",
      "v1.monitor_state_group" => "MonitorStateGroup",
      "v1.monitor_summary_widget_definition" => "MonitorSummaryWidgetDefinition",
      "v1.monitor_summary_widget_definition_type" => "MonitorSummaryWidgetDefinitionType",
      "v1.monitor_thresholds" => "MonitorThresholds",
      "v1.monitor_threshold_window_options" => "MonitorThresholdWindowOptions",
      "v1.monitor_type" => "MonitorType",
      "v1.monitor_update_request" => "MonitorUpdateRequest",
      "v1.monthly_usage_attribution_body" => "MonthlyUsageAttributionBody",
      "v1.monthly_usage_attribution_metadata" => "MonthlyUsageAttributionMetadata",
      "v1.monthly_usage_attribution_pagination" => "MonthlyUsageAttributionPagination",
      "v1.monthly_usage_attribution_response" => "MonthlyUsageAttributionResponse",
      "v1.monthly_usage_attribution_supported_metrics" => "MonthlyUsageAttributionSupportedMetrics",
      "v1.monthly_usage_attribution_values" => "MonthlyUsageAttributionValues",
      "v1.notebook_absolute_time" => "NotebookAbsoluteTime",
      "v1.notebook_author" => "NotebookAuthor",
      "v1.notebook_cell_create_request" => "NotebookCellCreateRequest",
      "v1.notebook_cell_create_request_attributes" => "NotebookCellCreateRequestAttributes",
      "v1.notebook_cell_resource_type" => "NotebookCellResourceType",
      "v1.notebook_cell_response" => "NotebookCellResponse",
      "v1.notebook_cell_response_attributes" => "NotebookCellResponseAttributes",
      "v1.notebook_cell_time" => "NotebookCellTime",
      "v1.notebook_cell_update_request" => "NotebookCellUpdateRequest",
      "v1.notebook_cell_update_request_attributes" => "NotebookCellUpdateRequestAttributes",
      "v1.notebook_create_data" => "NotebookCreateData",
      "v1.notebook_create_data_attributes" => "NotebookCreateDataAttributes",
      "v1.notebook_create_request" => "NotebookCreateRequest",
      "v1.notebook_distribution_cell_attributes" => "NotebookDistributionCellAttributes",
      "v1.notebook_global_time" => "NotebookGlobalTime",
      "v1.notebook_graph_size" => "NotebookGraphSize",
      "v1.notebook_heat_map_cell_attributes" => "NotebookHeatMapCellAttributes",
      "v1.notebook_log_stream_cell_attributes" => "NotebookLogStreamCellAttributes",
      "v1.notebook_markdown_cell_attributes" => "NotebookMarkdownCellAttributes",
      "v1.notebook_markdown_cell_definition" => "NotebookMarkdownCellDefinition",
      "v1.notebook_markdown_cell_definition_type" => "NotebookMarkdownCellDefinitionType",
      "v1.notebook_metadata" => "NotebookMetadata",
      "v1.notebook_metadata_type" => "NotebookMetadataType",
      "v1.notebook_relative_time" => "NotebookRelativeTime",
      "v1.notebook_resource_type" => "NotebookResourceType",
      "v1.notebook_response" => "NotebookResponse",
      "v1.notebook_response_data" => "NotebookResponseData",
      "v1.notebook_response_data_attributes" => "NotebookResponseDataAttributes",
      "v1.notebook_split_by" => "NotebookSplitBy",
      "v1.notebooks_response" => "NotebooksResponse",
      "v1.notebooks_response_data" => "NotebooksResponseData",
      "v1.notebooks_response_data_attributes" => "NotebooksResponseDataAttributes",
      "v1.notebooks_response_meta" => "NotebooksResponseMeta",
      "v1.notebooks_response_page" => "NotebooksResponsePage",
      "v1.notebook_status" => "NotebookStatus",
      "v1.notebook_timeseries_cell_attributes" => "NotebookTimeseriesCellAttributes",
      "v1.notebook_toplist_cell_attributes" => "NotebookToplistCellAttributes",
      "v1.notebook_update_cell" => "NotebookUpdateCell",
      "v1.notebook_update_data" => "NotebookUpdateData",
      "v1.notebook_update_data_attributes" => "NotebookUpdateDataAttributes",
      "v1.notebook_update_request" => "NotebookUpdateRequest",
      "v1.note_widget_definition" => "NoteWidgetDefinition",
      "v1.note_widget_definition_type" => "NoteWidgetDefinitionType",
      "v1.notify_end_state" => "NotifyEndState",
      "v1.notify_end_type" => "NotifyEndType",
      "v1.on_missing_data_option" => "OnMissingDataOption",
      "v1.organization" => "Organization",
      "v1.organization_billing" => "OrganizationBilling",
      "v1.organization_create_body" => "OrganizationCreateBody",
      "v1.organization_create_response" => "OrganizationCreateResponse",
      "v1.organization_list_response" => "OrganizationListResponse",
      "v1.organization_response" => "OrganizationResponse",
      "v1.organization_settings" => "OrganizationSettings",
      "v1.organization_settings_saml" => "OrganizationSettingsSaml",
      "v1.organization_settings_saml_autocreate_users_domains" => "OrganizationSettingsSamlAutocreateUsersDomains",
      "v1.organization_settings_saml_idp_initiated_login" => "OrganizationSettingsSamlIdpInitiatedLogin",
      "v1.organization_settings_saml_strict_mode" => "OrganizationSettingsSamlStrictMode",
      "v1.organization_subscription" => "OrganizationSubscription",
      "v1.org_downgraded_response" => "OrgDowngradedResponse",
      "v1.pager_duty_service" => "PagerDutyService",
      "v1.pager_duty_service_key" => "PagerDutyServiceKey",
      "v1.pager_duty_service_name" => "PagerDutyServiceName",
      "v1.pagination" => "Pagination",
      "v1.powerpack_template_variable_contents" => "PowerpackTemplateVariableContents",
      "v1.powerpack_template_variables" => "PowerpackTemplateVariables",
      "v1.powerpack_widget_definition" => "PowerpackWidgetDefinition",
      "v1.powerpack_widget_definition_type" => "PowerpackWidgetDefinitionType",
      "v1.process_query_definition" => "ProcessQueryDefinition",
      "v1.query_sort_order" => "QuerySortOrder",
      "v1.query_value_widget_definition" => "QueryValueWidgetDefinition",
      "v1.query_value_widget_definition_type" => "QueryValueWidgetDefinitionType",
      "v1.query_value_widget_request" => "QueryValueWidgetRequest",
      "v1.reference_table_logs_lookup_processor" => "ReferenceTableLogsLookupProcessor",
      "v1.response_meta_attributes" => "ResponseMetaAttributes",
      "v1.run_workflow_widget_definition" => "RunWorkflowWidgetDefinition",
      "v1.run_workflow_widget_definition_type" => "RunWorkflowWidgetDefinitionType",
      "v1.run_workflow_widget_input" => "RunWorkflowWidgetInput",
      "v1.scatterplot_dimension" => "ScatterplotDimension",
      "v1.scatter_plot_request" => "ScatterPlotRequest",
      "v1.scatterplot_table_request" => "ScatterplotTableRequest",
      "v1.scatterplot_widget_aggregator" => "ScatterplotWidgetAggregator",
      "v1.scatter_plot_widget_definition" => "ScatterPlotWidgetDefinition",
      "v1.scatter_plot_widget_definition_requests" => "ScatterPlotWidgetDefinitionRequests",
      "v1.scatter_plot_widget_definition_type" => "ScatterPlotWidgetDefinitionType",
      "v1.scatterplot_widget_formula" => "ScatterplotWidgetFormula",
      "v1.search_service_level_objective" => "SearchServiceLevelObjective",
      "v1.search_service_level_objective_attributes" => "SearchServiceLevelObjectiveAttributes",
      "v1.search_service_level_objective_data" => "SearchServiceLevelObjectiveData",
      "v1.search_slo_query" => "SearchSLOQuery",
      "v1.search_slo_response" => "SearchSLOResponse",
      "v1.search_slo_response_data" => "SearchSLOResponseData",
      "v1.search_slo_response_data_attributes" => "SearchSLOResponseDataAttributes",
      "v1.search_slo_response_data_attributes_facets" => "SearchSLOResponseDataAttributesFacets",
      "v1.search_slo_response_data_attributes_facets_object_int" => "SearchSLOResponseDataAttributesFacetsObjectInt",
      "v1.search_slo_response_data_attributes_facets_object_string" => "SearchSLOResponseDataAttributesFacetsObjectString",
      "v1.search_slo_response_links" => "SearchSLOResponseLinks",
      "v1.search_slo_response_meta" => "SearchSLOResponseMeta",
      "v1.search_slo_response_meta_page" => "SearchSLOResponseMetaPage",
      "v1.search_slo_threshold" => "SearchSLOThreshold",
      "v1.search_slo_timeframe" => "SearchSLOTimeframe",
      "v1.selectable_template_variable_items" => "SelectableTemplateVariableItems",
      "v1.series" => "Series",
      "v1.service_check" => "ServiceCheck",
      "v1.service_check_status" => "ServiceCheckStatus",
      "v1.service_level_objective" => "ServiceLevelObjective",
      "v1.service_level_objective_query" => "ServiceLevelObjectiveQuery",
      "v1.service_level_objective_request" => "ServiceLevelObjectiveRequest",
      "v1.service_map_widget_definition" => "ServiceMapWidgetDefinition",
      "v1.service_map_widget_definition_type" => "ServiceMapWidgetDefinitionType",
      "v1.service_summary_widget_definition" => "ServiceSummaryWidgetDefinition",
      "v1.service_summary_widget_definition_type" => "ServiceSummaryWidgetDefinitionType",
      "v1.shared_dashboard" => "SharedDashboard",
      "v1.shared_dashboard_author" => "SharedDashboardAuthor",
      "v1.shared_dashboard_invites" => "SharedDashboardInvites",
      "v1.shared_dashboard_invites_data" => "SharedDashboardInvitesData",
      "v1.shared_dashboard_invites_data_object" => "SharedDashboardInvitesDataObject",
      "v1.shared_dashboard_invites_data_object_attributes" => "SharedDashboardInvitesDataObjectAttributes",
      "v1.shared_dashboard_invites_meta" => "SharedDashboardInvitesMeta",
      "v1.shared_dashboard_invites_meta_page" => "SharedDashboardInvitesMetaPage",
      "v1.shared_dashboard_update_request" => "SharedDashboardUpdateRequest",
      "v1.shared_dashboard_update_request_global_time" => "SharedDashboardUpdateRequestGlobalTime",
      "v1.signal_archive_reason" => "SignalArchiveReason",
      "v1.signal_assignee_update_request" => "SignalAssigneeUpdateRequest",
      "v1.signal_state_update_request" => "SignalStateUpdateRequest",
      "v1.signal_triage_state" => "SignalTriageState",
      "v1.slack_integration_channel" => "SlackIntegrationChannel",
      "v1.slack_integration_channel_display" => "SlackIntegrationChannelDisplay",
      "v1.slo_bulk_delete_error" => "SLOBulkDeleteError",
      "v1.slo_bulk_delete_response" => "SLOBulkDeleteResponse",
      "v1.slo_bulk_delete_response_data" => "SLOBulkDeleteResponseData",
      "v1.slo_correction" => "SLOCorrection",
      "v1.slo_correction_category" => "SLOCorrectionCategory",
      "v1.slo_correction_create_data" => "SLOCorrectionCreateData",
      "v1.slo_correction_create_request" => "SLOCorrectionCreateRequest",
      "v1.slo_correction_create_request_attributes" => "SLOCorrectionCreateRequestAttributes",
      "v1.slo_correction_list_response" => "SLOCorrectionListResponse",
      "v1.slo_correction_response" => "SLOCorrectionResponse",
      "v1.slo_correction_response_attributes" => "SLOCorrectionResponseAttributes",
      "v1.slo_correction_response_attributes_modifier" => "SLOCorrectionResponseAttributesModifier",
      "v1.slo_correction_type" => "SLOCorrectionType",
      "v1.slo_correction_update_data" => "SLOCorrectionUpdateData",
      "v1.slo_correction_update_request" => "SLOCorrectionUpdateRequest",
      "v1.slo_correction_update_request_attributes" => "SLOCorrectionUpdateRequestAttributes",
      "v1.slo_creator" => "SLOCreator",
      "v1.slo_data_source_query_definition" => "SLODataSourceQueryDefinition",
      "v1.slo_delete_response" => "SLODeleteResponse",
      "v1.slo_error_timeframe" => "SLOErrorTimeframe",
      "v1.slo_formula" => "SLOFormula",
      "v1.slo_history_metrics" => "SLOHistoryMetrics",
      "v1.slo_history_metrics_series" => "SLOHistoryMetricsSeries",
      "v1.slo_history_metrics_series_metadata" => "SLOHistoryMetricsSeriesMetadata",
      "v1.slo_history_metrics_series_metadata_unit" => "SLOHistoryMetricsSeriesMetadataUnit",
      "v1.slo_history_monitor" => "SLOHistoryMonitor",
      "v1.slo_history_response" => "SLOHistoryResponse",
      "v1.slo_history_response_data" => "SLOHistoryResponseData",
      "v1.slo_history_response_error" => "SLOHistoryResponseError",
      "v1.slo_history_response_error_with_type" => "SLOHistoryResponseErrorWithType",
      "v1.slo_history_sli_data" => "SLOHistorySLIData",
      "v1.slo_list_response" => "SLOListResponse",
      "v1.slo_list_response_metadata" => "SLOListResponseMetadata",
      "v1.slo_list_response_metadata_page" => "SLOListResponseMetadataPage",
      "v1.slo_list_widget_definition" => "SLOListWidgetDefinition",
      "v1.slo_list_widget_definition_type" => "SLOListWidgetDefinitionType",
      "v1.slo_list_widget_query" => "SLOListWidgetQuery",
      "v1.slo_list_widget_request" => "SLOListWidgetRequest",
      "v1.slo_list_widget_request_type" => "SLOListWidgetRequestType",
      "v1.slo_overall_statuses" => "SLOOverallStatuses",
      "v1.slo_raw_error_budget_remaining" => "SLORawErrorBudgetRemaining",
      "v1.slo_response" => "SLOResponse",
      "v1.slo_response_data" => "SLOResponseData",
      "v1.slo_sli_spec" => "SLOSliSpec",
      "v1.slo_state" => "SLOState",
      "v1.slo_status" => "SLOStatus",
      "v1.slo_threshold" => "SLOThreshold",
      "v1.slo_timeframe" => "SLOTimeframe",
      "v1.slo_time_slice_comparator" => "SLOTimeSliceComparator",
      "v1.slo_time_slice_condition" => "SLOTimeSliceCondition",
      "v1.slo_time_slice_interval" => "SLOTimeSliceInterval",
      "v1.slo_time_slice_query" => "SLOTimeSliceQuery",
      "v1.slo_time_slice_spec" => "SLOTimeSliceSpec",
      "v1.slo_type" => "SLOType",
      "v1.slo_type_numeric" => "SLOTypeNumeric",
      "v1.slo_widget_definition" => "SLOWidgetDefinition",
      "v1.slo_widget_definition_type" => "SLOWidgetDefinitionType",
      "v1.split_config" => "SplitConfig",
      "v1.split_config_sort_compute" => "SplitConfigSortCompute",
      "v1.split_dimension" => "SplitDimension",
      "v1.split_graph_source_widget_definition" => "SplitGraphSourceWidgetDefinition",
      "v1.split_graph_viz_size" => "SplitGraphVizSize",
      "v1.split_graph_widget_definition" => "SplitGraphWidgetDefinition",
      "v1.split_graph_widget_definition_type" => "SplitGraphWidgetDefinitionType",
      "v1.split_sort" => "SplitSort",
      "v1.split_vector_entry_item" => "SplitVectorEntryItem",
      "v1.successful_signal_update_response" => "SuccessfulSignalUpdateResponse",
      "v1.sunburst_widget_definition" => "SunburstWidgetDefinition",
      "v1.sunburst_widget_definition_type" => "SunburstWidgetDefinitionType",
      "v1.sunburst_widget_legend" => "SunburstWidgetLegend",
      "v1.sunburst_widget_legend_inline_automatic" => "SunburstWidgetLegendInlineAutomatic",
      "v1.sunburst_widget_legend_inline_automatic_type" => "SunburstWidgetLegendInlineAutomaticType",
      "v1.sunburst_widget_legend_table" => "SunburstWidgetLegendTable",
      "v1.sunburst_widget_legend_table_type" => "SunburstWidgetLegendTableType",
      "v1.sunburst_widget_request" => "SunburstWidgetRequest",
      "v1.synthetics_api_step" => "SyntheticsAPIStep",
      "v1.synthetics_api_step_subtype" => "SyntheticsAPIStepSubtype",
      "v1.synthetics_api_test" => "SyntheticsAPITest",
      "v1.synthetics_api_test_config" => "SyntheticsAPITestConfig",
      "v1.synthetics_api_test_failure_code" => "SyntheticsApiTestFailureCode",
      "v1.synthetics_api_test_result_data" => "SyntheticsAPITestResultData",
      "v1.synthetics_api_test_result_failure" => "SyntheticsApiTestResultFailure",
      "v1.synthetics_api_test_result_full" => "SyntheticsAPITestResultFull",
      "v1.synthetics_api_test_result_full_check" => "SyntheticsAPITestResultFullCheck",
      "v1.synthetics_api_test_result_short" => "SyntheticsAPITestResultShort",
      "v1.synthetics_api_test_result_short_result" => "SyntheticsAPITestResultShortResult",
      "v1.synthetics_api_test_type" => "SyntheticsAPITestType",
      "v1.synthetics_assertion" => "SyntheticsAssertion",
      "v1.synthetics_assertion_json_path_operator" => "SyntheticsAssertionJSONPathOperator",
      "v1.synthetics_assertion_json_path_target" => "SyntheticsAssertionJSONPathTarget",
      "v1.synthetics_assertion_json_path_target_target" => "SyntheticsAssertionJSONPathTargetTarget",
      "v1.synthetics_assertion_json_schema_meta_schema" => "SyntheticsAssertionJSONSchemaMetaSchema",
      "v1.synthetics_assertion_json_schema_operator" => "SyntheticsAssertionJSONSchemaOperator",
      "v1.synthetics_assertion_json_schema_target" => "SyntheticsAssertionJSONSchemaTarget",
      "v1.synthetics_assertion_json_schema_target_target" => "SyntheticsAssertionJSONSchemaTargetTarget",
      "v1.synthetics_assertion_operator" => "SyntheticsAssertionOperator",
      "v1.synthetics_assertion_target" => "SyntheticsAssertionTarget",
      "v1.synthetics_assertion_timings_scope" => "SyntheticsAssertionTimingsScope",
      "v1.synthetics_assertion_type" => "SyntheticsAssertionType",
      "v1.synthetics_assertion_x_path_operator" => "SyntheticsAssertionXPathOperator",
      "v1.synthetics_assertion_x_path_target" => "SyntheticsAssertionXPathTarget",
      "v1.synthetics_assertion_x_path_target_target" => "SyntheticsAssertionXPathTargetTarget",
      "v1.synthetics_basic_auth" => "SyntheticsBasicAuth",
      "v1.synthetics_basic_auth_digest" => "SyntheticsBasicAuthDigest",
      "v1.synthetics_basic_auth_digest_type" => "SyntheticsBasicAuthDigestType",
      "v1.synthetics_basic_auth_ntlm" => "SyntheticsBasicAuthNTLM",
      "v1.synthetics_basic_auth_ntlm_type" => "SyntheticsBasicAuthNTLMType",
      "v1.synthetics_basic_auth_oauth_client" => "SyntheticsBasicAuthOauthClient",
      "v1.synthetics_basic_auth_oauth_client_type" => "SyntheticsBasicAuthOauthClientType",
      "v1.synthetics_basic_auth_oauth_rop" => "SyntheticsBasicAuthOauthROP",
      "v1.synthetics_basic_auth_oauth_rop_type" => "SyntheticsBasicAuthOauthROPType",
      "v1.synthetics_basic_auth_oauth_token_api_authentication" => "SyntheticsBasicAuthOauthTokenApiAuthentication",
      "v1.synthetics_basic_auth_sigv4" => "SyntheticsBasicAuthSigv4",
      "v1.synthetics_basic_auth_sigv4_type" => "SyntheticsBasicAuthSigv4Type",
      "v1.synthetics_basic_auth_web" => "SyntheticsBasicAuthWeb",
      "v1.synthetics_basic_auth_web_type" => "SyntheticsBasicAuthWebType",
      "v1.synthetics_batch_details" => "SyntheticsBatchDetails",
      "v1.synthetics_batch_details_data" => "SyntheticsBatchDetailsData",
      "v1.synthetics_batch_result" => "SyntheticsBatchResult",
      "v1.synthetics_browser_error" => "SyntheticsBrowserError",
      "v1.synthetics_browser_error_type" => "SyntheticsBrowserErrorType",
      "v1.synthetics_browser_test" => "SyntheticsBrowserTest",
      "v1.synthetics_browser_test_config" => "SyntheticsBrowserTestConfig",
      "v1.synthetics_browser_test_failure_code" => "SyntheticsBrowserTestFailureCode",
      "v1.synthetics_browser_test_result_data" => "SyntheticsBrowserTestResultData",
      "v1.synthetics_browser_test_result_failure" => "SyntheticsBrowserTestResultFailure",
      "v1.synthetics_browser_test_result_full" => "SyntheticsBrowserTestResultFull",
      "v1.synthetics_browser_test_result_full_check" => "SyntheticsBrowserTestResultFullCheck",
      "v1.synthetics_browser_test_result_short" => "SyntheticsBrowserTestResultShort",
      "v1.synthetics_browser_test_result_short_result" => "SyntheticsBrowserTestResultShortResult",
      "v1.synthetics_browser_test_rum_settings" => "SyntheticsBrowserTestRumSettings",
      "v1.synthetics_browser_test_type" => "SyntheticsBrowserTestType",
      "v1.synthetics_browser_variable" => "SyntheticsBrowserVariable",
      "v1.synthetics_browser_variable_type" => "SyntheticsBrowserVariableType",
      "v1.synthetics_check_type" => "SyntheticsCheckType",
      "v1.synthetics_ci_batch_metadata" => "SyntheticsCIBatchMetadata",
      "v1.synthetics_ci_batch_metadata_ci" => "SyntheticsCIBatchMetadataCI",
      "v1.synthetics_ci_batch_metadata_git" => "SyntheticsCIBatchMetadataGit",
      "v1.synthetics_ci_batch_metadata_pipeline" => "SyntheticsCIBatchMetadataPipeline",
      "v1.synthetics_ci_batch_metadata_provider" => "SyntheticsCIBatchMetadataProvider",
      "v1.synthetics_ci_test" => "SyntheticsCITest",
      "v1.synthetics_ci_test_body" => "SyntheticsCITestBody",
      "v1.synthetics_config_variable" => "SyntheticsConfigVariable",
      "v1.synthetics_config_variable_type" => "SyntheticsConfigVariableType",
      "v1.synthetics_core_web_vitals" => "SyntheticsCoreWebVitals",
      "v1.synthetics_deleted_test" => "SyntheticsDeletedTest",
      "v1.synthetics_delete_tests_payload" => "SyntheticsDeleteTestsPayload",
      "v1.synthetics_delete_tests_response" => "SyntheticsDeleteTestsResponse",
      "v1.synthetics_device" => "SyntheticsDevice",
      "v1.synthetics_device_id" => "SyntheticsDeviceID",
      "v1.synthetics_get_api_test_latest_results_response" => "SyntheticsGetAPITestLatestResultsResponse",
      "v1.synthetics_get_browser_test_latest_results_response" => "SyntheticsGetBrowserTestLatestResultsResponse",
      "v1.synthetics_global_variable" => "SyntheticsGlobalVariable",
      "v1.synthetics_global_variable_attributes" => "SyntheticsGlobalVariableAttributes",
      "v1.synthetics_global_variable_options" => "SyntheticsGlobalVariableOptions",
      "v1.synthetics_global_variable_parser_type" => "SyntheticsGlobalVariableParserType",
      "v1.synthetics_global_variable_parse_test_options" => "SyntheticsGlobalVariableParseTestOptions",
      "v1.synthetics_global_variable_parse_test_options_type" => "SyntheticsGlobalVariableParseTestOptionsType",
      "v1.synthetics_global_variable_totp_parameters" => "SyntheticsGlobalVariableTOTPParameters",
      "v1.synthetics_global_variable_value" => "SyntheticsGlobalVariableValue",
      "v1.synthetics_list_global_variables_response" => "SyntheticsListGlobalVariablesResponse",
      "v1.synthetics_list_tests_response" => "SyntheticsListTestsResponse",
      "v1.synthetics_location" => "SyntheticsLocation",
      "v1.synthetics_locations" => "SyntheticsLocations",
      "v1.synthetics_parsing_options" => "SyntheticsParsingOptions",
      "v1.synthetics_patch_test_body" => "SyntheticsPatchTestBody",
      "v1.synthetics_patch_test_operation" => "SyntheticsPatchTestOperation",
      "v1.synthetics_patch_test_operation_name" => "SyntheticsPatchTestOperationName",
      "v1.synthetics_playing_tab" => "SyntheticsPlayingTab",
      "v1.synthetics_private_location" => "SyntheticsPrivateLocation",
      "v1.synthetics_private_location_creation_response" => "SyntheticsPrivateLocationCreationResponse",
      "v1.synthetics_private_location_creation_response_result_encryption" => "SyntheticsPrivateLocationCreationResponseResultEncryption",
      "v1.synthetics_private_location_metadata" => "SyntheticsPrivateLocationMetadata",
      "v1.synthetics_private_location_secrets" => "SyntheticsPrivateLocationSecrets",
      "v1.synthetics_private_location_secrets_authentication" => "SyntheticsPrivateLocationSecretsAuthentication",
      "v1.synthetics_private_location_secrets_config_decryption" => "SyntheticsPrivateLocationSecretsConfigDecryption",
      "v1.synthetics_ssl_certificate" => "SyntheticsSSLCertificate",
      "v1.synthetics_ssl_certificate_issuer" => "SyntheticsSSLCertificateIssuer",
      "v1.synthetics_ssl_certificate_subject" => "SyntheticsSSLCertificateSubject",
      "v1.synthetics_status" => "SyntheticsStatus",
      "v1.synthetics_step" => "SyntheticsStep",
      "v1.synthetics_step_detail" => "SyntheticsStepDetail",
      "v1.synthetics_step_detail_warning" => "SyntheticsStepDetailWarning",
      "v1.synthetics_step_type" => "SyntheticsStepType",
      "v1.synthetics_test_call_type" => "SyntheticsTestCallType",
      "v1.synthetics_test_ci_options" => "SyntheticsTestCiOptions",
      "v1.synthetics_test_config" => "SyntheticsTestConfig",
      "v1.synthetics_test_details" => "SyntheticsTestDetails",
      "v1.synthetics_test_details_sub_type" => "SyntheticsTestDetailsSubType",
      "v1.synthetics_test_details_type" => "SyntheticsTestDetailsType",
      "v1.synthetics_test_execution_rule" => "SyntheticsTestExecutionRule",
      "v1.synthetics_test_monitor_status" => "SyntheticsTestMonitorStatus",
      "v1.synthetics_test_options" => "SyntheticsTestOptions",
      "v1.synthetics_test_options_http_version" => "SyntheticsTestOptionsHTTPVersion",
      "v1.synthetics_test_options_monitor_options" => "SyntheticsTestOptionsMonitorOptions",
      "v1.synthetics_test_options_retry" => "SyntheticsTestOptionsRetry",
      "v1.synthetics_test_options_scheduling" => "SyntheticsTestOptionsScheduling",
      "v1.synthetics_test_options_scheduling_timeframe" => "SyntheticsTestOptionsSchedulingTimeframe",
      "v1.synthetics_test_pause_status" => "SyntheticsTestPauseStatus",
      "v1.synthetics_test_process_status" => "SyntheticsTestProcessStatus",
      "v1.synthetics_test_request" => "SyntheticsTestRequest",
      "v1.synthetics_test_request_body_file" => "SyntheticsTestRequestBodyFile",
      "v1.synthetics_test_request_body_type" => "SyntheticsTestRequestBodyType",
      "v1.synthetics_test_request_certificate" => "SyntheticsTestRequestCertificate",
      "v1.synthetics_test_request_certificate_item" => "SyntheticsTestRequestCertificateItem",
      "v1.synthetics_test_request_proxy" => "SyntheticsTestRequestProxy",
      "v1.synthetics_timing" => "SyntheticsTiming",
      "v1.synthetics_trigger_body" => "SyntheticsTriggerBody",
      "v1.synthetics_trigger_ci_test_location" => "SyntheticsTriggerCITestLocation",
      "v1.synthetics_trigger_ci_test_run_result" => "SyntheticsTriggerCITestRunResult",
      "v1.synthetics_trigger_ci_tests_response" => "SyntheticsTriggerCITestsResponse",
      "v1.synthetics_trigger_test" => "SyntheticsTriggerTest",
      "v1.synthetics_update_test_pause_status_payload" => "SyntheticsUpdateTestPauseStatusPayload",
      "v1.synthetics_variable_parser" => "SyntheticsVariableParser",
      "v1.synthetics_warning_type" => "SyntheticsWarningType",
      "v1.table_widget_cell_display_mode" => "TableWidgetCellDisplayMode",
      "v1.table_widget_definition" => "TableWidgetDefinition",
      "v1.table_widget_definition_type" => "TableWidgetDefinitionType",
      "v1.table_widget_has_search_bar" => "TableWidgetHasSearchBar",
      "v1.table_widget_request" => "TableWidgetRequest",
      "v1.tag_to_hosts" => "TagToHosts",
      "v1.target_format_type" => "TargetFormatType",
      "v1.timeseries_background" => "TimeseriesBackground",
      "v1.timeseries_background_type" => "TimeseriesBackgroundType",
      "v1.timeseries_widget_definition" => "TimeseriesWidgetDefinition",
      "v1.timeseries_widget_definition_type" => "TimeseriesWidgetDefinitionType",
      "v1.timeseries_widget_expression_alias" => "TimeseriesWidgetExpressionAlias",
      "v1.timeseries_widget_legend_column" => "TimeseriesWidgetLegendColumn",
      "v1.timeseries_widget_legend_layout" => "TimeseriesWidgetLegendLayout",
      "v1.timeseries_widget_request" => "TimeseriesWidgetRequest",
      "v1.toplist_widget_definition" => "ToplistWidgetDefinition",
      "v1.toplist_widget_definition_type" => "ToplistWidgetDefinitionType",
      "v1.toplist_widget_display" => "ToplistWidgetDisplay",
      "v1.toplist_widget_flat" => "ToplistWidgetFlat",
      "v1.toplist_widget_flat_type" => "ToplistWidgetFlatType",
      "v1.toplist_widget_legend" => "ToplistWidgetLegend",
      "v1.toplist_widget_request" => "ToplistWidgetRequest",
      "v1.toplist_widget_scaling" => "ToplistWidgetScaling",
      "v1.toplist_widget_stacked" => "ToplistWidgetStacked",
      "v1.toplist_widget_stacked_type" => "ToplistWidgetStackedType",
      "v1.toplist_widget_style" => "ToplistWidgetStyle",
      "v1.topology_map_widget_definition" => "TopologyMapWidgetDefinition",
      "v1.topology_map_widget_definition_type" => "TopologyMapWidgetDefinitionType",
      "v1.topology_query" => "TopologyQuery",
      "v1.topology_query_data_source" => "TopologyQueryDataSource",
      "v1.topology_request" => "TopologyRequest",
      "v1.topology_request_type" => "TopologyRequestType",
      "v1.tree_map_color_by" => "TreeMapColorBy",
      "v1.tree_map_group_by" => "TreeMapGroupBy",
      "v1.tree_map_size_by" => "TreeMapSizeBy",
      "v1.tree_map_widget_definition" => "TreeMapWidgetDefinition",
      "v1.tree_map_widget_definition_type" => "TreeMapWidgetDefinitionType",
      "v1.tree_map_widget_request" => "TreeMapWidgetRequest",
      "v1.usage_analyzed_logs_hour" => "UsageAnalyzedLogsHour",
      "v1.usage_analyzed_logs_response" => "UsageAnalyzedLogsResponse",
      "v1.usage_attribution_aggregates_body" => "UsageAttributionAggregatesBody",
      "v1.usage_audit_logs_hour" => "UsageAuditLogsHour",
      "v1.usage_audit_logs_response" => "UsageAuditLogsResponse",
      "v1.usage_billable_summary_body" => "UsageBillableSummaryBody",
      "v1.usage_billable_summary_hour" => "UsageBillableSummaryHour",
      "v1.usage_billable_summary_keys" => "UsageBillableSummaryKeys",
      "v1.usage_billable_summary_response" => "UsageBillableSummaryResponse",
      "v1.usage_ci_visibility_hour" => "UsageCIVisibilityHour",
      "v1.usage_ci_visibility_response" => "UsageCIVisibilityResponse",
      "v1.usage_cloud_security_posture_management_hour" => "UsageCloudSecurityPostureManagementHour",
      "v1.usage_cloud_security_posture_management_response" => "UsageCloudSecurityPostureManagementResponse",
      "v1.usage_custom_reports_attributes" => "UsageCustomReportsAttributes",
      "v1.usage_custom_reports_data" => "UsageCustomReportsData",
      "v1.usage_custom_reports_meta" => "UsageCustomReportsMeta",
      "v1.usage_custom_reports_page" => "UsageCustomReportsPage",
      "v1.usage_custom_reports_response" => "UsageCustomReportsResponse",
      "v1.usage_cws_hour" => "UsageCWSHour",
      "v1.usage_cws_response" => "UsageCWSResponse",
      "v1.usage_dbm_hour" => "UsageDBMHour",
      "v1.usage_dbm_response" => "UsageDBMResponse",
      "v1.usage_fargate_hour" => "UsageFargateHour",
      "v1.usage_fargate_response" => "UsageFargateResponse",
      "v1.usage_host_hour" => "UsageHostHour",
      "v1.usage_hosts_response" => "UsageHostsResponse",
      "v1.usage_incident_management_hour" => "UsageIncidentManagementHour",
      "v1.usage_incident_management_response" => "UsageIncidentManagementResponse",
      "v1.usage_indexed_spans_hour" => "UsageIndexedSpansHour",
      "v1.usage_indexed_spans_response" => "UsageIndexedSpansResponse",
      "v1.usage_ingested_spans_hour" => "UsageIngestedSpansHour",
      "v1.usage_ingested_spans_response" => "UsageIngestedSpansResponse",
      "v1.usage_iot_hour" => "UsageIoTHour",
      "v1.usage_iot_response" => "UsageIoTResponse",
      "v1.usage_lambda_hour" => "UsageLambdaHour",
      "v1.usage_lambda_response" => "UsageLambdaResponse",
      "v1.usage_logs_by_index_hour" => "UsageLogsByIndexHour",
      "v1.usage_logs_by_index_response" => "UsageLogsByIndexResponse",
      "v1.usage_logs_by_retention_hour" => "UsageLogsByRetentionHour",
      "v1.usage_logs_by_retention_response" => "UsageLogsByRetentionResponse",
      "v1.usage_logs_hour" => "UsageLogsHour",
      "v1.usage_logs_response" => "UsageLogsResponse",
      "v1.usage_metric_category" => "UsageMetricCategory",
      "v1.usage_network_flows_hour" => "UsageNetworkFlowsHour",
      "v1.usage_network_flows_response" => "UsageNetworkFlowsResponse",
      "v1.usage_network_hosts_hour" => "UsageNetworkHostsHour",
      "v1.usage_network_hosts_response" => "UsageNetworkHostsResponse",
      "v1.usage_online_archive_hour" => "UsageOnlineArchiveHour",
      "v1.usage_online_archive_response" => "UsageOnlineArchiveResponse",
      "v1.usage_profiling_hour" => "UsageProfilingHour",
      "v1.usage_profiling_response" => "UsageProfilingResponse",
      "v1.usage_reports_type" => "UsageReportsType",
      "v1.usage_rum_sessions_hour" => "UsageRumSessionsHour",
      "v1.usage_rum_sessions_response" => "UsageRumSessionsResponse",
      "v1.usage_rum_units_hour" => "UsageRumUnitsHour",
      "v1.usage_rum_units_response" => "UsageRumUnitsResponse",
      "v1.usage_sds_hour" => "UsageSDSHour",
      "v1.usage_sds_response" => "UsageSDSResponse",
      "v1.usage_snmp_hour" => "UsageSNMPHour",
      "v1.usage_snmp_response" => "UsageSNMPResponse",
      "v1.usage_sort" => "UsageSort",
      "v1.usage_sort_direction" => "UsageSortDirection",
      "v1.usage_specified_custom_reports_attributes" => "UsageSpecifiedCustomReportsAttributes",
      "v1.usage_specified_custom_reports_data" => "UsageSpecifiedCustomReportsData",
      "v1.usage_specified_custom_reports_meta" => "UsageSpecifiedCustomReportsMeta",
      "v1.usage_specified_custom_reports_page" => "UsageSpecifiedCustomReportsPage",
      "v1.usage_specified_custom_reports_response" => "UsageSpecifiedCustomReportsResponse",
      "v1.usage_summary_date" => "UsageSummaryDate",
      "v1.usage_summary_date_org" => "UsageSummaryDateOrg",
      "v1.usage_summary_response" => "UsageSummaryResponse",
      "v1.usage_synthetics_api_hour" => "UsageSyntheticsAPIHour",
      "v1.usage_synthetics_api_response" => "UsageSyntheticsAPIResponse",
      "v1.usage_synthetics_browser_hour" => "UsageSyntheticsBrowserHour",
      "v1.usage_synthetics_browser_response" => "UsageSyntheticsBrowserResponse",
      "v1.usage_synthetics_hour" => "UsageSyntheticsHour",
      "v1.usage_synthetics_response" => "UsageSyntheticsResponse",
      "v1.usage_timeseries_hour" => "UsageTimeseriesHour",
      "v1.usage_timeseries_response" => "UsageTimeseriesResponse",
      "v1.usage_top_avg_metrics_hour" => "UsageTopAvgMetricsHour",
      "v1.usage_top_avg_metrics_metadata" => "UsageTopAvgMetricsMetadata",
      "v1.usage_top_avg_metrics_pagination" => "UsageTopAvgMetricsPagination",
      "v1.usage_top_avg_metrics_response" => "UsageTopAvgMetricsResponse",
      "v1.user" => "User",
      "v1.user_disable_response" => "UserDisableResponse",
      "v1.user_list_response" => "UserListResponse",
      "v1.user_response" => "UserResponse",
      "v1.webhooks_integration" => "WebhooksIntegration",
      "v1.webhooks_integration_custom_variable" => "WebhooksIntegrationCustomVariable",
      "v1.webhooks_integration_custom_variable_response" => "WebhooksIntegrationCustomVariableResponse",
      "v1.webhooks_integration_custom_variable_update_request" => "WebhooksIntegrationCustomVariableUpdateRequest",
      "v1.webhooks_integration_encoding" => "WebhooksIntegrationEncoding",
      "v1.webhooks_integration_update_request" => "WebhooksIntegrationUpdateRequest",
      "v1.widget" => "Widget",
      "v1.widget_aggregator" => "WidgetAggregator",
      "v1.widget_axis" => "WidgetAxis",
      "v1.widget_change_type" => "WidgetChangeType",
      "v1.widget_color_preference" => "WidgetColorPreference",
      "v1.widget_comparator" => "WidgetComparator",
      "v1.widget_compare_to" => "WidgetCompareTo",
      "v1.widget_conditional_format" => "WidgetConditionalFormat",
      "v1.widget_custom_link" => "WidgetCustomLink",
      "v1.widget_definition" => "WidgetDefinition",
      "v1.widget_display_type" => "WidgetDisplayType",
      "v1.widget_event" => "WidgetEvent",
      "v1.widget_event_size" => "WidgetEventSize",
      "v1.widget_field_sort" => "WidgetFieldSort",
      "v1.widget_formula" => "WidgetFormula",
      "v1.widget_formula_limit" => "WidgetFormulaLimit",
      "v1.widget_formula_style" => "WidgetFormulaStyle",
      "v1.widget_grouping" => "WidgetGrouping",
      "v1.widget_horizontal_align" => "WidgetHorizontalAlign",
      "v1.widget_image_sizing" => "WidgetImageSizing",
      "v1.widget_layout" => "WidgetLayout",
      "v1.widget_layout_type" => "WidgetLayoutType",
      "v1.widget_line_type" => "WidgetLineType",
      "v1.widget_line_width" => "WidgetLineWidth",
      "v1.widget_live_span" => "WidgetLiveSpan",
      "v1.widget_margin" => "WidgetMargin",
      "v1.widget_marker" => "WidgetMarker",
      "v1.widget_message_display" => "WidgetMessageDisplay",
      "v1.widget_monitor_summary_display_format" => "WidgetMonitorSummaryDisplayFormat",
      "v1.widget_monitor_summary_sort" => "WidgetMonitorSummarySort",
      "v1.widget_node_type" => "WidgetNodeType",
      "v1.widget_order_by" => "WidgetOrderBy",
      "v1.widget_palette" => "WidgetPalette",
      "v1.widget_request_style" => "WidgetRequestStyle",
      "v1.widget_service_summary_display_format" => "WidgetServiceSummaryDisplayFormat",
      "v1.widget_size_format" => "WidgetSizeFormat",
      "v1.widget_sort" => "WidgetSort",
      "v1.widget_style" => "WidgetStyle",
      "v1.widget_summary_type" => "WidgetSummaryType",
      "v1.widget_text_align" => "WidgetTextAlign",
      "v1.widget_tick_edge" => "WidgetTickEdge",
      "v1.widget_time" => "WidgetTime",
      "v1.widget_time_windows" => "WidgetTimeWindows",
      "v1.widget_vertical_align" => "WidgetVerticalAlign",
      "v1.widget_view_mode" => "WidgetViewMode",
      "v1.widget_viz_type" => "WidgetVizType",
      "v2.active_billing_dimensions_attributes" => "ActiveBillingDimensionsAttributes",
      "v2.active_billing_dimensions_body" => "ActiveBillingDimensionsBody",
      "v2.active_billing_dimensions_response" => "ActiveBillingDimensionsResponse",
      "v2.active_billing_dimensions_type" => "ActiveBillingDimensionsType",
      "v2.api_error_response" => "APIErrorResponse",
      "v2.api_key_create_attributes" => "APIKeyCreateAttributes",
      "v2.api_key_create_data" => "APIKeyCreateData",
      "v2.api_key_create_request" => "APIKeyCreateRequest",
      "v2.api_key_relationships" => "APIKeyRelationships",
      "v2.api_key_response" => "APIKeyResponse",
      "v2.api_key_response_included_item" => "APIKeyResponseIncludedItem",
      "v2.api_keys_response" => "APIKeysResponse",
      "v2.api_keys_response_meta" => "APIKeysResponseMeta",
      "v2.api_keys_response_meta_page" => "APIKeysResponseMetaPage",
      "v2.api_keys_sort" => "APIKeysSort",
      "v2.api_keys_type" => "APIKeysType",
      "v2.api_key_update_attributes" => "APIKeyUpdateAttributes",
      "v2.api_key_update_data" => "APIKeyUpdateData",
      "v2.api_key_update_request" => "APIKeyUpdateRequest",
      "v2.apm_retention_filter_type" => "ApmRetentionFilterType",
      "v2.application_key_create_attributes" => "ApplicationKeyCreateAttributes",
      "v2.application_key_create_data" => "ApplicationKeyCreateData",
      "v2.application_key_create_request" => "ApplicationKeyCreateRequest",
      "v2.application_key_relationships" => "ApplicationKeyRelationships",
      "v2.application_key_response" => "ApplicationKeyResponse",
      "v2.application_key_response_included_item" => "ApplicationKeyResponseIncludedItem",
      "v2.application_key_response_meta" => "ApplicationKeyResponseMeta",
      "v2.application_key_response_meta_page" => "ApplicationKeyResponseMetaPage",
      "v2.application_keys_sort" => "ApplicationKeysSort",
      "v2.application_keys_type" => "ApplicationKeysType",
      "v2.application_key_update_attributes" => "ApplicationKeyUpdateAttributes",
      "v2.application_key_update_data" => "ApplicationKeyUpdateData",
      "v2.application_key_update_request" => "ApplicationKeyUpdateRequest",
      "v2.audit_logs_event" => "AuditLogsEvent",
      "v2.audit_logs_event_attributes" => "AuditLogsEventAttributes",
      "v2.audit_logs_events_response" => "AuditLogsEventsResponse",
      "v2.audit_logs_event_type" => "AuditLogsEventType",
      "v2.audit_logs_query_filter" => "AuditLogsQueryFilter",
      "v2.audit_logs_query_options" => "AuditLogsQueryOptions",
      "v2.audit_logs_query_page_options" => "AuditLogsQueryPageOptions",
      "v2.audit_logs_response_links" => "AuditLogsResponseLinks",
      "v2.audit_logs_response_metadata" => "AuditLogsResponseMetadata",
      "v2.audit_logs_response_page" => "AuditLogsResponsePage",
      "v2.audit_logs_response_status" => "AuditLogsResponseStatus",
      "v2.audit_logs_search_events_request" => "AuditLogsSearchEventsRequest",
      "v2.audit_logs_sort" => "AuditLogsSort",
      "v2.audit_logs_warning" => "AuditLogsWarning",
      "v2.authn_mapping" => "AuthNMapping",
      "v2.authn_mapping_attributes" => "AuthNMappingAttributes",
      "v2.authn_mapping_create_attributes" => "AuthNMappingCreateAttributes",
      "v2.authn_mapping_create_data" => "AuthNMappingCreateData",
      "v2.authn_mapping_create_relationships" => "AuthNMappingCreateRelationships",
      "v2.authn_mapping_create_request" => "AuthNMappingCreateRequest",
      "v2.authn_mapping_included" => "AuthNMappingIncluded",
      "v2.authn_mapping_relationships" => "AuthNMappingRelationships",
      "v2.authn_mapping_relationship_to_role" => "AuthNMappingRelationshipToRole",
      "v2.authn_mapping_relationship_to_team" => "AuthNMappingRelationshipToTeam",
      "v2.authn_mapping_response" => "AuthNMappingResponse",
      "v2.authn_mappings_response" => "AuthNMappingsResponse",
      "v2.authn_mappings_sort" => "AuthNMappingsSort",
      "v2.authn_mappings_type" => "AuthNMappingsType",
      "v2.authn_mapping_team" => "AuthNMappingTeam",
      "v2.authn_mapping_team_attributes" => "AuthNMappingTeamAttributes",
      "v2.authn_mapping_update_attributes" => "AuthNMappingUpdateAttributes",
      "v2.authn_mapping_update_data" => "AuthNMappingUpdateData",
      "v2.authn_mapping_update_relationships" => "AuthNMappingUpdateRelationships",
      "v2.authn_mapping_update_request" => "AuthNMappingUpdateRequest",
      "v2.aws_cur_config" => "AwsCURConfig",
      "v2.aws_cur_config_attributes" => "AwsCURConfigAttributes",
      "v2.aws_cur_config_patch_data" => "AwsCURConfigPatchData",
      "v2.aws_cur_config_patch_request" => "AwsCURConfigPatchRequest",
      "v2.aws_cur_config_patch_request_attributes" => "AwsCURConfigPatchRequestAttributes",
      "v2.aws_cur_config_patch_request_type" => "AwsCURConfigPatchRequestType",
      "v2.aws_cur_config_post_data" => "AwsCURConfigPostData",
      "v2.aws_cur_config_post_request" => "AwsCURConfigPostRequest",
      "v2.aws_cur_config_post_request_attributes" => "AwsCURConfigPostRequestAttributes",
      "v2.aws_cur_config_post_request_type" => "AwsCURConfigPostRequestType",
      "v2.aws_cur_config_response" => "AwsCURConfigResponse",
      "v2.aws_cur_configs_response" => "AwsCURConfigsResponse",
      "v2.aws_cur_config_type" => "AwsCURConfigType",
      "v2.aws_related_account" => "AWSRelatedAccount",
      "v2.aws_related_account_attributes" => "AWSRelatedAccountAttributes",
      "v2.aws_related_accounts_response" => "AWSRelatedAccountsResponse",
      "v2.aws_related_account_type" => "AWSRelatedAccountType",
      "v2.azure_uc_config" => "AzureUCConfig",
      "v2.azure_uc_config_pair" => "AzureUCConfigPair",
      "v2.azure_uc_config_pair_attributes" => "AzureUCConfigPairAttributes",
      "v2.azure_uc_config_pairs_response" => "AzureUCConfigPairsResponse",
      "v2.azure_uc_config_pair_type" => "AzureUCConfigPairType",
      "v2.azure_uc_config_patch_data" => "AzureUCConfigPatchData",
      "v2.azure_uc_config_patch_request" => "AzureUCConfigPatchRequest",
      "v2.azure_uc_config_patch_request_attributes" => "AzureUCConfigPatchRequestAttributes",
      "v2.azure_uc_config_patch_request_type" => "AzureUCConfigPatchRequestType",
      "v2.azure_uc_config_post_data" => "AzureUCConfigPostData",
      "v2.azure_uc_config_post_request" => "AzureUCConfigPostRequest",
      "v2.azure_uc_config_post_request_attributes" => "AzureUCConfigPostRequestAttributes",
      "v2.azure_uc_config_post_request_type" => "AzureUCConfigPostRequestType",
      "v2.azure_uc_configs_response" => "AzureUCConfigsResponse",
      "v2.bill_config" => "BillConfig",
      "v2.bulk_mute_findings_request" => "BulkMuteFindingsRequest",
      "v2.bulk_mute_findings_request_attributes" => "BulkMuteFindingsRequestAttributes",
      "v2.bulk_mute_findings_request_data" => "BulkMuteFindingsRequestData",
      "v2.bulk_mute_findings_request_meta" => "BulkMuteFindingsRequestMeta",
      "v2.bulk_mute_findings_request_meta_findings" => "BulkMuteFindingsRequestMetaFindings",
      "v2.bulk_mute_findings_request_properties" => "BulkMuteFindingsRequestProperties",
      "v2.bulk_mute_findings_response" => "BulkMuteFindingsResponse",
      "v2.bulk_mute_findings_response_data" => "BulkMuteFindingsResponseData",
      "v2.case" => "Case",
      "v2.case3rd_party_ticket_status" => "Case3rdPartyTicketStatus",
      "v2.case_assign" => "CaseAssign",
      "v2.case_assign_attributes" => "CaseAssignAttributes",
      "v2.case_assign_request" => "CaseAssignRequest",
      "v2.case_attributes" => "CaseAttributes",
      "v2.case_create" => "CaseCreate",
      "v2.case_create_attributes" => "CaseCreateAttributes",
      "v2.case_create_relationships" => "CaseCreateRelationships",
      "v2.case_create_request" => "CaseCreateRequest",
      "v2.case_empty" => "CaseEmpty",
      "v2.case_empty_request" => "CaseEmptyRequest",
      "v2.case_priority" => "CasePriority",
      "v2.case_relationships" => "CaseRelationships",
      "v2.case_resource_type" => "CaseResourceType",
      "v2.case_response" => "CaseResponse",
      "v2.case_sortable_field" => "CaseSortableField",
      "v2.cases_response" => "CasesResponse",
      "v2.cases_response_meta" => "CasesResponseMeta",
      "v2.cases_response_meta_pagination" => "CasesResponseMetaPagination",
      "v2.case_status" => "CaseStatus",
      "v2.case_type" => "CaseType",
      "v2.case_update_priority" => "CaseUpdatePriority",
      "v2.case_update_priority_attributes" => "CaseUpdatePriorityAttributes",
      "v2.case_update_priority_request" => "CaseUpdatePriorityRequest",
      "v2.case_update_status" => "CaseUpdateStatus",
      "v2.case_update_status_attributes" => "CaseUpdateStatusAttributes",
      "v2.case_update_status_request" => "CaseUpdateStatusRequest",
      "v2.chargeback_breakdown" => "ChargebackBreakdown",
      "v2.ci_app_aggregate_bucket_value" => "CIAppAggregateBucketValue",
      "v2.ci_app_aggregate_bucket_value_timeseries_point" => "CIAppAggregateBucketValueTimeseriesPoint",
      "v2.ci_app_aggregate_sort" => "CIAppAggregateSort",
      "v2.ci_app_aggregate_sort_type" => "CIAppAggregateSortType",
      "v2.ci_app_aggregation_function" => "CIAppAggregationFunction",
      "v2.ci_app_ci_error" => "CIAppCIError",
      "v2.ci_app_ci_error_domain" => "CIAppCIErrorDomain",
      "v2.ci_app_compute" => "CIAppCompute",
      "v2.ci_app_compute_type" => "CIAppComputeType",
      "v2.ci_app_create_pipeline_event_request" => "CIAppCreatePipelineEventRequest",
      "v2.ci_app_create_pipeline_event_request_attributes" => "CIAppCreatePipelineEventRequestAttributes",
      "v2.ci_app_create_pipeline_event_request_attributes_resource" => "CIAppCreatePipelineEventRequestAttributesResource",
      "v2.ci_app_create_pipeline_event_request_data" => "CIAppCreatePipelineEventRequestData",
      "v2.ci_app_create_pipeline_event_request_data_type" => "CIAppCreatePipelineEventRequestDataType",
      "v2.ci_app_event_attributes" => "CIAppEventAttributes",
      "v2.ci_app_git_info" => "CIAppGitInfo",
      "v2.ci_app_group_by_histogram" => "CIAppGroupByHistogram",
      "v2.ci_app_group_by_missing" => "CIAppGroupByMissing",
      "v2.ci_app_group_by_total" => "CIAppGroupByTotal",
      "v2.ci_app_host_info" => "CIAppHostInfo",
      "v2.ci_app_pipeline_event" => "CIAppPipelineEvent",
      "v2.ci_app_pipeline_event_attributes" => "CIAppPipelineEventAttributes",
      "v2.ci_app_pipeline_event_job" => "CIAppPipelineEventJob",
      "v2.ci_app_pipeline_event_job_level" => "CIAppPipelineEventJobLevel",
      "v2.ci_app_pipeline_event_job_status" => "CIAppPipelineEventJobStatus",
      "v2.ci_app_pipeline_event_parent_pipeline" => "CIAppPipelineEventParentPipeline",
      "v2.ci_app_pipeline_event_pipeline" => "CIAppPipelineEventPipeline",
      "v2.ci_app_pipeline_event_pipeline_level" => "CIAppPipelineEventPipelineLevel",
      "v2.ci_app_pipeline_event_pipeline_status" => "CIAppPipelineEventPipelineStatus",
      "v2.ci_app_pipeline_event_previous_pipeline" => "CIAppPipelineEventPreviousPipeline",
      "v2.ci_app_pipeline_events_request" => "CIAppPipelineEventsRequest",
      "v2.ci_app_pipeline_events_response" => "CIAppPipelineEventsResponse",
      "v2.ci_app_pipeline_event_stage" => "CIAppPipelineEventStage",
      "v2.ci_app_pipeline_event_stage_level" => "CIAppPipelineEventStageLevel",
      "v2.ci_app_pipeline_event_stage_status" => "CIAppPipelineEventStageStatus",
      "v2.ci_app_pipeline_event_step" => "CIAppPipelineEventStep",
      "v2.ci_app_pipeline_event_step_level" => "CIAppPipelineEventStepLevel",
      "v2.ci_app_pipeline_event_step_status" => "CIAppPipelineEventStepStatus",
      "v2.ci_app_pipeline_event_type_name" => "CIAppPipelineEventTypeName",
      "v2.ci_app_pipeline_level" => "CIAppPipelineLevel",
      "v2.ci_app_pipelines_aggregate_request" => "CIAppPipelinesAggregateRequest",
      "v2.ci_app_pipelines_aggregation_buckets_response" => "CIAppPipelinesAggregationBucketsResponse",
      "v2.ci_app_pipelines_analytics_aggregate_response" => "CIAppPipelinesAnalyticsAggregateResponse",
      "v2.ci_app_pipelines_bucket_response" => "CIAppPipelinesBucketResponse",
      "v2.ci_app_pipelines_group_by" => "CIAppPipelinesGroupBy",
      "v2.ci_app_pipelines_query_filter" => "CIAppPipelinesQueryFilter",
      "v2.ci_app_query_options" => "CIAppQueryOptions",
      "v2.ci_app_query_page_options" => "CIAppQueryPageOptions",
      "v2.ci_app_response_links" => "CIAppResponseLinks",
      "v2.ci_app_response_metadata" => "CIAppResponseMetadata",
      "v2.ci_app_response_metadata_with_pagination" => "CIAppResponseMetadataWithPagination",
      "v2.ci_app_response_page" => "CIAppResponsePage",
      "v2.ci_app_response_status" => "CIAppResponseStatus",
      "v2.ci_app_sort" => "CIAppSort",
      "v2.ci_app_sort_order" => "CIAppSortOrder",
      "v2.ci_app_test_event" => "CIAppTestEvent",
      "v2.ci_app_test_events_request" => "CIAppTestEventsRequest",
      "v2.ci_app_test_events_response" => "CIAppTestEventsResponse",
      "v2.ci_app_test_event_type_name" => "CIAppTestEventTypeName",
      "v2.ci_app_test_level" => "CIAppTestLevel",
      "v2.ci_app_tests_aggregate_request" => "CIAppTestsAggregateRequest",
      "v2.ci_app_tests_aggregation_buckets_response" => "CIAppTestsAggregationBucketsResponse",
      "v2.ci_app_tests_analytics_aggregate_response" => "CIAppTestsAnalyticsAggregateResponse",
      "v2.ci_app_tests_bucket_response" => "CIAppTestsBucketResponse",
      "v2.ci_app_tests_group_by" => "CIAppTestsGroupBy",
      "v2.ci_app_tests_query_filter" => "CIAppTestsQueryFilter",
      "v2.ci_app_warning" => "CIAppWarning",
      "v2.cloud_configuration_compliance_rule_options" => "CloudConfigurationComplianceRuleOptions",
      "v2.cloud_configuration_rego_rule" => "CloudConfigurationRegoRule",
      "v2.cloud_configuration_rule_case_create" => "CloudConfigurationRuleCaseCreate",
      "v2.cloud_configuration_rule_compliance_signal_options" => "CloudConfigurationRuleComplianceSignalOptions",
      "v2.cloud_configuration_rule_create_payload" => "CloudConfigurationRuleCreatePayload",
      "v2.cloud_configuration_rule_options" => "CloudConfigurationRuleOptions",
      "v2.cloud_configuration_rule_type" => "CloudConfigurationRuleType",
      "v2.cloud_cost_activity" => "CloudCostActivity",
      "v2.cloud_cost_activity_attributes" => "CloudCostActivityAttributes",
      "v2.cloud_cost_activity_response" => "CloudCostActivityResponse",
      "v2.cloud_cost_activity_type" => "CloudCostActivityType",
      "v2.cloudflare_account_create_request" => "CloudflareAccountCreateRequest",
      "v2.cloudflare_account_create_request_attributes" => "CloudflareAccountCreateRequestAttributes",
      "v2.cloudflare_account_create_request_data" => "CloudflareAccountCreateRequestData",
      "v2.cloudflare_account_response" => "CloudflareAccountResponse",
      "v2.cloudflare_account_response_attributes" => "CloudflareAccountResponseAttributes",
      "v2.cloudflare_account_response_data" => "CloudflareAccountResponseData",
      "v2.cloudflare_accounts_response" => "CloudflareAccountsResponse",
      "v2.cloudflare_account_type" => "CloudflareAccountType",
      "v2.cloudflare_account_update_request" => "CloudflareAccountUpdateRequest",
      "v2.cloudflare_account_update_request_attributes" => "CloudflareAccountUpdateRequestAttributes",
      "v2.cloudflare_account_update_request_data" => "CloudflareAccountUpdateRequestData",
      "v2.cloud_workload_security_agent_rule_action" => "CloudWorkloadSecurityAgentRuleAction",
      "v2.cloud_workload_security_agent_rule_attributes" => "CloudWorkloadSecurityAgentRuleAttributes",
      "v2.cloud_workload_security_agent_rule_create_attributes" => "CloudWorkloadSecurityAgentRuleCreateAttributes",
      "v2.cloud_workload_security_agent_rule_create_data" => "CloudWorkloadSecurityAgentRuleCreateData",
      "v2.cloud_workload_security_agent_rule_create_request" => "CloudWorkloadSecurityAgentRuleCreateRequest",
      "v2.cloud_workload_security_agent_rule_creator_attributes" => "CloudWorkloadSecurityAgentRuleCreatorAttributes",
      "v2.cloud_workload_security_agent_rule_data" => "CloudWorkloadSecurityAgentRuleData",
      "v2.cloud_workload_security_agent_rule_kill" => "CloudWorkloadSecurityAgentRuleKill",
      "v2.cloud_workload_security_agent_rule_response" => "CloudWorkloadSecurityAgentRuleResponse",
      "v2.cloud_workload_security_agent_rules_list_response" => "CloudWorkloadSecurityAgentRulesListResponse",
      "v2.cloud_workload_security_agent_rule_type" => "CloudWorkloadSecurityAgentRuleType",
      "v2.cloud_workload_security_agent_rule_update_attributes" => "CloudWorkloadSecurityAgentRuleUpdateAttributes",
      "v2.cloud_workload_security_agent_rule_update_data" => "CloudWorkloadSecurityAgentRuleUpdateData",
      "v2.cloud_workload_security_agent_rule_updater_attributes" => "CloudWorkloadSecurityAgentRuleUpdaterAttributes",
      "v2.cloud_workload_security_agent_rule_update_request" => "CloudWorkloadSecurityAgentRuleUpdateRequest",
      "v2.confluent_account_create_request" => "ConfluentAccountCreateRequest",
      "v2.confluent_account_create_request_attributes" => "ConfluentAccountCreateRequestAttributes",
      "v2.confluent_account_create_request_data" => "ConfluentAccountCreateRequestData",
      "v2.confluent_account_resource_attributes" => "ConfluentAccountResourceAttributes",
      "v2.confluent_account_response" => "ConfluentAccountResponse",
      "v2.confluent_account_response_attributes" => "ConfluentAccountResponseAttributes",
      "v2.confluent_account_response_data" => "ConfluentAccountResponseData",
      "v2.confluent_accounts_response" => "ConfluentAccountsResponse",
      "v2.confluent_account_type" => "ConfluentAccountType",
      "v2.confluent_account_update_request" => "ConfluentAccountUpdateRequest",
      "v2.confluent_account_update_request_attributes" => "ConfluentAccountUpdateRequestAttributes",
      "v2.confluent_account_update_request_data" => "ConfluentAccountUpdateRequestData",
      "v2.confluent_resource_request" => "ConfluentResourceRequest",
      "v2.confluent_resource_request_attributes" => "ConfluentResourceRequestAttributes",
      "v2.confluent_resource_request_data" => "ConfluentResourceRequestData",
      "v2.confluent_resource_response" => "ConfluentResourceResponse",
      "v2.confluent_resource_response_attributes" => "ConfluentResourceResponseAttributes",
      "v2.confluent_resource_response_data" => "ConfluentResourceResponseData",
      "v2.confluent_resources_response" => "ConfluentResourcesResponse",
      "v2.confluent_resource_type" => "ConfluentResourceType",
      "v2.container" => "Container",
      "v2.container_attributes" => "ContainerAttributes",
      "v2.container_group" => "ContainerGroup",
      "v2.container_group_attributes" => "ContainerGroupAttributes",
      "v2.container_group_relationships" => "ContainerGroupRelationships",
      "v2.container_group_relationships_link" => "ContainerGroupRelationshipsLink",
      "v2.container_group_relationships_links" => "ContainerGroupRelationshipsLinks",
      "v2.container_group_type" => "ContainerGroupType",
      "v2.container_image" => "ContainerImage",
      "v2.container_image_attributes" => "ContainerImageAttributes",
      "v2.container_image_flavor" => "ContainerImageFlavor",
      "v2.container_image_group" => "ContainerImageGroup",
      "v2.container_image_group_attributes" => "ContainerImageGroupAttributes",
      "v2.container_image_group_images_relationships_link" => "ContainerImageGroupImagesRelationshipsLink",
      "v2.container_image_group_relationships" => "ContainerImageGroupRelationships",
      "v2.container_image_group_relationships_links" => "ContainerImageGroupRelationshipsLinks",
      "v2.container_image_group_type" => "ContainerImageGroupType",
      "v2.container_image_item" => "ContainerImageItem",
      "v2.container_image_meta" => "ContainerImageMeta",
      "v2.container_image_meta_page" => "ContainerImageMetaPage",
      "v2.container_image_meta_page_type" => "ContainerImageMetaPageType",
      "v2.container_images_response" => "ContainerImagesResponse",
      "v2.container_images_response_links" => "ContainerImagesResponseLinks",
      "v2.container_image_type" => "ContainerImageType",
      "v2.container_image_vulnerabilities" => "ContainerImageVulnerabilities",
      "v2.container_item" => "ContainerItem",
      "v2.container_meta" => "ContainerMeta",
      "v2.container_meta_page" => "ContainerMetaPage",
      "v2.container_meta_page_type" => "ContainerMetaPageType",
      "v2.containers_response" => "ContainersResponse",
      "v2.containers_response_links" => "ContainersResponseLinks",
      "v2.container_type" => "ContainerType",
      "v2.content_encoding" => "ContentEncoding",
      "v2.cost_attribution_aggregates_body" => "CostAttributionAggregatesBody",
      "v2.cost_attribution_type" => "CostAttributionType",
      "v2.cost_by_org" => "CostByOrg",
      "v2.cost_by_org_attributes" => "CostByOrgAttributes",
      "v2.cost_by_org_response" => "CostByOrgResponse",
      "v2.cost_by_org_type" => "CostByOrgType",
      "v2.create_open_api_response" => "CreateOpenAPIResponse",
      "v2.create_open_api_response_attributes" => "CreateOpenAPIResponseAttributes",
      "v2.create_open_api_response_data" => "CreateOpenAPIResponseData",
      "v2.create_rule_request" => "CreateRuleRequest",
      "v2.create_rule_request_data" => "CreateRuleRequestData",
      "v2.create_rule_response" => "CreateRuleResponse",
      "v2.create_rule_response_data" => "CreateRuleResponseData",
      "v2.creator" => "Creator",
      "v2.custom_destination_attribute_tags_restriction_list_type" => "CustomDestinationAttributeTagsRestrictionListType",
      "v2.custom_destination_create_request" => "CustomDestinationCreateRequest",
      "v2.custom_destination_create_request_attributes" => "CustomDestinationCreateRequestAttributes",
      "v2.custom_destination_create_request_definition" => "CustomDestinationCreateRequestDefinition",
      "v2.custom_destination_elasticsearch_destination_auth" => "CustomDestinationElasticsearchDestinationAuth",
      "v2.custom_destination_forward_destination" => "CustomDestinationForwardDestination",
      "v2.custom_destination_forward_destination_elasticsearch" => "CustomDestinationForwardDestinationElasticsearch",
      "v2.custom_destination_forward_destination_elasticsearch_type" => "CustomDestinationForwardDestinationElasticsearchType",
      "v2.custom_destination_forward_destination_http" => "CustomDestinationForwardDestinationHttp",
      "v2.custom_destination_forward_destination_http_type" => "CustomDestinationForwardDestinationHttpType",
      "v2.custom_destination_forward_destination_splunk" => "CustomDestinationForwardDestinationSplunk",
      "v2.custom_destination_forward_destination_splunk_type" => "CustomDestinationForwardDestinationSplunkType",
      "v2.custom_destination_http_destination_auth" => "CustomDestinationHttpDestinationAuth",
      "v2.custom_destination_http_destination_auth_basic" => "CustomDestinationHttpDestinationAuthBasic",
      "v2.custom_destination_http_destination_auth_basic_type" => "CustomDestinationHttpDestinationAuthBasicType",
      "v2.custom_destination_http_destination_auth_custom_header" => "CustomDestinationHttpDestinationAuthCustomHeader",
      "v2.custom_destination_http_destination_auth_custom_header_type" => "CustomDestinationHttpDestinationAuthCustomHeaderType",
      "v2.custom_destination_response" => "CustomDestinationResponse",
      "v2.custom_destination_response_attributes" => "CustomDestinationResponseAttributes",
      "v2.custom_destination_response_definition" => "CustomDestinationResponseDefinition",
      "v2.custom_destination_response_forward_destination" => "CustomDestinationResponseForwardDestination",
      "v2.custom_destination_response_forward_destination_elasticsearch" => "CustomDestinationResponseForwardDestinationElasticsearch",
      "v2.custom_destination_response_forward_destination_elasticsearch_type" => "CustomDestinationResponseForwardDestinationElasticsearchType",
      "v2.custom_destination_response_forward_destination_http" => "CustomDestinationResponseForwardDestinationHttp",
      "v2.custom_destination_response_forward_destination_http_type" => "CustomDestinationResponseForwardDestinationHttpType",
      "v2.custom_destination_response_forward_destination_splunk" => "CustomDestinationResponseForwardDestinationSplunk",
      "v2.custom_destination_response_forward_destination_splunk_type" => "CustomDestinationResponseForwardDestinationSplunkType",
      "v2.custom_destination_response_http_destination_auth" => "CustomDestinationResponseHttpDestinationAuth",
      "v2.custom_destination_response_http_destination_auth_basic" => "CustomDestinationResponseHttpDestinationAuthBasic",
      "v2.custom_destination_response_http_destination_auth_basic_type" => "CustomDestinationResponseHttpDestinationAuthBasicType",
      "v2.custom_destination_response_http_destination_auth_custom_header" => "CustomDestinationResponseHttpDestinationAuthCustomHeader",
      "v2.custom_destination_response_http_destination_auth_custom_header_type" => "CustomDestinationResponseHttpDestinationAuthCustomHeaderType",
      "v2.custom_destinations_response" => "CustomDestinationsResponse",
      "v2.custom_destination_type" => "CustomDestinationType",
      "v2.custom_destination_update_request" => "CustomDestinationUpdateRequest",
      "v2.custom_destination_update_request_attributes" => "CustomDestinationUpdateRequestAttributes",
      "v2.custom_destination_update_request_definition" => "CustomDestinationUpdateRequestDefinition",
      "v2.dashboard_list_add_items_request" => "DashboardListAddItemsRequest",
      "v2.dashboard_list_add_items_response" => "DashboardListAddItemsResponse",
      "v2.dashboard_list_delete_items_request" => "DashboardListDeleteItemsRequest",
      "v2.dashboard_list_delete_items_response" => "DashboardListDeleteItemsResponse",
      "v2.dashboard_list_item" => "DashboardListItem",
      "v2.dashboard_list_item_request" => "DashboardListItemRequest",
      "v2.dashboard_list_item_response" => "DashboardListItemResponse",
      "v2.dashboard_list_items" => "DashboardListItems",
      "v2.dashboard_list_update_items_request" => "DashboardListUpdateItemsRequest",
      "v2.dashboard_list_update_items_response" => "DashboardListUpdateItemsResponse",
      "v2.dashboard_type" => "DashboardType",
      "v2.data_scalar_column" => "DataScalarColumn",
      "v2.detailed_finding" => "DetailedFinding",
      "v2.detailed_finding_attributes" => "DetailedFindingAttributes",
      "v2.detailed_finding_type" => "DetailedFindingType",
      "v2.dora_deployment_request" => "DORADeploymentRequest",
      "v2.dora_deployment_request_attributes" => "DORADeploymentRequestAttributes",
      "v2.dora_deployment_request_data" => "DORADeploymentRequestData",
      "v2.dora_deployment_response" => "DORADeploymentResponse",
      "v2.dora_deployment_response_data" => "DORADeploymentResponseData",
      "v2.dora_deployment_type" => "DORADeploymentType",
      "v2.dora_git_info" => "DORAGitInfo",
      "v2.dora_incident_request" => "DORAIncidentRequest",
      "v2.dora_incident_request_attributes" => "DORAIncidentRequestAttributes",
      "v2.dora_incident_request_data" => "DORAIncidentRequestData",
      "v2.dora_incident_response" => "DORAIncidentResponse",
      "v2.dora_incident_response_data" => "DORAIncidentResponseData",
      "v2.dora_incident_type" => "DORAIncidentType",
      "v2.downtime_create_request" => "DowntimeCreateRequest",
      "v2.downtime_create_request_attributes" => "DowntimeCreateRequestAttributes",
      "v2.downtime_create_request_data" => "DowntimeCreateRequestData",
      "v2.downtime_included_monitor_type" => "DowntimeIncludedMonitorType",
      "v2.downtime_meta" => "DowntimeMeta",
      "v2.downtime_meta_page" => "DowntimeMetaPage",
      "v2.downtime_monitor_identifier" => "DowntimeMonitorIdentifier",
      "v2.downtime_monitor_identifier_id" => "DowntimeMonitorIdentifierId",
      "v2.downtime_monitor_identifier_tags" => "DowntimeMonitorIdentifierTags",
      "v2.downtime_monitor_included_attributes" => "DowntimeMonitorIncludedAttributes",
      "v2.downtime_monitor_included_item" => "DowntimeMonitorIncludedItem",
      "v2.downtime_notify_end_state_actions" => "DowntimeNotifyEndStateActions",
      "v2.downtime_notify_end_state_types" => "DowntimeNotifyEndStateTypes",
      "v2.downtime_relationships" => "DowntimeRelationships",
      "v2.downtime_relationships_created_by" => "DowntimeRelationshipsCreatedBy",
      "v2.downtime_relationships_created_by_data" => "DowntimeRelationshipsCreatedByData",
      "v2.downtime_relationships_monitor" => "DowntimeRelationshipsMonitor",
      "v2.downtime_relationships_monitor_data" => "DowntimeRelationshipsMonitorData",
      "v2.downtime_resource_type" => "DowntimeResourceType",
      "v2.downtime_response" => "DowntimeResponse",
      "v2.downtime_response_attributes" => "DowntimeResponseAttributes",
      "v2.downtime_response_data" => "DowntimeResponseData",
      "v2.downtime_response_included_item" => "DowntimeResponseIncludedItem",
      "v2.downtime_schedule_create_request" => "DowntimeScheduleCreateRequest",
      "v2.downtime_schedule_current_downtime_response" => "DowntimeScheduleCurrentDowntimeResponse",
      "v2.downtime_schedule_one_time_create_update_request" => "DowntimeScheduleOneTimeCreateUpdateRequest",
      "v2.downtime_schedule_one_time_response" => "DowntimeScheduleOneTimeResponse",
      "v2.downtime_schedule_recurrence_create_update_request" => "DowntimeScheduleRecurrenceCreateUpdateRequest",
      "v2.downtime_schedule_recurrence_response" => "DowntimeScheduleRecurrenceResponse",
      "v2.downtime_schedule_recurrences_create_request" => "DowntimeScheduleRecurrencesCreateRequest",
      "v2.downtime_schedule_recurrences_response" => "DowntimeScheduleRecurrencesResponse",
      "v2.downtime_schedule_recurrences_update_request" => "DowntimeScheduleRecurrencesUpdateRequest",
      "v2.downtime_schedule_response" => "DowntimeScheduleResponse",
      "v2.downtime_schedule_update_request" => "DowntimeScheduleUpdateRequest",
      "v2.downtime_status" => "DowntimeStatus",
      "v2.downtime_update_request" => "DowntimeUpdateRequest",
      "v2.downtime_update_request_attributes" => "DowntimeUpdateRequestAttributes",
      "v2.downtime_update_request_data" => "DowntimeUpdateRequestData",
      "v2.event" => "Event",
      "v2.event_attributes" => "EventAttributes",
      "v2.event_priority" => "EventPriority",
      "v2.event_response" => "EventResponse",
      "v2.event_response_attributes" => "EventResponseAttributes",
      "v2.events_aggregation" => "EventsAggregation",
      "v2.events_compute" => "EventsCompute",
      "v2.events_data_source" => "EventsDataSource",
      "v2.events_group_by" => "EventsGroupBy",
      "v2.events_group_by_sort" => "EventsGroupBySort",
      "v2.events_list_request" => "EventsListRequest",
      "v2.events_list_response" => "EventsListResponse",
      "v2.events_list_response_links" => "EventsListResponseLinks",
      "v2.events_query_filter" => "EventsQueryFilter",
      "v2.events_query_options" => "EventsQueryOptions",
      "v2.events_request_page" => "EventsRequestPage",
      "v2.events_response_metadata" => "EventsResponseMetadata",
      "v2.events_response_metadata_page" => "EventsResponseMetadataPage",
      "v2.events_scalar_query" => "EventsScalarQuery",
      "v2.events_search" => "EventsSearch",
      "v2.events_sort" => "EventsSort",
      "v2.events_sort_type" => "EventsSortType",
      "v2.event_status_type" => "EventStatusType",
      "v2.events_timeseries_query" => "EventsTimeseriesQuery",
      "v2.events_warning" => "EventsWarning",
      "v2.event_type" => "EventType",
      "v2.fastly_accoun_response_attributes" => "FastlyAccounResponseAttributes",
      "v2.fastly_account_create_request" => "FastlyAccountCreateRequest",
      "v2.fastly_account_create_request_attributes" => "FastlyAccountCreateRequestAttributes",
      "v2.fastly_account_create_request_data" => "FastlyAccountCreateRequestData",
      "v2.fastly_account_response" => "FastlyAccountResponse",
      "v2.fastly_account_response_data" => "FastlyAccountResponseData",
      "v2.fastly_accounts_response" => "FastlyAccountsResponse",
      "v2.fastly_account_type" => "FastlyAccountType",
      "v2.fastly_account_update_request" => "FastlyAccountUpdateRequest",
      "v2.fastly_account_update_request_attributes" => "FastlyAccountUpdateRequestAttributes",
      "v2.fastly_account_update_request_data" => "FastlyAccountUpdateRequestData",
      "v2.fastly_service" => "FastlyService",
      "v2.fastly_service_attributes" => "FastlyServiceAttributes",
      "v2.fastly_service_data" => "FastlyServiceData",
      "v2.fastly_service_request" => "FastlyServiceRequest",
      "v2.fastly_service_response" => "FastlyServiceResponse",
      "v2.fastly_services_response" => "FastlyServicesResponse",
      "v2.fastly_service_type" => "FastlyServiceType",
      "v2.finding" => "Finding",
      "v2.finding_attributes" => "FindingAttributes",
      "v2.finding_evaluation" => "FindingEvaluation",
      "v2.finding_mute" => "FindingMute",
      "v2.finding_mute_reason" => "FindingMuteReason",
      "v2.finding_rule" => "FindingRule",
      "v2.finding_status" => "FindingStatus",
      "v2.finding_type" => "FindingType",
      "v2.formula_limit" => "FormulaLimit",
      "v2.full_api_key" => "FullAPIKey",
      "v2.full_api_key_attributes" => "FullAPIKeyAttributes",
      "v2.full_application_key" => "FullApplicationKey",
      "v2.full_application_key_attributes" => "FullApplicationKeyAttributes",
      "v2.gcp_service_account_meta" => "GCPServiceAccountMeta",
      "v2.gcp_service_account_type" => "GCPServiceAccountType",
      "v2.gcpsts_delegate_account" => "GCPSTSDelegateAccount",
      "v2.gcpsts_delegate_account_attributes" => "GCPSTSDelegateAccountAttributes",
      "v2.gcpsts_delegate_account_response" => "GCPSTSDelegateAccountResponse",
      "v2.gcpsts_delegate_account_type" => "GCPSTSDelegateAccountType",
      "v2.gcpsts_service_account" => "GCPSTSServiceAccount",
      "v2.gcpsts_service_account_attributes" => "GCPSTSServiceAccountAttributes",
      "v2.gcpsts_service_account_create_request" => "GCPSTSServiceAccountCreateRequest",
      "v2.gcpsts_service_account_data" => "GCPSTSServiceAccountData",
      "v2.gcpsts_service_account_response" => "GCPSTSServiceAccountResponse",
      "v2.gcpsts_service_accounts_response" => "GCPSTSServiceAccountsResponse",
      "v2.gcpsts_service_account_update_request" => "GCPSTSServiceAccountUpdateRequest",
      "v2.gcpsts_service_account_update_request_data" => "GCPSTSServiceAccountUpdateRequestData",
      "v2.get_finding_response" => "GetFindingResponse",
      "v2.get_team_memberships_sort" => "GetTeamMembershipsSort",
      "v2.group_scalar_column" => "GroupScalarColumn",
      "v2.hourly_usage" => "HourlyUsage",
      "v2.hourly_usage_attributes" => "HourlyUsageAttributes",
      "v2.hourly_usage_measurement" => "HourlyUsageMeasurement",
      "v2.hourly_usage_metadata" => "HourlyUsageMetadata",
      "v2.hourly_usage_pagination" => "HourlyUsagePagination",
      "v2.hourly_usage_response" => "HourlyUsageResponse",
      "v2.hourly_usage_type" => "HourlyUsageType",
      "v2.httpci_app_error" => "HTTPCIAppError",
      "v2.httpci_app_errors" => "HTTPCIAppErrors",
      "v2.http_log_error" => "HTTPLogError",
      "v2.http_log_errors" => "HTTPLogErrors",
      "v2.http_log_item" => "HTTPLogItem",
      "v2.idp_metadata_form_data" => "IdPMetadataFormData",
      "v2.incident_attachment_attachment_type" => "IncidentAttachmentAttachmentType",
      "v2.incident_attachment_attributes" => "IncidentAttachmentAttributes",
      "v2.incident_attachment_data" => "IncidentAttachmentData",
      "v2.incident_attachment_link_attachment_type" => "IncidentAttachmentLinkAttachmentType",
      "v2.incident_attachment_link_attributes" => "IncidentAttachmentLinkAttributes",
      "v2.incident_attachment_link_attributes_attachment_object" => "IncidentAttachmentLinkAttributesAttachmentObject",
      "v2.incident_attachment_postmortem_attachment_type" => "IncidentAttachmentPostmortemAttachmentType",
      "v2.incident_attachment_postmortem_attributes" => "IncidentAttachmentPostmortemAttributes",
      "v2.incident_attachment_related_object" => "IncidentAttachmentRelatedObject",
      "v2.incident_attachment_relationships" => "IncidentAttachmentRelationships",
      "v2.incident_attachments_postmortem_attributes_attachment_object" => "IncidentAttachmentsPostmortemAttributesAttachmentObject",
      "v2.incident_attachments_response" => "IncidentAttachmentsResponse",
      "v2.incident_attachments_response_included_item" => "IncidentAttachmentsResponseIncludedItem",
      "v2.incident_attachment_type" => "IncidentAttachmentType",
      "v2.incident_attachment_update_attributes" => "IncidentAttachmentUpdateAttributes",
      "v2.incident_attachment_update_data" => "IncidentAttachmentUpdateData",
      "v2.incident_attachment_update_request" => "IncidentAttachmentUpdateRequest",
      "v2.incident_attachment_update_response" => "IncidentAttachmentUpdateResponse",
      "v2.incident_create_attributes" => "IncidentCreateAttributes",
      "v2.incident_create_data" => "IncidentCreateData",
      "v2.incident_create_relationships" => "IncidentCreateRelationships",
      "v2.incident_create_request" => "IncidentCreateRequest",
      "v2.incident_field_attributes" => "IncidentFieldAttributes",
      "v2.incident_field_attributes_multiple_value" => "IncidentFieldAttributesMultipleValue",
      "v2.incident_field_attributes_single_value" => "IncidentFieldAttributesSingleValue",
      "v2.incident_field_attributes_single_value_type" => "IncidentFieldAttributesSingleValueType",
      "v2.incident_field_attributes_value_type" => "IncidentFieldAttributesValueType",
      "v2.incident_impacts_type" => "IncidentImpactsType",
      "v2.incident_integration_metadata_attributes" => "IncidentIntegrationMetadataAttributes",
      "v2.incident_integration_metadata_create_data" => "IncidentIntegrationMetadataCreateData",
      "v2.incident_integration_metadata_create_request" => "IncidentIntegrationMetadataCreateRequest",
      "v2.incident_integration_metadata_list_response" => "IncidentIntegrationMetadataListResponse",
      "v2.incident_integration_metadata_metadata" => "IncidentIntegrationMetadataMetadata",
      "v2.incident_integration_metadata_patch_data" => "IncidentIntegrationMetadataPatchData",
      "v2.incident_integration_metadata_patch_request" => "IncidentIntegrationMetadataPatchRequest",
      "v2.incident_integration_metadata_response" => "IncidentIntegrationMetadataResponse",
      "v2.incident_integration_metadata_response_data" => "IncidentIntegrationMetadataResponseData",
      "v2.incident_integration_metadata_response_included_item" => "IncidentIntegrationMetadataResponseIncludedItem",
      "v2.incident_integration_metadata_type" => "IncidentIntegrationMetadataType",
      "v2.incident_integration_relationships" => "IncidentIntegrationRelationships",
      "v2.incident_non_datadog_creator" => "IncidentNonDatadogCreator",
      "v2.incident_notification_handle" => "IncidentNotificationHandle",
      "v2.incident_postmortem_type" => "IncidentPostmortemType",
      "v2.incident_related_object" => "IncidentRelatedObject",
      "v2.incident_responders_type" => "IncidentRespondersType",
      "v2.incident_response" => "IncidentResponse",
      "v2.incident_response_attributes" => "IncidentResponseAttributes",
      "v2.incident_response_data" => "IncidentResponseData",
      "v2.incident_response_included_item" => "IncidentResponseIncludedItem",
      "v2.incident_response_meta" => "IncidentResponseMeta",
      "v2.incident_response_meta_pagination" => "IncidentResponseMetaPagination",
      "v2.incident_response_relationships" => "IncidentResponseRelationships",
      "v2.incident_search_response" => "IncidentSearchResponse",
      "v2.incident_search_response_attributes" => "IncidentSearchResponseAttributes",
      "v2.incident_search_response_data" => "IncidentSearchResponseData",
      "v2.incident_search_response_facets_data" => "IncidentSearchResponseFacetsData",
      "v2.incident_search_response_field_facet_data" => "IncidentSearchResponseFieldFacetData",
      "v2.incident_search_response_incidents_data" => "IncidentSearchResponseIncidentsData",
      "v2.incident_search_response_meta" => "IncidentSearchResponseMeta",
      "v2.incident_search_response_numeric_facet_data" => "IncidentSearchResponseNumericFacetData",
      "v2.incident_search_response_numeric_facet_data_aggregates" => "IncidentSearchResponseNumericFacetDataAggregates",
      "v2.incident_search_response_property_field_facet_data" => "IncidentSearchResponsePropertyFieldFacetData",
      "v2.incident_search_response_user_facet_data" => "IncidentSearchResponseUserFacetData",
      "v2.incident_search_results_type" => "IncidentSearchResultsType",
      "v2.incident_search_sort_order" => "IncidentSearchSortOrder",
      "v2.incident_service_create_attributes" => "IncidentServiceCreateAttributes",
      "v2.incident_service_create_data" => "IncidentServiceCreateData",
      "v2.incident_service_create_request" => "IncidentServiceCreateRequest",
      "v2.incident_service_included_items" => "IncidentServiceIncludedItems",
      "v2.incident_service_relationships" => "IncidentServiceRelationships",
      "v2.incident_service_response" => "IncidentServiceResponse",
      "v2.incident_service_response_attributes" => "IncidentServiceResponseAttributes",
      "v2.incident_service_response_data" => "IncidentServiceResponseData",
      "v2.incident_services_response" => "IncidentServicesResponse",
      "v2.incident_service_type" => "IncidentServiceType",
      "v2.incident_service_update_attributes" => "IncidentServiceUpdateAttributes",
      "v2.incident_service_update_data" => "IncidentServiceUpdateData",
      "v2.incident_service_update_request" => "IncidentServiceUpdateRequest",
      "v2.incident_severity" => "IncidentSeverity",
      "v2.incidents_response" => "IncidentsResponse",
      "v2.incident_team_create_attributes" => "IncidentTeamCreateAttributes",
      "v2.incident_team_create_data" => "IncidentTeamCreateData",
      "v2.incident_team_create_request" => "IncidentTeamCreateRequest",
      "v2.incident_team_included_items" => "IncidentTeamIncludedItems",
      "v2.incident_team_relationships" => "IncidentTeamRelationships",
      "v2.incident_team_response" => "IncidentTeamResponse",
      "v2.incident_team_response_attributes" => "IncidentTeamResponseAttributes",
      "v2.incident_team_response_data" => "IncidentTeamResponseData",
      "v2.incident_teams_response" => "IncidentTeamsResponse",
      "v2.incident_team_type" => "IncidentTeamType",
      "v2.incident_team_update_attributes" => "IncidentTeamUpdateAttributes",
      "v2.incident_team_update_data" => "IncidentTeamUpdateData",
      "v2.incident_team_update_request" => "IncidentTeamUpdateRequest",
      "v2.incident_timeline_cell_create_attributes" => "IncidentTimelineCellCreateAttributes",
      "v2.incident_timeline_cell_markdown_content_type" => "IncidentTimelineCellMarkdownContentType",
      "v2.incident_timeline_cell_markdown_create_attributes" => "IncidentTimelineCellMarkdownCreateAttributes",
      "v2.incident_timeline_cell_markdown_create_attributes_content" => "IncidentTimelineCellMarkdownCreateAttributesContent",
      "v2.incident_todo_anonymous_assignee" => "IncidentTodoAnonymousAssignee",
      "v2.incident_todo_anonymous_assignee_source" => "IncidentTodoAnonymousAssigneeSource",
      "v2.incident_todo_assignee" => "IncidentTodoAssignee",
      "v2.incident_todo_attributes" => "IncidentTodoAttributes",
      "v2.incident_todo_create_data" => "IncidentTodoCreateData",
      "v2.incident_todo_create_request" => "IncidentTodoCreateRequest",
      "v2.incident_todo_list_response" => "IncidentTodoListResponse",
      "v2.incident_todo_patch_data" => "IncidentTodoPatchData",
      "v2.incident_todo_patch_request" => "IncidentTodoPatchRequest",
      "v2.incident_todo_relationships" => "IncidentTodoRelationships",
      "v2.incident_todo_response" => "IncidentTodoResponse",
      "v2.incident_todo_response_data" => "IncidentTodoResponseData",
      "v2.incident_todo_response_included_item" => "IncidentTodoResponseIncludedItem",
      "v2.incident_todo_type" => "IncidentTodoType",
      "v2.incident_type" => "IncidentType",
      "v2.incident_update_attributes" => "IncidentUpdateAttributes",
      "v2.incident_update_data" => "IncidentUpdateData",
      "v2.incident_update_relationships" => "IncidentUpdateRelationships",
      "v2.incident_update_request" => "IncidentUpdateRequest",
      "v2.incident_user_defined_field_type" => "IncidentUserDefinedFieldType",
      "v2.intake_payload_accepted" => "IntakePayloadAccepted",
      "v2.ip_allowlist_attributes" => "IPAllowlistAttributes",
      "v2.ip_allowlist_data" => "IPAllowlistData",
      "v2.ip_allowlist_entry" => "IPAllowlistEntry",
      "v2.ip_allowlist_entry_attributes" => "IPAllowlistEntryAttributes",
      "v2.ip_allowlist_entry_data" => "IPAllowlistEntryData",
      "v2.ip_allowlist_entry_type" => "IPAllowlistEntryType",
      "v2.ip_allowlist_response" => "IPAllowlistResponse",
      "v2.ip_allowlist_type" => "IPAllowlistType",
      "v2.ip_allowlist_update_request" => "IPAllowlistUpdateRequest",
      "v2.jira_integration_metadata" => "JiraIntegrationMetadata",
      "v2.jira_integration_metadata_issues_item" => "JiraIntegrationMetadataIssuesItem",
      "v2.jira_issue" => "JiraIssue",
      "v2.jira_issue_result" => "JiraIssueResult",
      "v2.jsonapi_error_item" => "JSONAPIErrorItem",
      "v2.jsonapi_error_response" => "JSONAPIErrorResponse",
      "v2.list_application_keys_response" => "ListApplicationKeysResponse",
      "v2.list_downtimes_response" => "ListDowntimesResponse",
      "v2.list_findings_meta" => "ListFindingsMeta",
      "v2.list_findings_page" => "ListFindingsPage",
      "v2.list_findings_response" => "ListFindingsResponse",
      "v2.list_powerpacks_response" => "ListPowerpacksResponse",
      "v2.list_rules_response" => "ListRulesResponse",
      "v2.list_rules_response_data_item" => "ListRulesResponseDataItem",
      "v2.list_rules_response_links" => "ListRulesResponseLinks",
      "v2.list_teams_include" => "ListTeamsInclude",
      "v2.list_teams_sort" => "ListTeamsSort",
      "v2.log" => "Log",
      "v2.log_attributes" => "LogAttributes",
      "v2.logs_aggregate_bucket" => "LogsAggregateBucket",
      "v2.logs_aggregate_bucket_value" => "LogsAggregateBucketValue",
      "v2.logs_aggregate_bucket_value_timeseries_point" => "LogsAggregateBucketValueTimeseriesPoint",
      "v2.logs_aggregate_request" => "LogsAggregateRequest",
      "v2.logs_aggregate_request_page" => "LogsAggregateRequestPage",
      "v2.logs_aggregate_response" => "LogsAggregateResponse",
      "v2.logs_aggregate_response_data" => "LogsAggregateResponseData",
      "v2.logs_aggregate_response_status" => "LogsAggregateResponseStatus",
      "v2.logs_aggregate_sort" => "LogsAggregateSort",
      "v2.logs_aggregate_sort_type" => "LogsAggregateSortType",
      "v2.logs_aggregation_function" => "LogsAggregationFunction",
      "v2.logs_archive" => "LogsArchive",
      "v2.logs_archive_attributes" => "LogsArchiveAttributes",
      "v2.logs_archive_create_request" => "LogsArchiveCreateRequest",
      "v2.logs_archive_create_request_attributes" => "LogsArchiveCreateRequestAttributes",
      "v2.logs_archive_create_request_definition" => "LogsArchiveCreateRequestDefinition",
      "v2.logs_archive_create_request_destination" => "LogsArchiveCreateRequestDestination",
      "v2.logs_archive_definition" => "LogsArchiveDefinition",
      "v2.logs_archive_destination" => "LogsArchiveDestination",
      "v2.logs_archive_destination_azure" => "LogsArchiveDestinationAzure",
      "v2.logs_archive_destination_azure_type" => "LogsArchiveDestinationAzureType",
      "v2.logs_archive_destination_gcs" => "LogsArchiveDestinationGCS",
      "v2.logs_archive_destination_gcs_type" => "LogsArchiveDestinationGCSType",
      "v2.logs_archive_destination_s3" => "LogsArchiveDestinationS3",
      "v2.logs_archive_destination_s3_type" => "LogsArchiveDestinationS3Type",
      "v2.logs_archive_integration_azure" => "LogsArchiveIntegrationAzure",
      "v2.logs_archive_integration_gcs" => "LogsArchiveIntegrationGCS",
      "v2.logs_archive_integration_s3" => "LogsArchiveIntegrationS3",
      "v2.logs_archive_order" => "LogsArchiveOrder",
      "v2.logs_archive_order_attributes" => "LogsArchiveOrderAttributes",
      "v2.logs_archive_order_definition" => "LogsArchiveOrderDefinition",
      "v2.logs_archive_order_definition_type" => "LogsArchiveOrderDefinitionType",
      "v2.logs_archives" => "LogsArchives",
      "v2.logs_archive_state" => "LogsArchiveState",
      "v2.logs_compute" => "LogsCompute",
      "v2.logs_compute_type" => "LogsComputeType",
      "v2.logs_group_by" => "LogsGroupBy",
      "v2.logs_group_by_histogram" => "LogsGroupByHistogram",
      "v2.logs_group_by_missing" => "LogsGroupByMissing",
      "v2.logs_group_by_total" => "LogsGroupByTotal",
      "v2.logs_list_request" => "LogsListRequest",
      "v2.logs_list_request_page" => "LogsListRequestPage",
      "v2.logs_list_response" => "LogsListResponse",
      "v2.logs_list_response_links" => "LogsListResponseLinks",
      "v2.logs_metric_compute" => "LogsMetricCompute",
      "v2.logs_metric_compute_aggregation_type" => "LogsMetricComputeAggregationType",
      "v2.logs_metric_create_attributes" => "LogsMetricCreateAttributes",
      "v2.logs_metric_create_data" => "LogsMetricCreateData",
      "v2.logs_metric_create_request" => "LogsMetricCreateRequest",
      "v2.logs_metric_filter" => "LogsMetricFilter",
      "v2.logs_metric_group_by" => "LogsMetricGroupBy",
      "v2.logs_metric_response" => "LogsMetricResponse",
      "v2.logs_metric_response_attributes" => "LogsMetricResponseAttributes",
      "v2.logs_metric_response_compute" => "LogsMetricResponseCompute",
      "v2.logs_metric_response_compute_aggregation_type" => "LogsMetricResponseComputeAggregationType",
      "v2.logs_metric_response_data" => "LogsMetricResponseData",
      "v2.logs_metric_response_filter" => "LogsMetricResponseFilter",
      "v2.logs_metric_response_group_by" => "LogsMetricResponseGroupBy",
      "v2.logs_metrics_response" => "LogsMetricsResponse",
      "v2.logs_metric_type" => "LogsMetricType",
      "v2.logs_metric_update_attributes" => "LogsMetricUpdateAttributes",
      "v2.logs_metric_update_compute" => "LogsMetricUpdateCompute",
      "v2.logs_metric_update_data" => "LogsMetricUpdateData",
      "v2.logs_metric_update_request" => "LogsMetricUpdateRequest",
      "v2.logs_query_filter" => "LogsQueryFilter",
      "v2.logs_query_options" => "LogsQueryOptions",
      "v2.logs_response_metadata" => "LogsResponseMetadata",
      "v2.logs_response_metadata_page" => "LogsResponseMetadataPage",
      "v2.logs_sort" => "LogsSort",
      "v2.logs_sort_order" => "LogsSortOrder",
      "v2.logs_storage_tier" => "LogsStorageTier",
      "v2.logs_warning" => "LogsWarning",
      "v2.log_type" => "LogType",
      "v2.metric" => "Metric",
      "v2.metric_active_configuration_type" => "MetricActiveConfigurationType",
      "v2.metric_all_tags" => "MetricAllTags",
      "v2.metric_all_tags_attributes" => "MetricAllTagsAttributes",
      "v2.metric_all_tags_response" => "MetricAllTagsResponse",
      "v2.metric_asset_attributes" => "MetricAssetAttributes",
      "v2.metric_asset_dashboard_relationship" => "MetricAssetDashboardRelationship",
      "v2.metric_asset_dashboard_relationships" => "MetricAssetDashboardRelationships",
      "v2.metric_asset_monitor_relationship" => "MetricAssetMonitorRelationship",
      "v2.metric_asset_monitor_relationships" => "MetricAssetMonitorRelationships",
      "v2.metric_asset_notebook_relationship" => "MetricAssetNotebookRelationship",
      "v2.metric_asset_notebook_relationships" => "MetricAssetNotebookRelationships",
      "v2.metric_asset_response_data" => "MetricAssetResponseData",
      "v2.metric_asset_response_included" => "MetricAssetResponseIncluded",
      "v2.metric_asset_response_relationships" => "MetricAssetResponseRelationships",
      "v2.metric_asset_slo_relationship" => "MetricAssetSLORelationship",
      "v2.metric_asset_slo_relationships" => "MetricAssetSLORelationships",
      "v2.metric_assets_response" => "MetricAssetsResponse",
      "v2.metric_bulk_configure_tags_type" => "MetricBulkConfigureTagsType",
      "v2.metric_bulk_tag_config_create" => "MetricBulkTagConfigCreate",
      "v2.metric_bulk_tag_config_create_attributes" => "MetricBulkTagConfigCreateAttributes",
      "v2.metric_bulk_tag_config_create_request" => "MetricBulkTagConfigCreateRequest",
      "v2.metric_bulk_tag_config_delete" => "MetricBulkTagConfigDelete",
      "v2.metric_bulk_tag_config_delete_attributes" => "MetricBulkTagConfigDeleteAttributes",
      "v2.metric_bulk_tag_config_delete_request" => "MetricBulkTagConfigDeleteRequest",
      "v2.metric_bulk_tag_config_response" => "MetricBulkTagConfigResponse",
      "v2.metric_bulk_tag_config_status" => "MetricBulkTagConfigStatus",
      "v2.metric_bulk_tag_config_status_attributes" => "MetricBulkTagConfigStatusAttributes",
      "v2.metric_content_encoding" => "MetricContentEncoding",
      "v2.metric_custom_aggregation" => "MetricCustomAggregation",
      "v2.metric_custom_space_aggregation" => "MetricCustomSpaceAggregation",
      "v2.metric_custom_time_aggregation" => "MetricCustomTimeAggregation",
      "v2.metric_dashboard_asset" => "MetricDashboardAsset",
      "v2.metric_dashboard_attributes" => "MetricDashboardAttributes",
      "v2.metric_dashboard_type" => "MetricDashboardType",
      "v2.metric_distinct_volume" => "MetricDistinctVolume",
      "v2.metric_distinct_volume_attributes" => "MetricDistinctVolumeAttributes",
      "v2.metric_distinct_volume_type" => "MetricDistinctVolumeType",
      "v2.metric_estimate" => "MetricEstimate",
      "v2.metric_estimate_attributes" => "MetricEstimateAttributes",
      "v2.metric_estimate_resource_type" => "MetricEstimateResourceType",
      "v2.metric_estimate_response" => "MetricEstimateResponse",
      "v2.metric_estimate_type" => "MetricEstimateType",
      "v2.metric_ingested_indexed_volume" => "MetricIngestedIndexedVolume",
      "v2.metric_ingested_indexed_volume_attributes" => "MetricIngestedIndexedVolumeAttributes",
      "v2.metric_ingested_indexed_volume_type" => "MetricIngestedIndexedVolumeType",
      "v2.metric_intake_type" => "MetricIntakeType",
      "v2.metric_metadata" => "MetricMetadata",
      "v2.metric_monitor_asset" => "MetricMonitorAsset",
      "v2.metric_monitor_type" => "MetricMonitorType",
      "v2.metric_notebook_asset" => "MetricNotebookAsset",
      "v2.metric_notebook_type" => "MetricNotebookType",
      "v2.metric_origin" => "MetricOrigin",
      "v2.metric_payload" => "MetricPayload",
      "v2.metric_point" => "MetricPoint",
      "v2.metric_resource" => "MetricResource",
      "v2.metrics_aggregator" => "MetricsAggregator",
      "v2.metrics_and_metric_tag_configurations" => "MetricsAndMetricTagConfigurations",
      "v2.metrics_and_metric_tag_configurations_response" => "MetricsAndMetricTagConfigurationsResponse",
      "v2.metrics_data_source" => "MetricsDataSource",
      "v2.metric_series" => "MetricSeries",
      "v2.metric_slo_asset" => "MetricSLOAsset",
      "v2.metric_slo_type" => "MetricSLOType",
      "v2.metrics_scalar_query" => "MetricsScalarQuery",
      "v2.metrics_timeseries_query" => "MetricsTimeseriesQuery",
      "v2.metric_suggested_tags_and_aggregations" => "MetricSuggestedTagsAndAggregations",
      "v2.metric_suggested_tags_and_aggregations_response" => "MetricSuggestedTagsAndAggregationsResponse",
      "v2.metric_suggested_tags_attributes" => "MetricSuggestedTagsAttributes",
      "v2.metric_tag_configuration" => "MetricTagConfiguration",
      "v2.metric_tag_configuration_attributes" => "MetricTagConfigurationAttributes",
      "v2.metric_tag_configuration_create_attributes" => "MetricTagConfigurationCreateAttributes",
      "v2.metric_tag_configuration_create_data" => "MetricTagConfigurationCreateData",
      "v2.metric_tag_configuration_create_request" => "MetricTagConfigurationCreateRequest",
      "v2.metric_tag_configuration_metric_types" => "MetricTagConfigurationMetricTypes",
      "v2.metric_tag_configuration_response" => "MetricTagConfigurationResponse",
      "v2.metric_tag_configuration_type" => "MetricTagConfigurationType",
      "v2.metric_tag_configuration_update_attributes" => "MetricTagConfigurationUpdateAttributes",
      "v2.metric_tag_configuration_update_data" => "MetricTagConfigurationUpdateData",
      "v2.metric_tag_configuration_update_request" => "MetricTagConfigurationUpdateRequest",
      "v2.metric_type" => "MetricType",
      "v2.metric_volumes" => "MetricVolumes",
      "v2.metric_volumes_response" => "MetricVolumesResponse",
      "v2.monitor_config_policy_attribute_create_request" => "MonitorConfigPolicyAttributeCreateRequest",
      "v2.monitor_config_policy_attribute_edit_request" => "MonitorConfigPolicyAttributeEditRequest",
      "v2.monitor_config_policy_attribute_response" => "MonitorConfigPolicyAttributeResponse",
      "v2.monitor_config_policy_create_data" => "MonitorConfigPolicyCreateData",
      "v2.monitor_config_policy_create_request" => "MonitorConfigPolicyCreateRequest",
      "v2.monitor_config_policy_edit_data" => "MonitorConfigPolicyEditData",
      "v2.monitor_config_policy_edit_request" => "MonitorConfigPolicyEditRequest",
      "v2.monitor_config_policy_list_response" => "MonitorConfigPolicyListResponse",
      "v2.monitor_config_policy_policy" => "MonitorConfigPolicyPolicy",
      "v2.monitor_config_policy_policy_create_request" => "MonitorConfigPolicyPolicyCreateRequest",
      "v2.monitor_config_policy_resource_type" => "MonitorConfigPolicyResourceType",
      "v2.monitor_config_policy_response" => "MonitorConfigPolicyResponse",
      "v2.monitor_config_policy_response_data" => "MonitorConfigPolicyResponseData",
      "v2.monitor_config_policy_tag_policy" => "MonitorConfigPolicyTagPolicy",
      "v2.monitor_config_policy_tag_policy_create_request" => "MonitorConfigPolicyTagPolicyCreateRequest",
      "v2.monitor_config_policy_type" => "MonitorConfigPolicyType",
      "v2.monitor_downtime_match_resource_type" => "MonitorDowntimeMatchResourceType",
      "v2.monitor_downtime_match_response" => "MonitorDowntimeMatchResponse",
      "v2.monitor_downtime_match_response_attributes" => "MonitorDowntimeMatchResponseAttributes",
      "v2.monitor_downtime_match_response_data" => "MonitorDowntimeMatchResponseData",
      "v2.monitor_type" => "MonitorType",
      "v2.monthly_cost_attribution_attributes" => "MonthlyCostAttributionAttributes",
      "v2.monthly_cost_attribution_body" => "MonthlyCostAttributionBody",
      "v2.monthly_cost_attribution_meta" => "MonthlyCostAttributionMeta",
      "v2.monthly_cost_attribution_pagination" => "MonthlyCostAttributionPagination",
      "v2.monthly_cost_attribution_response" => "MonthlyCostAttributionResponse",
      "v2.nullable_relationship_to_user" => "NullableRelationshipToUser",
      "v2.nullable_relationship_to_user_data" => "NullableRelationshipToUserData",
      "v2.nullable_user_relationship" => "NullableUserRelationship",
      "v2.nullable_user_relationship_data" => "NullableUserRelationshipData",
      "v2.okta_account" => "OktaAccount",
      "v2.okta_account_attributes" => "OktaAccountAttributes",
      "v2.okta_account_request" => "OktaAccountRequest",
      "v2.okta_account_response" => "OktaAccountResponse",
      "v2.okta_account_response_data" => "OktaAccountResponseData",
      "v2.okta_accounts_response" => "OktaAccountsResponse",
      "v2.okta_account_type" => "OktaAccountType",
      "v2.okta_account_update_request" => "OktaAccountUpdateRequest",
      "v2.okta_account_update_request_attributes" => "OktaAccountUpdateRequestAttributes",
      "v2.okta_account_update_request_data" => "OktaAccountUpdateRequestData",
      "v2.on_demand_concurrency_cap" => "OnDemandConcurrencyCap",
      "v2.on_demand_concurrency_cap_attributes" => "OnDemandConcurrencyCapAttributes",
      "v2.on_demand_concurrency_cap_response" => "OnDemandConcurrencyCapResponse",
      "v2.on_demand_concurrency_cap_type" => "OnDemandConcurrencyCapType",
      "v2.open_api_endpoint" => "OpenAPIEndpoint",
      "v2.open_api_file" => "OpenAPIFile",
      "v2.opsgenie_service_create_attributes" => "OpsgenieServiceCreateAttributes",
      "v2.opsgenie_service_create_data" => "OpsgenieServiceCreateData",
      "v2.opsgenie_service_create_request" => "OpsgenieServiceCreateRequest",
      "v2.opsgenie_service_region_type" => "OpsgenieServiceRegionType",
      "v2.opsgenie_service_response" => "OpsgenieServiceResponse",
      "v2.opsgenie_service_response_attributes" => "OpsgenieServiceResponseAttributes",
      "v2.opsgenie_service_response_data" => "OpsgenieServiceResponseData",
      "v2.opsgenie_services_response" => "OpsgenieServicesResponse",
      "v2.opsgenie_service_type" => "OpsgenieServiceType",
      "v2.opsgenie_service_update_attributes" => "OpsgenieServiceUpdateAttributes",
      "v2.opsgenie_service_update_data" => "OpsgenieServiceUpdateData",
      "v2.opsgenie_service_update_request" => "OpsgenieServiceUpdateRequest",
      "v2.organization" => "Organization",
      "v2.organization_attributes" => "OrganizationAttributes",
      "v2.organizations_type" => "OrganizationsType",
      "v2.outcomes_batch_attributes" => "OutcomesBatchAttributes",
      "v2.outcomes_batch_request" => "OutcomesBatchRequest",
      "v2.outcomes_batch_request_data" => "OutcomesBatchRequestData",
      "v2.outcomes_batch_request_item" => "OutcomesBatchRequestItem",
      "v2.outcomes_batch_response" => "OutcomesBatchResponse",
      "v2.outcomes_batch_response_attributes" => "OutcomesBatchResponseAttributes",
      "v2.outcomes_batch_response_meta" => "OutcomesBatchResponseMeta",
      "v2.outcomes_batch_type" => "OutcomesBatchType",
      "v2.outcomes_response" => "OutcomesResponse",
      "v2.outcomes_response_data_item" => "OutcomesResponseDataItem",
      "v2.outcomes_response_included_item" => "OutcomesResponseIncludedItem",
      "v2.outcomes_response_included_rule_attributes" => "OutcomesResponseIncludedRuleAttributes",
      "v2.outcomes_response_links" => "OutcomesResponseLinks",
      "v2.outcome_type" => "OutcomeType",
      "v2.pagination" => "Pagination",
      "v2.partial_api_key" => "PartialAPIKey",
      "v2.partial_api_key_attributes" => "PartialAPIKeyAttributes",
      "v2.partial_application_key" => "PartialApplicationKey",
      "v2.partial_application_key_attributes" => "PartialApplicationKeyAttributes",
      "v2.partial_application_key_response" => "PartialApplicationKeyResponse",
      "v2.permission" => "Permission",
      "v2.permission_attributes" => "PermissionAttributes",
      "v2.permissions_response" => "PermissionsResponse",
      "v2.permissions_type" => "PermissionsType",
      "v2.powerpack" => "Powerpack",
      "v2.powerpack_attributes" => "PowerpackAttributes",
      "v2.powerpack_data" => "PowerpackData",
      "v2.powerpack_group_widget" => "PowerpackGroupWidget",
      "v2.powerpack_group_widget_definition" => "PowerpackGroupWidgetDefinition",
      "v2.powerpack_group_widget_layout" => "PowerpackGroupWidgetLayout",
      "v2.powerpack_inner_widget_layout" => "PowerpackInnerWidgetLayout",
      "v2.powerpack_inner_widgets" => "PowerpackInnerWidgets",
      "v2.powerpack_relationships" => "PowerpackRelationships",
      "v2.powerpack_response" => "PowerpackResponse",
      "v2.powerpack_response_links" => "PowerpackResponseLinks",
      "v2.powerpacks_response_meta" => "PowerpacksResponseMeta",
      "v2.powerpacks_response_meta_pagination" => "PowerpacksResponseMetaPagination",
      "v2.powerpack_template_variable" => "PowerpackTemplateVariable",
      "v2.process_summaries_meta" => "ProcessSummariesMeta",
      "v2.process_summaries_meta_page" => "ProcessSummariesMetaPage",
      "v2.process_summaries_response" => "ProcessSummariesResponse",
      "v2.process_summary" => "ProcessSummary",
      "v2.process_summary_attributes" => "ProcessSummaryAttributes",
      "v2.process_summary_type" => "ProcessSummaryType",
      "v2.project" => "Project",
      "v2.project_attributes" => "ProjectAttributes",
      "v2.project_create" => "ProjectCreate",
      "v2.project_create_attributes" => "ProjectCreateAttributes",
      "v2.project_create_request" => "ProjectCreateRequest",
      "v2.projected_cost" => "ProjectedCost",
      "v2.projected_cost_attributes" => "ProjectedCostAttributes",
      "v2.projected_cost_response" => "ProjectedCostResponse",
      "v2.projected_cost_type" => "ProjectedCostType",
      "v2.project_relationship" => "ProjectRelationship",
      "v2.project_relationship_data" => "ProjectRelationshipData",
      "v2.project_relationships" => "ProjectRelationships",
      "v2.project_resource_type" => "ProjectResourceType",
      "v2.project_response" => "ProjectResponse",
      "v2.projects_response" => "ProjectsResponse",
      "v2.query_formula" => "QueryFormula",
      "v2.query_sort_order" => "QuerySortOrder",
      "v2.relationship_to_incident_attachment" => "RelationshipToIncidentAttachment",
      "v2.relationship_to_incident_attachment_data" => "RelationshipToIncidentAttachmentData",
      "v2.relationship_to_incident_impact_data" => "RelationshipToIncidentImpactData",
      "v2.relationship_to_incident_impacts" => "RelationshipToIncidentImpacts",
      "v2.relationship_to_incident_integration_metadata_data" => "RelationshipToIncidentIntegrationMetadataData",
      "v2.relationship_to_incident_integration_metadatas" => "RelationshipToIncidentIntegrationMetadatas",
      "v2.relationship_to_incident_postmortem" => "RelationshipToIncidentPostmortem",
      "v2.relationship_to_incident_postmortem_data" => "RelationshipToIncidentPostmortemData",
      "v2.relationship_to_incident_responder_data" => "RelationshipToIncidentResponderData",
      "v2.relationship_to_incident_responders" => "RelationshipToIncidentResponders",
      "v2.relationship_to_incident_user_defined_field_data" => "RelationshipToIncidentUserDefinedFieldData",
      "v2.relationship_to_incident_user_defined_fields" => "RelationshipToIncidentUserDefinedFields",
      "v2.relationship_to_organization" => "RelationshipToOrganization",
      "v2.relationship_to_organization_data" => "RelationshipToOrganizationData",
      "v2.relationship_to_organizations" => "RelationshipToOrganizations",
      "v2.relationship_to_outcome" => "RelationshipToOutcome",
      "v2.relationship_to_outcome_data" => "RelationshipToOutcomeData",
      "v2.relationship_to_permission" => "RelationshipToPermission",
      "v2.relationship_to_permission_data" => "RelationshipToPermissionData",
      "v2.relationship_to_permissions" => "RelationshipToPermissions",
      "v2.relationship_to_role" => "RelationshipToRole",
      "v2.relationship_to_role_data" => "RelationshipToRoleData",
      "v2.relationship_to_roles" => "RelationshipToRoles",
      "v2.relationship_to_rule" => "RelationshipToRule",
      "v2.relationship_to_rule_data" => "RelationshipToRuleData",
      "v2.relationship_to_rule_data_object" => "RelationshipToRuleDataObject",
      "v2.relationship_to_saml_assertion_attribute" => "RelationshipToSAMLAssertionAttribute",
      "v2.relationship_to_saml_assertion_attribute_data" => "RelationshipToSAMLAssertionAttributeData",
      "v2.relationship_to_team" => "RelationshipToTeam",
      "v2.relationship_to_team_data" => "RelationshipToTeamData",
      "v2.relationship_to_team_link_data" => "RelationshipToTeamLinkData",
      "v2.relationship_to_team_links" => "RelationshipToTeamLinks",
      "v2.relationship_to_user" => "RelationshipToUser",
      "v2.relationship_to_user_data" => "RelationshipToUserData",
      "v2.relationship_to_users" => "RelationshipToUsers",
      "v2.relationship_to_user_team_permission" => "RelationshipToUserTeamPermission",
      "v2.relationship_to_user_team_permission_data" => "RelationshipToUserTeamPermissionData",
      "v2.relationship_to_user_team_team" => "RelationshipToUserTeamTeam",
      "v2.relationship_to_user_team_team_data" => "RelationshipToUserTeamTeamData",
      "v2.relationship_to_user_team_user" => "RelationshipToUserTeamUser",
      "v2.relationship_to_user_team_user_data" => "RelationshipToUserTeamUserData",
      "v2.reorder_retention_filters_request" => "ReorderRetentionFiltersRequest",
      "v2.response_meta_attributes" => "ResponseMetaAttributes",
      "v2.restriction_policy" => "RestrictionPolicy",
      "v2.restriction_policy_attributes" => "RestrictionPolicyAttributes",
      "v2.restriction_policy_binding" => "RestrictionPolicyBinding",
      "v2.restriction_policy_response" => "RestrictionPolicyResponse",
      "v2.restriction_policy_type" => "RestrictionPolicyType",
      "v2.restriction_policy_update_request" => "RestrictionPolicyUpdateRequest",
      "v2.retention_filter" => "RetentionFilter",
      "v2.retention_filter_all" => "RetentionFilterAll",
      "v2.retention_filter_all_attributes" => "RetentionFilterAllAttributes",
      "v2.retention_filter_all_type" => "RetentionFilterAllType",
      "v2.retention_filter_attributes" => "RetentionFilterAttributes",
      "v2.retention_filter_create_attributes" => "RetentionFilterCreateAttributes",
      "v2.retention_filter_create_data" => "RetentionFilterCreateData",
      "v2.retention_filter_create_request" => "RetentionFilterCreateRequest",
      "v2.retention_filter_create_response" => "RetentionFilterCreateResponse",
      "v2.retention_filter_response" => "RetentionFilterResponse",
      "v2.retention_filters_response" => "RetentionFiltersResponse",
      "v2.retention_filter_type" => "RetentionFilterType",
      "v2.retention_filter_update_attributes" => "RetentionFilterUpdateAttributes",
      "v2.retention_filter_update_data" => "RetentionFilterUpdateData",
      "v2.retention_filter_update_request" => "RetentionFilterUpdateRequest",
      "v2.retention_filter_without_attributes" => "RetentionFilterWithoutAttributes",
      "v2.role" => "Role",
      "v2.role_attributes" => "RoleAttributes",
      "v2.role_clone" => "RoleClone",
      "v2.role_clone_attributes" => "RoleCloneAttributes",
      "v2.role_clone_request" => "RoleCloneRequest",
      "v2.role_create_attributes" => "RoleCreateAttributes",
      "v2.role_create_data" => "RoleCreateData",
      "v2.role_create_request" => "RoleCreateRequest",
      "v2.role_create_response" => "RoleCreateResponse",
      "v2.role_create_response_data" => "RoleCreateResponseData",
      "v2.role_relationships" => "RoleRelationships",
      "v2.role_response" => "RoleResponse",
      "v2.role_response_relationships" => "RoleResponseRelationships",
      "v2.roles_response" => "RolesResponse",
      "v2.roles_sort" => "RolesSort",
      "v2.roles_type" => "RolesType",
      "v2.role_update_attributes" => "RoleUpdateAttributes",
      "v2.role_update_data" => "RoleUpdateData",
      "v2.role_update_request" => "RoleUpdateRequest",
      "v2.role_update_response" => "RoleUpdateResponse",
      "v2.role_update_response_data" => "RoleUpdateResponseData",
      "v2.rule_attributes" => "RuleAttributes",
      "v2.rule_outcome_relationships" => "RuleOutcomeRelationships",
      "v2.rule_type" => "RuleType",
      "v2.rum_aggregate_bucket_value" => "RUMAggregateBucketValue",
      "v2.rum_aggregate_bucket_value_timeseries_point" => "RUMAggregateBucketValueTimeseriesPoint",
      "v2.rum_aggregate_request" => "RUMAggregateRequest",
      "v2.rum_aggregate_sort" => "RUMAggregateSort",
      "v2.rum_aggregate_sort_type" => "RUMAggregateSortType",
      "v2.rum_aggregation_buckets_response" => "RUMAggregationBucketsResponse",
      "v2.rum_aggregation_function" => "RUMAggregationFunction",
      "v2.rum_analytics_aggregate_response" => "RUMAnalyticsAggregateResponse",
      "v2.rum_application" => "RUMApplication",
      "v2.rum_application_attributes" => "RUMApplicationAttributes",
      "v2.rum_application_create" => "RUMApplicationCreate",
      "v2.rum_application_create_attributes" => "RUMApplicationCreateAttributes",
      "v2.rum_application_create_request" => "RUMApplicationCreateRequest",
      "v2.rum_application_create_type" => "RUMApplicationCreateType",
      "v2.rum_application_list" => "RUMApplicationList",
      "v2.rum_application_list_attributes" => "RUMApplicationListAttributes",
      "v2.rum_application_list_type" => "RUMApplicationListType",
      "v2.rum_application_response" => "RUMApplicationResponse",
      "v2.rum_applications_response" => "RUMApplicationsResponse",
      "v2.rum_application_type" => "RUMApplicationType",
      "v2.rum_application_update" => "RUMApplicationUpdate",
      "v2.rum_application_update_attributes" => "RUMApplicationUpdateAttributes",
      "v2.rum_application_update_request" => "RUMApplicationUpdateRequest",
      "v2.rum_application_update_type" => "RUMApplicationUpdateType",
      "v2.rum_bucket_response" => "RUMBucketResponse",
      "v2.rum_compute" => "RUMCompute",
      "v2.rum_compute_type" => "RUMComputeType",
      "v2.rum_event" => "RUMEvent",
      "v2.rum_event_attributes" => "RUMEventAttributes",
      "v2.rum_events_response" => "RUMEventsResponse",
      "v2.rum_event_type" => "RUMEventType",
      "v2.rum_group_by" => "RUMGroupBy",
      "v2.rum_group_by_histogram" => "RUMGroupByHistogram",
      "v2.rum_group_by_missing" => "RUMGroupByMissing",
      "v2.rum_group_by_total" => "RUMGroupByTotal",
      "v2.rum_query_filter" => "RUMQueryFilter",
      "v2.rum_query_options" => "RUMQueryOptions",
      "v2.rum_query_page_options" => "RUMQueryPageOptions",
      "v2.rum_response_links" => "RUMResponseLinks",
      "v2.rum_response_metadata" => "RUMResponseMetadata",
      "v2.rum_response_page" => "RUMResponsePage",
      "v2.rum_response_status" => "RUMResponseStatus",
      "v2.rum_search_events_request" => "RUMSearchEventsRequest",
      "v2.rum_sort" => "RUMSort",
      "v2.rum_sort_order" => "RUMSortOrder",
      "v2.rum_warning" => "RUMWarning",
      "v2.saml_assertion_attribute" => "SAMLAssertionAttribute",
      "v2.saml_assertion_attribute_attributes" => "SAMLAssertionAttributeAttributes",
      "v2.saml_assertion_attributes_type" => "SAMLAssertionAttributesType",
      "v2.scalar_column" => "ScalarColumn",
      "v2.scalar_column_type_group" => "ScalarColumnTypeGroup",
      "v2.scalar_column_type_number" => "ScalarColumnTypeNumber",
      "v2.scalar_formula_query_request" => "ScalarFormulaQueryRequest",
      "v2.scalar_formula_query_response" => "ScalarFormulaQueryResponse",
      "v2.scalar_formula_request" => "ScalarFormulaRequest",
      "v2.scalar_formula_request_attributes" => "ScalarFormulaRequestAttributes",
      "v2.scalar_formula_request_type" => "ScalarFormulaRequestType",
      "v2.scalar_formula_response_atrributes" => "ScalarFormulaResponseAtrributes",
      "v2.scalar_formula_response_type" => "ScalarFormulaResponseType",
      "v2.scalar_meta" => "ScalarMeta",
      "v2.scalar_query" => "ScalarQuery",
      "v2.scalar_response" => "ScalarResponse",
      "v2.scorecard_type" => "ScorecardType",
      "v2.security_filter" => "SecurityFilter",
      "v2.security_filter_attributes" => "SecurityFilterAttributes",
      "v2.security_filter_create_attributes" => "SecurityFilterCreateAttributes",
      "v2.security_filter_create_data" => "SecurityFilterCreateData",
      "v2.security_filter_create_request" => "SecurityFilterCreateRequest",
      "v2.security_filter_exclusion_filter" => "SecurityFilterExclusionFilter",
      "v2.security_filter_exclusion_filter_response" => "SecurityFilterExclusionFilterResponse",
      "v2.security_filter_filtered_data_type" => "SecurityFilterFilteredDataType",
      "v2.security_filter_meta" => "SecurityFilterMeta",
      "v2.security_filter_response" => "SecurityFilterResponse",
      "v2.security_filters_response" => "SecurityFiltersResponse",
      "v2.security_filter_type" => "SecurityFilterType",
      "v2.security_filter_update_attributes" => "SecurityFilterUpdateAttributes",
      "v2.security_filter_update_data" => "SecurityFilterUpdateData",
      "v2.security_filter_update_request" => "SecurityFilterUpdateRequest",
      "v2.security_monitoring_filter" => "SecurityMonitoringFilter",
      "v2.security_monitoring_filter_action" => "SecurityMonitoringFilterAction",
      "v2.security_monitoring_list_rules_response" => "SecurityMonitoringListRulesResponse",
      "v2.security_monitoring_rule_case" => "SecurityMonitoringRuleCase",
      "v2.security_monitoring_rule_case_create" => "SecurityMonitoringRuleCaseCreate",
      "v2.security_monitoring_rule_create_payload" => "SecurityMonitoringRuleCreatePayload",
      "v2.security_monitoring_rule_detection_method" => "SecurityMonitoringRuleDetectionMethod",
      "v2.security_monitoring_rule_evaluation_window" => "SecurityMonitoringRuleEvaluationWindow",
      "v2.security_monitoring_rule_hardcoded_evaluator_type" => "SecurityMonitoringRuleHardcodedEvaluatorType",
      "v2.security_monitoring_rule_impossible_travel_options" => "SecurityMonitoringRuleImpossibleTravelOptions",
      "v2.security_monitoring_rule_keep_alive" => "SecurityMonitoringRuleKeepAlive",
      "v2.security_monitoring_rule_max_signal_duration" => "SecurityMonitoringRuleMaxSignalDuration",
      "v2.security_monitoring_rule_new_value_options" => "SecurityMonitoringRuleNewValueOptions",
      "v2.security_monitoring_rule_new_value_options_forget_after" => "SecurityMonitoringRuleNewValueOptionsForgetAfter",
      "v2.security_monitoring_rule_new_value_options_learning_duration" => "SecurityMonitoringRuleNewValueOptionsLearningDuration",
      "v2.security_monitoring_rule_new_value_options_learning_method" => "SecurityMonitoringRuleNewValueOptionsLearningMethod",
      "v2.security_monitoring_rule_new_value_options_learning_threshold" => "SecurityMonitoringRuleNewValueOptionsLearningThreshold",
      "v2.security_monitoring_rule_options" => "SecurityMonitoringRuleOptions",
      "v2.security_monitoring_rule_query" => "SecurityMonitoringRuleQuery",
      "v2.security_monitoring_rule_query_aggregation" => "SecurityMonitoringRuleQueryAggregation",
      "v2.security_monitoring_rule_response" => "SecurityMonitoringRuleResponse",
      "v2.security_monitoring_rule_severity" => "SecurityMonitoringRuleSeverity",
      "v2.security_monitoring_rule_third_party_options" => "SecurityMonitoringRuleThirdPartyOptions",
      "v2.security_monitoring_rule_type_create" => "SecurityMonitoringRuleTypeCreate",
      "v2.security_monitoring_rule_type_read" => "SecurityMonitoringRuleTypeRead",
      "v2.security_monitoring_rule_update_payload" => "SecurityMonitoringRuleUpdatePayload",
      "v2.security_monitoring_signal" => "SecurityMonitoringSignal",
      "v2.security_monitoring_signal_archive_reason" => "SecurityMonitoringSignalArchiveReason",
      "v2.security_monitoring_signal_assignee_update_attributes" => "SecurityMonitoringSignalAssigneeUpdateAttributes",
      "v2.security_monitoring_signal_assignee_update_data" => "SecurityMonitoringSignalAssigneeUpdateData",
      "v2.security_monitoring_signal_assignee_update_request" => "SecurityMonitoringSignalAssigneeUpdateRequest",
      "v2.security_monitoring_signal_attributes" => "SecurityMonitoringSignalAttributes",
      "v2.security_monitoring_signal_incidents_update_attributes" => "SecurityMonitoringSignalIncidentsUpdateAttributes",
      "v2.security_monitoring_signal_incidents_update_data" => "SecurityMonitoringSignalIncidentsUpdateData",
      "v2.security_monitoring_signal_incidents_update_request" => "SecurityMonitoringSignalIncidentsUpdateRequest",
      "v2.security_monitoring_signal_list_request" => "SecurityMonitoringSignalListRequest",
      "v2.security_monitoring_signal_list_request_filter" => "SecurityMonitoringSignalListRequestFilter",
      "v2.security_monitoring_signal_list_request_page" => "SecurityMonitoringSignalListRequestPage",
      "v2.security_monitoring_signal_metadata_type" => "SecurityMonitoringSignalMetadataType",
      "v2.security_monitoring_signal_response" => "SecurityMonitoringSignalResponse",
      "v2.security_monitoring_signal_rule_create_payload" => "SecurityMonitoringSignalRuleCreatePayload",
      "v2.security_monitoring_signal_rule_query" => "SecurityMonitoringSignalRuleQuery",
      "v2.security_monitoring_signal_rule_response" => "SecurityMonitoringSignalRuleResponse",
      "v2.security_monitoring_signal_rule_response_query" => "SecurityMonitoringSignalRuleResponseQuery",
      "v2.security_monitoring_signal_rule_type" => "SecurityMonitoringSignalRuleType",
      "v2.security_monitoring_signals_list_response" => "SecurityMonitoringSignalsListResponse",
      "v2.security_monitoring_signals_list_response_links" => "SecurityMonitoringSignalsListResponseLinks",
      "v2.security_monitoring_signals_list_response_meta" => "SecurityMonitoringSignalsListResponseMeta",
      "v2.security_monitoring_signals_list_response_meta_page" => "SecurityMonitoringSignalsListResponseMetaPage",
      "v2.security_monitoring_signals_sort" => "SecurityMonitoringSignalsSort",
      "v2.security_monitoring_signal_state" => "SecurityMonitoringSignalState",
      "v2.security_monitoring_signal_state_update_attributes" => "SecurityMonitoringSignalStateUpdateAttributes",
      "v2.security_monitoring_signal_state_update_data" => "SecurityMonitoringSignalStateUpdateData",
      "v2.security_monitoring_signal_state_update_request" => "SecurityMonitoringSignalStateUpdateRequest",
      "v2.security_monitoring_signal_triage_attributes" => "SecurityMonitoringSignalTriageAttributes",
      "v2.security_monitoring_signal_triage_update_data" => "SecurityMonitoringSignalTriageUpdateData",
      "v2.security_monitoring_signal_triage_update_response" => "SecurityMonitoringSignalTriageUpdateResponse",
      "v2.security_monitoring_signal_type" => "SecurityMonitoringSignalType",
      "v2.security_monitoring_standard_rule_create_payload" => "SecurityMonitoringStandardRuleCreatePayload",
      "v2.security_monitoring_standard_rule_query" => "SecurityMonitoringStandardRuleQuery",
      "v2.security_monitoring_standard_rule_response" => "SecurityMonitoringStandardRuleResponse",
      "v2.security_monitoring_suppression" => "SecurityMonitoringSuppression",
      "v2.security_monitoring_suppression_attributes" => "SecurityMonitoringSuppressionAttributes",
      "v2.security_monitoring_suppression_create_attributes" => "SecurityMonitoringSuppressionCreateAttributes",
      "v2.security_monitoring_suppression_create_data" => "SecurityMonitoringSuppressionCreateData",
      "v2.security_monitoring_suppression_create_request" => "SecurityMonitoringSuppressionCreateRequest",
      "v2.security_monitoring_suppression_response" => "SecurityMonitoringSuppressionResponse",
      "v2.security_monitoring_suppressions_response" => "SecurityMonitoringSuppressionsResponse",
      "v2.security_monitoring_suppression_type" => "SecurityMonitoringSuppressionType",
      "v2.security_monitoring_suppression_update_attributes" => "SecurityMonitoringSuppressionUpdateAttributes",
      "v2.security_monitoring_suppression_update_data" => "SecurityMonitoringSuppressionUpdateData",
      "v2.security_monitoring_suppression_update_request" => "SecurityMonitoringSuppressionUpdateRequest",
      "v2.security_monitoring_third_party_root_query" => "SecurityMonitoringThirdPartyRootQuery",
      "v2.security_monitoring_third_party_rule_case" => "SecurityMonitoringThirdPartyRuleCase",
      "v2.security_monitoring_third_party_rule_case_create" => "SecurityMonitoringThirdPartyRuleCaseCreate",
      "v2.security_monitoring_triage_user" => "SecurityMonitoringTriageUser",
      "v2.security_monitoring_user" => "SecurityMonitoringUser",
      "v2.sensitive_data_scanner_config_request" => "SensitiveDataScannerConfigRequest",
      "v2.sensitive_data_scanner_configuration" => "SensitiveDataScannerConfiguration",
      "v2.sensitive_data_scanner_configuration_data" => "SensitiveDataScannerConfigurationData",
      "v2.sensitive_data_scanner_configuration_relationships" => "SensitiveDataScannerConfigurationRelationships",
      "v2.sensitive_data_scanner_configuration_type" => "SensitiveDataScannerConfigurationType",
      "v2.sensitive_data_scanner_create_group_response" => "SensitiveDataScannerCreateGroupResponse",
      "v2.sensitive_data_scanner_create_rule_response" => "SensitiveDataScannerCreateRuleResponse",
      "v2.sensitive_data_scanner_filter" => "SensitiveDataScannerFilter",
      "v2.sensitive_data_scanner_get_config_included_item" => "SensitiveDataScannerGetConfigIncludedItem",
      "v2.sensitive_data_scanner_get_config_response" => "SensitiveDataScannerGetConfigResponse",
      "v2.sensitive_data_scanner_get_config_response_data" => "SensitiveDataScannerGetConfigResponseData",
      "v2.sensitive_data_scanner_group" => "SensitiveDataScannerGroup",
      "v2.sensitive_data_scanner_group_attributes" => "SensitiveDataScannerGroupAttributes",
      "v2.sensitive_data_scanner_group_create" => "SensitiveDataScannerGroupCreate",
      "v2.sensitive_data_scanner_group_create_request" => "SensitiveDataScannerGroupCreateRequest",
      "v2.sensitive_data_scanner_group_data" => "SensitiveDataScannerGroupData",
      "v2.sensitive_data_scanner_group_delete_request" => "SensitiveDataScannerGroupDeleteRequest",
      "v2.sensitive_data_scanner_group_delete_response" => "SensitiveDataScannerGroupDeleteResponse",
      "v2.sensitive_data_scanner_group_included_item" => "SensitiveDataScannerGroupIncludedItem",
      "v2.sensitive_data_scanner_group_item" => "SensitiveDataScannerGroupItem",
      "v2.sensitive_data_scanner_group_list" => "SensitiveDataScannerGroupList",
      "v2.sensitive_data_scanner_group_relationships" => "SensitiveDataScannerGroupRelationships",
      "v2.sensitive_data_scanner_group_response" => "SensitiveDataScannerGroupResponse",
      "v2.sensitive_data_scanner_group_type" => "SensitiveDataScannerGroupType",
      "v2.sensitive_data_scanner_group_update" => "SensitiveDataScannerGroupUpdate",
      "v2.sensitive_data_scanner_group_update_request" => "SensitiveDataScannerGroupUpdateRequest",
      "v2.sensitive_data_scanner_group_update_response" => "SensitiveDataScannerGroupUpdateResponse",
      "v2.sensitive_data_scanner_included_keyword_configuration" => "SensitiveDataScannerIncludedKeywordConfiguration",
      "v2.sensitive_data_scanner_meta" => "SensitiveDataScannerMeta",
      "v2.sensitive_data_scanner_meta_version_only" => "SensitiveDataScannerMetaVersionOnly",
      "v2.sensitive_data_scanner_product" => "SensitiveDataScannerProduct",
      "v2.sensitive_data_scanner_reorder_config" => "SensitiveDataScannerReorderConfig",
      "v2.sensitive_data_scanner_reorder_groups_response" => "SensitiveDataScannerReorderGroupsResponse",
      "v2.sensitive_data_scanner_rule" => "SensitiveDataScannerRule",
      "v2.sensitive_data_scanner_rule_attributes" => "SensitiveDataScannerRuleAttributes",
      "v2.sensitive_data_scanner_rule_create" => "SensitiveDataScannerRuleCreate",
      "v2.sensitive_data_scanner_rule_create_request" => "SensitiveDataScannerRuleCreateRequest",
      "v2.sensitive_data_scanner_rule_data" => "SensitiveDataScannerRuleData",
      "v2.sensitive_data_scanner_rule_delete_request" => "SensitiveDataScannerRuleDeleteRequest",
      "v2.sensitive_data_scanner_rule_delete_response" => "SensitiveDataScannerRuleDeleteResponse",
      "v2.sensitive_data_scanner_rule_included_item" => "SensitiveDataScannerRuleIncludedItem",
      "v2.sensitive_data_scanner_rule_relationships" => "SensitiveDataScannerRuleRelationships",
      "v2.sensitive_data_scanner_rule_response" => "SensitiveDataScannerRuleResponse",
      "v2.sensitive_data_scanner_rule_type" => "SensitiveDataScannerRuleType",
      "v2.sensitive_data_scanner_rule_update" => "SensitiveDataScannerRuleUpdate",
      "v2.sensitive_data_scanner_rule_update_request" => "SensitiveDataScannerRuleUpdateRequest",
      "v2.sensitive_data_scanner_rule_update_response" => "SensitiveDataScannerRuleUpdateResponse",
      "v2.sensitive_data_scanner_standard_pattern" => "SensitiveDataScannerStandardPattern",
      "v2.sensitive_data_scanner_standard_pattern_attributes" => "SensitiveDataScannerStandardPatternAttributes",
      "v2.sensitive_data_scanner_standard_pattern_data" => "SensitiveDataScannerStandardPatternData",
      "v2.sensitive_data_scanner_standard_patterns_response_data" => "SensitiveDataScannerStandardPatternsResponseData",
      "v2.sensitive_data_scanner_standard_patterns_response_item" => "SensitiveDataScannerStandardPatternsResponseItem",
      "v2.sensitive_data_scanner_standard_pattern_type" => "SensitiveDataScannerStandardPatternType",
      "v2.sensitive_data_scanner_text_replacement" => "SensitiveDataScannerTextReplacement",
      "v2.sensitive_data_scanner_text_replacement_type" => "SensitiveDataScannerTextReplacementType",
      "v2.service_account_create_attributes" => "ServiceAccountCreateAttributes",
      "v2.service_account_create_data" => "ServiceAccountCreateData",
      "v2.service_account_create_request" => "ServiceAccountCreateRequest",
      "v2.service_definition_create_response" => "ServiceDefinitionCreateResponse",
      "v2.service_definition_data" => "ServiceDefinitionData",
      "v2.service_definition_data_attributes" => "ServiceDefinitionDataAttributes",
      "v2.service_definition_get_response" => "ServiceDefinitionGetResponse",
      "v2.service_definition_meta" => "ServiceDefinitionMeta",
      "v2.service_definition_meta_warnings" => "ServiceDefinitionMetaWarnings",
      "v2.service_definition_schema" => "ServiceDefinitionSchema",
      "v2.service_definition_schema_versions" => "ServiceDefinitionSchemaVersions",
      "v2.service_definitions_create_request" => "ServiceDefinitionsCreateRequest",
      "v2.service_definitions_list_response" => "ServiceDefinitionsListResponse",
      "v2.service_definition_v1" => "ServiceDefinitionV1",
      "v2.service_definition_v1_contact" => "ServiceDefinitionV1Contact",
      "v2.service_definition_v1_info" => "ServiceDefinitionV1Info",
      "v2.service_definition_v1_integrations" => "ServiceDefinitionV1Integrations",
      "v2.service_definition_v1_org" => "ServiceDefinitionV1Org",
      "v2.service_definition_v1_resource" => "ServiceDefinitionV1Resource",
      "v2.service_definition_v1_resource_type" => "ServiceDefinitionV1ResourceType",
      "v2.service_definition_v1_version" => "ServiceDefinitionV1Version",
      "v2.service_definition_v2" => "ServiceDefinitionV2",
      "v2.service_definition_v2_contact" => "ServiceDefinitionV2Contact",
      "v2.service_definition_v2_doc" => "ServiceDefinitionV2Doc",
      "v2.service_definition_v2_dot1" => "ServiceDefinitionV2Dot1",
      "v2.service_definition_v2_dot1_contact" => "ServiceDefinitionV2Dot1Contact",
      "v2.service_definition_v2_dot1_email" => "ServiceDefinitionV2Dot1Email",
      "v2.service_definition_v2_dot1_email_type" => "ServiceDefinitionV2Dot1EmailType",
      "v2.service_definition_v2_dot1_integrations" => "ServiceDefinitionV2Dot1Integrations",
      "v2.service_definition_v2_dot1_link" => "ServiceDefinitionV2Dot1Link",
      "v2.service_definition_v2_dot1_link_type" => "ServiceDefinitionV2Dot1LinkType",
      "v2.service_definition_v2_dot1_ms_teams" => "ServiceDefinitionV2Dot1MSTeams",
      "v2.service_definition_v2_dot1_ms_teams_type" => "ServiceDefinitionV2Dot1MSTeamsType",
      "v2.service_definition_v2_dot1_opsgenie" => "ServiceDefinitionV2Dot1Opsgenie",
      "v2.service_definition_v2_dot1_opsgenie_region" => "ServiceDefinitionV2Dot1OpsgenieRegion",
      "v2.service_definition_v2_dot1_pagerduty" => "ServiceDefinitionV2Dot1Pagerduty",
      "v2.service_definition_v2_dot1_slack" => "ServiceDefinitionV2Dot1Slack",
      "v2.service_definition_v2_dot1_slack_type" => "ServiceDefinitionV2Dot1SlackType",
      "v2.service_definition_v2_dot1_version" => "ServiceDefinitionV2Dot1Version",
      "v2.service_definition_v2_dot2" => "ServiceDefinitionV2Dot2",
      "v2.service_definition_v2_dot2_contact" => "ServiceDefinitionV2Dot2Contact",
      "v2.service_definition_v2_dot2_integrations" => "ServiceDefinitionV2Dot2Integrations",
      "v2.service_definition_v2_dot2_link" => "ServiceDefinitionV2Dot2Link",
      "v2.service_definition_v2_dot2_opsgenie" => "ServiceDefinitionV2Dot2Opsgenie",
      "v2.service_definition_v2_dot2_opsgenie_region" => "ServiceDefinitionV2Dot2OpsgenieRegion",
      "v2.service_definition_v2_dot2_pagerduty" => "ServiceDefinitionV2Dot2Pagerduty",
      "v2.service_definition_v2_dot2_type" => "ServiceDefinitionV2Dot2Type",
      "v2.service_definition_v2_dot2_version" => "ServiceDefinitionV2Dot2Version",
      "v2.service_definition_v2_email" => "ServiceDefinitionV2Email",
      "v2.service_definition_v2_email_type" => "ServiceDefinitionV2EmailType",
      "v2.service_definition_v2_integrations" => "ServiceDefinitionV2Integrations",
      "v2.service_definition_v2_link" => "ServiceDefinitionV2Link",
      "v2.service_definition_v2_link_type" => "ServiceDefinitionV2LinkType",
      "v2.service_definition_v2_ms_teams" => "ServiceDefinitionV2MSTeams",
      "v2.service_definition_v2_ms_teams_type" => "ServiceDefinitionV2MSTeamsType",
      "v2.service_definition_v2_opsgenie" => "ServiceDefinitionV2Opsgenie",
      "v2.service_definition_v2_opsgenie_region" => "ServiceDefinitionV2OpsgenieRegion",
      "v2.service_definition_v2_repo" => "ServiceDefinitionV2Repo",
      "v2.service_definition_v2_slack" => "ServiceDefinitionV2Slack",
      "v2.service_definition_v2_slack_type" => "ServiceDefinitionV2SlackType",
      "v2.service_definition_v2_version" => "ServiceDefinitionV2Version",
      "v2.service_now_ticket" => "ServiceNowTicket",
      "v2.service_now_ticket_result" => "ServiceNowTicketResult",
      "v2.slack_integration_metadata" => "SlackIntegrationMetadata",
      "v2.slack_integration_metadata_channel_item" => "SlackIntegrationMetadataChannelItem",
      "v2.slo_report_create_request" => "SloReportCreateRequest",
      "v2.slo_report_create_request_attributes" => "SloReportCreateRequestAttributes",
      "v2.slo_report_create_request_data" => "SloReportCreateRequestData",
      "v2.slo_report_interval" => "SLOReportInterval",
      "v2.slo_report_post_response" => "SLOReportPostResponse",
      "v2.slo_report_post_response_data" => "SLOReportPostResponseData",
      "v2.slo_report_status" => "SLOReportStatus",
      "v2.slo_report_status_get_response" => "SLOReportStatusGetResponse",
      "v2.slo_report_status_get_response_attributes" => "SLOReportStatusGetResponseAttributes",
      "v2.slo_report_status_get_response_data" => "SLOReportStatusGetResponseData",
      "v2.sort_direction" => "SortDirection",
      "v2.span" => "Span",
      "v2.spans_aggregate_bucket" => "SpansAggregateBucket",
      "v2.spans_aggregate_bucket_attributes" => "SpansAggregateBucketAttributes",
      "v2.spans_aggregate_bucket_type" => "SpansAggregateBucketType",
      "v2.spans_aggregate_bucket_value" => "SpansAggregateBucketValue",
      "v2.spans_aggregate_bucket_value_timeseries_point" => "SpansAggregateBucketValueTimeseriesPoint",
      "v2.spans_aggregate_data" => "SpansAggregateData",
      "v2.spans_aggregate_request" => "SpansAggregateRequest",
      "v2.spans_aggregate_request_attributes" => "SpansAggregateRequestAttributes",
      "v2.spans_aggregate_request_type" => "SpansAggregateRequestType",
      "v2.spans_aggregate_response" => "SpansAggregateResponse",
      "v2.spans_aggregate_response_metadata" => "SpansAggregateResponseMetadata",
      "v2.spans_aggregate_response_status" => "SpansAggregateResponseStatus",
      "v2.spans_aggregate_sort" => "SpansAggregateSort",
      "v2.spans_aggregate_sort_type" => "SpansAggregateSortType",
      "v2.spans_aggregation_function" => "SpansAggregationFunction",
      "v2.spans_attributes" => "SpansAttributes",
      "v2.spans_compute" => "SpansCompute",
      "v2.spans_compute_type" => "SpansComputeType",
      "v2.spans_filter" => "SpansFilter",
      "v2.spans_filter_create" => "SpansFilterCreate",
      "v2.spans_group_by" => "SpansGroupBy",
      "v2.spans_group_by_histogram" => "SpansGroupByHistogram",
      "v2.spans_group_by_missing" => "SpansGroupByMissing",
      "v2.spans_group_by_total" => "SpansGroupByTotal",
      "v2.spans_list_request" => "SpansListRequest",
      "v2.spans_list_request_attributes" => "SpansListRequestAttributes",
      "v2.spans_list_request_data" => "SpansListRequestData",
      "v2.spans_list_request_page" => "SpansListRequestPage",
      "v2.spans_list_request_type" => "SpansListRequestType",
      "v2.spans_list_response" => "SpansListResponse",
      "v2.spans_list_response_links" => "SpansListResponseLinks",
      "v2.spans_list_response_metadata" => "SpansListResponseMetadata",
      "v2.spans_metric_compute" => "SpansMetricCompute",
      "v2.spans_metric_compute_aggregation_type" => "SpansMetricComputeAggregationType",
      "v2.spans_metric_create_attributes" => "SpansMetricCreateAttributes",
      "v2.spans_metric_create_data" => "SpansMetricCreateData",
      "v2.spans_metric_create_request" => "SpansMetricCreateRequest",
      "v2.spans_metric_filter" => "SpansMetricFilter",
      "v2.spans_metric_group_by" => "SpansMetricGroupBy",
      "v2.spans_metric_response" => "SpansMetricResponse",
      "v2.spans_metric_response_attributes" => "SpansMetricResponseAttributes",
      "v2.spans_metric_response_compute" => "SpansMetricResponseCompute",
      "v2.spans_metric_response_data" => "SpansMetricResponseData",
      "v2.spans_metric_response_filter" => "SpansMetricResponseFilter",
      "v2.spans_metric_response_group_by" => "SpansMetricResponseGroupBy",
      "v2.spans_metrics_response" => "SpansMetricsResponse",
      "v2.spans_metric_type" => "SpansMetricType",
      "v2.spans_metric_update_attributes" => "SpansMetricUpdateAttributes",
      "v2.spans_metric_update_compute" => "SpansMetricUpdateCompute",
      "v2.spans_metric_update_data" => "SpansMetricUpdateData",
      "v2.spans_metric_update_request" => "SpansMetricUpdateRequest",
      "v2.spans_query_filter" => "SpansQueryFilter",
      "v2.spans_query_options" => "SpansQueryOptions",
      "v2.spans_response_metadata_page" => "SpansResponseMetadataPage",
      "v2.spans_sort" => "SpansSort",
      "v2.spans_sort_order" => "SpansSortOrder",
      "v2.spans_type" => "SpansType",
      "v2.spans_warning" => "SpansWarning",
      "v2.state" => "State",
      "v2.team" => "Team",
      "v2.team_attributes" => "TeamAttributes",
      "v2.team_create" => "TeamCreate",
      "v2.team_create_attributes" => "TeamCreateAttributes",
      "v2.team_create_relationships" => "TeamCreateRelationships",
      "v2.team_create_request" => "TeamCreateRequest",
      "v2.team_included" => "TeamIncluded",
      "v2.team_link" => "TeamLink",
      "v2.team_link_attributes" => "TeamLinkAttributes",
      "v2.team_link_create" => "TeamLinkCreate",
      "v2.team_link_create_request" => "TeamLinkCreateRequest",
      "v2.team_link_response" => "TeamLinkResponse",
      "v2.team_links_response" => "TeamLinksResponse",
      "v2.team_link_type" => "TeamLinkType",
      "v2.team_permission_setting" => "TeamPermissionSetting",
      "v2.team_permission_setting_attributes" => "TeamPermissionSettingAttributes",
      "v2.team_permission_setting_response" => "TeamPermissionSettingResponse",
      "v2.team_permission_setting_serializer_action" => "TeamPermissionSettingSerializerAction",
      "v2.team_permission_settings_response" => "TeamPermissionSettingsResponse",
      "v2.team_permission_setting_type" => "TeamPermissionSettingType",
      "v2.team_permission_setting_update" => "TeamPermissionSettingUpdate",
      "v2.team_permission_setting_update_attributes" => "TeamPermissionSettingUpdateAttributes",
      "v2.team_permission_setting_update_request" => "TeamPermissionSettingUpdateRequest",
      "v2.team_permission_setting_value" => "TeamPermissionSettingValue",
      "v2.team_relationships" => "TeamRelationships",
      "v2.team_relationships_links" => "TeamRelationshipsLinks",
      "v2.team_response" => "TeamResponse",
      "v2.teams_field" => "TeamsField",
      "v2.teams_response" => "TeamsResponse",
      "v2.teams_response_links" => "TeamsResponseLinks",
      "v2.teams_response_meta" => "TeamsResponseMeta",
      "v2.teams_response_meta_pagination" => "TeamsResponseMetaPagination",
      "v2.team_type" => "TeamType",
      "v2.team_update" => "TeamUpdate",
      "v2.team_update_attributes" => "TeamUpdateAttributes",
      "v2.team_update_relationships" => "TeamUpdateRelationships",
      "v2.team_update_request" => "TeamUpdateRequest",
      "v2.timeseries_formula_query_request" => "TimeseriesFormulaQueryRequest",
      "v2.timeseries_formula_query_response" => "TimeseriesFormulaQueryResponse",
      "v2.timeseries_formula_request" => "TimeseriesFormulaRequest",
      "v2.timeseries_formula_request_attributes" => "TimeseriesFormulaRequestAttributes",
      "v2.timeseries_formula_request_type" => "TimeseriesFormulaRequestType",
      "v2.timeseries_formula_response_type" => "TimeseriesFormulaResponseType",
      "v2.timeseries_query" => "TimeseriesQuery",
      "v2.timeseries_response" => "TimeseriesResponse",
      "v2.timeseries_response_attributes" => "TimeseriesResponseAttributes",
      "v2.timeseries_response_series" => "TimeseriesResponseSeries",
      "v2.unit" => "Unit",
      "v2.update_open_api_response" => "UpdateOpenAPIResponse",
      "v2.update_open_api_response_attributes" => "UpdateOpenAPIResponseAttributes",
      "v2.update_open_api_response_data" => "UpdateOpenAPIResponseData",
      "v2.usage_application_security_monitoring_response" => "UsageApplicationSecurityMonitoringResponse",
      "v2.usage_attributes_object" => "UsageAttributesObject",
      "v2.usage_data_object" => "UsageDataObject",
      "v2.usage_lambda_traced_invocations_response" => "UsageLambdaTracedInvocationsResponse",
      "v2.usage_observability_pipelines_response" => "UsageObservabilityPipelinesResponse",
      "v2.usage_time_series_object" => "UsageTimeSeriesObject",
      "v2.usage_time_series_type" => "UsageTimeSeriesType",
      "v2.user" => "User",
      "v2.user_attributes" => "UserAttributes",
      "v2.user_create_attributes" => "UserCreateAttributes",
      "v2.user_create_data" => "UserCreateData",
      "v2.user_create_request" => "UserCreateRequest",
      "v2.user_invitation_data" => "UserInvitationData",
      "v2.user_invitation_data_attributes" => "UserInvitationDataAttributes",
      "v2.user_invitation_relationships" => "UserInvitationRelationships",
      "v2.user_invitation_response" => "UserInvitationResponse",
      "v2.user_invitation_response_data" => "UserInvitationResponseData",
      "v2.user_invitations_request" => "UserInvitationsRequest",
      "v2.user_invitations_response" => "UserInvitationsResponse",
      "v2.user_invitations_type" => "UserInvitationsType",
      "v2.user_relationship_data" => "UserRelationshipData",
      "v2.user_relationships" => "UserRelationships",
      "v2.user_resource_type" => "UserResourceType",
      "v2.user_response" => "UserResponse",
      "v2.user_response_included_item" => "UserResponseIncludedItem",
      "v2.user_response_relationships" => "UserResponseRelationships",
      "v2.users_relationship" => "UsersRelationship",
      "v2.users_response" => "UsersResponse",
      "v2.users_type" => "UsersType",
      "v2.user_team" => "UserTeam",
      "v2.user_team_attributes" => "UserTeamAttributes",
      "v2.user_team_create" => "UserTeamCreate",
      "v2.user_team_included" => "UserTeamIncluded",
      "v2.user_team_permission" => "UserTeamPermission",
      "v2.user_team_permission_attributes" => "UserTeamPermissionAttributes",
      "v2.user_team_permission_type" => "UserTeamPermissionType",
      "v2.user_team_relationships" => "UserTeamRelationships",
      "v2.user_team_request" => "UserTeamRequest",
      "v2.user_team_response" => "UserTeamResponse",
      "v2.user_team_role" => "UserTeamRole",
      "v2.user_teams_response" => "UserTeamsResponse",
      "v2.user_team_team_type" => "UserTeamTeamType",
      "v2.user_team_type" => "UserTeamType",
      "v2.user_team_update" => "UserTeamUpdate",
      "v2.user_team_update_request" => "UserTeamUpdateRequest",
      "v2.user_team_user_type" => "UserTeamUserType",
      "v2.user_update_attributes" => "UserUpdateAttributes",
      "v2.user_update_data" => "UserUpdateData",
      "v2.user_update_request" => "UserUpdateRequest",
      "v2.widget_live_span" => "WidgetLiveSpan",
    # APIs
    "v1.authentication_api" => "AuthenticationAPI",
    "v1.aws_integration_api" => "AWSIntegrationAPI",
    "v1.aws_logs_integration_api" => "AWSLogsIntegrationAPI",
    "v1.azure_integration_api" => "AzureIntegrationAPI",
    "v1.dashboard_lists_api" => "DashboardListsAPI",
    "v1.dashboards_api" => "DashboardsAPI",
    "v1.downtimes_api" => "DowntimesAPI",
    "v1.events_api" => "EventsAPI",
    "v1.gcp_integration_api" => "GCPIntegrationAPI",
    "v1.hosts_api" => "HostsAPI",
    "v1.ip_ranges_api" => "IPRangesAPI",
    "v1.key_management_api" => "KeyManagementAPI",
    "v1.logs_api" => "LogsAPI",
    "v1.logs_indexes_api" => "LogsIndexesAPI",
    "v1.logs_pipelines_api" => "LogsPipelinesAPI",
    "v1.metrics_api" => "MetricsAPI",
    "v1.monitors_api" => "MonitorsAPI",
    "v1.notebooks_api" => "NotebooksAPI",
    "v1.organizations_api" => "OrganizationsAPI",
    "v1.pager_duty_integration_api" => "PagerDutyIntegrationAPI",
    "v1.security_monitoring_api" => "SecurityMonitoringAPI",
    "v1.service_checks_api" => "ServiceChecksAPI",
    "v1.service_level_objective_corrections_api" => "ServiceLevelObjectiveCorrectionsAPI",
    "v1.service_level_objectives_api" => "ServiceLevelObjectivesAPI",
    "v1.slack_integration_api" => "SlackIntegrationAPI",
    "v1.snapshots_api" => "SnapshotsAPI",
    "v1.synthetics_api" => "SyntheticsAPI",
    "v1.tags_api" => "TagsAPI",
    "v1.usage_metering_api" => "UsageMeteringAPI",
    "v1.users_api" => "UsersAPI",
    "v1.webhooks_integration_api" => "WebhooksIntegrationAPI",
    "v2.api_management_api" => "APIManagementAPI",
    "v2.apm_retention_filters_api" => "APMRetentionFiltersAPI",
    "v2.audit_api" => "AuditAPI",
    "v2.authn_mappings_api" => "AuthNMappingsAPI",
    "v2.case_management_api" => "CaseManagementAPI",
    "v2.ci_visibility_pipelines_api" => "CIVisibilityPipelinesAPI",
    "v2.ci_visibility_tests_api" => "CIVisibilityTestsAPI",
    "v2.cloud_cost_management_api" => "CloudCostManagementAPI",
    "v2.cloudflare_integration_api" => "CloudflareIntegrationAPI",
    "v2.confluent_cloud_api" => "ConfluentCloudAPI",
    "v2.container_images_api" => "ContainerImagesAPI",
    "v2.containers_api" => "ContainersAPI",
    "v2.csm_threats_api" => "CSMThreatsAPI",
    "v2.dashboard_lists_api" => "DashboardListsAPI",
    "v2.dora_metrics_api" => "DORAMetricsAPI",
    "v2.downtimes_api" => "DowntimesAPI",
    "v2.events_api" => "EventsAPI",
    "v2.fastly_integration_api" => "FastlyIntegrationAPI",
    "v2.gcp_integration_api" => "GCPIntegrationAPI",
    "v2.incident_services_api" => "IncidentServicesAPI",
    "v2.incident_teams_api" => "IncidentTeamsAPI",
    "v2.incidents_api" => "IncidentsAPI",
    "v2.ip_allowlist_api" => "IPAllowlistAPI",
    "v2.key_management_api" => "KeyManagementAPI",
    "v2.logs_api" => "LogsAPI",
    "v2.logs_archives_api" => "LogsArchivesAPI",
    "v2.logs_custom_destinations_api" => "LogsCustomDestinationsAPI",
    "v2.logs_metrics_api" => "LogsMetricsAPI",
    "v2.metrics_api" => "MetricsAPI",
    "v2.monitors_api" => "MonitorsAPI",
    "v2.okta_integration_api" => "OktaIntegrationAPI",
    "v2.opsgenie_integration_api" => "OpsgenieIntegrationAPI",
    "v2.organizations_api" => "OrganizationsAPI",
    "v2.powerpack_api" => "PowerpackAPI",
    "v2.processes_api" => "ProcessesAPI",
    "v2.restriction_policies_api" => "RestrictionPoliciesAPI",
    "v2.roles_api" => "RolesAPI",
    "v2.rum_api" => "RUMAPI",
    "v2.security_monitoring_api" => "SecurityMonitoringAPI",
    "v2.sensitive_data_scanner_api" => "SensitiveDataScannerAPI",
    "v2.service_accounts_api" => "ServiceAccountsAPI",
    "v2.service_definition_api" => "ServiceDefinitionAPI",
    "v2.service_level_objectives_api" => "ServiceLevelObjectivesAPI",
    "v2.service_scorecards_api" => "ServiceScorecardsAPI",
    "v2.spans_api" => "SpansAPI",
    "v2.spans_metrics_api" => "SpansMetricsAPI",
    "v2.synthetics_api" => "SyntheticsAPI",
    "v2.teams_api" => "TeamsAPI",
    "v2.usage_metering_api" => "UsageMeteringAPI",
    "v2.users_api" => "UsersAPI"
    }
end