1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592
|
# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'date'
require 'google/apis/core/base_service'
require 'google/apis/core/json_representation'
require 'google/apis/core/hashable'
require 'google/apis/errors'
module Google
module Apis
module DlpV2
# A task to execute on the completion of a job. See https://cloud.google.com/dlp/
# docs/concepts-actions to learn more.
class GooglePrivacyDlpV2Action
include Google::Apis::Core::Hashable
# Enable email notification to project owners and editors on jobs's completion/
# failure.
# Corresponds to the JSON property `jobNotificationEmails`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2JobNotificationEmails]
attr_accessor :job_notification_emails
# Publish a message into given Pub/Sub topic when DlpJob has completed. The
# message contains a single field, `DlpJobName`, which is equal to the finished
# job's [`DlpJob.name`](https://cloud.google.com/dlp/docs/reference/rest/v2/
# projects.dlpJobs#DlpJob). Compatible with: Inspect, Risk
# Corresponds to the JSON property `pubSub`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PublishToPubSub]
attr_accessor :pub_sub
# Publish findings of a DlpJob to Cloud Data Catalog. Labels summarizing the
# results of the DlpJob will be applied to the entry for the resource scanned in
# Cloud Data Catalog. Any labels previously written by another DlpJob will be
# deleted. InfoType naming patterns are strictly enforced when using this
# feature. Note that the findings will be persisted in Cloud Data Catalog
# storage and are governed by Data Catalog service-specific policy, see https://
# cloud.google.com/terms/service-terms Only a single instance of this action can
# be specified and only allowed if all resources being scanned are BigQuery
# tables. Compatible with: Inspect
# Corresponds to the JSON property `publishFindingsToCloudDataCatalog`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog]
attr_accessor :publish_findings_to_cloud_data_catalog
# Publish the result summary of a DlpJob to the Cloud Security Command Center (
# CSCC Alpha). This action is only available for projects which are parts of an
# organization and whitelisted for the alpha Cloud Security Command Center. The
# action will publish count of finding instances and their info types. The
# summary of findings will be persisted in CSCC and are governed by CSCC service-
# specific policy, see https://cloud.google.com/terms/service-terms Only a
# single instance of this action can be specified. Compatible with: Inspect
# Corresponds to the JSON property `publishSummaryToCscc`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PublishSummaryToCscc]
attr_accessor :publish_summary_to_cscc
# Enable Stackdriver metric dlp.googleapis.com/finding_count. This will publish
# a metric to stack driver on each infotype requested and how many findings were
# found for it. CustomDetectors will be bucketed as 'Custom' under the
# Stackdriver label 'info_type'.
# Corresponds to the JSON property `publishToStackdriver`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PublishToStackdriver]
attr_accessor :publish_to_stackdriver
# If set, the detailed findings will be persisted to the specified
# OutputStorageConfig. Only a single instance of this action can be specified.
# Compatible with: Inspect, Risk
# Corresponds to the JSON property `saveFindings`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2SaveFindings]
attr_accessor :save_findings
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@job_notification_emails = args[:job_notification_emails] if args.key?(:job_notification_emails)
@pub_sub = args[:pub_sub] if args.key?(:pub_sub)
@publish_findings_to_cloud_data_catalog = args[:publish_findings_to_cloud_data_catalog] if args.key?(:publish_findings_to_cloud_data_catalog)
@publish_summary_to_cscc = args[:publish_summary_to_cscc] if args.key?(:publish_summary_to_cscc)
@publish_to_stackdriver = args[:publish_to_stackdriver] if args.key?(:publish_to_stackdriver)
@save_findings = args[:save_findings] if args.key?(:save_findings)
end
end
# Request message for ActivateJobTrigger.
class GooglePrivacyDlpV2ActivateJobTriggerRequest
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Result of a risk analysis operation request.
class GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails
include Google::Apis::Core::Hashable
# Result of the categorical stats computation.
# Corresponds to the JSON property `categoricalStatsResult`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CategoricalStatsResult]
attr_accessor :categorical_stats_result
# Result of the δ-presence computation. Note that these results are an
# estimation, not exact values.
# Corresponds to the JSON property `deltaPresenceEstimationResult`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationResult]
attr_accessor :delta_presence_estimation_result
# Result of the k-anonymity computation.
# Corresponds to the JSON property `kAnonymityResult`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2KAnonymityResult]
attr_accessor :k_anonymity_result
# Result of the reidentifiability analysis. Note that these results are an
# estimation, not exact values.
# Corresponds to the JSON property `kMapEstimationResult`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2KMapEstimationResult]
attr_accessor :k_map_estimation_result
# Result of the l-diversity computation.
# Corresponds to the JSON property `lDiversityResult`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityResult]
attr_accessor :l_diversity_result
# Result of the numerical stats computation.
# Corresponds to the JSON property `numericalStatsResult`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2NumericalStatsResult]
attr_accessor :numerical_stats_result
# Risk analysis options.
# Corresponds to the JSON property `requestedOptions`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RequestedRiskAnalysisOptions]
attr_accessor :requested_options
# Privacy metric to compute for reidentification risk analysis.
# Corresponds to the JSON property `requestedPrivacyMetric`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PrivacyMetric]
attr_accessor :requested_privacy_metric
# Message defining the location of a BigQuery table. A table is uniquely
# identified by its project_id, dataset_id, and table_name. Within a query a
# table is often referenced with a string in the format of: `:.` or `..`.
# Corresponds to the JSON property `requestedSourceTable`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable]
attr_accessor :requested_source_table
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@categorical_stats_result = args[:categorical_stats_result] if args.key?(:categorical_stats_result)
@delta_presence_estimation_result = args[:delta_presence_estimation_result] if args.key?(:delta_presence_estimation_result)
@k_anonymity_result = args[:k_anonymity_result] if args.key?(:k_anonymity_result)
@k_map_estimation_result = args[:k_map_estimation_result] if args.key?(:k_map_estimation_result)
@l_diversity_result = args[:l_diversity_result] if args.key?(:l_diversity_result)
@numerical_stats_result = args[:numerical_stats_result] if args.key?(:numerical_stats_result)
@requested_options = args[:requested_options] if args.key?(:requested_options)
@requested_privacy_metric = args[:requested_privacy_metric] if args.key?(:requested_privacy_metric)
@requested_source_table = args[:requested_source_table] if args.key?(:requested_source_table)
end
end
# An auxiliary table contains statistical information on the relative frequency
# of different quasi-identifiers values. It has one or several quasi-identifiers
# columns, and one column that indicates the relative frequency of each quasi-
# identifier tuple. If a tuple is present in the data but not in the auxiliary
# table, the corresponding relative frequency is assumed to be zero (and thus,
# the tuple is highly reidentifiable).
class GooglePrivacyDlpV2AuxiliaryTable
include Google::Apis::Core::Hashable
# Required. Quasi-identifier columns.
# Corresponds to the JSON property `quasiIds`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2QuasiIdField>]
attr_accessor :quasi_ids
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `relativeFrequency`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :relative_frequency
# Message defining the location of a BigQuery table. A table is uniquely
# identified by its project_id, dataset_id, and table_name. Within a query a
# table is often referenced with a string in the format of: `:.` or `..`.
# Corresponds to the JSON property `table`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable]
attr_accessor :table
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@quasi_ids = args[:quasi_ids] if args.key?(:quasi_ids)
@relative_frequency = args[:relative_frequency] if args.key?(:relative_frequency)
@table = args[:table] if args.key?(:table)
end
end
# Message defining a field of a BigQuery table.
class GooglePrivacyDlpV2BigQueryField
include Google::Apis::Core::Hashable
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `field`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :field
# Message defining the location of a BigQuery table. A table is uniquely
# identified by its project_id, dataset_id, and table_name. Within a query a
# table is often referenced with a string in the format of: `:.` or `..`.
# Corresponds to the JSON property `table`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable]
attr_accessor :table
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@field = args[:field] if args.key?(:field)
@table = args[:table] if args.key?(:table)
end
end
# Row key for identifying a record in BigQuery table.
class GooglePrivacyDlpV2BigQueryKey
include Google::Apis::Core::Hashable
# Row number inferred at the time the table was scanned. This value is
# nondeterministic, cannot be queried, and may be null for inspection jobs. To
# locate findings within a table, specify `inspect_job.storage_config.
# big_query_options.identifying_fields` in `CreateDlpJobRequest`.
# Corresponds to the JSON property `rowNumber`
# @return [Fixnum]
attr_accessor :row_number
# Message defining the location of a BigQuery table. A table is uniquely
# identified by its project_id, dataset_id, and table_name. Within a query a
# table is often referenced with a string in the format of: `:.` or `..`.
# Corresponds to the JSON property `tableReference`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable]
attr_accessor :table_reference
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@row_number = args[:row_number] if args.key?(:row_number)
@table_reference = args[:table_reference] if args.key?(:table_reference)
end
end
# Options defining BigQuery table and row identifiers.
class GooglePrivacyDlpV2BigQueryOptions
include Google::Apis::Core::Hashable
# References to fields excluded from scanning. This allows you to skip
# inspection of entire columns which you know have no findings.
# Corresponds to the JSON property `excludedFields`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId>]
attr_accessor :excluded_fields
# Table fields that may uniquely identify a row within the table. When `actions.
# saveFindings.outputConfig.table` is specified, the values of columns specified
# here are available in the output table under `location.content_locations.
# record_location.record_key.id_values`. Nested fields such as `person.birthdate.
# year` are allowed.
# Corresponds to the JSON property `identifyingFields`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId>]
attr_accessor :identifying_fields
# Max number of rows to scan. If the table has more rows than this value, the
# rest of the rows are omitted. If not set, or if set to 0, all rows will be
# scanned. Only one of rows_limit and rows_limit_percent can be specified.
# Cannot be used in conjunction with TimespanConfig.
# Corresponds to the JSON property `rowsLimit`
# @return [Fixnum]
attr_accessor :rows_limit
# Max percentage of rows to scan. The rest are omitted. The number of rows
# scanned is rounded down. Must be between 0 and 100, inclusively. Both 0 and
# 100 means no limit. Defaults to 0. Only one of rows_limit and
# rows_limit_percent can be specified. Cannot be used in conjunction with
# TimespanConfig.
# Corresponds to the JSON property `rowsLimitPercent`
# @return [Fixnum]
attr_accessor :rows_limit_percent
#
# Corresponds to the JSON property `sampleMethod`
# @return [String]
attr_accessor :sample_method
# Message defining the location of a BigQuery table. A table is uniquely
# identified by its project_id, dataset_id, and table_name. Within a query a
# table is often referenced with a string in the format of: `:.` or `..`.
# Corresponds to the JSON property `tableReference`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable]
attr_accessor :table_reference
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@excluded_fields = args[:excluded_fields] if args.key?(:excluded_fields)
@identifying_fields = args[:identifying_fields] if args.key?(:identifying_fields)
@rows_limit = args[:rows_limit] if args.key?(:rows_limit)
@rows_limit_percent = args[:rows_limit_percent] if args.key?(:rows_limit_percent)
@sample_method = args[:sample_method] if args.key?(:sample_method)
@table_reference = args[:table_reference] if args.key?(:table_reference)
end
end
# Message defining the location of a BigQuery table. A table is uniquely
# identified by its project_id, dataset_id, and table_name. Within a query a
# table is often referenced with a string in the format of: `:.` or `..`.
class GooglePrivacyDlpV2BigQueryTable
include Google::Apis::Core::Hashable
# Dataset ID of the table.
# Corresponds to the JSON property `datasetId`
# @return [String]
attr_accessor :dataset_id
# The Google Cloud Platform project ID of the project containing the table. If
# omitted, project ID is inferred from the API call.
# Corresponds to the JSON property `projectId`
# @return [String]
attr_accessor :project_id
# Name of the table.
# Corresponds to the JSON property `tableId`
# @return [String]
attr_accessor :table_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@dataset_id = args[:dataset_id] if args.key?(:dataset_id)
@project_id = args[:project_id] if args.key?(:project_id)
@table_id = args[:table_id] if args.key?(:table_id)
end
end
# Bounding box encompassing detected text within an image.
class GooglePrivacyDlpV2BoundingBox
include Google::Apis::Core::Hashable
# Height of the bounding box in pixels.
# Corresponds to the JSON property `height`
# @return [Fixnum]
attr_accessor :height
# Left coordinate of the bounding box. (0,0) is upper left.
# Corresponds to the JSON property `left`
# @return [Fixnum]
attr_accessor :left
# Top coordinate of the bounding box. (0,0) is upper left.
# Corresponds to the JSON property `top`
# @return [Fixnum]
attr_accessor :top
# Width of the bounding box in pixels.
# Corresponds to the JSON property `width`
# @return [Fixnum]
attr_accessor :width
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@height = args[:height] if args.key?(:height)
@left = args[:left] if args.key?(:left)
@top = args[:top] if args.key?(:top)
@width = args[:width] if args.key?(:width)
end
end
# Bucket is represented as a range, along with replacement values.
class GooglePrivacyDlpV2Bucket
include Google::Apis::Core::Hashable
# Set of primitive values supported by the system. Note that for the purposes of
# inspection or transformation, the number of bytes considered to comprise a '
# Value' is based on its representation as a UTF-8 encoded string. For example,
# if 'integer_value' is set to 123456789, the number of bytes would be counted
# as 9, even though an int64 only holds up to 8 bytes of data.
# Corresponds to the JSON property `max`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Value]
attr_accessor :max
# Set of primitive values supported by the system. Note that for the purposes of
# inspection or transformation, the number of bytes considered to comprise a '
# Value' is based on its representation as a UTF-8 encoded string. For example,
# if 'integer_value' is set to 123456789, the number of bytes would be counted
# as 9, even though an int64 only holds up to 8 bytes of data.
# Corresponds to the JSON property `min`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Value]
attr_accessor :min
# Set of primitive values supported by the system. Note that for the purposes of
# inspection or transformation, the number of bytes considered to comprise a '
# Value' is based on its representation as a UTF-8 encoded string. For example,
# if 'integer_value' is set to 123456789, the number of bytes would be counted
# as 9, even though an int64 only holds up to 8 bytes of data.
# Corresponds to the JSON property `replacementValue`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Value]
attr_accessor :replacement_value
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@max = args[:max] if args.key?(:max)
@min = args[:min] if args.key?(:min)
@replacement_value = args[:replacement_value] if args.key?(:replacement_value)
end
end
# Generalization function that buckets values based on ranges. The ranges and
# replacement values are dynamically provided by the user for custom behavior,
# such as 1-30 -> LOW 31-65 -> MEDIUM 66-100 -> HIGH This can be used on data of
# type: number, long, string, timestamp. If the bound `Value` type differs from
# the type of data being transformed, we will first attempt converting the type
# of the data to be transformed to match the type of the bound before comparing.
# See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
class GooglePrivacyDlpV2BucketingConfig
include Google::Apis::Core::Hashable
# Set of buckets. Ranges must be non-overlapping.
# Corresponds to the JSON property `buckets`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Bucket>]
attr_accessor :buckets
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@buckets = args[:buckets] if args.key?(:buckets)
end
end
# Container for bytes to inspect or redact.
class GooglePrivacyDlpV2ByteContentItem
include Google::Apis::Core::Hashable
# Content data to inspect or redact.
# Corresponds to the JSON property `data`
# NOTE: Values are automatically base64 encoded/decoded in the client library.
# @return [String]
attr_accessor :data
# The type of data stored in the bytes string. Default will be TEXT_UTF8.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@data = args[:data] if args.key?(:data)
@type = args[:type] if args.key?(:type)
end
end
# The request message for canceling a DLP job.
class GooglePrivacyDlpV2CancelDlpJobRequest
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Compute numerical stats over an individual column, including number of
# distinct values and value count distribution.
class GooglePrivacyDlpV2CategoricalStatsConfig
include Google::Apis::Core::Hashable
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `field`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :field
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@field = args[:field] if args.key?(:field)
end
end
# Histogram of value frequencies in the column.
class GooglePrivacyDlpV2CategoricalStatsHistogramBucket
include Google::Apis::Core::Hashable
# Total number of values in this bucket.
# Corresponds to the JSON property `bucketSize`
# @return [Fixnum]
attr_accessor :bucket_size
# Total number of distinct values in this bucket.
# Corresponds to the JSON property `bucketValueCount`
# @return [Fixnum]
attr_accessor :bucket_value_count
# Sample of value frequencies in this bucket. The total number of values
# returned per bucket is capped at 20.
# Corresponds to the JSON property `bucketValues`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2ValueFrequency>]
attr_accessor :bucket_values
# Lower bound on the value frequency of the values in this bucket.
# Corresponds to the JSON property `valueFrequencyLowerBound`
# @return [Fixnum]
attr_accessor :value_frequency_lower_bound
# Upper bound on the value frequency of the values in this bucket.
# Corresponds to the JSON property `valueFrequencyUpperBound`
# @return [Fixnum]
attr_accessor :value_frequency_upper_bound
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bucket_size = args[:bucket_size] if args.key?(:bucket_size)
@bucket_value_count = args[:bucket_value_count] if args.key?(:bucket_value_count)
@bucket_values = args[:bucket_values] if args.key?(:bucket_values)
@value_frequency_lower_bound = args[:value_frequency_lower_bound] if args.key?(:value_frequency_lower_bound)
@value_frequency_upper_bound = args[:value_frequency_upper_bound] if args.key?(:value_frequency_upper_bound)
end
end
# Result of the categorical stats computation.
class GooglePrivacyDlpV2CategoricalStatsResult
include Google::Apis::Core::Hashable
# Histogram of value frequencies in the column.
# Corresponds to the JSON property `valueFrequencyHistogramBuckets`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2CategoricalStatsHistogramBucket>]
attr_accessor :value_frequency_histogram_buckets
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@value_frequency_histogram_buckets = args[:value_frequency_histogram_buckets] if args.key?(:value_frequency_histogram_buckets)
end
end
# Partially mask a string by replacing a given number of characters with a fixed
# character. Masking can start from the beginning or end of the string. This can
# be used on data of any type (numbers, longs, and so on) and when de-
# identifying structured data we'll attempt to preserve the original data's type.
# (This allows you to take a long like 123 and modify it to a string like **3.
class GooglePrivacyDlpV2CharacterMaskConfig
include Google::Apis::Core::Hashable
# When masking a string, items in this list will be skipped when replacing
# characters. For example, if the input string is `555-555-5555` and you
# instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
# returns `***-**5-5555`.
# Corresponds to the JSON property `charactersToIgnore`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2CharsToIgnore>]
attr_accessor :characters_to_ignore
# Character to use to mask the sensitive values—for example, `*` for an
# alphabetic string such as a name, or `0` for a numeric string such as ZIP code
# or credit card number. This string must have a length of 1. If not supplied,
# this value defaults to `*` for strings, and `0` for digits.
# Corresponds to the JSON property `maskingCharacter`
# @return [String]
attr_accessor :masking_character
# Number of characters to mask. If not set, all matching chars will be masked.
# Skipped characters do not count towards this tally.
# Corresponds to the JSON property `numberToMask`
# @return [Fixnum]
attr_accessor :number_to_mask
# Mask characters in reverse order. For example, if `masking_character` is `0`, `
# number_to_mask` is `14`, and `reverse_order` is `false`, then the input string
# `1234-5678-9012-3456` is masked as `00000000000000-3456`. If `
# masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order` is `
# true`, then the string `12345` is masked as `12***`.
# Corresponds to the JSON property `reverseOrder`
# @return [Boolean]
attr_accessor :reverse_order
alias_method :reverse_order?, :reverse_order
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@characters_to_ignore = args[:characters_to_ignore] if args.key?(:characters_to_ignore)
@masking_character = args[:masking_character] if args.key?(:masking_character)
@number_to_mask = args[:number_to_mask] if args.key?(:number_to_mask)
@reverse_order = args[:reverse_order] if args.key?(:reverse_order)
end
end
# Characters to skip when doing deidentification of a value. These will be left
# alone and skipped.
class GooglePrivacyDlpV2CharsToIgnore
include Google::Apis::Core::Hashable
# Characters to not transform when masking.
# Corresponds to the JSON property `charactersToSkip`
# @return [String]
attr_accessor :characters_to_skip
# Common characters to not transform when masking. Useful to avoid removing
# punctuation.
# Corresponds to the JSON property `commonCharactersToIgnore`
# @return [String]
attr_accessor :common_characters_to_ignore
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@characters_to_skip = args[:characters_to_skip] if args.key?(:characters_to_skip)
@common_characters_to_ignore = args[:common_characters_to_ignore] if args.key?(:common_characters_to_ignore)
end
end
# Message representing a set of files in Cloud Storage.
class GooglePrivacyDlpV2CloudStorageFileSet
include Google::Apis::Core::Hashable
# The url, in the format `gs:///`. Trailing wildcard in the path is allowed.
# Corresponds to the JSON property `url`
# @return [String]
attr_accessor :url
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@url = args[:url] if args.key?(:url)
end
end
# Options defining a file or a set of files within a Google Cloud Storage bucket.
class GooglePrivacyDlpV2CloudStorageOptions
include Google::Apis::Core::Hashable
# Max number of bytes to scan from a file. If a scanned file's size is bigger
# than this value then the rest of the bytes are omitted. Only one of
# bytes_limit_per_file and bytes_limit_per_file_percent can be specified.
# Corresponds to the JSON property `bytesLimitPerFile`
# @return [Fixnum]
attr_accessor :bytes_limit_per_file
# Max percentage of bytes to scan from a file. The rest are omitted. The number
# of bytes scanned is rounded down. Must be between 0 and 100, inclusively. Both
# 0 and 100 means no limit. Defaults to 0. Only one of bytes_limit_per_file and
# bytes_limit_per_file_percent can be specified.
# Corresponds to the JSON property `bytesLimitPerFilePercent`
# @return [Fixnum]
attr_accessor :bytes_limit_per_file_percent
# Set of files to scan.
# Corresponds to the JSON property `fileSet`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FileSet]
attr_accessor :file_set
# List of file type groups to include in the scan. If empty, all files are
# scanned and available data format processors are applied. In addition, the
# binary content of the selected files is always scanned as well. Images are
# scanned only as binary if the specified region does not support image
# inspection and no file_types were specified. Image inspection is restricted to
# 'global', 'us', 'asia', and 'europe'.
# Corresponds to the JSON property `fileTypes`
# @return [Array<String>]
attr_accessor :file_types
# Limits the number of files to scan to this percentage of the input FileSet.
# Number of files scanned is rounded down. Must be between 0 and 100,
# inclusively. Both 0 and 100 means no limit. Defaults to 0.
# Corresponds to the JSON property `filesLimitPercent`
# @return [Fixnum]
attr_accessor :files_limit_percent
#
# Corresponds to the JSON property `sampleMethod`
# @return [String]
attr_accessor :sample_method
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bytes_limit_per_file = args[:bytes_limit_per_file] if args.key?(:bytes_limit_per_file)
@bytes_limit_per_file_percent = args[:bytes_limit_per_file_percent] if args.key?(:bytes_limit_per_file_percent)
@file_set = args[:file_set] if args.key?(:file_set)
@file_types = args[:file_types] if args.key?(:file_types)
@files_limit_percent = args[:files_limit_percent] if args.key?(:files_limit_percent)
@sample_method = args[:sample_method] if args.key?(:sample_method)
end
end
# Message representing a single file or path in Cloud Storage.
class GooglePrivacyDlpV2CloudStoragePath
include Google::Apis::Core::Hashable
# A url representing a file or path (no wildcards) in Cloud Storage. Example: gs:
# //[BUCKET_NAME]/dictionary.txt
# Corresponds to the JSON property `path`
# @return [String]
attr_accessor :path
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@path = args[:path] if args.key?(:path)
end
end
# Message representing a set of files in a Cloud Storage bucket. Regular
# expressions are used to allow fine-grained control over which files in the
# bucket to include. Included files are those that match at least one item in `
# include_regex` and do not match any items in `exclude_regex`. Note that a file
# that matches items from both lists will _not_ be included. For a match to
# occur, the entire file path (i.e., everything in the url after the bucket name)
# must match the regular expression. For example, given the input ``bucket_name:
# "mybucket", include_regex: ["directory1/.*"], exclude_regex: ["directory1/
# excluded.*"]``: * `gs://mybucket/directory1/myfile` will be included * `gs://
# mybucket/directory1/directory2/myfile` will be included (`.*` matches across `/
# `) * `gs://mybucket/directory0/directory1/myfile` will _not_ be included (the
# full path doesn't match any items in `include_regex`) * `gs://mybucket/
# directory1/excludedfile` will _not_ be included (the path matches an item in `
# exclude_regex`) If `include_regex` is left empty, it will match all files by
# default (this is equivalent to setting `include_regex: [".*"]`). Some other
# common use cases: * ``bucket_name: "mybucket", exclude_regex: [".*\.pdf"]``
# will include all files in `mybucket` except for .pdf files * ``bucket_name: "
# mybucket", include_regex: ["directory/[^/]+"]`` will include all files
# directly under `gs://mybucket/directory/`, without matching across `/`
class GooglePrivacyDlpV2CloudStorageRegexFileSet
include Google::Apis::Core::Hashable
# The name of a Cloud Storage bucket. Required.
# Corresponds to the JSON property `bucketName`
# @return [String]
attr_accessor :bucket_name
# A list of regular expressions matching file paths to exclude. All files in the
# bucket that match at least one of these regular expressions will be excluded
# from the scan. Regular expressions use RE2 [syntax](https://github.com/google/
# re2/wiki/Syntax); a guide can be found under the google/re2 repository on
# GitHub.
# Corresponds to the JSON property `excludeRegex`
# @return [Array<String>]
attr_accessor :exclude_regex
# A list of regular expressions matching file paths to include. All files in the
# bucket that match at least one of these regular expressions will be included
# in the set of files, except for those that also match an item in `
# exclude_regex`. Leaving this field empty will match all files by default (this
# is equivalent to including `.*` in the list). Regular expressions use RE2 [
# syntax](https://github.com/google/re2/wiki/Syntax); a guide can be found under
# the google/re2 repository on GitHub.
# Corresponds to the JSON property `includeRegex`
# @return [Array<String>]
attr_accessor :include_regex
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bucket_name = args[:bucket_name] if args.key?(:bucket_name)
@exclude_regex = args[:exclude_regex] if args.key?(:exclude_regex)
@include_regex = args[:include_regex] if args.key?(:include_regex)
end
end
# Represents a color in the RGB color space.
class GooglePrivacyDlpV2Color
include Google::Apis::Core::Hashable
# The amount of blue in the color as a value in the interval [0, 1].
# Corresponds to the JSON property `blue`
# @return [Float]
attr_accessor :blue
# The amount of green in the color as a value in the interval [0, 1].
# Corresponds to the JSON property `green`
# @return [Float]
attr_accessor :green
# The amount of red in the color as a value in the interval [0, 1].
# Corresponds to the JSON property `red`
# @return [Float]
attr_accessor :red
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@blue = args[:blue] if args.key?(:blue)
@green = args[:green] if args.key?(:green)
@red = args[:red] if args.key?(:red)
end
end
# The field type of `value` and `field` do not need to match to be considered
# equal, but not all comparisons are possible. EQUAL_TO and NOT_EQUAL_TO attempt
# to compare even with incompatible types, but all other comparisons are invalid
# with incompatible types. A `value` of type: - `string` can be compared against
# all other types - `boolean` can only be compared against other booleans - `
# integer` can be compared against doubles or a string if the string value can
# be parsed as an integer. - `double` can be compared against integers or a
# string if the string can be parsed as a double. - `Timestamp` can be compared
# against strings in RFC 3339 date string format. - `TimeOfDay` can be compared
# against timestamps and strings in the format of 'HH:mm:ss'. If we fail to
# compare do to type mismatch, a warning will be given and the condition will
# evaluate to false.
class GooglePrivacyDlpV2Condition
include Google::Apis::Core::Hashable
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `field`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :field
# Required. Operator used to compare the field or infoType to the value.
# Corresponds to the JSON property `operator`
# @return [String]
attr_accessor :operator
# Set of primitive values supported by the system. Note that for the purposes of
# inspection or transformation, the number of bytes considered to comprise a '
# Value' is based on its representation as a UTF-8 encoded string. For example,
# if 'integer_value' is set to 123456789, the number of bytes would be counted
# as 9, even though an int64 only holds up to 8 bytes of data.
# Corresponds to the JSON property `value`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Value]
attr_accessor :value
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@field = args[:field] if args.key?(:field)
@operator = args[:operator] if args.key?(:operator)
@value = args[:value] if args.key?(:value)
end
end
# A collection of conditions.
class GooglePrivacyDlpV2Conditions
include Google::Apis::Core::Hashable
# A collection of conditions.
# Corresponds to the JSON property `conditions`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Condition>]
attr_accessor :conditions
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@conditions = args[:conditions] if args.key?(:conditions)
end
end
# Represents a container that may contain DLP findings. Examples of a container
# include a file, table, or database record.
class GooglePrivacyDlpV2Container
include Google::Apis::Core::Hashable
# A string representation of the full container name. Examples: - BigQuery: '
# Project:DataSetId.TableId' - Google Cloud Storage: 'gs://Bucket/folders/
# filename.txt'
# Corresponds to the JSON property `fullPath`
# @return [String]
attr_accessor :full_path
# Project where the finding was found. Can be different from the project that
# owns the finding.
# Corresponds to the JSON property `projectId`
# @return [String]
attr_accessor :project_id
# The rest of the path after the root. Examples: - For BigQuery table `
# project_id:dataset_id.table_id`, the relative path is `table_id` - Google
# Cloud Storage file `gs://bucket/folder/filename.txt`, the relative path is `
# folder/filename.txt`
# Corresponds to the JSON property `relativePath`
# @return [String]
attr_accessor :relative_path
# The root of the container. Examples: - For BigQuery table `project_id:
# dataset_id.table_id`, the root is `dataset_id` - For Google Cloud Storage file
# `gs://bucket/folder/filename.txt`, the root is `gs://bucket`
# Corresponds to the JSON property `rootPath`
# @return [String]
attr_accessor :root_path
# Container type, for example BigQuery or Google Cloud Storage.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
# Findings container modification timestamp, if applicable. For Google Cloud
# Storage contains last file modification timestamp. For BigQuery table contains
# last_modified_time property. For Datastore - not populated.
# Corresponds to the JSON property `updateTime`
# @return [String]
attr_accessor :update_time
# Findings container version, if available ("generation" for Google Cloud
# Storage).
# Corresponds to the JSON property `version`
# @return [String]
attr_accessor :version
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@full_path = args[:full_path] if args.key?(:full_path)
@project_id = args[:project_id] if args.key?(:project_id)
@relative_path = args[:relative_path] if args.key?(:relative_path)
@root_path = args[:root_path] if args.key?(:root_path)
@type = args[:type] if args.key?(:type)
@update_time = args[:update_time] if args.key?(:update_time)
@version = args[:version] if args.key?(:version)
end
end
# Container structure for the content to inspect.
class GooglePrivacyDlpV2ContentItem
include Google::Apis::Core::Hashable
# Container for bytes to inspect or redact.
# Corresponds to the JSON property `byteItem`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ByteContentItem]
attr_accessor :byte_item
# Structured content to inspect. Up to 50,000 `Value`s per request allowed. See
# https://cloud.google.com/dlp/docs/inspecting-text#inspecting_a_table to learn
# more.
# Corresponds to the JSON property `table`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Table]
attr_accessor :table
# String data to inspect or redact.
# Corresponds to the JSON property `value`
# @return [String]
attr_accessor :value
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@byte_item = args[:byte_item] if args.key?(:byte_item)
@table = args[:table] if args.key?(:table)
@value = args[:value] if args.key?(:value)
end
end
# Precise location of the finding within a document, record, image, or metadata
# container.
class GooglePrivacyDlpV2ContentLocation
include Google::Apis::Core::Hashable
# Name of the container where the finding is located. The top level name is the
# source file name or table name. Names of some common storage containers are
# formatted as follows: * BigQuery tables: ``project_id`:`dataset_id`.`table_id``
# * Cloud Storage files: `gs://`bucket`/`path`` * Datastore namespace: `
# namespace` Nested names could be absent if the embedded object has no string
# identifier (for an example an image contained within a document).
# Corresponds to the JSON property `containerName`
# @return [String]
attr_accessor :container_name
# Findings container modification timestamp, if applicable. For Google Cloud
# Storage contains last file modification timestamp. For BigQuery table contains
# last_modified_time property. For Datastore - not populated.
# Corresponds to the JSON property `containerTimestamp`
# @return [String]
attr_accessor :container_timestamp
# Findings container version, if available ("generation" for Google Cloud
# Storage).
# Corresponds to the JSON property `containerVersion`
# @return [String]
attr_accessor :container_version
# Location of a finding within a document.
# Corresponds to the JSON property `documentLocation`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DocumentLocation]
attr_accessor :document_location
# Location of the finding within an image.
# Corresponds to the JSON property `imageLocation`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ImageLocation]
attr_accessor :image_location
# Metadata Location
# Corresponds to the JSON property `metadataLocation`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2MetadataLocation]
attr_accessor :metadata_location
# Location of a finding within a row or record.
# Corresponds to the JSON property `recordLocation`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RecordLocation]
attr_accessor :record_location
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@container_name = args[:container_name] if args.key?(:container_name)
@container_timestamp = args[:container_timestamp] if args.key?(:container_timestamp)
@container_version = args[:container_version] if args.key?(:container_version)
@document_location = args[:document_location] if args.key?(:document_location)
@image_location = args[:image_location] if args.key?(:image_location)
@metadata_location = args[:metadata_location] if args.key?(:metadata_location)
@record_location = args[:record_location] if args.key?(:record_location)
end
end
# Request message for CreateDeidentifyTemplate.
class GooglePrivacyDlpV2CreateDeidentifyTemplateRequest
include Google::Apis::Core::Hashable
# DeidentifyTemplates contains instructions on how to de-identify content. See
# https://cloud.google.com/dlp/docs/concepts-templates to learn more.
# Corresponds to the JSON property `deidentifyTemplate`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]
attr_accessor :deidentify_template
# Deprecated. This field has no effect.
# Corresponds to the JSON property `locationId`
# @return [String]
attr_accessor :location_id
# The template id can contain uppercase and lowercase letters, numbers, and
# hyphens; that is, it must match the regular expression: `[a-zA-Z\d-_]+`. The
# maximum length is 100 characters. Can be empty to allow the system to generate
# one.
# Corresponds to the JSON property `templateId`
# @return [String]
attr_accessor :template_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template)
@location_id = args[:location_id] if args.key?(:location_id)
@template_id = args[:template_id] if args.key?(:template_id)
end
end
# Request message for CreateDlpJobRequest. Used to initiate long running jobs
# such as calculating risk metrics or inspecting Google Cloud Storage.
class GooglePrivacyDlpV2CreateDlpJobRequest
include Google::Apis::Core::Hashable
# Controls what and how to inspect for findings.
# Corresponds to the JSON property `inspectJob`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectJobConfig]
attr_accessor :inspect_job
# The job id can contain uppercase and lowercase letters, numbers, and hyphens;
# that is, it must match the regular expression: `[a-zA-Z\d-_]+`. The maximum
# length is 100 characters. Can be empty to allow the system to generate one.
# Corresponds to the JSON property `jobId`
# @return [String]
attr_accessor :job_id
# Deprecated. This field has no effect.
# Corresponds to the JSON property `locationId`
# @return [String]
attr_accessor :location_id
# Configuration for a risk analysis job. See https://cloud.google.com/dlp/docs/
# concepts-risk-analysis to learn more.
# Corresponds to the JSON property `riskJob`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RiskAnalysisJobConfig]
attr_accessor :risk_job
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@inspect_job = args[:inspect_job] if args.key?(:inspect_job)
@job_id = args[:job_id] if args.key?(:job_id)
@location_id = args[:location_id] if args.key?(:location_id)
@risk_job = args[:risk_job] if args.key?(:risk_job)
end
end
# Request message for CreateInspectTemplate.
class GooglePrivacyDlpV2CreateInspectTemplateRequest
include Google::Apis::Core::Hashable
# The inspectTemplate contains a configuration (set of types of sensitive data
# to be detected) to be used anywhere you otherwise would normally specify
# InspectConfig. See https://cloud.google.com/dlp/docs/concepts-templates to
# learn more.
# Corresponds to the JSON property `inspectTemplate`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]
attr_accessor :inspect_template
# Deprecated. This field has no effect.
# Corresponds to the JSON property `locationId`
# @return [String]
attr_accessor :location_id
# The template id can contain uppercase and lowercase letters, numbers, and
# hyphens; that is, it must match the regular expression: `[a-zA-Z\d-_]+`. The
# maximum length is 100 characters. Can be empty to allow the system to generate
# one.
# Corresponds to the JSON property `templateId`
# @return [String]
attr_accessor :template_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@inspect_template = args[:inspect_template] if args.key?(:inspect_template)
@location_id = args[:location_id] if args.key?(:location_id)
@template_id = args[:template_id] if args.key?(:template_id)
end
end
# Request message for CreateJobTrigger.
class GooglePrivacyDlpV2CreateJobTriggerRequest
include Google::Apis::Core::Hashable
# Contains a configuration to make dlp api calls on a repeating basis. See https:
# //cloud.google.com/dlp/docs/concepts-job-triggers to learn more.
# Corresponds to the JSON property `jobTrigger`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger]
attr_accessor :job_trigger
# Deprecated. This field has no effect.
# Corresponds to the JSON property `locationId`
# @return [String]
attr_accessor :location_id
# The trigger id can contain uppercase and lowercase letters, numbers, and
# hyphens; that is, it must match the regular expression: `[a-zA-Z\d-_]+`. The
# maximum length is 100 characters. Can be empty to allow the system to generate
# one.
# Corresponds to the JSON property `triggerId`
# @return [String]
attr_accessor :trigger_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@job_trigger = args[:job_trigger] if args.key?(:job_trigger)
@location_id = args[:location_id] if args.key?(:location_id)
@trigger_id = args[:trigger_id] if args.key?(:trigger_id)
end
end
# Request message for CreateStoredInfoType.
class GooglePrivacyDlpV2CreateStoredInfoTypeRequest
include Google::Apis::Core::Hashable
# Configuration for stored infoTypes. All fields and subfield are provided by
# the user. For more information, see https://cloud.google.com/dlp/docs/creating-
# custom-infotypes.
# Corresponds to the JSON property `config`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeConfig]
attr_accessor :config
# Deprecated. This field has no effect.
# Corresponds to the JSON property `locationId`
# @return [String]
attr_accessor :location_id
# The storedInfoType ID can contain uppercase and lowercase letters, numbers,
# and hyphens; that is, it must match the regular expression: `[a-zA-Z\d-_]+`.
# The maximum length is 100 characters. Can be empty to allow the system to
# generate one.
# Corresponds to the JSON property `storedInfoTypeId`
# @return [String]
attr_accessor :stored_info_type_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@config = args[:config] if args.key?(:config)
@location_id = args[:location_id] if args.key?(:location_id)
@stored_info_type_id = args[:stored_info_type_id] if args.key?(:stored_info_type_id)
end
end
# Pseudonymization method that generates deterministic encryption for the given
# input. Outputs a base64 encoded representation of the encrypted output. Uses
# AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
class GooglePrivacyDlpV2CryptoDeterministicConfig
include Google::Apis::Core::Hashable
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `context`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :context
# This is a data encryption key (DEK) (as opposed to a key encryption key (KEK)
# stored by KMS). When using KMS to wrap/unwrap DEKs, be sure to set an
# appropriate IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
# unwrap the data crypto key.
# Corresponds to the JSON property `cryptoKey`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CryptoKey]
attr_accessor :crypto_key
# Type of information detected by the API.
# Corresponds to the JSON property `surrogateInfoType`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
attr_accessor :surrogate_info_type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@context = args[:context] if args.key?(:context)
@crypto_key = args[:crypto_key] if args.key?(:crypto_key)
@surrogate_info_type = args[:surrogate_info_type] if args.key?(:surrogate_info_type)
end
end
# Pseudonymization method that generates surrogates via cryptographic hashing.
# Uses SHA-256. The key size must be either 32 or 64 bytes. Outputs a base64
# encoded representation of the hashed output (for example,
# L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=). Currently, only string and
# integer values can be hashed. See https://cloud.google.com/dlp/docs/
# pseudonymization to learn more.
class GooglePrivacyDlpV2CryptoHashConfig
include Google::Apis::Core::Hashable
# This is a data encryption key (DEK) (as opposed to a key encryption key (KEK)
# stored by KMS). When using KMS to wrap/unwrap DEKs, be sure to set an
# appropriate IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
# unwrap the data crypto key.
# Corresponds to the JSON property `cryptoKey`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CryptoKey]
attr_accessor :crypto_key
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@crypto_key = args[:crypto_key] if args.key?(:crypto_key)
end
end
# This is a data encryption key (DEK) (as opposed to a key encryption key (KEK)
# stored by KMS). When using KMS to wrap/unwrap DEKs, be sure to set an
# appropriate IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
# unwrap the data crypto key.
class GooglePrivacyDlpV2CryptoKey
include Google::Apis::Core::Hashable
# Include to use an existing data crypto key wrapped by KMS. The wrapped key
# must be a 128/192/256 bit key. Authorization requires the following IAM
# permissions when sending a request to perform a crypto transformation using a
# kms-wrapped crypto key: dlp.kms.encrypt
# Corresponds to the JSON property `kmsWrapped`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2KmsWrappedCryptoKey]
attr_accessor :kms_wrapped
# Use this to have a random data crypto key generated. It will be discarded
# after the request finishes.
# Corresponds to the JSON property `transient`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TransientCryptoKey]
attr_accessor :transient
# Using raw keys is prone to security risks due to accidentally leaking the key.
# Choose another type of key if possible.
# Corresponds to the JSON property `unwrapped`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2UnwrappedCryptoKey]
attr_accessor :unwrapped
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@kms_wrapped = args[:kms_wrapped] if args.key?(:kms_wrapped)
@transient = args[:transient] if args.key?(:transient)
@unwrapped = args[:unwrapped] if args.key?(:unwrapped)
end
end
# Replaces an identifier with a surrogate using Format Preserving Encryption (
# FPE) with the FFX mode of operation; however when used in the `
# ReidentifyContent` API method, it serves the opposite function by reversing
# the surrogate back into the original identifier. The identifier must be
# encoded as ASCII. For a given crypto key and context, the same identifier will
# be replaced with the same surrogate. Identifiers must be at least two
# characters long. In the case that the identifier is the empty string, it will
# be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
# more. Note: We recommend using CryptoDeterministicConfig for all use cases
# which do not require preserving the input alphabet space and size, plus
# warrant referential integrity.
class GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig
include Google::Apis::Core::Hashable
# Common alphabets.
# Corresponds to the JSON property `commonAlphabet`
# @return [String]
attr_accessor :common_alphabet
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `context`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :context
# This is a data encryption key (DEK) (as opposed to a key encryption key (KEK)
# stored by KMS). When using KMS to wrap/unwrap DEKs, be sure to set an
# appropriate IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
# unwrap the data crypto key.
# Corresponds to the JSON property `cryptoKey`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CryptoKey]
attr_accessor :crypto_key
# This is supported by mapping these to the alphanumeric characters that the FFX
# mode natively supports. This happens before/after encryption/decryption. Each
# character listed must appear only once. Number of characters must be in the
# range [2, 95]. This must be encoded as ASCII. The order of characters does not
# matter. The full list of allowed characters is:
# 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&*()_-+=
# `[`]|\:;"'<,>.?/
# Corresponds to the JSON property `customAlphabet`
# @return [String]
attr_accessor :custom_alphabet
# The native way to select the alphabet. Must be in the range [2, 95].
# Corresponds to the JSON property `radix`
# @return [Fixnum]
attr_accessor :radix
# Type of information detected by the API.
# Corresponds to the JSON property `surrogateInfoType`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
attr_accessor :surrogate_info_type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@common_alphabet = args[:common_alphabet] if args.key?(:common_alphabet)
@context = args[:context] if args.key?(:context)
@crypto_key = args[:crypto_key] if args.key?(:crypto_key)
@custom_alphabet = args[:custom_alphabet] if args.key?(:custom_alphabet)
@radix = args[:radix] if args.key?(:radix)
@surrogate_info_type = args[:surrogate_info_type] if args.key?(:surrogate_info_type)
end
end
# Custom information type provided by the user. Used to find domain-specific
# sensitive information configurable to the data in question.
class GooglePrivacyDlpV2CustomInfoType
include Google::Apis::Core::Hashable
# Set of detection rules to apply to all findings of this CustomInfoType. Rules
# are applied in order that they are specified. Not supported for the `
# surrogate_type` CustomInfoType.
# Corresponds to the JSON property `detectionRules`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DetectionRule>]
attr_accessor :detection_rules
# Custom information type based on a dictionary of words or phrases. This can be
# used to match sensitive information specific to the data, such as a list of
# employee IDs or job titles. Dictionary words are case-insensitive and all
# characters other than letters and digits in the unicode [Basic Multilingual
# Plane](https://en.wikipedia.org/wiki/Plane_%28Unicode%29#
# Basic_Multilingual_Plane) will be replaced with whitespace when scanning for
# matches, so the dictionary phrase "Sam Johnson" will match all three phrases "
# sam johnson", "Sam, Johnson", and "Sam (Johnson)". Additionally, the
# characters surrounding any match must be of a different type than the adjacent
# characters within the word, so letters must be next to non-letters and digits
# next to non-digits. For example, the dictionary word "jen" will match the
# first three letters of the text "jen123" but will return no matches for "
# jennifer". Dictionary words containing a large number of characters that are
# not letters or digits may result in unexpected findings because such
# characters are treated as whitespace. The [limits](https://cloud.google.com/
# dlp/limits) page contains details about the size limits of dictionaries. For
# dictionaries that do not fit within these constraints, consider using `
# LargeCustomDictionaryConfig` in the `StoredInfoType` API.
# Corresponds to the JSON property `dictionary`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Dictionary]
attr_accessor :dictionary
# If set to EXCLUSION_TYPE_EXCLUDE this infoType will not cause a finding to be
# returned. It still can be used for rules matching.
# Corresponds to the JSON property `exclusionType`
# @return [String]
attr_accessor :exclusion_type
# Type of information detected by the API.
# Corresponds to the JSON property `infoType`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
attr_accessor :info_type
# Likelihood to return for this CustomInfoType. This base value can be altered
# by a detection rule if the finding meets the criteria specified by the rule.
# Defaults to `VERY_LIKELY` if not specified.
# Corresponds to the JSON property `likelihood`
# @return [String]
attr_accessor :likelihood
# Message defining a custom regular expression.
# Corresponds to the JSON property `regex`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Regex]
attr_accessor :regex
# A reference to a StoredInfoType to use with scanning.
# Corresponds to the JSON property `storedType`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredType]
attr_accessor :stored_type
# Message for detecting output from deidentification transformations such as [`
# CryptoReplaceFfxFpeConfig`](https://cloud.google.com/dlp/docs/reference/rest/
# v2/organizations.deidentifyTemplates#cryptoreplaceffxfpeconfig). These types
# of transformations are those that perform pseudonymization, thereby producing
# a "surrogate" as output. This should be used in conjunction with a field on
# the transformation such as `surrogate_info_type`. This CustomInfoType does not
# support the use of `detection_rules`.
# Corresponds to the JSON property `surrogateType`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2SurrogateType]
attr_accessor :surrogate_type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@detection_rules = args[:detection_rules] if args.key?(:detection_rules)
@dictionary = args[:dictionary] if args.key?(:dictionary)
@exclusion_type = args[:exclusion_type] if args.key?(:exclusion_type)
@info_type = args[:info_type] if args.key?(:info_type)
@likelihood = args[:likelihood] if args.key?(:likelihood)
@regex = args[:regex] if args.key?(:regex)
@stored_type = args[:stored_type] if args.key?(:stored_type)
@surrogate_type = args[:surrogate_type] if args.key?(:surrogate_type)
end
end
# Record key for a finding in Cloud Datastore.
class GooglePrivacyDlpV2DatastoreKey
include Google::Apis::Core::Hashable
# A unique identifier for a Datastore entity. If a key's partition ID or any of
# its path kinds or names are reserved/read-only, the key is reserved/read-only.
# A reserved/read-only key is forbidden in certain documented contexts.
# Corresponds to the JSON property `entityKey`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Key]
attr_accessor :entity_key
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@entity_key = args[:entity_key] if args.key?(:entity_key)
end
end
# Options defining a data set within Google Cloud Datastore.
class GooglePrivacyDlpV2DatastoreOptions
include Google::Apis::Core::Hashable
# A representation of a Datastore kind.
# Corresponds to the JSON property `kind`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2KindExpression]
attr_accessor :kind
# Datastore partition ID. A partition ID identifies a grouping of entities. The
# grouping is always by project and namespace, however the namespace ID may be
# empty. A partition ID contains several dimensions: project ID and namespace ID.
# Corresponds to the JSON property `partitionId`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PartitionId]
attr_accessor :partition_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@kind = args[:kind] if args.key?(:kind)
@partition_id = args[:partition_id] if args.key?(:partition_id)
end
end
# Shifts dates by random number of days, with option to be consistent for the
# same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting to
# learn more.
class GooglePrivacyDlpV2DateShiftConfig
include Google::Apis::Core::Hashable
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `context`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :context
# This is a data encryption key (DEK) (as opposed to a key encryption key (KEK)
# stored by KMS). When using KMS to wrap/unwrap DEKs, be sure to set an
# appropriate IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
# unwrap the data crypto key.
# Corresponds to the JSON property `cryptoKey`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CryptoKey]
attr_accessor :crypto_key
# Required. For example, -5 means shift date to at most 5 days back in the past.
# Corresponds to the JSON property `lowerBoundDays`
# @return [Fixnum]
attr_accessor :lower_bound_days
# Required. Range of shift in days. Actual shift will be selected at random
# within this range (inclusive ends). Negative means shift to earlier in time.
# Must not be more than 365250 days (1000 years) each direction. For example, 3
# means shift date to at most 3 days into the future.
# Corresponds to the JSON property `upperBoundDays`
# @return [Fixnum]
attr_accessor :upper_bound_days
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@context = args[:context] if args.key?(:context)
@crypto_key = args[:crypto_key] if args.key?(:crypto_key)
@lower_bound_days = args[:lower_bound_days] if args.key?(:lower_bound_days)
@upper_bound_days = args[:upper_bound_days] if args.key?(:upper_bound_days)
end
end
# Message for a date time object. e.g. 2018-01-01, 5th August.
class GooglePrivacyDlpV2DateTime
include Google::Apis::Core::Hashable
# Represents a whole or partial calendar date, such as a birthday. The time of
# day and time zone are either specified elsewhere or are insignificant. The
# date is relative to the Gregorian Calendar. This can represent one of the
# following: * A full date, with non-zero year, month, and day values * A month
# and day value, with a zero year, such as an anniversary * A year on its own,
# with zero month and day values * A year and month value, with a zero day, such
# as a credit card expiration date Related types are google.type.TimeOfDay and `
# google.protobuf.Timestamp`.
# Corresponds to the JSON property `date`
# @return [Google::Apis::DlpV2::GoogleTypeDate]
attr_accessor :date
# Day of week
# Corresponds to the JSON property `dayOfWeek`
# @return [String]
attr_accessor :day_of_week
# Represents a time of day. The date and time zone are either not significant or
# are specified elsewhere. An API may choose to allow leap seconds. Related
# types are google.type.Date and `google.protobuf.Timestamp`.
# Corresponds to the JSON property `time`
# @return [Google::Apis::DlpV2::GoogleTypeTimeOfDay]
attr_accessor :time
# Time zone of the date time object.
# Corresponds to the JSON property `timeZone`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TimeZone]
attr_accessor :time_zone
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@date = args[:date] if args.key?(:date)
@day_of_week = args[:day_of_week] if args.key?(:day_of_week)
@time = args[:time] if args.key?(:time)
@time_zone = args[:time_zone] if args.key?(:time_zone)
end
end
# The configuration that controls how the data will change.
class GooglePrivacyDlpV2DeidentifyConfig
include Google::Apis::Core::Hashable
# A type of transformation that will scan unstructured text and apply various `
# PrimitiveTransformation`s to each finding, where the transformation is applied
# to only values that were identified as a specific info_type.
# Corresponds to the JSON property `infoTypeTransformations`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeTransformations]
attr_accessor :info_type_transformations
# A type of transformation that is applied over structured data such as a table.
# Corresponds to the JSON property `recordTransformations`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RecordTransformations]
attr_accessor :record_transformations
# How to handle transformation errors during de-identification. A transformation
# error occurs when the requested transformation is incompatible with the data.
# For example, trying to de-identify an IP address using a `DateShift`
# transformation would result in a transformation error, since date info cannot
# be extracted from an IP address. Information about any incompatible
# transformations, and how they were handled, is returned in the response as
# part of the `TransformationOverviews`.
# Corresponds to the JSON property `transformationErrorHandling`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationErrorHandling]
attr_accessor :transformation_error_handling
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@info_type_transformations = args[:info_type_transformations] if args.key?(:info_type_transformations)
@record_transformations = args[:record_transformations] if args.key?(:record_transformations)
@transformation_error_handling = args[:transformation_error_handling] if args.key?(:transformation_error_handling)
end
end
# Request to de-identify a list of items.
class GooglePrivacyDlpV2DeidentifyContentRequest
include Google::Apis::Core::Hashable
# The configuration that controls how the data will change.
# Corresponds to the JSON property `deidentifyConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyConfig]
attr_accessor :deidentify_config
# Template to use. Any configuration directly specified in deidentify_config
# will override those set in the template. Singular fields that are set in this
# request will replace their corresponding fields in the template. Repeated
# fields are appended. Singular sub-messages and groups are recursively merged.
# Corresponds to the JSON property `deidentifyTemplateName`
# @return [String]
attr_accessor :deidentify_template_name
# Configuration description of the scanning process. When used with
# redactContent only info_types and min_likelihood are currently used.
# Corresponds to the JSON property `inspectConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectConfig]
attr_accessor :inspect_config
# Template to use. Any configuration directly specified in inspect_config will
# override those set in the template. Singular fields that are set in this
# request will replace their corresponding fields in the template. Repeated
# fields are appended. Singular sub-messages and groups are recursively merged.
# Corresponds to the JSON property `inspectTemplateName`
# @return [String]
attr_accessor :inspect_template_name
# Container structure for the content to inspect.
# Corresponds to the JSON property `item`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem]
attr_accessor :item
# Deprecated. This field has no effect.
# Corresponds to the JSON property `locationId`
# @return [String]
attr_accessor :location_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@deidentify_config = args[:deidentify_config] if args.key?(:deidentify_config)
@deidentify_template_name = args[:deidentify_template_name] if args.key?(:deidentify_template_name)
@inspect_config = args[:inspect_config] if args.key?(:inspect_config)
@inspect_template_name = args[:inspect_template_name] if args.key?(:inspect_template_name)
@item = args[:item] if args.key?(:item)
@location_id = args[:location_id] if args.key?(:location_id)
end
end
# Results of de-identifying a ContentItem.
class GooglePrivacyDlpV2DeidentifyContentResponse
include Google::Apis::Core::Hashable
# Container structure for the content to inspect.
# Corresponds to the JSON property `item`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem]
attr_accessor :item
# Overview of the modifications that occurred.
# Corresponds to the JSON property `overview`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationOverview]
attr_accessor :overview
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@item = args[:item] if args.key?(:item)
@overview = args[:overview] if args.key?(:overview)
end
end
# DeidentifyTemplates contains instructions on how to de-identify content. See
# https://cloud.google.com/dlp/docs/concepts-templates to learn more.
class GooglePrivacyDlpV2DeidentifyTemplate
include Google::Apis::Core::Hashable
# Output only. The creation timestamp of an inspectTemplate.
# Corresponds to the JSON property `createTime`
# @return [String]
attr_accessor :create_time
# The configuration that controls how the data will change.
# Corresponds to the JSON property `deidentifyConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyConfig]
attr_accessor :deidentify_config
# Short description (max 256 chars).
# Corresponds to the JSON property `description`
# @return [String]
attr_accessor :description
# Display name (max 256 chars).
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
# Output only. The template name. The template will have one of the following
# formats: `projects/PROJECT_ID/deidentifyTemplates/TEMPLATE_ID` OR `
# organizations/ORGANIZATION_ID/deidentifyTemplates/TEMPLATE_ID`
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# Output only. The last update timestamp of an inspectTemplate.
# Corresponds to the JSON property `updateTime`
# @return [String]
attr_accessor :update_time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@create_time = args[:create_time] if args.key?(:create_time)
@deidentify_config = args[:deidentify_config] if args.key?(:deidentify_config)
@description = args[:description] if args.key?(:description)
@display_name = args[:display_name] if args.key?(:display_name)
@name = args[:name] if args.key?(:name)
@update_time = args[:update_time] if args.key?(:update_time)
end
end
# δ-presence metric, used to estimate how likely it is for an attacker to figure
# out that one given individual appears in a de-identified dataset. Similarly to
# the k-map metric, we cannot compute δ-presence exactly without knowing the
# attack dataset, so we use a statistical model instead.
class GooglePrivacyDlpV2DeltaPresenceEstimationConfig
include Google::Apis::Core::Hashable
# Several auxiliary tables can be used in the analysis. Each custom_tag used to
# tag a quasi-identifiers field must appear in exactly one field of one
# auxiliary table.
# Corresponds to the JSON property `auxiliaryTables`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2StatisticalTable>]
attr_accessor :auxiliary_tables
# Required. Fields considered to be quasi-identifiers. No two fields can have
# the same tag.
# Corresponds to the JSON property `quasiIds`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2QuasiId>]
attr_accessor :quasi_ids
# ISO 3166-1 alpha-2 region code to use in the statistical modeling. Set if no
# column is tagged with a region-specific InfoType (like US_ZIP_5) or a region
# code.
# Corresponds to the JSON property `regionCode`
# @return [String]
attr_accessor :region_code
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@auxiliary_tables = args[:auxiliary_tables] if args.key?(:auxiliary_tables)
@quasi_ids = args[:quasi_ids] if args.key?(:quasi_ids)
@region_code = args[:region_code] if args.key?(:region_code)
end
end
# A DeltaPresenceEstimationHistogramBucket message with the following values:
# min_probability: 0.1 max_probability: 0.2 frequency: 42 means that there are
# 42 records for which δ is in [0.1, 0.2). An important particular case is when
# min_probability = max_probability = 1: then, every individual who shares this
# quasi-identifier combination is in the dataset.
class GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket
include Google::Apis::Core::Hashable
# Number of records within these probability bounds.
# Corresponds to the JSON property `bucketSize`
# @return [Fixnum]
attr_accessor :bucket_size
# Total number of distinct quasi-identifier tuple values in this bucket.
# Corresponds to the JSON property `bucketValueCount`
# @return [Fixnum]
attr_accessor :bucket_value_count
# Sample of quasi-identifier tuple values in this bucket. The total number of
# classes returned per bucket is capped at 20.
# Corresponds to the JSON property `bucketValues`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues>]
attr_accessor :bucket_values
# Always greater than or equal to min_probability.
# Corresponds to the JSON property `maxProbability`
# @return [Float]
attr_accessor :max_probability
# Between 0 and 1.
# Corresponds to the JSON property `minProbability`
# @return [Float]
attr_accessor :min_probability
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bucket_size = args[:bucket_size] if args.key?(:bucket_size)
@bucket_value_count = args[:bucket_value_count] if args.key?(:bucket_value_count)
@bucket_values = args[:bucket_values] if args.key?(:bucket_values)
@max_probability = args[:max_probability] if args.key?(:max_probability)
@min_probability = args[:min_probability] if args.key?(:min_probability)
end
end
# A tuple of values for the quasi-identifier columns.
class GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues
include Google::Apis::Core::Hashable
# The estimated probability that a given individual sharing these quasi-
# identifier values is in the dataset. This value, typically called δ, is the
# ratio between the number of records in the dataset with these quasi-identifier
# values, and the total number of individuals (inside *and* outside the dataset)
# with these quasi-identifier values. For example, if there are 15 individuals
# in the dataset who share the same quasi-identifier values, and an estimated
# 100 people in the entire population with these values, then δ is 0.15.
# Corresponds to the JSON property `estimatedProbability`
# @return [Float]
attr_accessor :estimated_probability
# The quasi-identifier values.
# Corresponds to the JSON property `quasiIdsValues`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>]
attr_accessor :quasi_ids_values
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@estimated_probability = args[:estimated_probability] if args.key?(:estimated_probability)
@quasi_ids_values = args[:quasi_ids_values] if args.key?(:quasi_ids_values)
end
end
# Result of the δ-presence computation. Note that these results are an
# estimation, not exact values.
class GooglePrivacyDlpV2DeltaPresenceEstimationResult
include Google::Apis::Core::Hashable
# The intervals [min_probability, max_probability) do not overlap. If a value
# doesn't correspond to any such interval, the associated frequency is zero. For
# example, the following records: `min_probability: 0, max_probability: 0.1,
# frequency: 17` `min_probability: 0.2, max_probability: 0.3, frequency: 42` `
# min_probability: 0.3, max_probability: 0.4, frequency: 99` mean that there are
# no record with an estimated probability in [0.1, 0.2) nor larger or equal to 0.
# 4.
# Corresponds to the JSON property `deltaPresenceEstimationHistogram`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket>]
attr_accessor :delta_presence_estimation_histogram
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@delta_presence_estimation_histogram = args[:delta_presence_estimation_histogram] if args.key?(:delta_presence_estimation_histogram)
end
end
# Deprecated; use `InspectionRuleSet` instead. Rule for modifying a `
# CustomInfoType` to alter behavior under certain circumstances, depending on
# the specific details of the rule. Not supported for the `surrogate_type`
# custom infoType.
class GooglePrivacyDlpV2DetectionRule
include Google::Apis::Core::Hashable
# The rule that adjusts the likelihood of findings within a certain proximity of
# hotwords.
# Corresponds to the JSON property `hotwordRule`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2HotwordRule]
attr_accessor :hotword_rule
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@hotword_rule = args[:hotword_rule] if args.key?(:hotword_rule)
end
end
# Custom information type based on a dictionary of words or phrases. This can be
# used to match sensitive information specific to the data, such as a list of
# employee IDs or job titles. Dictionary words are case-insensitive and all
# characters other than letters and digits in the unicode [Basic Multilingual
# Plane](https://en.wikipedia.org/wiki/Plane_%28Unicode%29#
# Basic_Multilingual_Plane) will be replaced with whitespace when scanning for
# matches, so the dictionary phrase "Sam Johnson" will match all three phrases "
# sam johnson", "Sam, Johnson", and "Sam (Johnson)". Additionally, the
# characters surrounding any match must be of a different type than the adjacent
# characters within the word, so letters must be next to non-letters and digits
# next to non-digits. For example, the dictionary word "jen" will match the
# first three letters of the text "jen123" but will return no matches for "
# jennifer". Dictionary words containing a large number of characters that are
# not letters or digits may result in unexpected findings because such
# characters are treated as whitespace. The [limits](https://cloud.google.com/
# dlp/limits) page contains details about the size limits of dictionaries. For
# dictionaries that do not fit within these constraints, consider using `
# LargeCustomDictionaryConfig` in the `StoredInfoType` API.
class GooglePrivacyDlpV2Dictionary
include Google::Apis::Core::Hashable
# Message representing a single file or path in Cloud Storage.
# Corresponds to the JSON property `cloudStoragePath`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStoragePath]
attr_accessor :cloud_storage_path
# Message defining a list of words or phrases to search for in the data.
# Corresponds to the JSON property `wordList`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2WordList]
attr_accessor :word_list
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@cloud_storage_path = args[:cloud_storage_path] if args.key?(:cloud_storage_path)
@word_list = args[:word_list] if args.key?(:word_list)
end
end
# Combines all of the information about a DLP job.
class GooglePrivacyDlpV2DlpJob
include Google::Apis::Core::Hashable
# Time when the job was created.
# Corresponds to the JSON property `createTime`
# @return [String]
attr_accessor :create_time
# Time when the job finished.
# Corresponds to the JSON property `endTime`
# @return [String]
attr_accessor :end_time
# A stream of errors encountered running the job.
# Corresponds to the JSON property `errors`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Error>]
attr_accessor :errors
# The results of an inspect DataSource job.
# Corresponds to the JSON property `inspectDetails`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectDataSourceDetails]
attr_accessor :inspect_details
# If created by a job trigger, the resource name of the trigger that
# instantiated the job.
# Corresponds to the JSON property `jobTriggerName`
# @return [String]
attr_accessor :job_trigger_name
# The server-assigned name.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# Result of a risk analysis operation request.
# Corresponds to the JSON property `riskDetails`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails]
attr_accessor :risk_details
# Time when the job started.
# Corresponds to the JSON property `startTime`
# @return [String]
attr_accessor :start_time
# State of a job.
# Corresponds to the JSON property `state`
# @return [String]
attr_accessor :state
# The type of job.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@create_time = args[:create_time] if args.key?(:create_time)
@end_time = args[:end_time] if args.key?(:end_time)
@errors = args[:errors] if args.key?(:errors)
@inspect_details = args[:inspect_details] if args.key?(:inspect_details)
@job_trigger_name = args[:job_trigger_name] if args.key?(:job_trigger_name)
@name = args[:name] if args.key?(:name)
@risk_details = args[:risk_details] if args.key?(:risk_details)
@start_time = args[:start_time] if args.key?(:start_time)
@state = args[:state] if args.key?(:state)
@type = args[:type] if args.key?(:type)
end
end
# Location of a finding within a document.
class GooglePrivacyDlpV2DocumentLocation
include Google::Apis::Core::Hashable
# Offset of the line, from the beginning of the file, where the finding is
# located.
# Corresponds to the JSON property `fileOffset`
# @return [Fixnum]
attr_accessor :file_offset
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@file_offset = args[:file_offset] if args.key?(:file_offset)
end
end
# An entity in a dataset is a field or set of fields that correspond to a single
# person. For example, in medical records the `EntityId` might be a patient
# identifier, or for financial records it might be an account identifier. This
# message is used when generalizations or analysis must take into account that
# multiple rows correspond to the same entity.
class GooglePrivacyDlpV2EntityId
include Google::Apis::Core::Hashable
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `field`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :field
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@field = args[:field] if args.key?(:field)
end
end
# Details information about an error encountered during job execution or the
# results of an unsuccessful activation of the JobTrigger.
class GooglePrivacyDlpV2Error
include Google::Apis::Core::Hashable
# The `Status` type defines a logical error model that is suitable for different
# programming environments, including REST APIs and RPC APIs. It is used by [
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
# data: error code, error message, and error details. You can find out more
# about this error model and how to work with it in the [API Design Guide](https:
# //cloud.google.com/apis/design/errors).
# Corresponds to the JSON property `details`
# @return [Google::Apis::DlpV2::GoogleRpcStatus]
attr_accessor :details
# The times the error occurred.
# Corresponds to the JSON property `timestamps`
# @return [Array<String>]
attr_accessor :timestamps
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@details = args[:details] if args.key?(:details)
@timestamps = args[:timestamps] if args.key?(:timestamps)
end
end
# List of exclude infoTypes.
class GooglePrivacyDlpV2ExcludeInfoTypes
include Google::Apis::Core::Hashable
# InfoType list in ExclusionRule rule drops a finding when it overlaps or
# contained within with a finding of an infoType from this list. For example,
# for `InspectionRuleSet.info_types` containing "PHONE_NUMBER"` and `
# exclusion_rule` containing `exclude_info_types.info_types` with "EMAIL_ADDRESS"
# the phone number findings are dropped if they overlap with EMAIL_ADDRESS
# finding. That leads to "555-222-2222@example.org" to generate only a single
# finding, namely email address.
# Corresponds to the JSON property `infoTypes`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType>]
attr_accessor :info_types
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@info_types = args[:info_types] if args.key?(:info_types)
end
end
# The rule that specifies conditions when findings of infoTypes specified in `
# InspectionRuleSet` are removed from results.
class GooglePrivacyDlpV2ExclusionRule
include Google::Apis::Core::Hashable
# Custom information type based on a dictionary of words or phrases. This can be
# used to match sensitive information specific to the data, such as a list of
# employee IDs or job titles. Dictionary words are case-insensitive and all
# characters other than letters and digits in the unicode [Basic Multilingual
# Plane](https://en.wikipedia.org/wiki/Plane_%28Unicode%29#
# Basic_Multilingual_Plane) will be replaced with whitespace when scanning for
# matches, so the dictionary phrase "Sam Johnson" will match all three phrases "
# sam johnson", "Sam, Johnson", and "Sam (Johnson)". Additionally, the
# characters surrounding any match must be of a different type than the adjacent
# characters within the word, so letters must be next to non-letters and digits
# next to non-digits. For example, the dictionary word "jen" will match the
# first three letters of the text "jen123" but will return no matches for "
# jennifer". Dictionary words containing a large number of characters that are
# not letters or digits may result in unexpected findings because such
# characters are treated as whitespace. The [limits](https://cloud.google.com/
# dlp/limits) page contains details about the size limits of dictionaries. For
# dictionaries that do not fit within these constraints, consider using `
# LargeCustomDictionaryConfig` in the `StoredInfoType` API.
# Corresponds to the JSON property `dictionary`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Dictionary]
attr_accessor :dictionary
# List of exclude infoTypes.
# Corresponds to the JSON property `excludeInfoTypes`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ExcludeInfoTypes]
attr_accessor :exclude_info_types
# How the rule is applied, see MatchingType documentation for details.
# Corresponds to the JSON property `matchingType`
# @return [String]
attr_accessor :matching_type
# Message defining a custom regular expression.
# Corresponds to the JSON property `regex`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Regex]
attr_accessor :regex
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@dictionary = args[:dictionary] if args.key?(:dictionary)
@exclude_info_types = args[:exclude_info_types] if args.key?(:exclude_info_types)
@matching_type = args[:matching_type] if args.key?(:matching_type)
@regex = args[:regex] if args.key?(:regex)
end
end
# An expression, consisting or an operator and conditions.
class GooglePrivacyDlpV2Expressions
include Google::Apis::Core::Hashable
# A collection of conditions.
# Corresponds to the JSON property `conditions`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Conditions]
attr_accessor :conditions
# The operator to apply to the result of conditions. Default and currently only
# supported value is `AND`.
# Corresponds to the JSON property `logicalOperator`
# @return [String]
attr_accessor :logical_operator
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@conditions = args[:conditions] if args.key?(:conditions)
@logical_operator = args[:logical_operator] if args.key?(:logical_operator)
end
end
# General identifier of a data field in a storage service.
class GooglePrivacyDlpV2FieldId
include Google::Apis::Core::Hashable
# Name describing the field.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@name = args[:name] if args.key?(:name)
end
end
# The transformation to apply to the field.
class GooglePrivacyDlpV2FieldTransformation
include Google::Apis::Core::Hashable
# A condition for determining whether a transformation should be applied to a
# field.
# Corresponds to the JSON property `condition`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RecordCondition]
attr_accessor :condition
# Required. Input field(s) to apply the transformation to.
# Corresponds to the JSON property `fields`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId>]
attr_accessor :fields
# A type of transformation that will scan unstructured text and apply various `
# PrimitiveTransformation`s to each finding, where the transformation is applied
# to only values that were identified as a specific info_type.
# Corresponds to the JSON property `infoTypeTransformations`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeTransformations]
attr_accessor :info_type_transformations
# A rule for transforming a value.
# Corresponds to the JSON property `primitiveTransformation`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PrimitiveTransformation]
attr_accessor :primitive_transformation
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@condition = args[:condition] if args.key?(:condition)
@fields = args[:fields] if args.key?(:fields)
@info_type_transformations = args[:info_type_transformations] if args.key?(:info_type_transformations)
@primitive_transformation = args[:primitive_transformation] if args.key?(:primitive_transformation)
end
end
# Set of files to scan.
class GooglePrivacyDlpV2FileSet
include Google::Apis::Core::Hashable
# Message representing a set of files in a Cloud Storage bucket. Regular
# expressions are used to allow fine-grained control over which files in the
# bucket to include. Included files are those that match at least one item in `
# include_regex` and do not match any items in `exclude_regex`. Note that a file
# that matches items from both lists will _not_ be included. For a match to
# occur, the entire file path (i.e., everything in the url after the bucket name)
# must match the regular expression. For example, given the input ``bucket_name:
# "mybucket", include_regex: ["directory1/.*"], exclude_regex: ["directory1/
# excluded.*"]``: * `gs://mybucket/directory1/myfile` will be included * `gs://
# mybucket/directory1/directory2/myfile` will be included (`.*` matches across `/
# `) * `gs://mybucket/directory0/directory1/myfile` will _not_ be included (the
# full path doesn't match any items in `include_regex`) * `gs://mybucket/
# directory1/excludedfile` will _not_ be included (the path matches an item in `
# exclude_regex`) If `include_regex` is left empty, it will match all files by
# default (this is equivalent to setting `include_regex: [".*"]`). Some other
# common use cases: * ``bucket_name: "mybucket", exclude_regex: [".*\.pdf"]``
# will include all files in `mybucket` except for .pdf files * ``bucket_name: "
# mybucket", include_regex: ["directory/[^/]+"]`` will include all files
# directly under `gs://mybucket/directory/`, without matching across `/`
# Corresponds to the JSON property `regexFileSet`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStorageRegexFileSet]
attr_accessor :regex_file_set
# The Cloud Storage url of the file(s) to scan, in the format `gs:///`. Trailing
# wildcard in the path is allowed. If the url ends in a trailing slash, the
# bucket or directory represented by the url will be scanned non-recursively (
# content in sub-directories will not be scanned). This means that `gs://
# mybucket/` is equivalent to `gs://mybucket/*`, and `gs://mybucket/directory/`
# is equivalent to `gs://mybucket/directory/*`. Exactly one of `url` or `
# regex_file_set` must be set.
# Corresponds to the JSON property `url`
# @return [String]
attr_accessor :url
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@regex_file_set = args[:regex_file_set] if args.key?(:regex_file_set)
@url = args[:url] if args.key?(:url)
end
end
# Represents a piece of potentially sensitive content.
class GooglePrivacyDlpV2Finding
include Google::Apis::Core::Hashable
# Timestamp when finding was detected.
# Corresponds to the JSON property `createTime`
# @return [String]
attr_accessor :create_time
# The unique finding id.
# Corresponds to the JSON property `findingId`
# @return [String]
attr_accessor :finding_id
# Type of information detected by the API.
# Corresponds to the JSON property `infoType`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
attr_accessor :info_type
# Time the job started that produced this finding.
# Corresponds to the JSON property `jobCreateTime`
# @return [String]
attr_accessor :job_create_time
# The job that stored the finding.
# Corresponds to the JSON property `jobName`
# @return [String]
attr_accessor :job_name
# The labels associated with this `Finding`. Label keys must be between 1 and 63
# characters long and must conform to the following regular expression: `[a-z]([-
# a-z0-9]*[a-z0-9])?`. Label values must be between 0 and 63 characters long and
# must conform to the regular expression `([a-z]([-a-z0-9]*[a-z0-9])?)?`. No
# more than 10 labels can be associated with a given finding. Examples: * `"
# environment" : "production"` * `"pipeline" : "etl"`
# Corresponds to the JSON property `labels`
# @return [Hash<String,String>]
attr_accessor :labels
# Confidence of how likely it is that the `info_type` is correct.
# Corresponds to the JSON property `likelihood`
# @return [String]
attr_accessor :likelihood
# Specifies the location of the finding.
# Corresponds to the JSON property `location`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Location]
attr_accessor :location
# Resource name in format projects/`project`/locations/`location`/findings/`
# finding` Populated only when viewing persisted findings.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# The content that was found. Even if the content is not textual, it may be
# converted to a textual representation here. Provided if `include_quote` is
# true and the finding is less than or equal to 4096 bytes long. If the finding
# exceeds 4096 bytes in length, the quote may be omitted.
# Corresponds to the JSON property `quote`
# @return [String]
attr_accessor :quote
# Message for infoType-dependent details parsed from quote.
# Corresponds to the JSON property `quoteInfo`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2QuoteInfo]
attr_accessor :quote_info
# The job that stored the finding.
# Corresponds to the JSON property `resourceName`
# @return [String]
attr_accessor :resource_name
# Job trigger name, if applicable, for this finding.
# Corresponds to the JSON property `triggerName`
# @return [String]
attr_accessor :trigger_name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@create_time = args[:create_time] if args.key?(:create_time)
@finding_id = args[:finding_id] if args.key?(:finding_id)
@info_type = args[:info_type] if args.key?(:info_type)
@job_create_time = args[:job_create_time] if args.key?(:job_create_time)
@job_name = args[:job_name] if args.key?(:job_name)
@labels = args[:labels] if args.key?(:labels)
@likelihood = args[:likelihood] if args.key?(:likelihood)
@location = args[:location] if args.key?(:location)
@name = args[:name] if args.key?(:name)
@quote = args[:quote] if args.key?(:quote)
@quote_info = args[:quote_info] if args.key?(:quote_info)
@resource_name = args[:resource_name] if args.key?(:resource_name)
@trigger_name = args[:trigger_name] if args.key?(:trigger_name)
end
end
# Configuration to control the number of findings returned.
class GooglePrivacyDlpV2FindingLimits
include Google::Apis::Core::Hashable
# Configuration of findings limit given for specified infoTypes.
# Corresponds to the JSON property `maxFindingsPerInfoType`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeLimit>]
attr_accessor :max_findings_per_info_type
# Max number of findings that will be returned for each item scanned. When set
# within `InspectJobConfig`, the maximum returned is 2000 regardless if this is
# set higher. When set within `InspectContentRequest`, this field is ignored.
# Corresponds to the JSON property `maxFindingsPerItem`
# @return [Fixnum]
attr_accessor :max_findings_per_item
# Max number of findings that will be returned per request/job. When set within `
# InspectContentRequest`, the maximum returned is 2000 regardless if this is set
# higher.
# Corresponds to the JSON property `maxFindingsPerRequest`
# @return [Fixnum]
attr_accessor :max_findings_per_request
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@max_findings_per_info_type = args[:max_findings_per_info_type] if args.key?(:max_findings_per_info_type)
@max_findings_per_item = args[:max_findings_per_item] if args.key?(:max_findings_per_item)
@max_findings_per_request = args[:max_findings_per_request] if args.key?(:max_findings_per_request)
end
end
# The request message for finishing a DLP hybrid job.
class GooglePrivacyDlpV2FinishDlpJobRequest
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Buckets values based on fixed size ranges. The Bucketing transformation can
# provide all of this functionality, but requires more configuration. This
# message is provided as a convenience to the user for simple bucketing
# strategies. The transformed value will be a hyphenated string of `lower_bound`-
# `upper_bound`, i.e if lower_bound = 10 and upper_bound = 20 all values that
# are within this bucket will be replaced with "10-20". This can be used on data
# of type: double, long. If the bound Value type differs from the type of data
# being transformed, we will first attempt converting the type of the data to be
# transformed to match the type of the bound before comparing. See https://cloud.
# google.com/dlp/docs/concepts-bucketing to learn more.
class GooglePrivacyDlpV2FixedSizeBucketingConfig
include Google::Apis::Core::Hashable
# Required. Size of each bucket (except for minimum and maximum buckets). So if `
# lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
# following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60, 60-70,
# 70-80, 80-89, 89+. Precision up to 2 decimals works.
# Corresponds to the JSON property `bucketSize`
# @return [Float]
attr_accessor :bucket_size
# Set of primitive values supported by the system. Note that for the purposes of
# inspection or transformation, the number of bytes considered to comprise a '
# Value' is based on its representation as a UTF-8 encoded string. For example,
# if 'integer_value' is set to 123456789, the number of bytes would be counted
# as 9, even though an int64 only holds up to 8 bytes of data.
# Corresponds to the JSON property `lowerBound`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Value]
attr_accessor :lower_bound
# Set of primitive values supported by the system. Note that for the purposes of
# inspection or transformation, the number of bytes considered to comprise a '
# Value' is based on its representation as a UTF-8 encoded string. For example,
# if 'integer_value' is set to 123456789, the number of bytes would be counted
# as 9, even though an int64 only holds up to 8 bytes of data.
# Corresponds to the JSON property `upperBound`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Value]
attr_accessor :upper_bound
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bucket_size = args[:bucket_size] if args.key?(:bucket_size)
@lower_bound = args[:lower_bound] if args.key?(:lower_bound)
@upper_bound = args[:upper_bound] if args.key?(:upper_bound)
end
end
# The rule that adjusts the likelihood of findings within a certain proximity of
# hotwords.
class GooglePrivacyDlpV2HotwordRule
include Google::Apis::Core::Hashable
# Message defining a custom regular expression.
# Corresponds to the JSON property `hotwordRegex`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Regex]
attr_accessor :hotword_regex
# Message for specifying an adjustment to the likelihood of a finding as part of
# a detection rule.
# Corresponds to the JSON property `likelihoodAdjustment`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2LikelihoodAdjustment]
attr_accessor :likelihood_adjustment
# Message for specifying a window around a finding to apply a detection rule.
# Corresponds to the JSON property `proximity`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Proximity]
attr_accessor :proximity
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@hotword_regex = args[:hotword_regex] if args.key?(:hotword_regex)
@likelihood_adjustment = args[:likelihood_adjustment] if args.key?(:likelihood_adjustment)
@proximity = args[:proximity] if args.key?(:proximity)
end
end
# An individual hybrid item to inspect. Will be stored temporarily during
# processing.
class GooglePrivacyDlpV2HybridContentItem
include Google::Apis::Core::Hashable
# Populate to associate additional data with each finding.
# Corresponds to the JSON property `findingDetails`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2HybridFindingDetails]
attr_accessor :finding_details
# Container structure for the content to inspect.
# Corresponds to the JSON property `item`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem]
attr_accessor :item
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@finding_details = args[:finding_details] if args.key?(:finding_details)
@item = args[:item] if args.key?(:item)
end
end
# Populate to associate additional data with each finding.
class GooglePrivacyDlpV2HybridFindingDetails
include Google::Apis::Core::Hashable
# Represents a container that may contain DLP findings. Examples of a container
# include a file, table, or database record.
# Corresponds to the JSON property `containerDetails`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Container]
attr_accessor :container_details
# Offset in bytes of the line, from the beginning of the file, where the finding
# is located. Populate if the item being scanned is only part of a bigger item,
# such as a shard of a file and you want to track the absolute position of the
# finding.
# Corresponds to the JSON property `fileOffset`
# @return [Fixnum]
attr_accessor :file_offset
# Labels to represent user provided metadata about the data being inspected. If
# configured by the job, some key values may be required. The labels associated
# with `Finding`'s produced by hybrid inspection. Label keys must be between 1
# and 63 characters long and must conform to the following regular expression: `[
# a-z]([-a-z0-9]*[a-z0-9])?`. Label values must be between 0 and 63 characters
# long and must conform to the regular expression `([a-z]([-a-z0-9]*[a-z0-9])?)?`
# . No more than 10 labels can be associated with a given finding. Examples: * `"
# environment" : "production"` * `"pipeline" : "etl"`
# Corresponds to the JSON property `labels`
# @return [Hash<String,String>]
attr_accessor :labels
# Offset of the row for tables. Populate if the row(s) being scanned are part of
# a bigger dataset and you want to keep track of their absolute position.
# Corresponds to the JSON property `rowOffset`
# @return [Fixnum]
attr_accessor :row_offset
# Instructions regarding the table content being inspected.
# Corresponds to the JSON property `tableOptions`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TableOptions]
attr_accessor :table_options
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@container_details = args[:container_details] if args.key?(:container_details)
@file_offset = args[:file_offset] if args.key?(:file_offset)
@labels = args[:labels] if args.key?(:labels)
@row_offset = args[:row_offset] if args.key?(:row_offset)
@table_options = args[:table_options] if args.key?(:table_options)
end
end
# Request to search for potentially sensitive info in a custom location.
class GooglePrivacyDlpV2HybridInspectDlpJobRequest
include Google::Apis::Core::Hashable
# An individual hybrid item to inspect. Will be stored temporarily during
# processing.
# Corresponds to the JSON property `hybridItem`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2HybridContentItem]
attr_accessor :hybrid_item
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@hybrid_item = args[:hybrid_item] if args.key?(:hybrid_item)
end
end
# Request to search for potentially sensitive info in a custom location.
class GooglePrivacyDlpV2HybridInspectJobTriggerRequest
include Google::Apis::Core::Hashable
# An individual hybrid item to inspect. Will be stored temporarily during
# processing.
# Corresponds to the JSON property `hybridItem`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2HybridContentItem]
attr_accessor :hybrid_item
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@hybrid_item = args[:hybrid_item] if args.key?(:hybrid_item)
end
end
# Quota exceeded errors will be thrown once quota has been met.
class GooglePrivacyDlpV2HybridInspectResponse
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Statistics related to processing hybrid inspect requests.
class GooglePrivacyDlpV2HybridInspectStatistics
include Google::Apis::Core::Hashable
# The number of hybrid inspection requests aborted because the job ran out of
# quota or was ended before they could be processed.
# Corresponds to the JSON property `abortedCount`
# @return [Fixnum]
attr_accessor :aborted_count
# The number of hybrid requests currently being processed. Only populated when
# called via method `getDlpJob`. A burst of traffic may cause hybrid inspect
# requests to be enqueued. Processing will take place as quickly as possible,
# but resource limitations may impact how long a request is enqueued for.
# Corresponds to the JSON property `pendingCount`
# @return [Fixnum]
attr_accessor :pending_count
# The number of hybrid inspection requests processed within this job.
# Corresponds to the JSON property `processedCount`
# @return [Fixnum]
attr_accessor :processed_count
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@aborted_count = args[:aborted_count] if args.key?(:aborted_count)
@pending_count = args[:pending_count] if args.key?(:pending_count)
@processed_count = args[:processed_count] if args.key?(:processed_count)
end
end
# Configuration to control jobs where the content being inspected is outside of
# Google Cloud Platform.
class GooglePrivacyDlpV2HybridOptions
include Google::Apis::Core::Hashable
# A short description of where the data is coming from. Will be stored once in
# the job. 256 max length.
# Corresponds to the JSON property `description`
# @return [String]
attr_accessor :description
# To organize findings, these labels will be added to each finding. Label keys
# must be between 1 and 63 characters long and must conform to the following
# regular expression: `[a-z]([-a-z0-9]*[a-z0-9])?`. Label values must be between
# 0 and 63 characters long and must conform to the regular expression `([a-z]([-
# a-z0-9]*[a-z0-9])?)?`. No more than 10 labels can be associated with a given
# finding. Examples: * `"environment" : "production"` * `"pipeline" : "etl"`
# Corresponds to the JSON property `labels`
# @return [Hash<String,String>]
attr_accessor :labels
# These are labels that each inspection request must include within their '
# finding_labels' map. Request may contain others, but any missing one of these
# will be rejected. Label keys must be between 1 and 63 characters long and must
# conform to the following regular expression: `[a-z]([-a-z0-9]*[a-z0-9])?`. No
# more than 10 keys can be required.
# Corresponds to the JSON property `requiredFindingLabelKeys`
# @return [Array<String>]
attr_accessor :required_finding_label_keys
# Instructions regarding the table content being inspected.
# Corresponds to the JSON property `tableOptions`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TableOptions]
attr_accessor :table_options
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@description = args[:description] if args.key?(:description)
@labels = args[:labels] if args.key?(:labels)
@required_finding_label_keys = args[:required_finding_label_keys] if args.key?(:required_finding_label_keys)
@table_options = args[:table_options] if args.key?(:table_options)
end
end
# Location of the finding within an image.
class GooglePrivacyDlpV2ImageLocation
include Google::Apis::Core::Hashable
# Bounding boxes locating the pixels within the image containing the finding.
# Corresponds to the JSON property `boundingBoxes`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2BoundingBox>]
attr_accessor :bounding_boxes
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bounding_boxes = args[:bounding_boxes] if args.key?(:bounding_boxes)
end
end
# Configuration for determining how redaction of images should occur.
class GooglePrivacyDlpV2ImageRedactionConfig
include Google::Apis::Core::Hashable
# Type of information detected by the API.
# Corresponds to the JSON property `infoType`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
attr_accessor :info_type
# If true, all text found in the image, regardless whether it matches an
# info_type, is redacted. Only one should be provided.
# Corresponds to the JSON property `redactAllText`
# @return [Boolean]
attr_accessor :redact_all_text
alias_method :redact_all_text?, :redact_all_text
# Represents a color in the RGB color space.
# Corresponds to the JSON property `redactionColor`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Color]
attr_accessor :redaction_color
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@info_type = args[:info_type] if args.key?(:info_type)
@redact_all_text = args[:redact_all_text] if args.key?(:redact_all_text)
@redaction_color = args[:redaction_color] if args.key?(:redaction_color)
end
end
# Type of information detected by the API.
class GooglePrivacyDlpV2InfoType
include Google::Apis::Core::Hashable
# Name of the information type. Either a name of your choosing when creating a
# CustomInfoType, or one of the names listed at https://cloud.google.com/dlp/
# docs/infotypes-reference when specifying a built-in type. When sending Cloud
# DLP results to Data Catalog, infoType names should conform to the pattern `[A-
# Za-z0-9$-_]`1,64``.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@name = args[:name] if args.key?(:name)
end
end
# InfoType description.
class GooglePrivacyDlpV2InfoTypeDescription
include Google::Apis::Core::Hashable
# Description of the infotype. Translated when language is provided in the
# request.
# Corresponds to the JSON property `description`
# @return [String]
attr_accessor :description
# Human readable form of the infoType name.
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
# Internal name of the infoType.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# Which parts of the API supports this InfoType.
# Corresponds to the JSON property `supportedBy`
# @return [Array<String>]
attr_accessor :supported_by
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@description = args[:description] if args.key?(:description)
@display_name = args[:display_name] if args.key?(:display_name)
@name = args[:name] if args.key?(:name)
@supported_by = args[:supported_by] if args.key?(:supported_by)
end
end
# Max findings configuration per infoType, per content item or long running
# DlpJob.
class GooglePrivacyDlpV2InfoTypeLimit
include Google::Apis::Core::Hashable
# Type of information detected by the API.
# Corresponds to the JSON property `infoType`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
attr_accessor :info_type
# Max findings limit for the given infoType.
# Corresponds to the JSON property `maxFindings`
# @return [Fixnum]
attr_accessor :max_findings
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@info_type = args[:info_type] if args.key?(:info_type)
@max_findings = args[:max_findings] if args.key?(:max_findings)
end
end
# Statistics regarding a specific InfoType.
class GooglePrivacyDlpV2InfoTypeStats
include Google::Apis::Core::Hashable
# Number of findings for this infoType.
# Corresponds to the JSON property `count`
# @return [Fixnum]
attr_accessor :count
# Type of information detected by the API.
# Corresponds to the JSON property `infoType`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
attr_accessor :info_type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@count = args[:count] if args.key?(:count)
@info_type = args[:info_type] if args.key?(:info_type)
end
end
# A transformation to apply to text that is identified as a specific info_type.
class GooglePrivacyDlpV2InfoTypeTransformation
include Google::Apis::Core::Hashable
# InfoTypes to apply the transformation to. An empty list will cause this
# transformation to apply to all findings that correspond to infoTypes that were
# requested in `InspectConfig`.
# Corresponds to the JSON property `infoTypes`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType>]
attr_accessor :info_types
# A rule for transforming a value.
# Corresponds to the JSON property `primitiveTransformation`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PrimitiveTransformation]
attr_accessor :primitive_transformation
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@info_types = args[:info_types] if args.key?(:info_types)
@primitive_transformation = args[:primitive_transformation] if args.key?(:primitive_transformation)
end
end
# A type of transformation that will scan unstructured text and apply various `
# PrimitiveTransformation`s to each finding, where the transformation is applied
# to only values that were identified as a specific info_type.
class GooglePrivacyDlpV2InfoTypeTransformations
include Google::Apis::Core::Hashable
# Required. Transformation for each infoType. Cannot specify more than one for a
# given infoType.
# Corresponds to the JSON property `transformations`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeTransformation>]
attr_accessor :transformations
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@transformations = args[:transformations] if args.key?(:transformations)
end
end
# Configuration description of the scanning process. When used with
# redactContent only info_types and min_likelihood are currently used.
class GooglePrivacyDlpV2InspectConfig
include Google::Apis::Core::Hashable
# List of options defining data content to scan. If empty, text, images, and
# other content will be included.
# Corresponds to the JSON property `contentOptions`
# @return [Array<String>]
attr_accessor :content_options
# CustomInfoTypes provided by the user. See https://cloud.google.com/dlp/docs/
# creating-custom-infotypes to learn more.
# Corresponds to the JSON property `customInfoTypes`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2CustomInfoType>]
attr_accessor :custom_info_types
# When true, excludes type information of the findings.
# Corresponds to the JSON property `excludeInfoTypes`
# @return [Boolean]
attr_accessor :exclude_info_types
alias_method :exclude_info_types?, :exclude_info_types
# When true, a contextual quote from the data that triggered a finding is
# included in the response; see Finding.quote.
# Corresponds to the JSON property `includeQuote`
# @return [Boolean]
attr_accessor :include_quote
alias_method :include_quote?, :include_quote
# Restricts what info_types to look for. The values must correspond to InfoType
# values returned by ListInfoTypes or listed at https://cloud.google.com/dlp/
# docs/infotypes-reference. When no InfoTypes or CustomInfoTypes are specified
# in a request, the system may automatically choose what detectors to run. By
# default this may be all types, but may change over time as detectors are
# updated. If you need precise control and predictability as to what detectors
# are run you should specify specific InfoTypes listed in the reference,
# otherwise a default list will be used, which may change over time.
# Corresponds to the JSON property `infoTypes`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType>]
attr_accessor :info_types
# Configuration to control the number of findings returned.
# Corresponds to the JSON property `limits`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FindingLimits]
attr_accessor :limits
# Only returns findings equal or above this threshold. The default is POSSIBLE.
# See https://cloud.google.com/dlp/docs/likelihood to learn more.
# Corresponds to the JSON property `minLikelihood`
# @return [String]
attr_accessor :min_likelihood
# Set of rules to apply to the findings for this InspectConfig. Exclusion rules,
# contained in the set are executed in the end, other rules are executed in the
# order they are specified for each info type.
# Corresponds to the JSON property `ruleSet`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InspectionRuleSet>]
attr_accessor :rule_set
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@content_options = args[:content_options] if args.key?(:content_options)
@custom_info_types = args[:custom_info_types] if args.key?(:custom_info_types)
@exclude_info_types = args[:exclude_info_types] if args.key?(:exclude_info_types)
@include_quote = args[:include_quote] if args.key?(:include_quote)
@info_types = args[:info_types] if args.key?(:info_types)
@limits = args[:limits] if args.key?(:limits)
@min_likelihood = args[:min_likelihood] if args.key?(:min_likelihood)
@rule_set = args[:rule_set] if args.key?(:rule_set)
end
end
# Request to search for potentially sensitive info in a ContentItem.
class GooglePrivacyDlpV2InspectContentRequest
include Google::Apis::Core::Hashable
# Configuration description of the scanning process. When used with
# redactContent only info_types and min_likelihood are currently used.
# Corresponds to the JSON property `inspectConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectConfig]
attr_accessor :inspect_config
# Template to use. Any configuration directly specified in inspect_config will
# override those set in the template. Singular fields that are set in this
# request will replace their corresponding fields in the template. Repeated
# fields are appended. Singular sub-messages and groups are recursively merged.
# Corresponds to the JSON property `inspectTemplateName`
# @return [String]
attr_accessor :inspect_template_name
# Container structure for the content to inspect.
# Corresponds to the JSON property `item`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem]
attr_accessor :item
# Deprecated. This field has no effect.
# Corresponds to the JSON property `locationId`
# @return [String]
attr_accessor :location_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@inspect_config = args[:inspect_config] if args.key?(:inspect_config)
@inspect_template_name = args[:inspect_template_name] if args.key?(:inspect_template_name)
@item = args[:item] if args.key?(:item)
@location_id = args[:location_id] if args.key?(:location_id)
end
end
# Results of inspecting an item.
class GooglePrivacyDlpV2InspectContentResponse
include Google::Apis::Core::Hashable
# All the findings for a single scanned item.
# Corresponds to the JSON property `result`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectResult]
attr_accessor :result
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@result = args[:result] if args.key?(:result)
end
end
# The results of an inspect DataSource job.
class GooglePrivacyDlpV2InspectDataSourceDetails
include Google::Apis::Core::Hashable
# Snapshot of the inspection configuration.
# Corresponds to the JSON property `requestedOptions`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RequestedOptions]
attr_accessor :requested_options
# All result fields mentioned below are updated while the job is processing.
# Corresponds to the JSON property `result`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Result]
attr_accessor :result
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@requested_options = args[:requested_options] if args.key?(:requested_options)
@result = args[:result] if args.key?(:result)
end
end
# Controls what and how to inspect for findings.
class GooglePrivacyDlpV2InspectJobConfig
include Google::Apis::Core::Hashable
# Actions to execute at the completion of the job.
# Corresponds to the JSON property `actions`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Action>]
attr_accessor :actions
# Configuration description of the scanning process. When used with
# redactContent only info_types and min_likelihood are currently used.
# Corresponds to the JSON property `inspectConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectConfig]
attr_accessor :inspect_config
# If provided, will be used as the default for all values in InspectConfig. `
# inspect_config` will be merged into the values persisted as part of the
# template.
# Corresponds to the JSON property `inspectTemplateName`
# @return [String]
attr_accessor :inspect_template_name
# Shared message indicating Cloud storage type.
# Corresponds to the JSON property `storageConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2StorageConfig]
attr_accessor :storage_config
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@actions = args[:actions] if args.key?(:actions)
@inspect_config = args[:inspect_config] if args.key?(:inspect_config)
@inspect_template_name = args[:inspect_template_name] if args.key?(:inspect_template_name)
@storage_config = args[:storage_config] if args.key?(:storage_config)
end
end
# All the findings for a single scanned item.
class GooglePrivacyDlpV2InspectResult
include Google::Apis::Core::Hashable
# List of findings for an item.
# Corresponds to the JSON property `findings`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Finding>]
attr_accessor :findings
# If true, then this item might have more findings than were returned, and the
# findings returned are an arbitrary subset of all findings. The findings list
# might be truncated because the input items were too large, or because the
# server reached the maximum amount of resources allowed for a single API call.
# For best results, divide the input into smaller batches.
# Corresponds to the JSON property `findingsTruncated`
# @return [Boolean]
attr_accessor :findings_truncated
alias_method :findings_truncated?, :findings_truncated
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@findings = args[:findings] if args.key?(:findings)
@findings_truncated = args[:findings_truncated] if args.key?(:findings_truncated)
end
end
# The inspectTemplate contains a configuration (set of types of sensitive data
# to be detected) to be used anywhere you otherwise would normally specify
# InspectConfig. See https://cloud.google.com/dlp/docs/concepts-templates to
# learn more.
class GooglePrivacyDlpV2InspectTemplate
include Google::Apis::Core::Hashable
# Output only. The creation timestamp of an inspectTemplate.
# Corresponds to the JSON property `createTime`
# @return [String]
attr_accessor :create_time
# Short description (max 256 chars).
# Corresponds to the JSON property `description`
# @return [String]
attr_accessor :description
# Display name (max 256 chars).
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
# Configuration description of the scanning process. When used with
# redactContent only info_types and min_likelihood are currently used.
# Corresponds to the JSON property `inspectConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectConfig]
attr_accessor :inspect_config
# Output only. The template name. The template will have one of the following
# formats: `projects/PROJECT_ID/inspectTemplates/TEMPLATE_ID` OR `organizations/
# ORGANIZATION_ID/inspectTemplates/TEMPLATE_ID`;
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# Output only. The last update timestamp of an inspectTemplate.
# Corresponds to the JSON property `updateTime`
# @return [String]
attr_accessor :update_time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@create_time = args[:create_time] if args.key?(:create_time)
@description = args[:description] if args.key?(:description)
@display_name = args[:display_name] if args.key?(:display_name)
@inspect_config = args[:inspect_config] if args.key?(:inspect_config)
@name = args[:name] if args.key?(:name)
@update_time = args[:update_time] if args.key?(:update_time)
end
end
# A single inspection rule to be applied to infoTypes, specified in `
# InspectionRuleSet`.
class GooglePrivacyDlpV2InspectionRule
include Google::Apis::Core::Hashable
# The rule that specifies conditions when findings of infoTypes specified in `
# InspectionRuleSet` are removed from results.
# Corresponds to the JSON property `exclusionRule`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ExclusionRule]
attr_accessor :exclusion_rule
# The rule that adjusts the likelihood of findings within a certain proximity of
# hotwords.
# Corresponds to the JSON property `hotwordRule`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2HotwordRule]
attr_accessor :hotword_rule
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@exclusion_rule = args[:exclusion_rule] if args.key?(:exclusion_rule)
@hotword_rule = args[:hotword_rule] if args.key?(:hotword_rule)
end
end
# Rule set for modifying a set of infoTypes to alter behavior under certain
# circumstances, depending on the specific details of the rules within the set.
class GooglePrivacyDlpV2InspectionRuleSet
include Google::Apis::Core::Hashable
# List of infoTypes this rule set is applied to.
# Corresponds to the JSON property `infoTypes`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType>]
attr_accessor :info_types
# Set of rules to be applied to infoTypes. The rules are applied in order.
# Corresponds to the JSON property `rules`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InspectionRule>]
attr_accessor :rules
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@info_types = args[:info_types] if args.key?(:info_types)
@rules = args[:rules] if args.key?(:rules)
end
end
# Enable email notification to project owners and editors on jobs's completion/
# failure.
class GooglePrivacyDlpV2JobNotificationEmails
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Contains a configuration to make dlp api calls on a repeating basis. See https:
# //cloud.google.com/dlp/docs/concepts-job-triggers to learn more.
class GooglePrivacyDlpV2JobTrigger
include Google::Apis::Core::Hashable
# Output only. The creation timestamp of a triggeredJob.
# Corresponds to the JSON property `createTime`
# @return [String]
attr_accessor :create_time
# User provided description (max 256 chars)
# Corresponds to the JSON property `description`
# @return [String]
attr_accessor :description
# Display name (max 100 chars)
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
# Output only. A stream of errors encountered when the trigger was activated.
# Repeated errors may result in the JobTrigger automatically being paused. Will
# return the last 100 errors. Whenever the JobTrigger is modified this list will
# be cleared.
# Corresponds to the JSON property `errors`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Error>]
attr_accessor :errors
# Controls what and how to inspect for findings.
# Corresponds to the JSON property `inspectJob`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectJobConfig]
attr_accessor :inspect_job
# Output only. The timestamp of the last time this trigger executed.
# Corresponds to the JSON property `lastRunTime`
# @return [String]
attr_accessor :last_run_time
# Unique resource name for the triggeredJob, assigned by the service when the
# triggeredJob is created, for example `projects/dlp-test-project/jobTriggers/
# 53234423`.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# Required. A status for this trigger.
# Corresponds to the JSON property `status`
# @return [String]
attr_accessor :status
# A list of triggers which will be OR'ed together. Only one in the list needs to
# trigger for a job to be started. The list may contain only a single Schedule
# trigger and must have at least one object.
# Corresponds to the JSON property `triggers`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Trigger>]
attr_accessor :triggers
# Output only. The last update timestamp of a triggeredJob.
# Corresponds to the JSON property `updateTime`
# @return [String]
attr_accessor :update_time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@create_time = args[:create_time] if args.key?(:create_time)
@description = args[:description] if args.key?(:description)
@display_name = args[:display_name] if args.key?(:display_name)
@errors = args[:errors] if args.key?(:errors)
@inspect_job = args[:inspect_job] if args.key?(:inspect_job)
@last_run_time = args[:last_run_time] if args.key?(:last_run_time)
@name = args[:name] if args.key?(:name)
@status = args[:status] if args.key?(:status)
@triggers = args[:triggers] if args.key?(:triggers)
@update_time = args[:update_time] if args.key?(:update_time)
end
end
# k-anonymity metric, used for analysis of reidentification risk.
class GooglePrivacyDlpV2KAnonymityConfig
include Google::Apis::Core::Hashable
# An entity in a dataset is a field or set of fields that correspond to a single
# person. For example, in medical records the `EntityId` might be a patient
# identifier, or for financial records it might be an account identifier. This
# message is used when generalizations or analysis must take into account that
# multiple rows correspond to the same entity.
# Corresponds to the JSON property `entityId`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2EntityId]
attr_accessor :entity_id
# Set of fields to compute k-anonymity over. When multiple fields are specified,
# they are considered a single composite key. Structs and repeated data types
# are not supported; however, nested fields are supported so long as they are
# not structs themselves or nested within a repeated field.
# Corresponds to the JSON property `quasiIds`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId>]
attr_accessor :quasi_ids
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@entity_id = args[:entity_id] if args.key?(:entity_id)
@quasi_ids = args[:quasi_ids] if args.key?(:quasi_ids)
end
end
# The set of columns' values that share the same ldiversity value
class GooglePrivacyDlpV2KAnonymityEquivalenceClass
include Google::Apis::Core::Hashable
# Size of the equivalence class, for example number of rows with the above set
# of values.
# Corresponds to the JSON property `equivalenceClassSize`
# @return [Fixnum]
attr_accessor :equivalence_class_size
# Set of values defining the equivalence class. One value per quasi-identifier
# column in the original KAnonymity metric message. The order is always the same
# as the original request.
# Corresponds to the JSON property `quasiIdsValues`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>]
attr_accessor :quasi_ids_values
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@equivalence_class_size = args[:equivalence_class_size] if args.key?(:equivalence_class_size)
@quasi_ids_values = args[:quasi_ids_values] if args.key?(:quasi_ids_values)
end
end
# Histogram of k-anonymity equivalence classes.
class GooglePrivacyDlpV2KAnonymityHistogramBucket
include Google::Apis::Core::Hashable
# Total number of equivalence classes in this bucket.
# Corresponds to the JSON property `bucketSize`
# @return [Fixnum]
attr_accessor :bucket_size
# Total number of distinct equivalence classes in this bucket.
# Corresponds to the JSON property `bucketValueCount`
# @return [Fixnum]
attr_accessor :bucket_value_count
# Sample of equivalence classes in this bucket. The total number of classes
# returned per bucket is capped at 20.
# Corresponds to the JSON property `bucketValues`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2KAnonymityEquivalenceClass>]
attr_accessor :bucket_values
# Lower bound on the size of the equivalence classes in this bucket.
# Corresponds to the JSON property `equivalenceClassSizeLowerBound`
# @return [Fixnum]
attr_accessor :equivalence_class_size_lower_bound
# Upper bound on the size of the equivalence classes in this bucket.
# Corresponds to the JSON property `equivalenceClassSizeUpperBound`
# @return [Fixnum]
attr_accessor :equivalence_class_size_upper_bound
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bucket_size = args[:bucket_size] if args.key?(:bucket_size)
@bucket_value_count = args[:bucket_value_count] if args.key?(:bucket_value_count)
@bucket_values = args[:bucket_values] if args.key?(:bucket_values)
@equivalence_class_size_lower_bound = args[:equivalence_class_size_lower_bound] if args.key?(:equivalence_class_size_lower_bound)
@equivalence_class_size_upper_bound = args[:equivalence_class_size_upper_bound] if args.key?(:equivalence_class_size_upper_bound)
end
end
# Result of the k-anonymity computation.
class GooglePrivacyDlpV2KAnonymityResult
include Google::Apis::Core::Hashable
# Histogram of k-anonymity equivalence classes.
# Corresponds to the JSON property `equivalenceClassHistogramBuckets`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2KAnonymityHistogramBucket>]
attr_accessor :equivalence_class_histogram_buckets
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@equivalence_class_histogram_buckets = args[:equivalence_class_histogram_buckets] if args.key?(:equivalence_class_histogram_buckets)
end
end
# Reidentifiability metric. This corresponds to a risk model similar to what is
# called "journalist risk" in the literature, except the attack dataset is
# statistically modeled instead of being perfectly known. This can be done using
# publicly available data (like the US Census), or using a custom statistical
# model (indicated as one or several BigQuery tables), or by extrapolating from
# the distribution of values in the input dataset.
class GooglePrivacyDlpV2KMapEstimationConfig
include Google::Apis::Core::Hashable
# Several auxiliary tables can be used in the analysis. Each custom_tag used to
# tag a quasi-identifiers column must appear in exactly one column of one
# auxiliary table.
# Corresponds to the JSON property `auxiliaryTables`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2AuxiliaryTable>]
attr_accessor :auxiliary_tables
# Required. Fields considered to be quasi-identifiers. No two columns can have
# the same tag.
# Corresponds to the JSON property `quasiIds`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2TaggedField>]
attr_accessor :quasi_ids
# ISO 3166-1 alpha-2 region code to use in the statistical modeling. Set if no
# column is tagged with a region-specific InfoType (like US_ZIP_5) or a region
# code.
# Corresponds to the JSON property `regionCode`
# @return [String]
attr_accessor :region_code
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@auxiliary_tables = args[:auxiliary_tables] if args.key?(:auxiliary_tables)
@quasi_ids = args[:quasi_ids] if args.key?(:quasi_ids)
@region_code = args[:region_code] if args.key?(:region_code)
end
end
# A KMapEstimationHistogramBucket message with the following values:
# min_anonymity: 3 max_anonymity: 5 frequency: 42 means that there are 42
# records whose quasi-identifier values correspond to 3, 4 or 5 people in the
# overlying population. An important particular case is when min_anonymity =
# max_anonymity = 1: the frequency field then corresponds to the number of
# uniquely identifiable records.
class GooglePrivacyDlpV2KMapEstimationHistogramBucket
include Google::Apis::Core::Hashable
# Number of records within these anonymity bounds.
# Corresponds to the JSON property `bucketSize`
# @return [Fixnum]
attr_accessor :bucket_size
# Total number of distinct quasi-identifier tuple values in this bucket.
# Corresponds to the JSON property `bucketValueCount`
# @return [Fixnum]
attr_accessor :bucket_value_count
# Sample of quasi-identifier tuple values in this bucket. The total number of
# classes returned per bucket is capped at 20.
# Corresponds to the JSON property `bucketValues`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2KMapEstimationQuasiIdValues>]
attr_accessor :bucket_values
# Always greater than or equal to min_anonymity.
# Corresponds to the JSON property `maxAnonymity`
# @return [Fixnum]
attr_accessor :max_anonymity
# Always positive.
# Corresponds to the JSON property `minAnonymity`
# @return [Fixnum]
attr_accessor :min_anonymity
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bucket_size = args[:bucket_size] if args.key?(:bucket_size)
@bucket_value_count = args[:bucket_value_count] if args.key?(:bucket_value_count)
@bucket_values = args[:bucket_values] if args.key?(:bucket_values)
@max_anonymity = args[:max_anonymity] if args.key?(:max_anonymity)
@min_anonymity = args[:min_anonymity] if args.key?(:min_anonymity)
end
end
# A tuple of values for the quasi-identifier columns.
class GooglePrivacyDlpV2KMapEstimationQuasiIdValues
include Google::Apis::Core::Hashable
# The estimated anonymity for these quasi-identifier values.
# Corresponds to the JSON property `estimatedAnonymity`
# @return [Fixnum]
attr_accessor :estimated_anonymity
# The quasi-identifier values.
# Corresponds to the JSON property `quasiIdsValues`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>]
attr_accessor :quasi_ids_values
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@estimated_anonymity = args[:estimated_anonymity] if args.key?(:estimated_anonymity)
@quasi_ids_values = args[:quasi_ids_values] if args.key?(:quasi_ids_values)
end
end
# Result of the reidentifiability analysis. Note that these results are an
# estimation, not exact values.
class GooglePrivacyDlpV2KMapEstimationResult
include Google::Apis::Core::Hashable
# The intervals [min_anonymity, max_anonymity] do not overlap. If a value doesn'
# t correspond to any such interval, the associated frequency is zero. For
# example, the following records: `min_anonymity: 1, max_anonymity: 1, frequency:
# 17` `min_anonymity: 2, max_anonymity: 3, frequency: 42` `min_anonymity: 5,
# max_anonymity: 10, frequency: 99` mean that there are no record with an
# estimated anonymity of 4, 5, or larger than 10.
# Corresponds to the JSON property `kMapEstimationHistogram`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2KMapEstimationHistogramBucket>]
attr_accessor :k_map_estimation_histogram
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@k_map_estimation_histogram = args[:k_map_estimation_histogram] if args.key?(:k_map_estimation_histogram)
end
end
# A unique identifier for a Datastore entity. If a key's partition ID or any of
# its path kinds or names are reserved/read-only, the key is reserved/read-only.
# A reserved/read-only key is forbidden in certain documented contexts.
class GooglePrivacyDlpV2Key
include Google::Apis::Core::Hashable
# Datastore partition ID. A partition ID identifies a grouping of entities. The
# grouping is always by project and namespace, however the namespace ID may be
# empty. A partition ID contains several dimensions: project ID and namespace ID.
# Corresponds to the JSON property `partitionId`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PartitionId]
attr_accessor :partition_id
# The entity path. An entity path consists of one or more elements composed of a
# kind and a string or numerical identifier, which identify entities. The first
# element identifies a _root entity_, the second element identifies a _child_ of
# the root entity, the third element identifies a child of the second entity,
# and so forth. The entities identified by all prefixes of the path are called
# the element's _ancestors_. A path can never be empty, and a path can have at
# most 100 elements.
# Corresponds to the JSON property `path`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2PathElement>]
attr_accessor :path
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@partition_id = args[:partition_id] if args.key?(:partition_id)
@path = args[:path] if args.key?(:path)
end
end
# A representation of a Datastore kind.
class GooglePrivacyDlpV2KindExpression
include Google::Apis::Core::Hashable
# The name of the kind.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@name = args[:name] if args.key?(:name)
end
end
# Include to use an existing data crypto key wrapped by KMS. The wrapped key
# must be a 128/192/256 bit key. Authorization requires the following IAM
# permissions when sending a request to perform a crypto transformation using a
# kms-wrapped crypto key: dlp.kms.encrypt
class GooglePrivacyDlpV2KmsWrappedCryptoKey
include Google::Apis::Core::Hashable
# Required. The resource name of the KMS CryptoKey to use for unwrapping.
# Corresponds to the JSON property `cryptoKeyName`
# @return [String]
attr_accessor :crypto_key_name
# Required. The wrapped data crypto key.
# Corresponds to the JSON property `wrappedKey`
# NOTE: Values are automatically base64 encoded/decoded in the client library.
# @return [String]
attr_accessor :wrapped_key
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
@wrapped_key = args[:wrapped_key] if args.key?(:wrapped_key)
end
end
# l-diversity metric, used for analysis of reidentification risk.
class GooglePrivacyDlpV2LDiversityConfig
include Google::Apis::Core::Hashable
# Set of quasi-identifiers indicating how equivalence classes are defined for
# the l-diversity computation. When multiple fields are specified, they are
# considered a single composite key.
# Corresponds to the JSON property `quasiIds`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId>]
attr_accessor :quasi_ids
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `sensitiveAttribute`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :sensitive_attribute
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@quasi_ids = args[:quasi_ids] if args.key?(:quasi_ids)
@sensitive_attribute = args[:sensitive_attribute] if args.key?(:sensitive_attribute)
end
end
# The set of columns' values that share the same ldiversity value.
class GooglePrivacyDlpV2LDiversityEquivalenceClass
include Google::Apis::Core::Hashable
# Size of the k-anonymity equivalence class.
# Corresponds to the JSON property `equivalenceClassSize`
# @return [Fixnum]
attr_accessor :equivalence_class_size
# Number of distinct sensitive values in this equivalence class.
# Corresponds to the JSON property `numDistinctSensitiveValues`
# @return [Fixnum]
attr_accessor :num_distinct_sensitive_values
# Quasi-identifier values defining the k-anonymity equivalence class. The order
# is always the same as the original request.
# Corresponds to the JSON property `quasiIdsValues`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>]
attr_accessor :quasi_ids_values
# Estimated frequencies of top sensitive values.
# Corresponds to the JSON property `topSensitiveValues`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2ValueFrequency>]
attr_accessor :top_sensitive_values
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@equivalence_class_size = args[:equivalence_class_size] if args.key?(:equivalence_class_size)
@num_distinct_sensitive_values = args[:num_distinct_sensitive_values] if args.key?(:num_distinct_sensitive_values)
@quasi_ids_values = args[:quasi_ids_values] if args.key?(:quasi_ids_values)
@top_sensitive_values = args[:top_sensitive_values] if args.key?(:top_sensitive_values)
end
end
# Histogram of l-diversity equivalence class sensitive value frequencies.
class GooglePrivacyDlpV2LDiversityHistogramBucket
include Google::Apis::Core::Hashable
# Total number of equivalence classes in this bucket.
# Corresponds to the JSON property `bucketSize`
# @return [Fixnum]
attr_accessor :bucket_size
# Total number of distinct equivalence classes in this bucket.
# Corresponds to the JSON property `bucketValueCount`
# @return [Fixnum]
attr_accessor :bucket_value_count
# Sample of equivalence classes in this bucket. The total number of classes
# returned per bucket is capped at 20.
# Corresponds to the JSON property `bucketValues`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityEquivalenceClass>]
attr_accessor :bucket_values
# Lower bound on the sensitive value frequencies of the equivalence classes in
# this bucket.
# Corresponds to the JSON property `sensitiveValueFrequencyLowerBound`
# @return [Fixnum]
attr_accessor :sensitive_value_frequency_lower_bound
# Upper bound on the sensitive value frequencies of the equivalence classes in
# this bucket.
# Corresponds to the JSON property `sensitiveValueFrequencyUpperBound`
# @return [Fixnum]
attr_accessor :sensitive_value_frequency_upper_bound
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bucket_size = args[:bucket_size] if args.key?(:bucket_size)
@bucket_value_count = args[:bucket_value_count] if args.key?(:bucket_value_count)
@bucket_values = args[:bucket_values] if args.key?(:bucket_values)
@sensitive_value_frequency_lower_bound = args[:sensitive_value_frequency_lower_bound] if args.key?(:sensitive_value_frequency_lower_bound)
@sensitive_value_frequency_upper_bound = args[:sensitive_value_frequency_upper_bound] if args.key?(:sensitive_value_frequency_upper_bound)
end
end
# Result of the l-diversity computation.
class GooglePrivacyDlpV2LDiversityResult
include Google::Apis::Core::Hashable
# Histogram of l-diversity equivalence class sensitive value frequencies.
# Corresponds to the JSON property `sensitiveValueFrequencyHistogramBuckets`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityHistogramBucket>]
attr_accessor :sensitive_value_frequency_histogram_buckets
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@sensitive_value_frequency_histogram_buckets = args[:sensitive_value_frequency_histogram_buckets] if args.key?(:sensitive_value_frequency_histogram_buckets)
end
end
# Configuration for a custom dictionary created from a data source of any size
# up to the maximum size defined in the [limits](https://cloud.google.com/dlp/
# limits) page. The artifacts of dictionary creation are stored in the specified
# Google Cloud Storage location. Consider using `CustomInfoType.Dictionary` for
# smaller dictionaries that satisfy the size requirements.
class GooglePrivacyDlpV2LargeCustomDictionaryConfig
include Google::Apis::Core::Hashable
# Message defining a field of a BigQuery table.
# Corresponds to the JSON property `bigQueryField`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryField]
attr_accessor :big_query_field
# Message representing a set of files in Cloud Storage.
# Corresponds to the JSON property `cloudStorageFileSet`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStorageFileSet]
attr_accessor :cloud_storage_file_set
# Message representing a single file or path in Cloud Storage.
# Corresponds to the JSON property `outputPath`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStoragePath]
attr_accessor :output_path
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@big_query_field = args[:big_query_field] if args.key?(:big_query_field)
@cloud_storage_file_set = args[:cloud_storage_file_set] if args.key?(:cloud_storage_file_set)
@output_path = args[:output_path] if args.key?(:output_path)
end
end
# Summary statistics of a custom dictionary.
class GooglePrivacyDlpV2LargeCustomDictionaryStats
include Google::Apis::Core::Hashable
# Approximate number of distinct phrases in the dictionary.
# Corresponds to the JSON property `approxNumPhrases`
# @return [Fixnum]
attr_accessor :approx_num_phrases
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@approx_num_phrases = args[:approx_num_phrases] if args.key?(:approx_num_phrases)
end
end
# Skips the data without modifying it if the requested transformation would
# cause an error. For example, if a `DateShift` transformation were applied an
# an IP address, this mode would leave the IP address unchanged in the response.
class GooglePrivacyDlpV2LeaveUntransformed
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Message for specifying an adjustment to the likelihood of a finding as part of
# a detection rule.
class GooglePrivacyDlpV2LikelihoodAdjustment
include Google::Apis::Core::Hashable
# Set the likelihood of a finding to a fixed value.
# Corresponds to the JSON property `fixedLikelihood`
# @return [String]
attr_accessor :fixed_likelihood
# Increase or decrease the likelihood by the specified number of levels. For
# example, if a finding would be `POSSIBLE` without the detection rule and `
# relative_likelihood` is 1, then it is upgraded to `LIKELY`, while a value of -
# 1 would downgrade it to `UNLIKELY`. Likelihood may never drop below `
# VERY_UNLIKELY` or exceed `VERY_LIKELY`, so applying an adjustment of 1
# followed by an adjustment of -1 when base likelihood is `VERY_LIKELY` will
# result in a final likelihood of `LIKELY`.
# Corresponds to the JSON property `relativeLikelihood`
# @return [Fixnum]
attr_accessor :relative_likelihood
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@fixed_likelihood = args[:fixed_likelihood] if args.key?(:fixed_likelihood)
@relative_likelihood = args[:relative_likelihood] if args.key?(:relative_likelihood)
end
end
# Response message for ListDeidentifyTemplates.
class GooglePrivacyDlpV2ListDeidentifyTemplatesResponse
include Google::Apis::Core::Hashable
# List of deidentify templates, up to page_size in
# ListDeidentifyTemplatesRequest.
# Corresponds to the JSON property `deidentifyTemplates`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate>]
attr_accessor :deidentify_templates
# If the next page is available then the next page token to be used in following
# ListDeidentifyTemplates request.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@deidentify_templates = args[:deidentify_templates] if args.key?(:deidentify_templates)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end
end
# The response message for listing DLP jobs.
class GooglePrivacyDlpV2ListDlpJobsResponse
include Google::Apis::Core::Hashable
# A list of DlpJobs that matches the specified filter in the request.
# Corresponds to the JSON property `jobs`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob>]
attr_accessor :jobs
# The standard List next-page token.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@jobs = args[:jobs] if args.key?(:jobs)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end
end
# Response to the ListInfoTypes request.
class GooglePrivacyDlpV2ListInfoTypesResponse
include Google::Apis::Core::Hashable
# Set of sensitive infoTypes.
# Corresponds to the JSON property `infoTypes`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeDescription>]
attr_accessor :info_types
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@info_types = args[:info_types] if args.key?(:info_types)
end
end
# Response message for ListInspectTemplates.
class GooglePrivacyDlpV2ListInspectTemplatesResponse
include Google::Apis::Core::Hashable
# List of inspectTemplates, up to page_size in ListInspectTemplatesRequest.
# Corresponds to the JSON property `inspectTemplates`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate>]
attr_accessor :inspect_templates
# If the next page is available then the next page token to be used in following
# ListInspectTemplates request.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@inspect_templates = args[:inspect_templates] if args.key?(:inspect_templates)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end
end
# Response message for ListJobTriggers.
class GooglePrivacyDlpV2ListJobTriggersResponse
include Google::Apis::Core::Hashable
# List of triggeredJobs, up to page_size in ListJobTriggersRequest.
# Corresponds to the JSON property `jobTriggers`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger>]
attr_accessor :job_triggers
# If the next page is available then the next page token to be used in following
# ListJobTriggers request.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@job_triggers = args[:job_triggers] if args.key?(:job_triggers)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end
end
# Response message for ListStoredInfoTypes.
class GooglePrivacyDlpV2ListStoredInfoTypesResponse
include Google::Apis::Core::Hashable
# If the next page is available then the next page token to be used in following
# ListStoredInfoTypes request.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
# List of storedInfoTypes, up to page_size in ListStoredInfoTypesRequest.
# Corresponds to the JSON property `storedInfoTypes`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType>]
attr_accessor :stored_info_types
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
@stored_info_types = args[:stored_info_types] if args.key?(:stored_info_types)
end
end
# Specifies the location of the finding.
class GooglePrivacyDlpV2Location
include Google::Apis::Core::Hashable
# Generic half-open interval [start, end)
# Corresponds to the JSON property `byteRange`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Range]
attr_accessor :byte_range
# Generic half-open interval [start, end)
# Corresponds to the JSON property `codepointRange`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Range]
attr_accessor :codepoint_range
# Represents a container that may contain DLP findings. Examples of a container
# include a file, table, or database record.
# Corresponds to the JSON property `container`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Container]
attr_accessor :container
# List of nested objects pointing to the precise location of the finding within
# the file or record.
# Corresponds to the JSON property `contentLocations`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2ContentLocation>]
attr_accessor :content_locations
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@byte_range = args[:byte_range] if args.key?(:byte_range)
@codepoint_range = args[:codepoint_range] if args.key?(:codepoint_range)
@container = args[:container] if args.key?(:container)
@content_locations = args[:content_locations] if args.key?(:content_locations)
end
end
# Job trigger option for hybrid jobs. Jobs must be manually created and finished.
class GooglePrivacyDlpV2Manual
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Metadata Location
class GooglePrivacyDlpV2MetadataLocation
include Google::Apis::Core::Hashable
# Storage metadata label to indicate which metadata entry contains findings.
# Corresponds to the JSON property `storageLabel`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2StorageMetadataLabel]
attr_accessor :storage_label
# Type of metadata containing the finding.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@storage_label = args[:storage_label] if args.key?(:storage_label)
@type = args[:type] if args.key?(:type)
end
end
# Compute numerical stats over an individual column, including min, max, and
# quantiles.
class GooglePrivacyDlpV2NumericalStatsConfig
include Google::Apis::Core::Hashable
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `field`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :field
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@field = args[:field] if args.key?(:field)
end
end
# Result of the numerical stats computation.
class GooglePrivacyDlpV2NumericalStatsResult
include Google::Apis::Core::Hashable
# Set of primitive values supported by the system. Note that for the purposes of
# inspection or transformation, the number of bytes considered to comprise a '
# Value' is based on its representation as a UTF-8 encoded string. For example,
# if 'integer_value' is set to 123456789, the number of bytes would be counted
# as 9, even though an int64 only holds up to 8 bytes of data.
# Corresponds to the JSON property `maxValue`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Value]
attr_accessor :max_value
# Set of primitive values supported by the system. Note that for the purposes of
# inspection or transformation, the number of bytes considered to comprise a '
# Value' is based on its representation as a UTF-8 encoded string. For example,
# if 'integer_value' is set to 123456789, the number of bytes would be counted
# as 9, even though an int64 only holds up to 8 bytes of data.
# Corresponds to the JSON property `minValue`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Value]
attr_accessor :min_value
# List of 99 values that partition the set of field values into 100 equal sized
# buckets.
# Corresponds to the JSON property `quantileValues`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>]
attr_accessor :quantile_values
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@max_value = args[:max_value] if args.key?(:max_value)
@min_value = args[:min_value] if args.key?(:min_value)
@quantile_values = args[:quantile_values] if args.key?(:quantile_values)
end
end
# Cloud repository for storing output.
class GooglePrivacyDlpV2OutputStorageConfig
include Google::Apis::Core::Hashable
# Schema used for writing the findings for Inspect jobs. This field is only used
# for Inspect and must be unspecified for Risk jobs. Columns are derived from
# the `Finding` object. If appending to an existing table, any columns from the
# predefined schema that are missing will be added. No columns in the existing
# table will be deleted. If unspecified, then all available columns will be used
# for a new table or an (existing) table with no schema, and no changes will be
# made to an existing table that has a schema. Only for use with external
# storage.
# Corresponds to the JSON property `outputSchema`
# @return [String]
attr_accessor :output_schema
# Message defining the location of a BigQuery table. A table is uniquely
# identified by its project_id, dataset_id, and table_name. Within a query a
# table is often referenced with a string in the format of: `:.` or `..`.
# Corresponds to the JSON property `table`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable]
attr_accessor :table
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@output_schema = args[:output_schema] if args.key?(:output_schema)
@table = args[:table] if args.key?(:table)
end
end
# Datastore partition ID. A partition ID identifies a grouping of entities. The
# grouping is always by project and namespace, however the namespace ID may be
# empty. A partition ID contains several dimensions: project ID and namespace ID.
class GooglePrivacyDlpV2PartitionId
include Google::Apis::Core::Hashable
# If not empty, the ID of the namespace to which the entities belong.
# Corresponds to the JSON property `namespaceId`
# @return [String]
attr_accessor :namespace_id
# The ID of the project to which the entities belong.
# Corresponds to the JSON property `projectId`
# @return [String]
attr_accessor :project_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@namespace_id = args[:namespace_id] if args.key?(:namespace_id)
@project_id = args[:project_id] if args.key?(:project_id)
end
end
# A (kind, ID/name) pair used to construct a key path. If either name or ID is
# set, the element is complete. If neither is set, the element is incomplete.
class GooglePrivacyDlpV2PathElement
include Google::Apis::Core::Hashable
# The auto-allocated ID of the entity. Never equal to zero. Values less than
# zero are discouraged and may not be supported in the future.
# Corresponds to the JSON property `id`
# @return [Fixnum]
attr_accessor :id
# The kind of the entity. A kind matching regex `__.*__` is reserved/read-only.
# A kind must not contain more than 1500 bytes when UTF-8 encoded. Cannot be `""`
# .
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The name of the entity. A name matching regex `__.*__` is reserved/read-only.
# A name must not be more than 1500 bytes when UTF-8 encoded. Cannot be `""`.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@id = args[:id] if args.key?(:id)
@kind = args[:kind] if args.key?(:kind)
@name = args[:name] if args.key?(:name)
end
end
# A rule for transforming a value.
class GooglePrivacyDlpV2PrimitiveTransformation
include Google::Apis::Core::Hashable
# Generalization function that buckets values based on ranges. The ranges and
# replacement values are dynamically provided by the user for custom behavior,
# such as 1-30 -> LOW 31-65 -> MEDIUM 66-100 -> HIGH This can be used on data of
# type: number, long, string, timestamp. If the bound `Value` type differs from
# the type of data being transformed, we will first attempt converting the type
# of the data to be transformed to match the type of the bound before comparing.
# See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
# Corresponds to the JSON property `bucketingConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BucketingConfig]
attr_accessor :bucketing_config
# Partially mask a string by replacing a given number of characters with a fixed
# character. Masking can start from the beginning or end of the string. This can
# be used on data of any type (numbers, longs, and so on) and when de-
# identifying structured data we'll attempt to preserve the original data's type.
# (This allows you to take a long like 123 and modify it to a string like **3.
# Corresponds to the JSON property `characterMaskConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CharacterMaskConfig]
attr_accessor :character_mask_config
# Pseudonymization method that generates deterministic encryption for the given
# input. Outputs a base64 encoded representation of the encrypted output. Uses
# AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
# Corresponds to the JSON property `cryptoDeterministicConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CryptoDeterministicConfig]
attr_accessor :crypto_deterministic_config
# Pseudonymization method that generates surrogates via cryptographic hashing.
# Uses SHA-256. The key size must be either 32 or 64 bytes. Outputs a base64
# encoded representation of the hashed output (for example,
# L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=). Currently, only string and
# integer values can be hashed. See https://cloud.google.com/dlp/docs/
# pseudonymization to learn more.
# Corresponds to the JSON property `cryptoHashConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CryptoHashConfig]
attr_accessor :crypto_hash_config
# Replaces an identifier with a surrogate using Format Preserving Encryption (
# FPE) with the FFX mode of operation; however when used in the `
# ReidentifyContent` API method, it serves the opposite function by reversing
# the surrogate back into the original identifier. The identifier must be
# encoded as ASCII. For a given crypto key and context, the same identifier will
# be replaced with the same surrogate. Identifiers must be at least two
# characters long. In the case that the identifier is the empty string, it will
# be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
# more. Note: We recommend using CryptoDeterministicConfig for all use cases
# which do not require preserving the input alphabet space and size, plus
# warrant referential integrity.
# Corresponds to the JSON property `cryptoReplaceFfxFpeConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig]
attr_accessor :crypto_replace_ffx_fpe_config
# Shifts dates by random number of days, with option to be consistent for the
# same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting to
# learn more.
# Corresponds to the JSON property `dateShiftConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DateShiftConfig]
attr_accessor :date_shift_config
# Buckets values based on fixed size ranges. The Bucketing transformation can
# provide all of this functionality, but requires more configuration. This
# message is provided as a convenience to the user for simple bucketing
# strategies. The transformed value will be a hyphenated string of `lower_bound`-
# `upper_bound`, i.e if lower_bound = 10 and upper_bound = 20 all values that
# are within this bucket will be replaced with "10-20". This can be used on data
# of type: double, long. If the bound Value type differs from the type of data
# being transformed, we will first attempt converting the type of the data to be
# transformed to match the type of the bound before comparing. See https://cloud.
# google.com/dlp/docs/concepts-bucketing to learn more.
# Corresponds to the JSON property `fixedSizeBucketingConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FixedSizeBucketingConfig]
attr_accessor :fixed_size_bucketing_config
# Redact a given value. For example, if used with an `InfoTypeTransformation`
# transforming PHONE_NUMBER, and input 'My phone number is 206-555-0123', the
# output would be 'My phone number is '.
# Corresponds to the JSON property `redactConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RedactConfig]
attr_accessor :redact_config
# Replace each input value with a given `Value`.
# Corresponds to the JSON property `replaceConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ReplaceValueConfig]
attr_accessor :replace_config
# Replace each matching finding with the name of the info_type.
# Corresponds to the JSON property `replaceWithInfoTypeConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ReplaceWithInfoTypeConfig]
attr_accessor :replace_with_info_type_config
# For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a
# portion of the value.
# Corresponds to the JSON property `timePartConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TimePartConfig]
attr_accessor :time_part_config
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bucketing_config = args[:bucketing_config] if args.key?(:bucketing_config)
@character_mask_config = args[:character_mask_config] if args.key?(:character_mask_config)
@crypto_deterministic_config = args[:crypto_deterministic_config] if args.key?(:crypto_deterministic_config)
@crypto_hash_config = args[:crypto_hash_config] if args.key?(:crypto_hash_config)
@crypto_replace_ffx_fpe_config = args[:crypto_replace_ffx_fpe_config] if args.key?(:crypto_replace_ffx_fpe_config)
@date_shift_config = args[:date_shift_config] if args.key?(:date_shift_config)
@fixed_size_bucketing_config = args[:fixed_size_bucketing_config] if args.key?(:fixed_size_bucketing_config)
@redact_config = args[:redact_config] if args.key?(:redact_config)
@replace_config = args[:replace_config] if args.key?(:replace_config)
@replace_with_info_type_config = args[:replace_with_info_type_config] if args.key?(:replace_with_info_type_config)
@time_part_config = args[:time_part_config] if args.key?(:time_part_config)
end
end
# Privacy metric to compute for reidentification risk analysis.
class GooglePrivacyDlpV2PrivacyMetric
include Google::Apis::Core::Hashable
# Compute numerical stats over an individual column, including number of
# distinct values and value count distribution.
# Corresponds to the JSON property `categoricalStatsConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CategoricalStatsConfig]
attr_accessor :categorical_stats_config
# δ-presence metric, used to estimate how likely it is for an attacker to figure
# out that one given individual appears in a de-identified dataset. Similarly to
# the k-map metric, we cannot compute δ-presence exactly without knowing the
# attack dataset, so we use a statistical model instead.
# Corresponds to the JSON property `deltaPresenceEstimationConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationConfig]
attr_accessor :delta_presence_estimation_config
# k-anonymity metric, used for analysis of reidentification risk.
# Corresponds to the JSON property `kAnonymityConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2KAnonymityConfig]
attr_accessor :k_anonymity_config
# Reidentifiability metric. This corresponds to a risk model similar to what is
# called "journalist risk" in the literature, except the attack dataset is
# statistically modeled instead of being perfectly known. This can be done using
# publicly available data (like the US Census), or using a custom statistical
# model (indicated as one or several BigQuery tables), or by extrapolating from
# the distribution of values in the input dataset.
# Corresponds to the JSON property `kMapEstimationConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2KMapEstimationConfig]
attr_accessor :k_map_estimation_config
# l-diversity metric, used for analysis of reidentification risk.
# Corresponds to the JSON property `lDiversityConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityConfig]
attr_accessor :l_diversity_config
# Compute numerical stats over an individual column, including min, max, and
# quantiles.
# Corresponds to the JSON property `numericalStatsConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2NumericalStatsConfig]
attr_accessor :numerical_stats_config
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@categorical_stats_config = args[:categorical_stats_config] if args.key?(:categorical_stats_config)
@delta_presence_estimation_config = args[:delta_presence_estimation_config] if args.key?(:delta_presence_estimation_config)
@k_anonymity_config = args[:k_anonymity_config] if args.key?(:k_anonymity_config)
@k_map_estimation_config = args[:k_map_estimation_config] if args.key?(:k_map_estimation_config)
@l_diversity_config = args[:l_diversity_config] if args.key?(:l_diversity_config)
@numerical_stats_config = args[:numerical_stats_config] if args.key?(:numerical_stats_config)
end
end
# Message for specifying a window around a finding to apply a detection rule.
class GooglePrivacyDlpV2Proximity
include Google::Apis::Core::Hashable
# Number of characters after the finding to consider.
# Corresponds to the JSON property `windowAfter`
# @return [Fixnum]
attr_accessor :window_after
# Number of characters before the finding to consider.
# Corresponds to the JSON property `windowBefore`
# @return [Fixnum]
attr_accessor :window_before
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@window_after = args[:window_after] if args.key?(:window_after)
@window_before = args[:window_before] if args.key?(:window_before)
end
end
# Publish findings of a DlpJob to Cloud Data Catalog. Labels summarizing the
# results of the DlpJob will be applied to the entry for the resource scanned in
# Cloud Data Catalog. Any labels previously written by another DlpJob will be
# deleted. InfoType naming patterns are strictly enforced when using this
# feature. Note that the findings will be persisted in Cloud Data Catalog
# storage and are governed by Data Catalog service-specific policy, see https://
# cloud.google.com/terms/service-terms Only a single instance of this action can
# be specified and only allowed if all resources being scanned are BigQuery
# tables. Compatible with: Inspect
class GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Publish the result summary of a DlpJob to the Cloud Security Command Center (
# CSCC Alpha). This action is only available for projects which are parts of an
# organization and whitelisted for the alpha Cloud Security Command Center. The
# action will publish count of finding instances and their info types. The
# summary of findings will be persisted in CSCC and are governed by CSCC service-
# specific policy, see https://cloud.google.com/terms/service-terms Only a
# single instance of this action can be specified. Compatible with: Inspect
class GooglePrivacyDlpV2PublishSummaryToCscc
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Publish a message into given Pub/Sub topic when DlpJob has completed. The
# message contains a single field, `DlpJobName`, which is equal to the finished
# job's [`DlpJob.name`](https://cloud.google.com/dlp/docs/reference/rest/v2/
# projects.dlpJobs#DlpJob). Compatible with: Inspect, Risk
class GooglePrivacyDlpV2PublishToPubSub
include Google::Apis::Core::Hashable
# Cloud Pub/Sub topic to send notifications to. The topic must have given
# publishing access rights to the DLP API service account executing the long
# running DlpJob sending the notifications. Format is projects/`project`/topics/`
# topic`.
# Corresponds to the JSON property `topic`
# @return [String]
attr_accessor :topic
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@topic = args[:topic] if args.key?(:topic)
end
end
# Enable Stackdriver metric dlp.googleapis.com/finding_count. This will publish
# a metric to stack driver on each infotype requested and how many findings were
# found for it. CustomDetectors will be bucketed as 'Custom' under the
# Stackdriver label 'info_type'.
class GooglePrivacyDlpV2PublishToStackdriver
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# A column with a semantic tag attached.
class GooglePrivacyDlpV2QuasiId
include Google::Apis::Core::Hashable
# A column can be tagged with a custom tag. In this case, the user must indicate
# an auxiliary table that contains statistical information on the possible
# values of this column (below).
# Corresponds to the JSON property `customTag`
# @return [String]
attr_accessor :custom_tag
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `field`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :field
# A generic empty message that you can re-use to avoid defining duplicated empty
# messages in your APIs. A typical example is to use it as the request or the
# response type of an API method. For instance: service Foo ` rpc Bar(google.
# protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
# `Empty` is empty JSON object ````.
# Corresponds to the JSON property `inferred`
# @return [Google::Apis::DlpV2::GoogleProtobufEmpty]
attr_accessor :inferred
# Type of information detected by the API.
# Corresponds to the JSON property `infoType`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
attr_accessor :info_type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@custom_tag = args[:custom_tag] if args.key?(:custom_tag)
@field = args[:field] if args.key?(:field)
@inferred = args[:inferred] if args.key?(:inferred)
@info_type = args[:info_type] if args.key?(:info_type)
end
end
# A quasi-identifier column has a custom_tag, used to know which column in the
# data corresponds to which column in the statistical model.
class GooglePrivacyDlpV2QuasiIdField
include Google::Apis::Core::Hashable
# A auxiliary field.
# Corresponds to the JSON property `customTag`
# @return [String]
attr_accessor :custom_tag
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `field`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :field
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@custom_tag = args[:custom_tag] if args.key?(:custom_tag)
@field = args[:field] if args.key?(:field)
end
end
# A quasi-identifier column has a custom_tag, used to know which column in the
# data corresponds to which column in the statistical model.
class GooglePrivacyDlpV2QuasiIdentifierField
include Google::Apis::Core::Hashable
# A column can be tagged with a custom tag. In this case, the user must indicate
# an auxiliary table that contains statistical information on the possible
# values of this column (below).
# Corresponds to the JSON property `customTag`
# @return [String]
attr_accessor :custom_tag
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `field`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :field
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@custom_tag = args[:custom_tag] if args.key?(:custom_tag)
@field = args[:field] if args.key?(:field)
end
end
# Message for infoType-dependent details parsed from quote.
class GooglePrivacyDlpV2QuoteInfo
include Google::Apis::Core::Hashable
# Message for a date time object. e.g. 2018-01-01, 5th August.
# Corresponds to the JSON property `dateTime`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DateTime]
attr_accessor :date_time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@date_time = args[:date_time] if args.key?(:date_time)
end
end
# Generic half-open interval [start, end)
class GooglePrivacyDlpV2Range
include Google::Apis::Core::Hashable
# Index of the last character of the range (exclusive).
# Corresponds to the JSON property `end`
# @return [Fixnum]
attr_accessor :end
# Index of the first character of the range (inclusive).
# Corresponds to the JSON property `start`
# @return [Fixnum]
attr_accessor :start
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@end = args[:end] if args.key?(:end)
@start = args[:start] if args.key?(:start)
end
end
# A condition for determining whether a transformation should be applied to a
# field.
class GooglePrivacyDlpV2RecordCondition
include Google::Apis::Core::Hashable
# An expression, consisting or an operator and conditions.
# Corresponds to the JSON property `expressions`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Expressions]
attr_accessor :expressions
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@expressions = args[:expressions] if args.key?(:expressions)
end
end
# Message for a unique key indicating a record that contains a finding.
class GooglePrivacyDlpV2RecordKey
include Google::Apis::Core::Hashable
# Row key for identifying a record in BigQuery table.
# Corresponds to the JSON property `bigQueryKey`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryKey]
attr_accessor :big_query_key
# Record key for a finding in Cloud Datastore.
# Corresponds to the JSON property `datastoreKey`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DatastoreKey]
attr_accessor :datastore_key
# Values of identifying columns in the given row. Order of values matches the
# order of `identifying_fields` specified in the scanning request.
# Corresponds to the JSON property `idValues`
# @return [Array<String>]
attr_accessor :id_values
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@big_query_key = args[:big_query_key] if args.key?(:big_query_key)
@datastore_key = args[:datastore_key] if args.key?(:datastore_key)
@id_values = args[:id_values] if args.key?(:id_values)
end
end
# Location of a finding within a row or record.
class GooglePrivacyDlpV2RecordLocation
include Google::Apis::Core::Hashable
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `fieldId`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :field_id
# Message for a unique key indicating a record that contains a finding.
# Corresponds to the JSON property `recordKey`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RecordKey]
attr_accessor :record_key
# Location of a finding within a table.
# Corresponds to the JSON property `tableLocation`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TableLocation]
attr_accessor :table_location
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@field_id = args[:field_id] if args.key?(:field_id)
@record_key = args[:record_key] if args.key?(:record_key)
@table_location = args[:table_location] if args.key?(:table_location)
end
end
# Configuration to suppress records whose suppression conditions evaluate to
# true.
class GooglePrivacyDlpV2RecordSuppression
include Google::Apis::Core::Hashable
# A condition for determining whether a transformation should be applied to a
# field.
# Corresponds to the JSON property `condition`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RecordCondition]
attr_accessor :condition
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@condition = args[:condition] if args.key?(:condition)
end
end
# A type of transformation that is applied over structured data such as a table.
class GooglePrivacyDlpV2RecordTransformations
include Google::Apis::Core::Hashable
# Transform the record by applying various field transformations.
# Corresponds to the JSON property `fieldTransformations`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldTransformation>]
attr_accessor :field_transformations
# Configuration defining which records get suppressed entirely. Records that
# match any suppression rule are omitted from the output.
# Corresponds to the JSON property `recordSuppressions`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2RecordSuppression>]
attr_accessor :record_suppressions
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@field_transformations = args[:field_transformations] if args.key?(:field_transformations)
@record_suppressions = args[:record_suppressions] if args.key?(:record_suppressions)
end
end
# Redact a given value. For example, if used with an `InfoTypeTransformation`
# transforming PHONE_NUMBER, and input 'My phone number is 206-555-0123', the
# output would be 'My phone number is '.
class GooglePrivacyDlpV2RedactConfig
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Request to search for potentially sensitive info in an image and redact it by
# covering it with a colored rectangle.
class GooglePrivacyDlpV2RedactImageRequest
include Google::Apis::Core::Hashable
# Container for bytes to inspect or redact.
# Corresponds to the JSON property `byteItem`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ByteContentItem]
attr_accessor :byte_item
# The configuration for specifying what content to redact from images.
# Corresponds to the JSON property `imageRedactionConfigs`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2ImageRedactionConfig>]
attr_accessor :image_redaction_configs
# Whether the response should include findings along with the redacted image.
# Corresponds to the JSON property `includeFindings`
# @return [Boolean]
attr_accessor :include_findings
alias_method :include_findings?, :include_findings
# Configuration description of the scanning process. When used with
# redactContent only info_types and min_likelihood are currently used.
# Corresponds to the JSON property `inspectConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectConfig]
attr_accessor :inspect_config
# Deprecated. This field has no effect.
# Corresponds to the JSON property `locationId`
# @return [String]
attr_accessor :location_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@byte_item = args[:byte_item] if args.key?(:byte_item)
@image_redaction_configs = args[:image_redaction_configs] if args.key?(:image_redaction_configs)
@include_findings = args[:include_findings] if args.key?(:include_findings)
@inspect_config = args[:inspect_config] if args.key?(:inspect_config)
@location_id = args[:location_id] if args.key?(:location_id)
end
end
# Results of redacting an image.
class GooglePrivacyDlpV2RedactImageResponse
include Google::Apis::Core::Hashable
# If an image was being inspected and the InspectConfig's include_quote was set
# to true, then this field will include all text, if any, that was found in the
# image.
# Corresponds to the JSON property `extractedText`
# @return [String]
attr_accessor :extracted_text
# All the findings for a single scanned item.
# Corresponds to the JSON property `inspectResult`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectResult]
attr_accessor :inspect_result
# The redacted image. The type will be the same as the original image.
# Corresponds to the JSON property `redactedImage`
# NOTE: Values are automatically base64 encoded/decoded in the client library.
# @return [String]
attr_accessor :redacted_image
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@extracted_text = args[:extracted_text] if args.key?(:extracted_text)
@inspect_result = args[:inspect_result] if args.key?(:inspect_result)
@redacted_image = args[:redacted_image] if args.key?(:redacted_image)
end
end
# Message defining a custom regular expression.
class GooglePrivacyDlpV2Regex
include Google::Apis::Core::Hashable
# The index of the submatch to extract as findings. When not specified, the
# entire match is returned. No more than 3 may be included.
# Corresponds to the JSON property `groupIndexes`
# @return [Array<Fixnum>]
attr_accessor :group_indexes
# Pattern defining the regular expression. Its syntax (https://github.com/google/
# re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
# Corresponds to the JSON property `pattern`
# @return [String]
attr_accessor :pattern
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@group_indexes = args[:group_indexes] if args.key?(:group_indexes)
@pattern = args[:pattern] if args.key?(:pattern)
end
end
# Request to re-identify an item.
class GooglePrivacyDlpV2ReidentifyContentRequest
include Google::Apis::Core::Hashable
# Configuration description of the scanning process. When used with
# redactContent only info_types and min_likelihood are currently used.
# Corresponds to the JSON property `inspectConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectConfig]
attr_accessor :inspect_config
# Template to use. Any configuration directly specified in `inspect_config` will
# override those set in the template. Singular fields that are set in this
# request will replace their corresponding fields in the template. Repeated
# fields are appended. Singular sub-messages and groups are recursively merged.
# Corresponds to the JSON property `inspectTemplateName`
# @return [String]
attr_accessor :inspect_template_name
# Container structure for the content to inspect.
# Corresponds to the JSON property `item`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem]
attr_accessor :item
# Deprecated. This field has no effect.
# Corresponds to the JSON property `locationId`
# @return [String]
attr_accessor :location_id
# The configuration that controls how the data will change.
# Corresponds to the JSON property `reidentifyConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyConfig]
attr_accessor :reidentify_config
# Template to use. References an instance of `DeidentifyTemplate`. Any
# configuration directly specified in `reidentify_config` or `inspect_config`
# will override those set in the template. The `DeidentifyTemplate` used must
# include only reversible transformations. Singular fields that are set in this
# request will replace their corresponding fields in the template. Repeated
# fields are appended. Singular sub-messages and groups are recursively merged.
# Corresponds to the JSON property `reidentifyTemplateName`
# @return [String]
attr_accessor :reidentify_template_name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@inspect_config = args[:inspect_config] if args.key?(:inspect_config)
@inspect_template_name = args[:inspect_template_name] if args.key?(:inspect_template_name)
@item = args[:item] if args.key?(:item)
@location_id = args[:location_id] if args.key?(:location_id)
@reidentify_config = args[:reidentify_config] if args.key?(:reidentify_config)
@reidentify_template_name = args[:reidentify_template_name] if args.key?(:reidentify_template_name)
end
end
# Results of re-identifying a item.
class GooglePrivacyDlpV2ReidentifyContentResponse
include Google::Apis::Core::Hashable
# Container structure for the content to inspect.
# Corresponds to the JSON property `item`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem]
attr_accessor :item
# Overview of the modifications that occurred.
# Corresponds to the JSON property `overview`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationOverview]
attr_accessor :overview
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@item = args[:item] if args.key?(:item)
@overview = args[:overview] if args.key?(:overview)
end
end
# Replace each input value with a given `Value`.
class GooglePrivacyDlpV2ReplaceValueConfig
include Google::Apis::Core::Hashable
# Set of primitive values supported by the system. Note that for the purposes of
# inspection or transformation, the number of bytes considered to comprise a '
# Value' is based on its representation as a UTF-8 encoded string. For example,
# if 'integer_value' is set to 123456789, the number of bytes would be counted
# as 9, even though an int64 only holds up to 8 bytes of data.
# Corresponds to the JSON property `newValue`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Value]
attr_accessor :new_value
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@new_value = args[:new_value] if args.key?(:new_value)
end
end
# Replace each matching finding with the name of the info_type.
class GooglePrivacyDlpV2ReplaceWithInfoTypeConfig
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Snapshot of the inspection configuration.
class GooglePrivacyDlpV2RequestedOptions
include Google::Apis::Core::Hashable
# Controls what and how to inspect for findings.
# Corresponds to the JSON property `jobConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectJobConfig]
attr_accessor :job_config
# The inspectTemplate contains a configuration (set of types of sensitive data
# to be detected) to be used anywhere you otherwise would normally specify
# InspectConfig. See https://cloud.google.com/dlp/docs/concepts-templates to
# learn more.
# Corresponds to the JSON property `snapshotInspectTemplate`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]
attr_accessor :snapshot_inspect_template
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@job_config = args[:job_config] if args.key?(:job_config)
@snapshot_inspect_template = args[:snapshot_inspect_template] if args.key?(:snapshot_inspect_template)
end
end
# Risk analysis options.
class GooglePrivacyDlpV2RequestedRiskAnalysisOptions
include Google::Apis::Core::Hashable
# Configuration for a risk analysis job. See https://cloud.google.com/dlp/docs/
# concepts-risk-analysis to learn more.
# Corresponds to the JSON property `jobConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RiskAnalysisJobConfig]
attr_accessor :job_config
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@job_config = args[:job_config] if args.key?(:job_config)
end
end
# All result fields mentioned below are updated while the job is processing.
class GooglePrivacyDlpV2Result
include Google::Apis::Core::Hashable
# Statistics related to processing hybrid inspect requests.
# Corresponds to the JSON property `hybridStats`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectStatistics]
attr_accessor :hybrid_stats
# Statistics of how many instances of each info type were found during inspect
# job.
# Corresponds to the JSON property `infoTypeStats`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeStats>]
attr_accessor :info_type_stats
# Total size in bytes that were processed.
# Corresponds to the JSON property `processedBytes`
# @return [Fixnum]
attr_accessor :processed_bytes
# Estimate of the number of bytes to process.
# Corresponds to the JSON property `totalEstimatedBytes`
# @return [Fixnum]
attr_accessor :total_estimated_bytes
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@hybrid_stats = args[:hybrid_stats] if args.key?(:hybrid_stats)
@info_type_stats = args[:info_type_stats] if args.key?(:info_type_stats)
@processed_bytes = args[:processed_bytes] if args.key?(:processed_bytes)
@total_estimated_bytes = args[:total_estimated_bytes] if args.key?(:total_estimated_bytes)
end
end
# Configuration for a risk analysis job. See https://cloud.google.com/dlp/docs/
# concepts-risk-analysis to learn more.
class GooglePrivacyDlpV2RiskAnalysisJobConfig
include Google::Apis::Core::Hashable
# Actions to execute at the completion of the job. Are executed in the order
# provided.
# Corresponds to the JSON property `actions`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Action>]
attr_accessor :actions
# Privacy metric to compute for reidentification risk analysis.
# Corresponds to the JSON property `privacyMetric`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PrivacyMetric]
attr_accessor :privacy_metric
# Message defining the location of a BigQuery table. A table is uniquely
# identified by its project_id, dataset_id, and table_name. Within a query a
# table is often referenced with a string in the format of: `:.` or `..`.
# Corresponds to the JSON property `sourceTable`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable]
attr_accessor :source_table
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@actions = args[:actions] if args.key?(:actions)
@privacy_metric = args[:privacy_metric] if args.key?(:privacy_metric)
@source_table = args[:source_table] if args.key?(:source_table)
end
end
# Values of the row.
class GooglePrivacyDlpV2Row
include Google::Apis::Core::Hashable
# Individual cells.
# Corresponds to the JSON property `values`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>]
attr_accessor :values
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@values = args[:values] if args.key?(:values)
end
end
# If set, the detailed findings will be persisted to the specified
# OutputStorageConfig. Only a single instance of this action can be specified.
# Compatible with: Inspect, Risk
class GooglePrivacyDlpV2SaveFindings
include Google::Apis::Core::Hashable
# Cloud repository for storing output.
# Corresponds to the JSON property `outputConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2OutputStorageConfig]
attr_accessor :output_config
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@output_config = args[:output_config] if args.key?(:output_config)
end
end
# Schedule for triggeredJobs.
class GooglePrivacyDlpV2Schedule
include Google::Apis::Core::Hashable
# With this option a job is started a regular periodic basis. For example: every
# day (86400 seconds). A scheduled start time will be skipped if the previous
# execution has not ended when its scheduled time occurs. This value must be set
# to a time duration greater than or equal to 1 day and can be no longer than 60
# days.
# Corresponds to the JSON property `recurrencePeriodDuration`
# @return [String]
attr_accessor :recurrence_period_duration
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@recurrence_period_duration = args[:recurrence_period_duration] if args.key?(:recurrence_period_duration)
end
end
# An auxiliary table containing statistical information on the relative
# frequency of different quasi-identifiers values. It has one or several quasi-
# identifiers columns, and one column that indicates the relative frequency of
# each quasi-identifier tuple. If a tuple is present in the data but not in the
# auxiliary table, the corresponding relative frequency is assumed to be zero (
# and thus, the tuple is highly reidentifiable).
class GooglePrivacyDlpV2StatisticalTable
include Google::Apis::Core::Hashable
# Required. Quasi-identifier columns.
# Corresponds to the JSON property `quasiIds`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2QuasiIdentifierField>]
attr_accessor :quasi_ids
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `relativeFrequency`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :relative_frequency
# Message defining the location of a BigQuery table. A table is uniquely
# identified by its project_id, dataset_id, and table_name. Within a query a
# table is often referenced with a string in the format of: `:.` or `..`.
# Corresponds to the JSON property `table`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable]
attr_accessor :table
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@quasi_ids = args[:quasi_ids] if args.key?(:quasi_ids)
@relative_frequency = args[:relative_frequency] if args.key?(:relative_frequency)
@table = args[:table] if args.key?(:table)
end
end
# Shared message indicating Cloud storage type.
class GooglePrivacyDlpV2StorageConfig
include Google::Apis::Core::Hashable
# Options defining BigQuery table and row identifiers.
# Corresponds to the JSON property `bigQueryOptions`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryOptions]
attr_accessor :big_query_options
# Options defining a file or a set of files within a Google Cloud Storage bucket.
# Corresponds to the JSON property `cloudStorageOptions`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStorageOptions]
attr_accessor :cloud_storage_options
# Options defining a data set within Google Cloud Datastore.
# Corresponds to the JSON property `datastoreOptions`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DatastoreOptions]
attr_accessor :datastore_options
# Configuration to control jobs where the content being inspected is outside of
# Google Cloud Platform.
# Corresponds to the JSON property `hybridOptions`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2HybridOptions]
attr_accessor :hybrid_options
# Configuration of the timespan of the items to include in scanning. Currently
# only supported when inspecting Google Cloud Storage and BigQuery.
# Corresponds to the JSON property `timespanConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TimespanConfig]
attr_accessor :timespan_config
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@big_query_options = args[:big_query_options] if args.key?(:big_query_options)
@cloud_storage_options = args[:cloud_storage_options] if args.key?(:cloud_storage_options)
@datastore_options = args[:datastore_options] if args.key?(:datastore_options)
@hybrid_options = args[:hybrid_options] if args.key?(:hybrid_options)
@timespan_config = args[:timespan_config] if args.key?(:timespan_config)
end
end
# Storage metadata label to indicate which metadata entry contains findings.
class GooglePrivacyDlpV2StorageMetadataLabel
include Google::Apis::Core::Hashable
#
# Corresponds to the JSON property `key`
# @return [String]
attr_accessor :key
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@key = args[:key] if args.key?(:key)
end
end
# StoredInfoType resource message that contains information about the current
# version and any pending updates.
class GooglePrivacyDlpV2StoredInfoType
include Google::Apis::Core::Hashable
# Version of a StoredInfoType, including the configuration used to build it,
# create timestamp, and current state.
# Corresponds to the JSON property `currentVersion`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeVersion]
attr_accessor :current_version
# Resource name.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# Pending versions of the stored info type. Empty if no versions are pending.
# Corresponds to the JSON property `pendingVersions`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeVersion>]
attr_accessor :pending_versions
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@current_version = args[:current_version] if args.key?(:current_version)
@name = args[:name] if args.key?(:name)
@pending_versions = args[:pending_versions] if args.key?(:pending_versions)
end
end
# Configuration for stored infoTypes. All fields and subfield are provided by
# the user. For more information, see https://cloud.google.com/dlp/docs/creating-
# custom-infotypes.
class GooglePrivacyDlpV2StoredInfoTypeConfig
include Google::Apis::Core::Hashable
# Description of the StoredInfoType (max 256 characters).
# Corresponds to the JSON property `description`
# @return [String]
attr_accessor :description
# Custom information type based on a dictionary of words or phrases. This can be
# used to match sensitive information specific to the data, such as a list of
# employee IDs or job titles. Dictionary words are case-insensitive and all
# characters other than letters and digits in the unicode [Basic Multilingual
# Plane](https://en.wikipedia.org/wiki/Plane_%28Unicode%29#
# Basic_Multilingual_Plane) will be replaced with whitespace when scanning for
# matches, so the dictionary phrase "Sam Johnson" will match all three phrases "
# sam johnson", "Sam, Johnson", and "Sam (Johnson)". Additionally, the
# characters surrounding any match must be of a different type than the adjacent
# characters within the word, so letters must be next to non-letters and digits
# next to non-digits. For example, the dictionary word "jen" will match the
# first three letters of the text "jen123" but will return no matches for "
# jennifer". Dictionary words containing a large number of characters that are
# not letters or digits may result in unexpected findings because such
# characters are treated as whitespace. The [limits](https://cloud.google.com/
# dlp/limits) page contains details about the size limits of dictionaries. For
# dictionaries that do not fit within these constraints, consider using `
# LargeCustomDictionaryConfig` in the `StoredInfoType` API.
# Corresponds to the JSON property `dictionary`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Dictionary]
attr_accessor :dictionary
# Display name of the StoredInfoType (max 256 characters).
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
# Configuration for a custom dictionary created from a data source of any size
# up to the maximum size defined in the [limits](https://cloud.google.com/dlp/
# limits) page. The artifacts of dictionary creation are stored in the specified
# Google Cloud Storage location. Consider using `CustomInfoType.Dictionary` for
# smaller dictionaries that satisfy the size requirements.
# Corresponds to the JSON property `largeCustomDictionary`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2LargeCustomDictionaryConfig]
attr_accessor :large_custom_dictionary
# Message defining a custom regular expression.
# Corresponds to the JSON property `regex`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Regex]
attr_accessor :regex
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@description = args[:description] if args.key?(:description)
@dictionary = args[:dictionary] if args.key?(:dictionary)
@display_name = args[:display_name] if args.key?(:display_name)
@large_custom_dictionary = args[:large_custom_dictionary] if args.key?(:large_custom_dictionary)
@regex = args[:regex] if args.key?(:regex)
end
end
# Statistics for a StoredInfoType.
class GooglePrivacyDlpV2StoredInfoTypeStats
include Google::Apis::Core::Hashable
# Summary statistics of a custom dictionary.
# Corresponds to the JSON property `largeCustomDictionary`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2LargeCustomDictionaryStats]
attr_accessor :large_custom_dictionary
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@large_custom_dictionary = args[:large_custom_dictionary] if args.key?(:large_custom_dictionary)
end
end
# Version of a StoredInfoType, including the configuration used to build it,
# create timestamp, and current state.
class GooglePrivacyDlpV2StoredInfoTypeVersion
include Google::Apis::Core::Hashable
# Configuration for stored infoTypes. All fields and subfield are provided by
# the user. For more information, see https://cloud.google.com/dlp/docs/creating-
# custom-infotypes.
# Corresponds to the JSON property `config`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeConfig]
attr_accessor :config
# Create timestamp of the version. Read-only, determined by the system when the
# version is created.
# Corresponds to the JSON property `createTime`
# @return [String]
attr_accessor :create_time
# Errors that occurred when creating this storedInfoType version, or anomalies
# detected in the storedInfoType data that render it unusable. Only the five
# most recent errors will be displayed, with the most recent error appearing
# first. For example, some of the data for stored custom dictionaries is put in
# the user's Google Cloud Storage bucket, and if this data is modified or
# deleted by the user or another system, the dictionary becomes invalid. If any
# errors occur, fix the problem indicated by the error message and use the
# UpdateStoredInfoType API method to create another version of the
# storedInfoType to continue using it, reusing the same `config` if it was not
# the source of the error.
# Corresponds to the JSON property `errors`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Error>]
attr_accessor :errors
# Stored info type version state. Read-only, updated by the system during
# dictionary creation.
# Corresponds to the JSON property `state`
# @return [String]
attr_accessor :state
# Statistics for a StoredInfoType.
# Corresponds to the JSON property `stats`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeStats]
attr_accessor :stats
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@config = args[:config] if args.key?(:config)
@create_time = args[:create_time] if args.key?(:create_time)
@errors = args[:errors] if args.key?(:errors)
@state = args[:state] if args.key?(:state)
@stats = args[:stats] if args.key?(:stats)
end
end
# A reference to a StoredInfoType to use with scanning.
class GooglePrivacyDlpV2StoredType
include Google::Apis::Core::Hashable
# Timestamp indicating when the version of the `StoredInfoType` used for
# inspection was created. Output-only field, populated by the system.
# Corresponds to the JSON property `createTime`
# @return [String]
attr_accessor :create_time
# Resource name of the requested `StoredInfoType`, for example `organizations/
# 433245324/storedInfoTypes/432452342` or `projects/project-id/storedInfoTypes/
# 432452342`.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@create_time = args[:create_time] if args.key?(:create_time)
@name = args[:name] if args.key?(:name)
end
end
# A collection that informs the user the number of times a particular `
# TransformationResultCode` and error details occurred.
class GooglePrivacyDlpV2SummaryResult
include Google::Apis::Core::Hashable
# Outcome of the transformation.
# Corresponds to the JSON property `code`
# @return [String]
attr_accessor :code
# Number of transformations counted by this result.
# Corresponds to the JSON property `count`
# @return [Fixnum]
attr_accessor :count
# A place for warnings or errors to show up if a transformation didn't work as
# expected.
# Corresponds to the JSON property `details`
# @return [String]
attr_accessor :details
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@code = args[:code] if args.key?(:code)
@count = args[:count] if args.key?(:count)
@details = args[:details] if args.key?(:details)
end
end
# Message for detecting output from deidentification transformations such as [`
# CryptoReplaceFfxFpeConfig`](https://cloud.google.com/dlp/docs/reference/rest/
# v2/organizations.deidentifyTemplates#cryptoreplaceffxfpeconfig). These types
# of transformations are those that perform pseudonymization, thereby producing
# a "surrogate" as output. This should be used in conjunction with a field on
# the transformation such as `surrogate_info_type`. This CustomInfoType does not
# support the use of `detection_rules`.
class GooglePrivacyDlpV2SurrogateType
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Structured content to inspect. Up to 50,000 `Value`s per request allowed. See
# https://cloud.google.com/dlp/docs/inspecting-text#inspecting_a_table to learn
# more.
class GooglePrivacyDlpV2Table
include Google::Apis::Core::Hashable
# Headers of the table.
# Corresponds to the JSON property `headers`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId>]
attr_accessor :headers
# Rows of the table.
# Corresponds to the JSON property `rows`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Row>]
attr_accessor :rows
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@headers = args[:headers] if args.key?(:headers)
@rows = args[:rows] if args.key?(:rows)
end
end
# Location of a finding within a table.
class GooglePrivacyDlpV2TableLocation
include Google::Apis::Core::Hashable
# The zero-based index of the row where the finding is located. Only populated
# for resources that have a natural ordering, not BigQuery. In BigQuery, to
# identify the row a finding came from, populate BigQueryOptions.
# identifying_fields with your primary key column names and when you store the
# findings the value of those columns will be stored inside of Finding.
# Corresponds to the JSON property `rowIndex`
# @return [Fixnum]
attr_accessor :row_index
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@row_index = args[:row_index] if args.key?(:row_index)
end
end
# Instructions regarding the table content being inspected.
class GooglePrivacyDlpV2TableOptions
include Google::Apis::Core::Hashable
# The columns that are the primary keys for table objects included in
# ContentItem. A copy of this cell's value will stored alongside alongside each
# finding so that the finding can be traced to the specific row it came from. No
# more than 3 may be provided.
# Corresponds to the JSON property `identifyingFields`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId>]
attr_accessor :identifying_fields
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@identifying_fields = args[:identifying_fields] if args.key?(:identifying_fields)
end
end
# A column with a semantic tag attached.
class GooglePrivacyDlpV2TaggedField
include Google::Apis::Core::Hashable
# A column can be tagged with a custom tag. In this case, the user must indicate
# an auxiliary table that contains statistical information on the possible
# values of this column (below).
# Corresponds to the JSON property `customTag`
# @return [String]
attr_accessor :custom_tag
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `field`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :field
# A generic empty message that you can re-use to avoid defining duplicated empty
# messages in your APIs. A typical example is to use it as the request or the
# response type of an API method. For instance: service Foo ` rpc Bar(google.
# protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
# `Empty` is empty JSON object ````.
# Corresponds to the JSON property `inferred`
# @return [Google::Apis::DlpV2::GoogleProtobufEmpty]
attr_accessor :inferred
# Type of information detected by the API.
# Corresponds to the JSON property `infoType`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
attr_accessor :info_type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@custom_tag = args[:custom_tag] if args.key?(:custom_tag)
@field = args[:field] if args.key?(:field)
@inferred = args[:inferred] if args.key?(:inferred)
@info_type = args[:info_type] if args.key?(:info_type)
end
end
# Throw an error and fail the request when a transformation error occurs.
class GooglePrivacyDlpV2ThrowError
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a
# portion of the value.
class GooglePrivacyDlpV2TimePartConfig
include Google::Apis::Core::Hashable
# The part of the time to keep.
# Corresponds to the JSON property `partToExtract`
# @return [String]
attr_accessor :part_to_extract
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@part_to_extract = args[:part_to_extract] if args.key?(:part_to_extract)
end
end
# Time zone of the date time object.
class GooglePrivacyDlpV2TimeZone
include Google::Apis::Core::Hashable
# Set only if the offset can be determined. Positive for time ahead of UTC. E.g.
# For "UTC-9", this value is -540.
# Corresponds to the JSON property `offsetMinutes`
# @return [Fixnum]
attr_accessor :offset_minutes
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@offset_minutes = args[:offset_minutes] if args.key?(:offset_minutes)
end
end
# Configuration of the timespan of the items to include in scanning. Currently
# only supported when inspecting Google Cloud Storage and BigQuery.
class GooglePrivacyDlpV2TimespanConfig
include Google::Apis::Core::Hashable
# When the job is started by a JobTrigger we will automatically figure out a
# valid start_time to avoid scanning files that have not been modified since the
# last time the JobTrigger executed. This will be based on the time of the
# execution of the last run of the JobTrigger.
# Corresponds to the JSON property `enableAutoPopulationOfTimespanConfig`
# @return [Boolean]
attr_accessor :enable_auto_population_of_timespan_config
alias_method :enable_auto_population_of_timespan_config?, :enable_auto_population_of_timespan_config
# Exclude files, tables, or rows newer than this value. If not set, no upper
# time limit is applied.
# Corresponds to the JSON property `endTime`
# @return [String]
attr_accessor :end_time
# Exclude files, tables, or rows older than this value. If not set, no lower
# time limit is applied.
# Corresponds to the JSON property `startTime`
# @return [String]
attr_accessor :start_time
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `timestampField`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :timestamp_field
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@enable_auto_population_of_timespan_config = args[:enable_auto_population_of_timespan_config] if args.key?(:enable_auto_population_of_timespan_config)
@end_time = args[:end_time] if args.key?(:end_time)
@start_time = args[:start_time] if args.key?(:start_time)
@timestamp_field = args[:timestamp_field] if args.key?(:timestamp_field)
end
end
# How to handle transformation errors during de-identification. A transformation
# error occurs when the requested transformation is incompatible with the data.
# For example, trying to de-identify an IP address using a `DateShift`
# transformation would result in a transformation error, since date info cannot
# be extracted from an IP address. Information about any incompatible
# transformations, and how they were handled, is returned in the response as
# part of the `TransformationOverviews`.
class GooglePrivacyDlpV2TransformationErrorHandling
include Google::Apis::Core::Hashable
# Skips the data without modifying it if the requested transformation would
# cause an error. For example, if a `DateShift` transformation were applied an
# an IP address, this mode would leave the IP address unchanged in the response.
# Corresponds to the JSON property `leaveUntransformed`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2LeaveUntransformed]
attr_accessor :leave_untransformed
# Throw an error and fail the request when a transformation error occurs.
# Corresponds to the JSON property `throwError`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ThrowError]
attr_accessor :throw_error
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@leave_untransformed = args[:leave_untransformed] if args.key?(:leave_untransformed)
@throw_error = args[:throw_error] if args.key?(:throw_error)
end
end
# Overview of the modifications that occurred.
class GooglePrivacyDlpV2TransformationOverview
include Google::Apis::Core::Hashable
# Transformations applied to the dataset.
# Corresponds to the JSON property `transformationSummaries`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationSummary>]
attr_accessor :transformation_summaries
# Total size in bytes that were transformed in some way.
# Corresponds to the JSON property `transformedBytes`
# @return [Fixnum]
attr_accessor :transformed_bytes
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@transformation_summaries = args[:transformation_summaries] if args.key?(:transformation_summaries)
@transformed_bytes = args[:transformed_bytes] if args.key?(:transformed_bytes)
end
end
# Summary of a single transformation. Only one of 'transformation', '
# field_transformation', or 'record_suppress' will be set.
class GooglePrivacyDlpV2TransformationSummary
include Google::Apis::Core::Hashable
# General identifier of a data field in a storage service.
# Corresponds to the JSON property `field`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
attr_accessor :field
# The field transformation that was applied. If multiple field transformations
# are requested for a single field, this list will contain all of them;
# otherwise, only one is supplied.
# Corresponds to the JSON property `fieldTransformations`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldTransformation>]
attr_accessor :field_transformations
# Type of information detected by the API.
# Corresponds to the JSON property `infoType`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
attr_accessor :info_type
# Configuration to suppress records whose suppression conditions evaluate to
# true.
# Corresponds to the JSON property `recordSuppress`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RecordSuppression]
attr_accessor :record_suppress
# Collection of all transformations that took place or had an error.
# Corresponds to the JSON property `results`
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2SummaryResult>]
attr_accessor :results
# A rule for transforming a value.
# Corresponds to the JSON property `transformation`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PrimitiveTransformation]
attr_accessor :transformation
# Total size in bytes that were transformed in some way.
# Corresponds to the JSON property `transformedBytes`
# @return [Fixnum]
attr_accessor :transformed_bytes
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@field = args[:field] if args.key?(:field)
@field_transformations = args[:field_transformations] if args.key?(:field_transformations)
@info_type = args[:info_type] if args.key?(:info_type)
@record_suppress = args[:record_suppress] if args.key?(:record_suppress)
@results = args[:results] if args.key?(:results)
@transformation = args[:transformation] if args.key?(:transformation)
@transformed_bytes = args[:transformed_bytes] if args.key?(:transformed_bytes)
end
end
# Use this to have a random data crypto key generated. It will be discarded
# after the request finishes.
class GooglePrivacyDlpV2TransientCryptoKey
include Google::Apis::Core::Hashable
# Required. Name of the key. This is an arbitrary string used to differentiate
# different keys. A unique key is generated per name: two separate `
# TransientCryptoKey` protos share the same generated key if their names are the
# same. When the data crypto key is generated, this name is not used in any way (
# repeating the api call will result in a different key being generated).
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@name = args[:name] if args.key?(:name)
end
end
# What event needs to occur for a new job to be started.
class GooglePrivacyDlpV2Trigger
include Google::Apis::Core::Hashable
# Job trigger option for hybrid jobs. Jobs must be manually created and finished.
# Corresponds to the JSON property `manual`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Manual]
attr_accessor :manual
# Schedule for triggeredJobs.
# Corresponds to the JSON property `schedule`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Schedule]
attr_accessor :schedule
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@manual = args[:manual] if args.key?(:manual)
@schedule = args[:schedule] if args.key?(:schedule)
end
end
# Using raw keys is prone to security risks due to accidentally leaking the key.
# Choose another type of key if possible.
class GooglePrivacyDlpV2UnwrappedCryptoKey
include Google::Apis::Core::Hashable
# Required. A 128/192/256 bit key.
# Corresponds to the JSON property `key`
# NOTE: Values are automatically base64 encoded/decoded in the client library.
# @return [String]
attr_accessor :key
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@key = args[:key] if args.key?(:key)
end
end
# Request message for UpdateDeidentifyTemplate.
class GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest
include Google::Apis::Core::Hashable
# DeidentifyTemplates contains instructions on how to de-identify content. See
# https://cloud.google.com/dlp/docs/concepts-templates to learn more.
# Corresponds to the JSON property `deidentifyTemplate`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]
attr_accessor :deidentify_template
# Mask to control which fields get updated.
# Corresponds to the JSON property `updateMask`
# @return [String]
attr_accessor :update_mask
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template)
@update_mask = args[:update_mask] if args.key?(:update_mask)
end
end
# Request message for UpdateInspectTemplate.
class GooglePrivacyDlpV2UpdateInspectTemplateRequest
include Google::Apis::Core::Hashable
# The inspectTemplate contains a configuration (set of types of sensitive data
# to be detected) to be used anywhere you otherwise would normally specify
# InspectConfig. See https://cloud.google.com/dlp/docs/concepts-templates to
# learn more.
# Corresponds to the JSON property `inspectTemplate`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]
attr_accessor :inspect_template
# Mask to control which fields get updated.
# Corresponds to the JSON property `updateMask`
# @return [String]
attr_accessor :update_mask
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@inspect_template = args[:inspect_template] if args.key?(:inspect_template)
@update_mask = args[:update_mask] if args.key?(:update_mask)
end
end
# Request message for UpdateJobTrigger.
class GooglePrivacyDlpV2UpdateJobTriggerRequest
include Google::Apis::Core::Hashable
# Contains a configuration to make dlp api calls on a repeating basis. See https:
# //cloud.google.com/dlp/docs/concepts-job-triggers to learn more.
# Corresponds to the JSON property `jobTrigger`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger]
attr_accessor :job_trigger
# Mask to control which fields get updated.
# Corresponds to the JSON property `updateMask`
# @return [String]
attr_accessor :update_mask
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@job_trigger = args[:job_trigger] if args.key?(:job_trigger)
@update_mask = args[:update_mask] if args.key?(:update_mask)
end
end
# Request message for UpdateStoredInfoType.
class GooglePrivacyDlpV2UpdateStoredInfoTypeRequest
include Google::Apis::Core::Hashable
# Configuration for stored infoTypes. All fields and subfield are provided by
# the user. For more information, see https://cloud.google.com/dlp/docs/creating-
# custom-infotypes.
# Corresponds to the JSON property `config`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeConfig]
attr_accessor :config
# Mask to control which fields get updated.
# Corresponds to the JSON property `updateMask`
# @return [String]
attr_accessor :update_mask
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@config = args[:config] if args.key?(:config)
@update_mask = args[:update_mask] if args.key?(:update_mask)
end
end
# Set of primitive values supported by the system. Note that for the purposes of
# inspection or transformation, the number of bytes considered to comprise a '
# Value' is based on its representation as a UTF-8 encoded string. For example,
# if 'integer_value' is set to 123456789, the number of bytes would be counted
# as 9, even though an int64 only holds up to 8 bytes of data.
class GooglePrivacyDlpV2Value
include Google::Apis::Core::Hashable
# boolean
# Corresponds to the JSON property `booleanValue`
# @return [Boolean]
attr_accessor :boolean_value
alias_method :boolean_value?, :boolean_value
# Represents a whole or partial calendar date, such as a birthday. The time of
# day and time zone are either specified elsewhere or are insignificant. The
# date is relative to the Gregorian Calendar. This can represent one of the
# following: * A full date, with non-zero year, month, and day values * A month
# and day value, with a zero year, such as an anniversary * A year on its own,
# with zero month and day values * A year and month value, with a zero day, such
# as a credit card expiration date Related types are google.type.TimeOfDay and `
# google.protobuf.Timestamp`.
# Corresponds to the JSON property `dateValue`
# @return [Google::Apis::DlpV2::GoogleTypeDate]
attr_accessor :date_value
# day of week
# Corresponds to the JSON property `dayOfWeekValue`
# @return [String]
attr_accessor :day_of_week_value
# float
# Corresponds to the JSON property `floatValue`
# @return [Float]
attr_accessor :float_value
# integer
# Corresponds to the JSON property `integerValue`
# @return [Fixnum]
attr_accessor :integer_value
# string
# Corresponds to the JSON property `stringValue`
# @return [String]
attr_accessor :string_value
# Represents a time of day. The date and time zone are either not significant or
# are specified elsewhere. An API may choose to allow leap seconds. Related
# types are google.type.Date and `google.protobuf.Timestamp`.
# Corresponds to the JSON property `timeValue`
# @return [Google::Apis::DlpV2::GoogleTypeTimeOfDay]
attr_accessor :time_value
# timestamp
# Corresponds to the JSON property `timestampValue`
# @return [String]
attr_accessor :timestamp_value
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@boolean_value = args[:boolean_value] if args.key?(:boolean_value)
@date_value = args[:date_value] if args.key?(:date_value)
@day_of_week_value = args[:day_of_week_value] if args.key?(:day_of_week_value)
@float_value = args[:float_value] if args.key?(:float_value)
@integer_value = args[:integer_value] if args.key?(:integer_value)
@string_value = args[:string_value] if args.key?(:string_value)
@time_value = args[:time_value] if args.key?(:time_value)
@timestamp_value = args[:timestamp_value] if args.key?(:timestamp_value)
end
end
# A value of a field, including its frequency.
class GooglePrivacyDlpV2ValueFrequency
include Google::Apis::Core::Hashable
# How many times the value is contained in the field.
# Corresponds to the JSON property `count`
# @return [Fixnum]
attr_accessor :count
# Set of primitive values supported by the system. Note that for the purposes of
# inspection or transformation, the number of bytes considered to comprise a '
# Value' is based on its representation as a UTF-8 encoded string. For example,
# if 'integer_value' is set to 123456789, the number of bytes would be counted
# as 9, even though an int64 only holds up to 8 bytes of data.
# Corresponds to the JSON property `value`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Value]
attr_accessor :value
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@count = args[:count] if args.key?(:count)
@value = args[:value] if args.key?(:value)
end
end
# Message defining a list of words or phrases to search for in the data.
class GooglePrivacyDlpV2WordList
include Google::Apis::Core::Hashable
# Words or phrases defining the dictionary. The dictionary must contain at least
# one phrase and every phrase must contain at least 2 characters that are
# letters or digits. [required]
# Corresponds to the JSON property `words`
# @return [Array<String>]
attr_accessor :words
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@words = args[:words] if args.key?(:words)
end
end
# A generic empty message that you can re-use to avoid defining duplicated empty
# messages in your APIs. A typical example is to use it as the request or the
# response type of an API method. For instance: service Foo ` rpc Bar(google.
# protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
# `Empty` is empty JSON object ````.
class GoogleProtobufEmpty
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# The `Status` type defines a logical error model that is suitable for different
# programming environments, including REST APIs and RPC APIs. It is used by [
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
# data: error code, error message, and error details. You can find out more
# about this error model and how to work with it in the [API Design Guide](https:
# //cloud.google.com/apis/design/errors).
class GoogleRpcStatus
include Google::Apis::Core::Hashable
# The status code, which should be an enum value of google.rpc.Code.
# Corresponds to the JSON property `code`
# @return [Fixnum]
attr_accessor :code
# A list of messages that carry the error details. There is a common set of
# message types for APIs to use.
# Corresponds to the JSON property `details`
# @return [Array<Hash<String,Object>>]
attr_accessor :details
# A developer-facing error message, which should be in English. Any user-facing
# error message should be localized and sent in the google.rpc.Status.details
# field, or localized by the client.
# Corresponds to the JSON property `message`
# @return [String]
attr_accessor :message
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@code = args[:code] if args.key?(:code)
@details = args[:details] if args.key?(:details)
@message = args[:message] if args.key?(:message)
end
end
# Represents a whole or partial calendar date, such as a birthday. The time of
# day and time zone are either specified elsewhere or are insignificant. The
# date is relative to the Gregorian Calendar. This can represent one of the
# following: * A full date, with non-zero year, month, and day values * A month
# and day value, with a zero year, such as an anniversary * A year on its own,
# with zero month and day values * A year and month value, with a zero day, such
# as a credit card expiration date Related types are google.type.TimeOfDay and `
# google.protobuf.Timestamp`.
class GoogleTypeDate
include Google::Apis::Core::Hashable
# Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
# specify a year by itself or a year and month where the day isn't significant.
# Corresponds to the JSON property `day`
# @return [Fixnum]
attr_accessor :day
# Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
# and day.
# Corresponds to the JSON property `month`
# @return [Fixnum]
attr_accessor :month
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
# year.
# Corresponds to the JSON property `year`
# @return [Fixnum]
attr_accessor :year
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@day = args[:day] if args.key?(:day)
@month = args[:month] if args.key?(:month)
@year = args[:year] if args.key?(:year)
end
end
# Represents a time of day. The date and time zone are either not significant or
# are specified elsewhere. An API may choose to allow leap seconds. Related
# types are google.type.Date and `google.protobuf.Timestamp`.
class GoogleTypeTimeOfDay
include Google::Apis::Core::Hashable
# Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to
# allow the value "24:00:00" for scenarios like business closing time.
# Corresponds to the JSON property `hours`
# @return [Fixnum]
attr_accessor :hours
# Minutes of hour of day. Must be from 0 to 59.
# Corresponds to the JSON property `minutes`
# @return [Fixnum]
attr_accessor :minutes
# Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
# Corresponds to the JSON property `nanos`
# @return [Fixnum]
attr_accessor :nanos
# Seconds of minutes of the time. Must normally be from 0 to 59. An API may
# allow the value 60 if it allows leap-seconds.
# Corresponds to the JSON property `seconds`
# @return [Fixnum]
attr_accessor :seconds
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@hours = args[:hours] if args.key?(:hours)
@minutes = args[:minutes] if args.key?(:minutes)
@nanos = args[:nanos] if args.key?(:nanos)
@seconds = args[:seconds] if args.key?(:seconds)
end
end
end
end
end
|