1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520
// This file is @generated by prost-build.
/// Message that contains the resource name and display name of a folder
/// resource.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Folder {
/// Full resource name of this folder. See:
/// <https://cloud.google.com/apis/design/resource_names#full_resource_name>
#[prost(string, tag = "1")]
pub resource_folder: ::prost::alloc::string::String,
/// The user defined display name for this folder.
#[prost(string, tag = "2")]
pub resource_folder_display_name: ::prost::alloc::string::String,
}
/// User specified security marks that are attached to the parent Security
/// Command Center resource. Security marks are scoped within a Security Command
/// Center organization -- they can be modified and viewed by all users who have
/// proper permissions on the organization.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityMarks {
/// The relative resource name of the SecurityMarks. See:
/// <https://cloud.google.com/apis/design/resource_names#relative_resource_name>
/// Examples:
/// "organizations/{organization_id}/assets/{asset_id}/securityMarks"
/// "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks".
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Mutable user specified security marks belonging to the parent resource.
/// Constraints are as follows:
///
/// * Keys and values are treated as case insensitive
/// * Keys must be between 1 - 256 characters (inclusive)
/// * Keys must be letters, numbers, underscores, or dashes
/// * Values have leading and trailing whitespace trimmed, remaining
/// characters must be between 1 - 4096 characters (inclusive)
#[prost(btree_map = "string, string", tag = "2")]
pub marks: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// The canonical name of the marks.
/// Examples:
/// "organizations/{organization_id}/assets/{asset_id}/securityMarks"
/// "folders/{folder_id}/assets/{asset_id}/securityMarks"
/// "projects/{project_number}/assets/{asset_id}/securityMarks"
/// "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks"
/// "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks"
/// "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks"
#[prost(string, tag = "3")]
pub canonical_name: ::prost::alloc::string::String,
}
/// Security Command Center representation of a Google Cloud
/// resource.
///
/// The Asset is a Security Command Center resource that captures information
/// about a single Google Cloud resource. All modifications to an Asset are only
/// within the context of Security Command Center and don't affect the referenced
/// Google Cloud resource.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Asset {
/// The relative resource name of this asset. See:
/// <https://cloud.google.com/apis/design/resource_names#relative_resource_name>
/// Example:
/// "organizations/{organization_id}/assets/{asset_id}".
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Security Command Center managed properties. These properties are managed by
/// Security Command Center and cannot be modified by the user.
#[prost(message, optional, tag = "2")]
pub security_center_properties: ::core::option::Option<
asset::SecurityCenterProperties,
>,
/// Resource managed properties. These properties are managed and defined by
/// the Google Cloud resource and cannot be modified by the user.
#[prost(btree_map = "string, message", tag = "7")]
pub resource_properties: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost_types::Value,
>,
/// User specified security marks. These marks are entirely managed by the user
/// and come from the SecurityMarks resource that belongs to the asset.
#[prost(message, optional, tag = "8")]
pub security_marks: ::core::option::Option<SecurityMarks>,
/// The time at which the asset was created in Security Command Center.
#[prost(message, optional, tag = "9")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// The time at which the asset was last updated or added in Cloud SCC.
#[prost(message, optional, tag = "10")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// Cloud IAM Policy information associated with the Google Cloud resource
/// described by the Security Command Center asset. This information is managed
/// and defined by the Google Cloud resource and cannot be modified by the
/// user.
#[prost(message, optional, tag = "11")]
pub iam_policy: ::core::option::Option<asset::IamPolicy>,
/// The canonical name of the resource. It's either
/// "organizations/{organization_id}/assets/{asset_id}",
/// "folders/{folder_id}/assets/{asset_id}" or
/// "projects/{project_number}/assets/{asset_id}", depending on the closest CRM
/// ancestor of the resource.
#[prost(string, tag = "13")]
pub canonical_name: ::prost::alloc::string::String,
}
/// Nested message and enum types in `Asset`.
pub mod asset {
/// Security Command Center managed properties. These properties are managed by
/// Security Command Center and cannot be modified by the user.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityCenterProperties {
/// The full resource name of the Google Cloud resource this asset
/// represents. This field is immutable after create time. See:
/// <https://cloud.google.com/apis/design/resource_names#full_resource_name>
#[prost(string, tag = "1")]
pub resource_name: ::prost::alloc::string::String,
/// The type of the Google Cloud resource. Examples include: APPLICATION,
/// PROJECT, and ORGANIZATION. This is a case insensitive field defined by
/// Security Command Center and/or the producer of the resource and is
/// immutable after create time.
#[prost(string, tag = "2")]
pub resource_type: ::prost::alloc::string::String,
/// The full resource name of the immediate parent of the resource. See:
/// <https://cloud.google.com/apis/design/resource_names#full_resource_name>
#[prost(string, tag = "3")]
pub resource_parent: ::prost::alloc::string::String,
/// The full resource name of the project the resource belongs to. See:
/// <https://cloud.google.com/apis/design/resource_names#full_resource_name>
#[prost(string, tag = "4")]
pub resource_project: ::prost::alloc::string::String,
/// Owners of the Google Cloud resource.
#[prost(string, repeated, tag = "5")]
pub resource_owners: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// The user defined display name for this resource.
#[prost(string, tag = "6")]
pub resource_display_name: ::prost::alloc::string::String,
/// The user defined display name for the parent of this resource.
#[prost(string, tag = "7")]
pub resource_parent_display_name: ::prost::alloc::string::String,
/// The user defined display name for the project of this resource.
#[prost(string, tag = "8")]
pub resource_project_display_name: ::prost::alloc::string::String,
/// Contains a Folder message for each folder in the assets ancestry.
/// The first folder is the deepest nested folder, and the last folder is the
/// folder directly under the Organization.
#[prost(message, repeated, tag = "10")]
pub folders: ::prost::alloc::vec::Vec<super::Folder>,
}
/// Cloud IAM Policy information associated with the Google Cloud resource
/// described by the Security Command Center asset. This information is managed
/// and defined by the Google Cloud resource and cannot be modified by the
/// user.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct IamPolicy {
/// The JSON representation of the Policy associated with the asset.
/// See <https://cloud.google.com/iam/docs/reference/rest/v1/Policy> for
/// format details.
#[prost(string, tag = "1")]
pub policy_blob: ::prost::alloc::string::String,
}
}
/// Security Command Center finding.
///
/// A finding is a record of assessment data (security, risk, health or privacy)
/// ingested into Security Command Center for presentation, notification,
/// analysis, policy testing, and enforcement. For example, an XSS vulnerability
/// in an App Engine application is a finding.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Finding {
/// The relative resource name of this finding. See:
/// <https://cloud.google.com/apis/design/resource_names#relative_resource_name>
/// Example:
/// "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}"
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The relative resource name of the source the finding belongs to. See:
/// <https://cloud.google.com/apis/design/resource_names#relative_resource_name>
/// This field is immutable after creation time.
/// For example:
/// "organizations/{organization_id}/sources/{source_id}"
#[prost(string, tag = "2")]
pub parent: ::prost::alloc::string::String,
/// For findings on Google Cloud resources, the full resource
/// name of the Google Cloud resource this finding is for. See:
/// <https://cloud.google.com/apis/design/resource_names#full_resource_name>
/// When the finding is for a non-Google Cloud resource, the resourceName can
/// be a customer or partner defined string. This field is immutable after
/// creation time.
#[prost(string, tag = "3")]
pub resource_name: ::prost::alloc::string::String,
/// The state of the finding.
#[prost(enumeration = "finding::State", tag = "4")]
pub state: i32,
/// The additional taxonomy group within findings from a given source.
/// This field is immutable after creation time.
/// Example: "XSS_FLASH_INJECTION"
#[prost(string, tag = "5")]
pub category: ::prost::alloc::string::String,
/// The URI that, if available, points to a web page outside of Security
/// Command Center where additional information about the finding can be found.
/// This field is guaranteed to be either empty or a well formed URL.
#[prost(string, tag = "6")]
pub external_uri: ::prost::alloc::string::String,
/// Source specific properties. These properties are managed by the source
/// that writes the finding. The key names in the source_properties map must be
/// between 1 and 255 characters, and must start with a letter and contain
/// alphanumeric characters or underscores only.
#[prost(btree_map = "string, message", tag = "7")]
pub source_properties: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost_types::Value,
>,
/// Output only. User specified security marks. These marks are entirely
/// managed by the user and come from the SecurityMarks resource that belongs
/// to the finding.
#[prost(message, optional, tag = "8")]
pub security_marks: ::core::option::Option<SecurityMarks>,
/// The time at which the event took place, or when an update to the finding
/// occurred. For example, if the finding represents an open firewall it would
/// capture the time the detector believes the firewall became open. The
/// accuracy is determined by the detector. If the finding were to be resolved
/// afterward, this time would reflect when the finding was resolved. Must not
/// be set to a value greater than the current timestamp.
#[prost(message, optional, tag = "9")]
pub event_time: ::core::option::Option<::prost_types::Timestamp>,
/// The time at which the finding was created in Security Command Center.
#[prost(message, optional, tag = "10")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// The severity of the finding. This field is managed by the source that
/// writes the finding.
#[prost(enumeration = "finding::Severity", tag = "13")]
pub severity: i32,
/// The canonical name of the finding. It's either
/// "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}",
/// "folders/{folder_id}/sources/{source_id}/findings/{finding_id}" or
/// "projects/{project_number}/sources/{source_id}/findings/{finding_id}",
/// depending on the closest CRM ancestor of the resource associated with the
/// finding.
#[prost(string, tag = "14")]
pub canonical_name: ::prost::alloc::string::String,
}
/// Nested message and enum types in `Finding`.
pub mod finding {
/// The state of the finding.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// Unspecified state.
Unspecified = 0,
/// The finding requires attention and has not been addressed yet.
Active = 1,
/// The finding has been fixed, triaged as a non-issue or otherwise addressed
/// and is no longer active.
Inactive = 2,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
State::Unspecified => "STATE_UNSPECIFIED",
State::Active => "ACTIVE",
State::Inactive => "INACTIVE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"ACTIVE" => Some(Self::Active),
"INACTIVE" => Some(Self::Inactive),
_ => None,
}
}
}
/// The severity of the finding. This field is managed by the source that
/// writes the finding.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Severity {
/// No severity specified. The default value.
Unspecified = 0,
/// Critical severity.
Critical = 1,
/// High severity.
High = 2,
/// Medium severity.
Medium = 3,
/// Low severity.
Low = 4,
}
impl Severity {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Severity::Unspecified => "SEVERITY_UNSPECIFIED",
Severity::Critical => "CRITICAL",
Severity::High => "HIGH",
Severity::Medium => "MEDIUM",
Severity::Low => "LOW",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"SEVERITY_UNSPECIFIED" => Some(Self::Unspecified),
"CRITICAL" => Some(Self::Critical),
"HIGH" => Some(Self::High),
"MEDIUM" => Some(Self::Medium),
"LOW" => Some(Self::Low),
_ => None,
}
}
}
}
/// Information related to the Google Cloud resource.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Resource {
/// The full resource name of the resource. See:
/// <https://cloud.google.com/apis/design/resource_names#full_resource_name>
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The full resource name of project that the resource belongs to.
#[prost(string, tag = "2")]
pub project: ::prost::alloc::string::String,
/// The human readable name of project that the resource belongs to.
#[prost(string, tag = "3")]
pub project_display_name: ::prost::alloc::string::String,
/// The full resource name of resource's parent.
#[prost(string, tag = "4")]
pub parent: ::prost::alloc::string::String,
/// The human readable name of resource's parent.
#[prost(string, tag = "5")]
pub parent_display_name: ::prost::alloc::string::String,
/// Output only. Contains a Folder message for each folder in the assets ancestry.
/// The first folder is the deepest nested folder, and the last folder is the
/// folder directly under the Organization.
#[prost(message, repeated, tag = "7")]
pub folders: ::prost::alloc::vec::Vec<Folder>,
}
/// Security Command Center's Notification
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct NotificationMessage {
/// Name of the notification config that generated current notification.
#[prost(string, tag = "1")]
pub notification_config_name: ::prost::alloc::string::String,
/// The Cloud resource tied to the notification.
#[prost(message, optional, tag = "3")]
pub resource: ::core::option::Option<Resource>,
/// Notification Event.
#[prost(oneof = "notification_message::Event", tags = "2")]
pub event: ::core::option::Option<notification_message::Event>,
}
/// Nested message and enum types in `NotificationMessage`.
pub mod notification_message {
/// Notification Event.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Event {
/// If it's a Finding based notification config, this field will be
/// populated.
#[prost(message, tag = "2")]
Finding(super::Finding),
}
}
/// Response of asset discovery run
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct RunAssetDiscoveryResponse {
/// The state of an asset discovery run.
#[prost(enumeration = "run_asset_discovery_response::State", tag = "1")]
pub state: i32,
/// The duration between asset discovery run start and end
#[prost(message, optional, tag = "2")]
pub duration: ::core::option::Option<::prost_types::Duration>,
}
/// Nested message and enum types in `RunAssetDiscoveryResponse`.
pub mod run_asset_discovery_response {
/// The state of an asset discovery run.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// Asset discovery run state was unspecified.
Unspecified = 0,
/// Asset discovery run completed successfully.
Completed = 1,
/// Asset discovery run was cancelled with tasks still pending, as another
/// run for the same organization was started with a higher priority.
Superseded = 2,
/// Asset discovery run was killed and terminated.
Terminated = 3,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
State::Unspecified => "STATE_UNSPECIFIED",
State::Completed => "COMPLETED",
State::Superseded => "SUPERSEDED",
State::Terminated => "TERMINATED",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"COMPLETED" => Some(Self::Completed),
"SUPERSEDED" => Some(Self::Superseded),
"TERMINATED" => Some(Self::Terminated),
_ => None,
}
}
}
}
/// Security Command Center notification configs.
///
/// A notification config is a Security Command Center resource that contains the
/// configuration to send notifications for create/update events of findings,
/// assets and etc.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct NotificationConfig {
/// The relative resource name of this notification config. See:
/// <https://cloud.google.com/apis/design/resource_names#relative_resource_name>
/// Example:
/// "organizations/{organization_id}/notificationConfigs/notify_public_bucket".
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The description of the notification config (max of 1024 characters).
#[prost(string, tag = "2")]
pub description: ::prost::alloc::string::String,
/// The type of events the config is for, e.g. FINDING.
#[prost(enumeration = "notification_config::EventType", tag = "3")]
pub event_type: i32,
/// The Pub/Sub topic to send notifications to. Its format is
/// "projects/\[project_id\]/topics/\[topic\]".
#[prost(string, tag = "4")]
pub pubsub_topic: ::prost::alloc::string::String,
/// Output only. The service account that needs "pubsub.topics.publish"
/// permission to publish to the Pub/Sub topic.
#[prost(string, tag = "5")]
pub service_account: ::prost::alloc::string::String,
/// The config for triggering notifications.
#[prost(oneof = "notification_config::NotifyConfig", tags = "6")]
pub notify_config: ::core::option::Option<notification_config::NotifyConfig>,
}
/// Nested message and enum types in `NotificationConfig`.
pub mod notification_config {
/// The config for streaming-based notifications, which send each event as soon
/// as it is detected.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StreamingConfig {
/// Expression that defines the filter to apply across create/update events
/// of assets or findings as specified by the event type. The expression is a
/// list of zero or more restrictions combined via logical operators `AND`
/// and `OR`. Parentheses are supported, and `OR` has higher precedence than
/// `AND`.
///
/// Restrictions have the form `<field> <operator> <value>` and may have a
/// `-` character in front of them to indicate negation. The fields map to
/// those defined in the corresponding resource.
///
/// The supported operators are:
///
/// * `=` for all value types.
/// * `>`, `<`, `>=`, `<=` for integer values.
/// * `:`, meaning substring matching, for strings.
///
/// The supported value types are:
///
/// * string literals in quotes.
/// * integer literals without quotes.
/// * boolean literals `true` and `false` without quotes.
#[prost(string, tag = "1")]
pub filter: ::prost::alloc::string::String,
}
/// The type of events.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum EventType {
/// Unspecified event type.
Unspecified = 0,
/// Events for findings.
Finding = 1,
}
impl EventType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
EventType::Unspecified => "EVENT_TYPE_UNSPECIFIED",
EventType::Finding => "FINDING",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"EVENT_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"FINDING" => Some(Self::Finding),
_ => None,
}
}
}
/// The config for triggering notifications.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum NotifyConfig {
/// The config for triggering streaming-based notifications.
#[prost(message, tag = "6")]
StreamingConfig(StreamingConfig),
}
}
/// User specified settings that are attached to the Security Command
/// Center organization.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OrganizationSettings {
/// The relative resource name of the settings. See:
/// <https://cloud.google.com/apis/design/resource_names#relative_resource_name>
/// Example:
/// "organizations/{organization_id}/organizationSettings".
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// A flag that indicates if Asset Discovery should be enabled. If the flag is
/// set to `true`, then discovery of assets will occur. If it is set to `false,
/// all historical assets will remain, but discovery of future assets will not
/// occur.
#[prost(bool, tag = "2")]
pub enable_asset_discovery: bool,
/// The configuration used for Asset Discovery runs.
#[prost(message, optional, tag = "3")]
pub asset_discovery_config: ::core::option::Option<
organization_settings::AssetDiscoveryConfig,
>,
}
/// Nested message and enum types in `OrganizationSettings`.
pub mod organization_settings {
/// The configuration used for Asset Discovery runs.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AssetDiscoveryConfig {
/// The project ids to use for filtering asset discovery.
#[prost(string, repeated, tag = "1")]
pub project_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// The mode to use for filtering asset discovery.
#[prost(enumeration = "asset_discovery_config::InclusionMode", tag = "2")]
pub inclusion_mode: i32,
/// The folder ids to use for filtering asset discovery.
/// It consists of only digits, e.g., 756619654966.
#[prost(string, repeated, tag = "3")]
pub folder_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// Nested message and enum types in `AssetDiscoveryConfig`.
pub mod asset_discovery_config {
/// The mode of inclusion when running Asset Discovery.
/// Asset discovery can be limited by explicitly identifying projects to be
/// included or excluded. If INCLUDE_ONLY is set, then only those projects
/// within the organization and their children are discovered during asset
/// discovery. If EXCLUDE is set, then projects that don't match those
/// projects are discovered during asset discovery. If neither are set, then
/// all projects within the organization are discovered during asset
/// discovery.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum InclusionMode {
/// Unspecified. Setting the mode with this value will disable
/// inclusion/exclusion filtering for Asset Discovery.
Unspecified = 0,
/// Asset Discovery will capture only the resources within the projects
/// specified. All other resources will be ignored.
IncludeOnly = 1,
/// Asset Discovery will ignore all resources under the projects specified.
/// All other resources will be retrieved.
Exclude = 2,
}
impl InclusionMode {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
InclusionMode::Unspecified => "INCLUSION_MODE_UNSPECIFIED",
InclusionMode::IncludeOnly => "INCLUDE_ONLY",
InclusionMode::Exclude => "EXCLUDE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"INCLUSION_MODE_UNSPECIFIED" => Some(Self::Unspecified),
"INCLUDE_ONLY" => Some(Self::IncludeOnly),
"EXCLUDE" => Some(Self::Exclude),
_ => None,
}
}
}
}
}
/// Security Command Center finding source. A finding source
/// is an entity or a mechanism that can produce a finding. A source is like a
/// container of findings that come from the same scanner, logger, monitor, etc.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Source {
/// The relative resource name of this source. See:
/// <https://cloud.google.com/apis/design/resource_names#relative_resource_name>
/// Example:
/// "organizations/{organization_id}/sources/{source_id}"
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The source's display name.
/// A source's display name must be unique amongst its siblings, for example,
/// two sources with the same parent can't share the same display name.
/// The display name must have a length between 1 and 64 characters
/// (inclusive).
#[prost(string, tag = "2")]
pub display_name: ::prost::alloc::string::String,
/// The description of the source (max of 1024 characters).
/// Example:
/// "Web Security Scanner is a web security scanner for common
/// vulnerabilities in App Engine applications. It can automatically
/// scan and detect four common vulnerabilities, including cross-site-scripting
/// (XSS), Flash injection, mixed content (HTTP in HTTPS), and
/// outdated/insecure libraries."
#[prost(string, tag = "3")]
pub description: ::prost::alloc::string::String,
/// The canonical name of the finding. It's either
/// "organizations/{organization_id}/sources/{source_id}",
/// "folders/{folder_id}/sources/{source_id}" or
/// "projects/{project_number}/sources/{source_id}",
/// depending on the closest CRM ancestor of the resource associated with the
/// finding.
#[prost(string, tag = "14")]
pub canonical_name: ::prost::alloc::string::String,
}
/// Request message for creating a finding.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateFindingRequest {
/// Required. Resource name of the new finding's parent. Its format should be
/// "organizations/\[organization_id\]/sources/\[source_id\]".
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. Unique identifier provided by the client within the parent scope.
#[prost(string, tag = "2")]
pub finding_id: ::prost::alloc::string::String,
/// Required. The Finding being created. The name and security_marks will be ignored as
/// they are both output only fields on this resource.
#[prost(message, optional, tag = "3")]
pub finding: ::core::option::Option<Finding>,
}
/// Request message for creating a notification config.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateNotificationConfigRequest {
/// Required. Resource name of the new notification config's parent. Its format is
/// "organizations/\[organization_id\]".
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. Unique identifier provided by the client within the parent scope.
/// It must be between 1 and 128 characters, and contains alphanumeric
/// characters, underscores or hyphens only.
#[prost(string, tag = "2")]
pub config_id: ::prost::alloc::string::String,
/// Required. The notification config being created. The name and the service account
/// will be ignored as they are both output only fields on this resource.
#[prost(message, optional, tag = "3")]
pub notification_config: ::core::option::Option<NotificationConfig>,
}
/// Request message for creating a source.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateSourceRequest {
/// Required. Resource name of the new source's parent. Its format should be
/// "organizations/\[organization_id\]".
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. The Source being created, only the display_name and description will be
/// used. All other fields will be ignored.
#[prost(message, optional, tag = "2")]
pub source: ::core::option::Option<Source>,
}
/// Request message for deleting a notification config.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteNotificationConfigRequest {
/// Required. Name of the notification config to delete. Its format is
/// "organizations/\[organization_id\]/notificationConfigs/\[config_id\]".
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for getting a notification config.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetNotificationConfigRequest {
/// Required. Name of the notification config to get. Its format is
/// "organizations/\[organization_id\]/notificationConfigs/\[config_id\]".
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for getting organization settings.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetOrganizationSettingsRequest {
/// Required. Name of the organization to get organization settings for. Its format is
/// "organizations/\[organization_id\]/organizationSettings".
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for getting a source.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetSourceRequest {
/// Required. Relative resource name of the source. Its format is
/// "organizations/\[organization_id\]/source/\[source_id\]".
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for grouping by assets.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GroupAssetsRequest {
/// Required. Name of the organization to groupBy. Its format is
/// "organizations/\[organization_id\], folders/\[folder_id\], or
/// projects/\[project_id\]".
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Expression that defines the filter to apply across assets.
/// The expression is a list of zero or more restrictions combined via logical
/// operators `AND` and `OR`.
/// Parentheses are supported, and `OR` has higher precedence than `AND`.
///
/// Restrictions have the form `<field> <operator> <value>` and may have a `-`
/// character in front of them to indicate negation. The fields map to those
/// defined in the Asset resource. Examples include:
///
/// * name
/// * security_center_properties.resource_name
/// * resource_properties.a_property
/// * security_marks.marks.marka
///
/// The supported operators are:
///
/// * `=` for all value types.
/// * `>`, `<`, `>=`, `<=` for integer values.
/// * `:`, meaning substring matching, for strings.
///
/// The supported value types are:
///
/// * string literals in quotes.
/// * integer literals without quotes.
/// * boolean literals `true` and `false` without quotes.
///
/// The following field and operator combinations are supported:
///
/// * name: `=`
/// * update_time: `=`, `>`, `<`, `>=`, `<=`
///
/// Usage: This should be milliseconds since epoch or an RFC3339 string.
/// Examples:
/// `update_time = "2019-06-10T16:07:18-07:00"`
/// `update_time = 1560208038000`
///
/// * create_time: `=`, `>`, `<`, `>=`, `<=`
///
/// Usage: This should be milliseconds since epoch or an RFC3339 string.
/// Examples:
/// `create_time = "2019-06-10T16:07:18-07:00"`
/// `create_time = 1560208038000`
///
/// * iam_policy.policy_blob: `=`, `:`
/// * resource_properties: `=`, `:`, `>`, `<`, `>=`, `<=`
/// * security_marks.marks: `=`, `:`
/// * security_center_properties.resource_name: `=`, `:`
/// * security_center_properties.resource_name_display_name: `=`, `:`
/// * security_center_properties.resource_type: `=`, `:`
/// * security_center_properties.resource_parent: `=`, `:`
/// * security_center_properties.resource_parent_display_name: `=`, `:`
/// * security_center_properties.resource_project: `=`, `:`
/// * security_center_properties.resource_project_display_name: `=`, `:`
/// * security_center_properties.resource_owners: `=`, `:`
///
/// For example, `resource_properties.size = 100` is a valid filter string.
///
/// Use a partial match on the empty string to filter based on a property
/// existing: `resource_properties.my_property : ""`
///
/// Use a negated partial match on the empty string to filter based on a
/// property not existing: `-resource_properties.my_property : ""`
#[prost(string, tag = "2")]
pub filter: ::prost::alloc::string::String,
/// Required. Expression that defines what assets fields to use for grouping. The string
/// value should follow SQL syntax: comma separated list of fields. For
/// example:
/// "security_center_properties.resource_project,security_center_properties.project".
///
/// The following fields are supported when compare_duration is not set:
///
/// * security_center_properties.resource_project
/// * security_center_properties.resource_project_display_name
/// * security_center_properties.resource_type
/// * security_center_properties.resource_parent
/// * security_center_properties.resource_parent_display_name
///
/// The following fields are supported when compare_duration is set:
///
/// * security_center_properties.resource_type
/// * security_center_properties.resource_project_display_name
/// * security_center_properties.resource_parent_display_name
#[prost(string, tag = "3")]
pub group_by: ::prost::alloc::string::String,
/// When compare_duration is set, the GroupResult's "state_change" property is
/// updated to indicate whether the asset was added, removed, or remained
/// present during the compare_duration period of time that precedes the
/// read_time. This is the time between (read_time - compare_duration) and
/// read_time.
///
/// The state change value is derived based on the presence of the asset at the
/// two points in time. Intermediate state changes between the two times don't
/// affect the result. For example, the results aren't affected if the asset is
/// removed and re-created again.
///
/// Possible "state_change" values when compare_duration is specified:
///
/// * "ADDED": indicates that the asset was not present at the start of
/// compare_duration, but present at reference_time.
/// * "REMOVED": indicates that the asset was present at the start of
/// compare_duration, but not present at reference_time.
/// * "ACTIVE": indicates that the asset was present at both the
/// start and the end of the time period defined by
/// compare_duration and reference_time.
///
/// If compare_duration is not specified, then the only possible state_change
/// is "UNUSED", which will be the state_change set for all assets present at
/// read_time.
///
/// If this field is set then `state_change` must be a specified field in
/// `group_by`.
#[prost(message, optional, tag = "4")]
pub compare_duration: ::core::option::Option<::prost_types::Duration>,
/// Time used as a reference point when filtering assets. The filter is limited
/// to assets existing at the supplied time and their values are those at that
/// specific time. Absence of this field will default to the API's version of
/// NOW.
#[prost(message, optional, tag = "5")]
pub read_time: ::core::option::Option<::prost_types::Timestamp>,
/// The value returned by the last `GroupAssetsResponse`; indicates
/// that this is a continuation of a prior `GroupAssets` call, and that the
/// system should return the next page of data.
#[prost(string, tag = "7")]
pub page_token: ::prost::alloc::string::String,
/// The maximum number of results to return in a single response. Default is
/// 10, minimum is 1, maximum is 1000.
#[prost(int32, tag = "8")]
pub page_size: i32,
}
/// Response message for grouping by assets.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GroupAssetsResponse {
/// Group results. There exists an element for each existing unique
/// combination of property/values. The element contains a count for the number
/// of times those specific property/values appear.
#[prost(message, repeated, tag = "1")]
pub group_by_results: ::prost::alloc::vec::Vec<GroupResult>,
/// Time used for executing the groupBy request.
#[prost(message, optional, tag = "2")]
pub read_time: ::core::option::Option<::prost_types::Timestamp>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results.
#[prost(string, tag = "3")]
pub next_page_token: ::prost::alloc::string::String,
/// The total number of results matching the query.
#[prost(int32, tag = "4")]
pub total_size: i32,
}
/// Request message for grouping by findings.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GroupFindingsRequest {
/// Required. Name of the source to groupBy. Its format is
/// "organizations/\[organization_id\]/sources/\[source_id\]",
/// folders/\[folder_id\]/sources/\[source_id\], or
/// projects/\[project_id\]/sources/\[source_id\]. To groupBy across all sources
/// provide a source_id of `-`. For example:
/// organizations/{organization_id}/sources/-, folders/{folder_id}/sources/-,
/// or projects/{project_id}/sources/-
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Expression that defines the filter to apply across findings.
/// The expression is a list of one or more restrictions combined via logical
/// operators `AND` and `OR`.
/// Parentheses are supported, and `OR` has higher precedence than `AND`.
///
/// Restrictions have the form `<field> <operator> <value>` and may have a `-`
/// character in front of them to indicate negation. Examples include:
///
/// * name
/// * source_properties.a_property
/// * security_marks.marks.marka
///
/// The supported operators are:
///
/// * `=` for all value types.
/// * `>`, `<`, `>=`, `<=` for integer values.
/// * `:`, meaning substring matching, for strings.
///
/// The supported value types are:
///
/// * string literals in quotes.
/// * integer literals without quotes.
/// * boolean literals `true` and `false` without quotes.
///
/// The following field and operator combinations are supported:
///
/// * name: `=`
/// * parent: `=`, `:`
/// * resource_name: `=`, `:`
/// * state: `=`, `:`
/// * category: `=`, `:`
/// * external_uri: `=`, `:`
/// * event_time: `=`, `>`, `<`, `>=`, `<=`
/// * severity: `=`, `:`
///
/// Usage: This should be milliseconds since epoch or an RFC3339 string.
/// Examples:
/// `event_time = "2019-06-10T16:07:18-07:00"`
/// `event_time = 1560208038000`
///
/// * security_marks.marks: `=`, `:`
/// * source_properties: `=`, `:`, `>`, `<`, `>=`, `<=`
///
/// For example, `source_properties.size = 100` is a valid filter string.
///
/// Use a partial match on the empty string to filter based on a property
/// existing: `source_properties.my_property : ""`
///
/// Use a negated partial match on the empty string to filter based on a
/// property not existing: `-source_properties.my_property : ""`
#[prost(string, tag = "2")]
pub filter: ::prost::alloc::string::String,
/// Required. Expression that defines what assets fields to use for grouping (including
/// `state_change`). The string value should follow SQL syntax: comma separated
/// list of fields. For example: "parent,resource_name".
///
/// The following fields are supported:
///
/// * resource_name
/// * category
/// * state
/// * parent
/// * severity
///
/// The following fields are supported when compare_duration is set:
///
/// * state_change
#[prost(string, tag = "3")]
pub group_by: ::prost::alloc::string::String,
/// Time used as a reference point when filtering findings. The filter is
/// limited to findings existing at the supplied time and their values are
/// those at that specific time. Absence of this field will default to the
/// API's version of NOW.
#[prost(message, optional, tag = "4")]
pub read_time: ::core::option::Option<::prost_types::Timestamp>,
/// When compare_duration is set, the GroupResult's "state_change" attribute is
/// updated to indicate whether the finding had its state changed, the
/// finding's state remained unchanged, or if the finding was added during the
/// compare_duration period of time that precedes the read_time. This is the
/// time between (read_time - compare_duration) and read_time.
///
/// The state_change value is derived based on the presence and state of the
/// finding at the two points in time. Intermediate state changes between the
/// two times don't affect the result. For example, the results aren't affected
/// if the finding is made inactive and then active again.
///
/// Possible "state_change" values when compare_duration is specified:
///
/// * "CHANGED": indicates that the finding was present and matched the given
/// filter at the start of compare_duration, but changed its
/// state at read_time.
/// * "UNCHANGED": indicates that the finding was present and matched the given
/// filter at the start of compare_duration and did not change
/// state at read_time.
/// * "ADDED": indicates that the finding did not match the given filter or
/// was not present at the start of compare_duration, but was
/// present at read_time.
/// * "REMOVED": indicates that the finding was present and matched the
/// filter at the start of compare_duration, but did not match
/// the filter at read_time.
///
/// If compare_duration is not specified, then the only possible state_change
/// is "UNUSED", which will be the state_change set for all findings present
/// at read_time.
///
/// If this field is set then `state_change` must be a specified field in
/// `group_by`.
#[prost(message, optional, tag = "5")]
pub compare_duration: ::core::option::Option<::prost_types::Duration>,
/// The value returned by the last `GroupFindingsResponse`; indicates
/// that this is a continuation of a prior `GroupFindings` call, and
/// that the system should return the next page of data.
#[prost(string, tag = "7")]
pub page_token: ::prost::alloc::string::String,
/// The maximum number of results to return in a single response. Default is
/// 10, minimum is 1, maximum is 1000.
#[prost(int32, tag = "8")]
pub page_size: i32,
}
/// Response message for group by findings.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GroupFindingsResponse {
/// Group results. There exists an element for each existing unique
/// combination of property/values. The element contains a count for the number
/// of times those specific property/values appear.
#[prost(message, repeated, tag = "1")]
pub group_by_results: ::prost::alloc::vec::Vec<GroupResult>,
/// Time used for executing the groupBy request.
#[prost(message, optional, tag = "2")]
pub read_time: ::core::option::Option<::prost_types::Timestamp>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results.
#[prost(string, tag = "3")]
pub next_page_token: ::prost::alloc::string::String,
/// The total number of results matching the query.
#[prost(int32, tag = "4")]
pub total_size: i32,
}
/// Result containing the properties and count of a groupBy request.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GroupResult {
/// Properties matching the groupBy fields in the request.
#[prost(btree_map = "string, message", tag = "1")]
pub properties: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost_types::Value,
>,
/// Total count of resources for the given properties.
#[prost(int64, tag = "2")]
pub count: i64,
}
/// Request message for listing notification configs.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListNotificationConfigsRequest {
/// Required. Name of the organization to list notification configs.
/// Its format is "organizations/\[organization_id\]".
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The value returned by the last `ListNotificationConfigsResponse`; indicates
/// that this is a continuation of a prior `ListNotificationConfigs` call, and
/// that the system should return the next page of data.
#[prost(string, tag = "2")]
pub page_token: ::prost::alloc::string::String,
/// The maximum number of results to return in a single response. Default is
/// 10, minimum is 1, maximum is 1000.
#[prost(int32, tag = "3")]
pub page_size: i32,
}
/// Response message for listing notification configs.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListNotificationConfigsResponse {
/// Notification configs belonging to the requested parent.
#[prost(message, repeated, tag = "1")]
pub notification_configs: ::prost::alloc::vec::Vec<NotificationConfig>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// Request message for listing sources.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListSourcesRequest {
/// Required. Resource name of the parent of sources to list. Its format should be
/// "organizations/\[organization_id\], folders/\[folder_id\], or
/// projects/\[project_id\]".
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The value returned by the last `ListSourcesResponse`; indicates
/// that this is a continuation of a prior `ListSources` call, and
/// that the system should return the next page of data.
#[prost(string, tag = "2")]
pub page_token: ::prost::alloc::string::String,
/// The maximum number of results to return in a single response. Default is
/// 10, minimum is 1, maximum is 1000.
#[prost(int32, tag = "7")]
pub page_size: i32,
}
/// Response message for listing sources.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListSourcesResponse {
/// Sources belonging to the requested parent.
#[prost(message, repeated, tag = "1")]
pub sources: ::prost::alloc::vec::Vec<Source>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// Request message for listing assets.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAssetsRequest {
/// Required. Name of the organization assets should belong to. Its format is
/// "organizations/\[organization_id\], folders/\[folder_id\], or
/// projects/\[project_id\]".
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Expression that defines the filter to apply across assets.
/// The expression is a list of zero or more restrictions combined via logical
/// operators `AND` and `OR`.
/// Parentheses are supported, and `OR` has higher precedence than `AND`.
///
/// Restrictions have the form `<field> <operator> <value>` and may have a `-`
/// character in front of them to indicate negation. The fields map to those
/// defined in the Asset resource. Examples include:
///
/// * name
/// * security_center_properties.resource_name
/// * resource_properties.a_property
/// * security_marks.marks.marka
///
/// The supported operators are:
///
/// * `=` for all value types.
/// * `>`, `<`, `>=`, `<=` for integer values.
/// * `:`, meaning substring matching, for strings.
///
/// The supported value types are:
///
/// * string literals in quotes.
/// * integer literals without quotes.
/// * boolean literals `true` and `false` without quotes.
///
/// The following are the allowed field and operator combinations:
///
/// * name: `=`
/// * update_time: `=`, `>`, `<`, `>=`, `<=`
///
/// Usage: This should be milliseconds since epoch or an RFC3339 string.
/// Examples:
/// `update_time = "2019-06-10T16:07:18-07:00"`
/// `update_time = 1560208038000`
///
/// * create_time: `=`, `>`, `<`, `>=`, `<=`
///
/// Usage: This should be milliseconds since epoch or an RFC3339 string.
/// Examples:
/// `create_time = "2019-06-10T16:07:18-07:00"`
/// `create_time = 1560208038000`
///
/// * iam_policy.policy_blob: `=`, `:`
/// * resource_properties: `=`, `:`, `>`, `<`, `>=`, `<=`
/// * security_marks.marks: `=`, `:`
/// * security_center_properties.resource_name: `=`, `:`
/// * security_center_properties.resource_display_name: `=`, `:`
/// * security_center_properties.resource_type: `=`, `:`
/// * security_center_properties.resource_parent: `=`, `:`
/// * security_center_properties.resource_parent_display_name: `=`, `:`
/// * security_center_properties.resource_project: `=`, `:`
/// * security_center_properties.resource_project_display_name: `=`, `:`
/// * security_center_properties.resource_owners: `=`, `:`
///
/// For example, `resource_properties.size = 100` is a valid filter string.
///
/// Use a partial match on the empty string to filter based on a property
/// existing: `resource_properties.my_property : ""`
///
/// Use a negated partial match on the empty string to filter based on a
/// property not existing: `-resource_properties.my_property : ""`
#[prost(string, tag = "2")]
pub filter: ::prost::alloc::string::String,
/// Expression that defines what fields and order to use for sorting. The
/// string value should follow SQL syntax: comma separated list of fields. For
/// example: "name,resource_properties.a_property". The default sorting order
/// is ascending. To specify descending order for a field, a suffix " desc"
/// should be appended to the field name. For example: "name
/// desc,resource_properties.a_property". Redundant space characters in the
/// syntax are insignificant. "name desc,resource_properties.a_property" and "
/// name desc , resource_properties.a_property " are equivalent.
///
/// The following fields are supported:
/// name
/// update_time
/// resource_properties
/// security_marks.marks
/// security_center_properties.resource_name
/// security_center_properties.resource_display_name
/// security_center_properties.resource_parent
/// security_center_properties.resource_parent_display_name
/// security_center_properties.resource_project
/// security_center_properties.resource_project_display_name
/// security_center_properties.resource_type
#[prost(string, tag = "3")]
pub order_by: ::prost::alloc::string::String,
/// Time used as a reference point when filtering assets. The filter is limited
/// to assets existing at the supplied time and their values are those at that
/// specific time. Absence of this field will default to the API's version of
/// NOW.
#[prost(message, optional, tag = "4")]
pub read_time: ::core::option::Option<::prost_types::Timestamp>,
/// When compare_duration is set, the ListAssetsResult's "state_change"
/// attribute is updated to indicate whether the asset was added, removed, or
/// remained present during the compare_duration period of time that precedes
/// the read_time. This is the time between (read_time - compare_duration) and
/// read_time.
///
/// The state_change value is derived based on the presence of the asset at the
/// two points in time. Intermediate state changes between the two times don't
/// affect the result. For example, the results aren't affected if the asset is
/// removed and re-created again.
///
/// Possible "state_change" values when compare_duration is specified:
///
/// * "ADDED": indicates that the asset was not present at the start of
/// compare_duration, but present at read_time.
/// * "REMOVED": indicates that the asset was present at the start of
/// compare_duration, but not present at read_time.
/// * "ACTIVE": indicates that the asset was present at both the
/// start and the end of the time period defined by
/// compare_duration and read_time.
///
/// If compare_duration is not specified, then the only possible state_change
/// is "UNUSED", which will be the state_change set for all assets present at
/// read_time.
#[prost(message, optional, tag = "5")]
pub compare_duration: ::core::option::Option<::prost_types::Duration>,
/// A field mask to specify the ListAssetsResult fields to be listed in the
/// response.
/// An empty field mask will list all fields.
#[prost(message, optional, tag = "7")]
pub field_mask: ::core::option::Option<::prost_types::FieldMask>,
/// The value returned by the last `ListAssetsResponse`; indicates
/// that this is a continuation of a prior `ListAssets` call, and
/// that the system should return the next page of data.
#[prost(string, tag = "8")]
pub page_token: ::prost::alloc::string::String,
/// The maximum number of results to return in a single response. Default is
/// 10, minimum is 1, maximum is 1000.
#[prost(int32, tag = "9")]
pub page_size: i32,
}
/// Response message for listing assets.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAssetsResponse {
/// Assets matching the list request.
#[prost(message, repeated, tag = "1")]
pub list_assets_results: ::prost::alloc::vec::Vec<
list_assets_response::ListAssetsResult,
>,
/// Time used for executing the list request.
#[prost(message, optional, tag = "2")]
pub read_time: ::core::option::Option<::prost_types::Timestamp>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results.
#[prost(string, tag = "3")]
pub next_page_token: ::prost::alloc::string::String,
/// The total number of assets matching the query.
#[prost(int32, tag = "4")]
pub total_size: i32,
}
/// Nested message and enum types in `ListAssetsResponse`.
pub mod list_assets_response {
/// Result containing the Asset and its State.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAssetsResult {
/// Asset matching the search request.
#[prost(message, optional, tag = "1")]
pub asset: ::core::option::Option<super::Asset>,
/// State change of the asset between the points in time.
#[prost(enumeration = "list_assets_result::StateChange", tag = "2")]
pub state_change: i32,
}
/// Nested message and enum types in `ListAssetsResult`.
pub mod list_assets_result {
/// The change in state of the asset.
///
/// When querying across two points in time this describes
/// the change between the two points: ADDED, REMOVED, or ACTIVE.
/// If there was no compare_duration supplied in the request the state change
/// will be: UNUSED
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum StateChange {
/// State change is unused, this is the canonical default for this enum.
Unused = 0,
/// Asset was added between the points in time.
Added = 1,
/// Asset was removed between the points in time.
Removed = 2,
/// Asset was present at both point(s) in time.
Active = 3,
}
impl StateChange {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
StateChange::Unused => "UNUSED",
StateChange::Added => "ADDED",
StateChange::Removed => "REMOVED",
StateChange::Active => "ACTIVE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"UNUSED" => Some(Self::Unused),
"ADDED" => Some(Self::Added),
"REMOVED" => Some(Self::Removed),
"ACTIVE" => Some(Self::Active),
_ => None,
}
}
}
}
}
/// Request message for listing findings.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListFindingsRequest {
/// Required. Name of the source the findings belong to. Its format is
/// "organizations/\[organization_id\]/sources/\[source_id\],
/// folders/\[folder_id\]/sources/\[source_id\], or
/// projects/\[project_id\]/sources/\[source_id\]". To list across all sources
/// provide a source_id of `-`. For example:
/// organizations/{organization_id}/sources/-, folders/{folder_id}/sources/- or
/// projects/{projects_id}/sources/-
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Expression that defines the filter to apply across findings.
/// The expression is a list of one or more restrictions combined via logical
/// operators `AND` and `OR`.
/// Parentheses are supported, and `OR` has higher precedence than `AND`.
///
/// Restrictions have the form `<field> <operator> <value>` and may have a `-`
/// character in front of them to indicate negation. Examples include:
///
/// * name
/// * source_properties.a_property
/// * security_marks.marks.marka
///
/// The supported operators are:
///
/// * `=` for all value types.
/// * `>`, `<`, `>=`, `<=` for integer values.
/// * `:`, meaning substring matching, for strings.
///
/// The supported value types are:
///
/// * string literals in quotes.
/// * integer literals without quotes.
/// * boolean literals `true` and `false` without quotes.
///
/// The following field and operator combinations are supported:
///
/// * name: `=`
/// * parent: `=`, `:`
/// * resource_name: `=`, `:`
/// * state: `=`, `:`
/// * category: `=`, `:`
/// * external_uri: `=`, `:`
/// * event_time: `=`, `>`, `<`, `>=`, `<=`
/// * severity: `=`, `:`
///
/// Usage: This should be milliseconds since epoch or an RFC3339 string.
/// Examples:
/// `event_time = "2019-06-10T16:07:18-07:00"`
/// `event_time = 1560208038000`
///
/// security_marks.marks: `=`, `:`
/// source_properties: `=`, `:`, `>`, `<`, `>=`, `<=`
///
/// For example, `source_properties.size = 100` is a valid filter string.
///
/// Use a partial match on the empty string to filter based on a property
/// existing: `source_properties.my_property : ""`
///
/// Use a negated partial match on the empty string to filter based on a
/// property not existing: `-source_properties.my_property : ""`
#[prost(string, tag = "2")]
pub filter: ::prost::alloc::string::String,
/// Expression that defines what fields and order to use for sorting. The
/// string value should follow SQL syntax: comma separated list of fields. For
/// example: "name,resource_properties.a_property". The default sorting order
/// is ascending. To specify descending order for a field, a suffix " desc"
/// should be appended to the field name. For example: "name
/// desc,source_properties.a_property". Redundant space characters in the
/// syntax are insignificant. "name desc,source_properties.a_property" and "
/// name desc , source_properties.a_property " are equivalent.
///
/// The following fields are supported:
/// name
/// parent
/// state
/// category
/// resource_name
/// event_time
/// source_properties
/// security_marks.marks
#[prost(string, tag = "3")]
pub order_by: ::prost::alloc::string::String,
/// Time used as a reference point when filtering findings. The filter is
/// limited to findings existing at the supplied time and their values are
/// those at that specific time. Absence of this field will default to the
/// API's version of NOW.
#[prost(message, optional, tag = "4")]
pub read_time: ::core::option::Option<::prost_types::Timestamp>,
/// When compare_duration is set, the ListFindingsResult's "state_change"
/// attribute is updated to indicate whether the finding had its state changed,
/// the finding's state remained unchanged, or if the finding was added in any
/// state during the compare_duration period of time that precedes the
/// read_time. This is the time between (read_time - compare_duration) and
/// read_time.
///
/// The state_change value is derived based on the presence and state of the
/// finding at the two points in time. Intermediate state changes between the
/// two times don't affect the result. For example, the results aren't affected
/// if the finding is made inactive and then active again.
///
/// Possible "state_change" values when compare_duration is specified:
///
/// * "CHANGED": indicates that the finding was present and matched the given
/// filter at the start of compare_duration, but changed its
/// state at read_time.
/// * "UNCHANGED": indicates that the finding was present and matched the given
/// filter at the start of compare_duration and did not change
/// state at read_time.
/// * "ADDED": indicates that the finding did not match the given filter or
/// was not present at the start of compare_duration, but was
/// present at read_time.
/// * "REMOVED": indicates that the finding was present and matched the
/// filter at the start of compare_duration, but did not match
/// the filter at read_time.
///
/// If compare_duration is not specified, then the only possible state_change
/// is "UNUSED", which will be the state_change set for all findings present at
/// read_time.
#[prost(message, optional, tag = "5")]
pub compare_duration: ::core::option::Option<::prost_types::Duration>,
/// A field mask to specify the Finding fields to be listed in the response.
/// An empty field mask will list all fields.
#[prost(message, optional, tag = "7")]
pub field_mask: ::core::option::Option<::prost_types::FieldMask>,
/// The value returned by the last `ListFindingsResponse`; indicates
/// that this is a continuation of a prior `ListFindings` call, and
/// that the system should return the next page of data.
#[prost(string, tag = "8")]
pub page_token: ::prost::alloc::string::String,
/// The maximum number of results to return in a single response. Default is
/// 10, minimum is 1, maximum is 1000.
#[prost(int32, tag = "9")]
pub page_size: i32,
}
/// Response message for listing findings.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListFindingsResponse {
/// Findings matching the list request.
#[prost(message, repeated, tag = "1")]
pub list_findings_results: ::prost::alloc::vec::Vec<
list_findings_response::ListFindingsResult,
>,
/// Time used for executing the list request.
#[prost(message, optional, tag = "2")]
pub read_time: ::core::option::Option<::prost_types::Timestamp>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results.
#[prost(string, tag = "3")]
pub next_page_token: ::prost::alloc::string::String,
/// The total number of findings matching the query.
#[prost(int32, tag = "4")]
pub total_size: i32,
}
/// Nested message and enum types in `ListFindingsResponse`.
pub mod list_findings_response {
/// Result containing the Finding and its StateChange.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListFindingsResult {
/// Finding matching the search request.
#[prost(message, optional, tag = "1")]
pub finding: ::core::option::Option<super::Finding>,
/// State change of the finding between the points in time.
#[prost(enumeration = "list_findings_result::StateChange", tag = "2")]
pub state_change: i32,
/// Output only. Resource that is associated with this finding.
#[prost(message, optional, tag = "3")]
pub resource: ::core::option::Option<list_findings_result::Resource>,
}
/// Nested message and enum types in `ListFindingsResult`.
pub mod list_findings_result {
/// Information related to the Google Cloud resource that is
/// associated with this finding.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Resource {
/// The full resource name of the resource. See:
/// <https://cloud.google.com/apis/design/resource_names#full_resource_name>
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The full resource name of project that the resource belongs to.
#[prost(string, tag = "2")]
pub project_name: ::prost::alloc::string::String,
/// The human readable name of project that the resource belongs to.
#[prost(string, tag = "3")]
pub project_display_name: ::prost::alloc::string::String,
/// The full resource name of resource's parent.
#[prost(string, tag = "4")]
pub parent_name: ::prost::alloc::string::String,
/// The human readable name of resource's parent.
#[prost(string, tag = "5")]
pub parent_display_name: ::prost::alloc::string::String,
/// Contains a Folder message for each folder in the assets ancestry.
/// The first folder is the deepest nested folder, and the last folder is
/// the folder directly under the Organization.
#[prost(message, repeated, tag = "10")]
pub folders: ::prost::alloc::vec::Vec<super::super::Folder>,
}
/// The change in state of the finding.
///
/// When querying across two points in time this describes
/// the change in the finding between the two points: CHANGED, UNCHANGED,
/// ADDED, or REMOVED. Findings can not be deleted, so REMOVED implies that
/// the finding at timestamp does not match the filter specified, but it did
/// at timestamp - compare_duration. If there was no compare_duration
/// supplied in the request the state change will be: UNUSED
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum StateChange {
/// State change is unused, this is the canonical default for this enum.
Unused = 0,
/// The finding has changed state in some way between the points in time
/// and existed at both points.
Changed = 1,
/// The finding has not changed state between the points in time and
/// existed at both points.
Unchanged = 2,
/// The finding was created between the points in time.
Added = 3,
/// The finding at timestamp does not match the filter specified, but it
/// did at timestamp - compare_duration.
Removed = 4,
}
impl StateChange {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
StateChange::Unused => "UNUSED",
StateChange::Changed => "CHANGED",
StateChange::Unchanged => "UNCHANGED",
StateChange::Added => "ADDED",
StateChange::Removed => "REMOVED",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"UNUSED" => Some(Self::Unused),
"CHANGED" => Some(Self::Changed),
"UNCHANGED" => Some(Self::Unchanged),
"ADDED" => Some(Self::Added),
"REMOVED" => Some(Self::Removed),
_ => None,
}
}
}
}
}
/// Request message for updating a finding's state.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SetFindingStateRequest {
/// Required. The relative resource name of the finding. See:
/// <https://cloud.google.com/apis/design/resource_names#relative_resource_name>
/// Example:
/// "organizations/{organization_id}/sources/{source_id}/finding/{finding_id}".
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Required. The desired State of the finding.
#[prost(enumeration = "finding::State", tag = "2")]
pub state: i32,
/// Required. The time at which the updated state takes effect.
#[prost(message, optional, tag = "3")]
pub start_time: ::core::option::Option<::prost_types::Timestamp>,
}
/// Request message for running asset discovery for an organization.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RunAssetDiscoveryRequest {
/// Required. Name of the organization to run asset discovery for. Its format is
/// "organizations/\[organization_id\]".
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
}
/// Request message for updating or creating a finding.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateFindingRequest {
/// Required. The finding resource to update or create if it does not already exist.
/// parent, security_marks, and update_time will be ignored.
///
/// In the case of creation, the finding id portion of the name must be
/// alphanumeric and less than or equal to 32 characters and greater than 0
/// characters in length.
#[prost(message, optional, tag = "1")]
pub finding: ::core::option::Option<Finding>,
/// The FieldMask to use when updating the finding resource. This field should
/// not be specified when creating a finding.
///
/// When updating a finding, an empty mask is treated as updating all mutable
/// fields and replacing source_properties. Individual source_properties can
/// be added/updated by using "source_properties.<property key>" in the field
/// mask.
#[prost(message, optional, tag = "2")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Request message for updating a notification config.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateNotificationConfigRequest {
/// Required. The notification config to update.
#[prost(message, optional, tag = "1")]
pub notification_config: ::core::option::Option<NotificationConfig>,
/// The FieldMask to use when updating the notification config.
///
/// If empty all mutable fields will be updated.
#[prost(message, optional, tag = "2")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Request message for updating an organization's settings.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateOrganizationSettingsRequest {
/// Required. The organization settings resource to update.
#[prost(message, optional, tag = "1")]
pub organization_settings: ::core::option::Option<OrganizationSettings>,
/// The FieldMask to use when updating the settings resource.
///
/// If empty all mutable fields will be updated.
#[prost(message, optional, tag = "2")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Request message for updating a source.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateSourceRequest {
/// Required. The source resource to update.
#[prost(message, optional, tag = "1")]
pub source: ::core::option::Option<Source>,
/// The FieldMask to use when updating the source resource.
///
/// If empty all mutable fields will be updated.
#[prost(message, optional, tag = "2")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Request message for updating a SecurityMarks resource.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateSecurityMarksRequest {
/// Required. The security marks resource to update.
#[prost(message, optional, tag = "1")]
pub security_marks: ::core::option::Option<SecurityMarks>,
/// The FieldMask to use when updating the security marks resource.
///
/// The field mask must not contain duplicate fields.
/// If empty or set to "marks", all marks will be replaced. Individual
/// marks can be updated using "marks.<mark_key>".
#[prost(message, optional, tag = "2")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
/// The time at which the updated SecurityMarks take effect.
/// If not set uses current server time. Updates will be applied to the
/// SecurityMarks that are active immediately preceding this time.
#[prost(message, optional, tag = "3")]
pub start_time: ::core::option::Option<::prost_types::Timestamp>,
}
/// Generated client implementations.
pub mod security_center_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
/// V1p1Beta1 APIs for Security Center service.
#[derive(Debug, Clone)]
pub struct SecurityCenterClient<T> {
inner: tonic::client::Grpc<T>,
}
impl<T> SecurityCenterClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> SecurityCenterClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
SecurityCenterClient::new(InterceptedService::new(inner, interceptor))
}
/// Compress requests with the given encoding.
///
/// This requires the server to support it otherwise it might respond with an
/// error.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
/// Enable decompressing responses.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
/// Limits the maximum size of a decoded message.
///
/// Default: `4MB`
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
/// Limits the maximum size of an encoded message.
///
/// Default: `usize::MAX`
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
/// Creates a source.
pub async fn create_source(
&mut self,
request: impl tonic::IntoRequest<super::CreateSourceRequest>,
) -> std::result::Result<tonic::Response<super::Source>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/CreateSource",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"CreateSource",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates a finding. The corresponding source must exist for finding
/// creation to succeed.
pub async fn create_finding(
&mut self,
request: impl tonic::IntoRequest<super::CreateFindingRequest>,
) -> std::result::Result<tonic::Response<super::Finding>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/CreateFinding",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"CreateFinding",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates a notification config.
pub async fn create_notification_config(
&mut self,
request: impl tonic::IntoRequest<super::CreateNotificationConfigRequest>,
) -> std::result::Result<
tonic::Response<super::NotificationConfig>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/CreateNotificationConfig",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"CreateNotificationConfig",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes a notification config.
pub async fn delete_notification_config(
&mut self,
request: impl tonic::IntoRequest<super::DeleteNotificationConfigRequest>,
) -> std::result::Result<tonic::Response<()>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/DeleteNotificationConfig",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"DeleteNotificationConfig",
),
);
self.inner.unary(req, path, codec).await
}
/// Gets the access control policy on the specified Source.
pub async fn get_iam_policy(
&mut self,
request: impl tonic::IntoRequest<
super::super::super::super::iam::v1::GetIamPolicyRequest,
>,
) -> std::result::Result<
tonic::Response<super::super::super::super::iam::v1::Policy>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/GetIamPolicy",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"GetIamPolicy",
),
);
self.inner.unary(req, path, codec).await
}
/// Gets a notification config.
pub async fn get_notification_config(
&mut self,
request: impl tonic::IntoRequest<super::GetNotificationConfigRequest>,
) -> std::result::Result<
tonic::Response<super::NotificationConfig>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/GetNotificationConfig",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"GetNotificationConfig",
),
);
self.inner.unary(req, path, codec).await
}
/// Gets the settings for an organization.
pub async fn get_organization_settings(
&mut self,
request: impl tonic::IntoRequest<super::GetOrganizationSettingsRequest>,
) -> std::result::Result<
tonic::Response<super::OrganizationSettings>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/GetOrganizationSettings",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"GetOrganizationSettings",
),
);
self.inner.unary(req, path, codec).await
}
/// Gets a source.
pub async fn get_source(
&mut self,
request: impl tonic::IntoRequest<super::GetSourceRequest>,
) -> std::result::Result<tonic::Response<super::Source>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/GetSource",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"GetSource",
),
);
self.inner.unary(req, path, codec).await
}
/// Filters an organization's assets and groups them by their specified
/// properties.
pub async fn group_assets(
&mut self,
request: impl tonic::IntoRequest<super::GroupAssetsRequest>,
) -> std::result::Result<
tonic::Response<super::GroupAssetsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/GroupAssets",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"GroupAssets",
),
);
self.inner.unary(req, path, codec).await
}
/// Filters an organization or source's findings and groups them by their
/// specified properties.
///
/// To group across all sources provide a `-` as the source id.
/// Example: /v1/organizations/{organization_id}/sources/-/findings,
/// /v1/folders/{folder_id}/sources/-/findings,
/// /v1/projects/{project_id}/sources/-/findings
pub async fn group_findings(
&mut self,
request: impl tonic::IntoRequest<super::GroupFindingsRequest>,
) -> std::result::Result<
tonic::Response<super::GroupFindingsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/GroupFindings",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"GroupFindings",
),
);
self.inner.unary(req, path, codec).await
}
/// Lists an organization's assets.
pub async fn list_assets(
&mut self,
request: impl tonic::IntoRequest<super::ListAssetsRequest>,
) -> std::result::Result<
tonic::Response<super::ListAssetsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/ListAssets",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"ListAssets",
),
);
self.inner.unary(req, path, codec).await
}
/// Lists an organization or source's findings.
///
/// To list across all sources provide a `-` as the source id.
/// Example: /v1p1beta1/organizations/{organization_id}/sources/-/findings
pub async fn list_findings(
&mut self,
request: impl tonic::IntoRequest<super::ListFindingsRequest>,
) -> std::result::Result<
tonic::Response<super::ListFindingsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/ListFindings",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"ListFindings",
),
);
self.inner.unary(req, path, codec).await
}
/// Lists notification configs.
pub async fn list_notification_configs(
&mut self,
request: impl tonic::IntoRequest<super::ListNotificationConfigsRequest>,
) -> std::result::Result<
tonic::Response<super::ListNotificationConfigsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/ListNotificationConfigs",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"ListNotificationConfigs",
),
);
self.inner.unary(req, path, codec).await
}
/// Lists all sources belonging to an organization.
pub async fn list_sources(
&mut self,
request: impl tonic::IntoRequest<super::ListSourcesRequest>,
) -> std::result::Result<
tonic::Response<super::ListSourcesResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/ListSources",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"ListSources",
),
);
self.inner.unary(req, path, codec).await
}
/// Runs asset discovery. The discovery is tracked with a long-running
/// operation.
///
/// This API can only be called with limited frequency for an organization. If
/// it is called too frequently the caller will receive a TOO_MANY_REQUESTS
/// error.
pub async fn run_asset_discovery(
&mut self,
request: impl tonic::IntoRequest<super::RunAssetDiscoveryRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/RunAssetDiscovery",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"RunAssetDiscovery",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates the state of a finding.
pub async fn set_finding_state(
&mut self,
request: impl tonic::IntoRequest<super::SetFindingStateRequest>,
) -> std::result::Result<tonic::Response<super::Finding>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/SetFindingState",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"SetFindingState",
),
);
self.inner.unary(req, path, codec).await
}
/// Sets the access control policy on the specified Source.
pub async fn set_iam_policy(
&mut self,
request: impl tonic::IntoRequest<
super::super::super::super::iam::v1::SetIamPolicyRequest,
>,
) -> std::result::Result<
tonic::Response<super::super::super::super::iam::v1::Policy>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/SetIamPolicy",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"SetIamPolicy",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns the permissions that a caller has on the specified source.
pub async fn test_iam_permissions(
&mut self,
request: impl tonic::IntoRequest<
super::super::super::super::iam::v1::TestIamPermissionsRequest,
>,
) -> std::result::Result<
tonic::Response<
super::super::super::super::iam::v1::TestIamPermissionsResponse,
>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/TestIamPermissions",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"TestIamPermissions",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates or updates a finding. The corresponding source must exist for a
/// finding creation to succeed.
pub async fn update_finding(
&mut self,
request: impl tonic::IntoRequest<super::UpdateFindingRequest>,
) -> std::result::Result<tonic::Response<super::Finding>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/UpdateFinding",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"UpdateFinding",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates a notification config. The following update
/// fields are allowed: description, pubsub_topic, streaming_config.filter
pub async fn update_notification_config(
&mut self,
request: impl tonic::IntoRequest<super::UpdateNotificationConfigRequest>,
) -> std::result::Result<
tonic::Response<super::NotificationConfig>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/UpdateNotificationConfig",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"UpdateNotificationConfig",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates an organization's settings.
pub async fn update_organization_settings(
&mut self,
request: impl tonic::IntoRequest<super::UpdateOrganizationSettingsRequest>,
) -> std::result::Result<
tonic::Response<super::OrganizationSettings>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/UpdateOrganizationSettings",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"UpdateOrganizationSettings",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates a source.
pub async fn update_source(
&mut self,
request: impl tonic::IntoRequest<super::UpdateSourceRequest>,
) -> std::result::Result<tonic::Response<super::Source>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/UpdateSource",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"UpdateSource",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates security marks.
pub async fn update_security_marks(
&mut self,
request: impl tonic::IntoRequest<super::UpdateSecurityMarksRequest>,
) -> std::result::Result<tonic::Response<super::SecurityMarks>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securitycenter.v1p1beta1.SecurityCenter/UpdateSecurityMarks",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securitycenter.v1p1beta1.SecurityCenter",
"UpdateSecurityMarks",
),
);
self.inner.unary(req, path, codec).await
}
}
}