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
// This file is @generated by prost-build.
/// Jwk is a JSON Web Key as specified in RFC 7517.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Jwk {
/// Key Type.
#[prost(string, tag = "1")]
pub kty: ::prost::alloc::string::String,
/// Algorithm.
#[prost(string, tag = "2")]
pub alg: ::prost::alloc::string::String,
/// Permitted uses for the public keys.
#[prost(string, tag = "3")]
pub r#use: ::prost::alloc::string::String,
/// Key ID.
#[prost(string, tag = "4")]
pub kid: ::prost::alloc::string::String,
/// Used for RSA keys.
#[prost(string, tag = "5")]
pub n: ::prost::alloc::string::String,
/// Used for RSA keys.
#[prost(string, tag = "6")]
pub e: ::prost::alloc::string::String,
/// Used for ECDSA keys.
#[prost(string, tag = "7")]
pub x: ::prost::alloc::string::String,
/// Used for ECDSA keys.
#[prost(string, tag = "8")]
pub y: ::prost::alloc::string::String,
/// Used for ECDSA keys.
#[prost(string, tag = "9")]
pub crv: ::prost::alloc::string::String,
}
/// Workload Identity settings.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct WorkloadIdentityConfig {
/// The OIDC issuer URL for this cluster.
#[prost(string, tag = "1")]
pub issuer_uri: ::prost::alloc::string::String,
/// The Workload Identity Pool associated to the cluster.
#[prost(string, tag = "2")]
pub workload_pool: ::prost::alloc::string::String,
/// The ID of the OIDC Identity Provider (IdP) associated to the Workload
/// Identity Pool.
#[prost(string, tag = "3")]
pub identity_provider: ::prost::alloc::string::String,
}
/// Constraints applied to pods.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct MaxPodsConstraint {
/// Required. The maximum number of pods to schedule on a single node.
#[prost(int64, tag = "1")]
pub max_pods_per_node: i64,
}
/// Metadata about a long-running operation.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OperationMetadata {
/// Output only. The time at which this operation was created.
#[prost(message, optional, tag = "1")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time at which this operation was completed.
#[prost(message, optional, tag = "2")]
pub end_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The name of the resource associated to this operation.
#[prost(string, tag = "3")]
pub target: ::prost::alloc::string::String,
/// Output only. Human-readable status of the operation, if any.
#[prost(string, tag = "4")]
pub status_detail: ::prost::alloc::string::String,
/// Output only. Human-readable status of any error that occurred during the
/// operation.
#[prost(string, tag = "5")]
pub error_detail: ::prost::alloc::string::String,
/// Output only. The verb associated with the API method which triggered this
/// operation. Possible values are "create", "delete", "update" and "import".
#[prost(string, tag = "7")]
pub verb: ::prost::alloc::string::String,
/// Output only. Identifies whether it has been requested cancellation
/// for the operation. Operations that have successfully been cancelled
/// have [Operation.error][] value with a
/// [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to
/// `Code.CANCELLED`.
#[prost(bool, tag = "6")]
pub requested_cancellation: bool,
}
/// The taint content for the node taint.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct NodeTaint {
/// Required. Key for the taint.
#[prost(string, tag = "1")]
pub key: ::prost::alloc::string::String,
/// Required. Value for the taint.
#[prost(string, tag = "2")]
pub value: ::prost::alloc::string::String,
/// Required. The taint effect.
#[prost(enumeration = "node_taint::Effect", tag = "3")]
pub effect: i32,
}
/// Nested message and enum types in `NodeTaint`.
pub mod node_taint {
/// The taint effect.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Effect {
/// Not set.
Unspecified = 0,
/// Do not allow new pods to schedule onto the node unless they tolerate the
/// taint, but allow all pods submitted to Kubelet without going through the
/// scheduler to start, and allow all already-running pods to continue
/// running. Enforced by the scheduler.
NoSchedule = 1,
/// Like TaintEffectNoSchedule, but the scheduler tries not to schedule
/// new pods onto the node, rather than prohibiting new pods from scheduling
/// onto the node entirely. Enforced by the scheduler.
PreferNoSchedule = 2,
/// Evict any already-running pods that do not tolerate the taint.
/// Currently enforced by NodeController.
NoExecute = 3,
}
impl Effect {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Effect::Unspecified => "EFFECT_UNSPECIFIED",
Effect::NoSchedule => "NO_SCHEDULE",
Effect::PreferNoSchedule => "PREFER_NO_SCHEDULE",
Effect::NoExecute => "NO_EXECUTE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"EFFECT_UNSPECIFIED" => Some(Self::Unspecified),
"NO_SCHEDULE" => Some(Self::NoSchedule),
"PREFER_NO_SCHEDULE" => Some(Self::PreferNoSchedule),
"NO_EXECUTE" => Some(Self::NoExecute),
_ => None,
}
}
}
}
/// Fleet related configuration.
///
/// Fleets are a Google Cloud concept for logically organizing clusters,
/// letting you use and manage multi-cluster capabilities and apply
/// consistent policies across your systems.
///
/// See [Anthos
/// Fleets](<https://cloud.google.com/anthos/multicluster-management/fleets>) for
/// more details on Anthos multi-cluster capabilities using Fleets.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Fleet {
/// Required. The name of the Fleet host project where this cluster will be
/// registered.
///
/// Project names are formatted as
/// `projects/<project-number>`.
#[prost(string, tag = "1")]
pub project: ::prost::alloc::string::String,
/// Output only. The name of the managed Hub Membership resource associated to
/// this cluster.
///
/// Membership names are formatted as
/// `projects/<project-number>/locations/global/membership/<cluster-id>`.
#[prost(string, tag = "2")]
pub membership: ::prost::alloc::string::String,
}
/// Parameters that describe the Logging configuration in a cluster.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct LoggingConfig {
/// The configuration of the logging components;
#[prost(message, optional, tag = "1")]
pub component_config: ::core::option::Option<LoggingComponentConfig>,
}
/// Parameters that describe the Logging component configuration in a cluster.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct LoggingComponentConfig {
/// The components to be enabled.
#[prost(enumeration = "logging_component_config::Component", repeated, tag = "1")]
pub enable_components: ::prost::alloc::vec::Vec<i32>,
}
/// Nested message and enum types in `LoggingComponentConfig`.
pub mod logging_component_config {
/// The components of the logging configuration;
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Component {
/// No component is specified
Unspecified = 0,
/// This indicates that system logging components is enabled.
SystemComponents = 1,
/// This indicates that user workload logging component is enabled.
Workloads = 2,
}
impl Component {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Component::Unspecified => "COMPONENT_UNSPECIFIED",
Component::SystemComponents => "SYSTEM_COMPONENTS",
Component::Workloads => "WORKLOADS",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"COMPONENT_UNSPECIFIED" => Some(Self::Unspecified),
"SYSTEM_COMPONENTS" => Some(Self::SystemComponents),
"WORKLOADS" => Some(Self::Workloads),
_ => None,
}
}
}
}
/// Parameters that describe the Monitoring configuration in a cluster.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct MonitoringConfig {
/// Enable Google Cloud Managed Service for Prometheus in the cluster.
#[prost(message, optional, tag = "2")]
pub managed_prometheus_config: ::core::option::Option<ManagedPrometheusConfig>,
}
/// ManagedPrometheusConfig defines the configuration for
/// Google Cloud Managed Service for Prometheus.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct ManagedPrometheusConfig {
/// Enable Managed Collection.
#[prost(bool, tag = "1")]
pub enabled: bool,
}
/// Configuration for Binary Authorization.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct BinaryAuthorization {
/// Mode of operation for binauthz policy evaluation. If unspecified, defaults
/// to DISABLED.
#[prost(enumeration = "binary_authorization::EvaluationMode", tag = "1")]
pub evaluation_mode: i32,
}
/// Nested message and enum types in `BinaryAuthorization`.
pub mod binary_authorization {
/// Binary Authorization mode of operation.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum EvaluationMode {
/// Default value
Unspecified = 0,
/// Disable BinaryAuthorization
Disabled = 1,
/// Enforce Kubernetes admission requests with BinaryAuthorization using the
/// project's singleton policy.
ProjectSingletonPolicyEnforce = 2,
}
impl EvaluationMode {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
EvaluationMode::Unspecified => "EVALUATION_MODE_UNSPECIFIED",
EvaluationMode::Disabled => "DISABLED",
EvaluationMode::ProjectSingletonPolicyEnforce => {
"PROJECT_SINGLETON_POLICY_ENFORCE"
}
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"EVALUATION_MODE_UNSPECIFIED" => Some(Self::Unspecified),
"DISABLED" => Some(Self::Disabled),
"PROJECT_SINGLETON_POLICY_ENFORCE" => {
Some(Self::ProjectSingletonPolicyEnforce)
}
_ => None,
}
}
}
}
/// An Anthos cluster running on AWS.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsCluster {
/// The name of this resource.
///
/// Cluster names are formatted as
/// `projects/<project-number>/locations/<region>/awsClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Optional. A human readable description of this cluster.
/// Cannot be longer than 255 UTF-8 encoded bytes.
#[prost(string, tag = "2")]
pub description: ::prost::alloc::string::String,
/// Required. Cluster-wide networking configuration.
#[prost(message, optional, tag = "3")]
pub networking: ::core::option::Option<AwsClusterNetworking>,
/// Required. The AWS region where the cluster runs.
///
/// Each Google Cloud region supports a subset of nearby AWS regions.
/// You can call
/// [GetAwsServerConfig][google.cloud.gkemulticloud.v1.AwsClusters.GetAwsServerConfig]
/// to list all supported AWS regions within a given Google Cloud region.
#[prost(string, tag = "4")]
pub aws_region: ::prost::alloc::string::String,
/// Required. Configuration related to the cluster control plane.
#[prost(message, optional, tag = "5")]
pub control_plane: ::core::option::Option<AwsControlPlane>,
/// Required. Configuration related to the cluster RBAC settings.
#[prost(message, optional, tag = "15")]
pub authorization: ::core::option::Option<AwsAuthorization>,
/// Output only. The current state of the cluster.
#[prost(enumeration = "aws_cluster::State", tag = "7")]
pub state: i32,
/// Output only. The endpoint of the cluster's API server.
#[prost(string, tag = "8")]
pub endpoint: ::prost::alloc::string::String,
/// Output only. A globally unique identifier for the cluster.
#[prost(string, tag = "9")]
pub uid: ::prost::alloc::string::String,
/// Output only. If set, there are currently changes in flight to the cluster.
#[prost(bool, tag = "10")]
pub reconciling: bool,
/// Output only. The time at which this cluster was created.
#[prost(message, optional, tag = "11")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time at which this cluster was last updated.
#[prost(message, optional, tag = "12")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// Allows clients to perform consistent read-modify-writes
/// through optimistic concurrency control.
///
/// Can be sent on update and delete requests to ensure the
/// client has an up-to-date value before proceeding.
#[prost(string, tag = "13")]
pub etag: ::prost::alloc::string::String,
/// Optional. Annotations on the cluster.
///
/// This field has the same restrictions as Kubernetes annotations.
/// The total size of all keys and values combined is limited to 256k.
/// Key can have 2 segments: prefix (optional) and name (required),
/// separated by a slash (/).
/// Prefix must be a DNS subdomain.
/// Name must be 63 characters or less, begin and end with alphanumerics,
/// with dashes (-), underscores (_), dots (.), and alphanumerics between.
#[prost(btree_map = "string, string", tag = "14")]
pub annotations: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Output only. Workload Identity settings.
#[prost(message, optional, tag = "16")]
pub workload_identity_config: ::core::option::Option<WorkloadIdentityConfig>,
/// Output only. PEM encoded x509 certificate of the cluster root of trust.
#[prost(string, tag = "17")]
pub cluster_ca_certificate: ::prost::alloc::string::String,
/// Required. Fleet configuration.
#[prost(message, optional, tag = "18")]
pub fleet: ::core::option::Option<Fleet>,
/// Optional. Logging configuration for this cluster.
#[prost(message, optional, tag = "19")]
pub logging_config: ::core::option::Option<LoggingConfig>,
/// Output only. A set of errors found in the cluster.
#[prost(message, repeated, tag = "20")]
pub errors: ::prost::alloc::vec::Vec<AwsClusterError>,
/// Optional. Monitoring configuration for this cluster.
#[prost(message, optional, tag = "21")]
pub monitoring_config: ::core::option::Option<MonitoringConfig>,
/// Optional. Binary Authorization configuration for this cluster.
#[prost(message, optional, tag = "22")]
pub binary_authorization: ::core::option::Option<BinaryAuthorization>,
}
/// Nested message and enum types in `AwsCluster`.
pub mod aws_cluster {
/// The lifecycle state of the cluster.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// Not set.
Unspecified = 0,
/// The PROVISIONING state indicates the cluster is being created.
Provisioning = 1,
/// The RUNNING state indicates the cluster has been created and is fully
/// usable.
Running = 2,
/// The RECONCILING state indicates that some work is actively being done on
/// the cluster, such as upgrading the control plane replicas.
Reconciling = 3,
/// The STOPPING state indicates the cluster is being deleted.
Stopping = 4,
/// The ERROR state indicates the cluster is in a broken unrecoverable
/// state.
Error = 5,
/// The DEGRADED state indicates the cluster requires user action to
/// restore full functionality.
Degraded = 6,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
State::Unspecified => "STATE_UNSPECIFIED",
State::Provisioning => "PROVISIONING",
State::Running => "RUNNING",
State::Reconciling => "RECONCILING",
State::Stopping => "STOPPING",
State::Error => "ERROR",
State::Degraded => "DEGRADED",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"PROVISIONING" => Some(Self::Provisioning),
"RUNNING" => Some(Self::Running),
"RECONCILING" => Some(Self::Reconciling),
"STOPPING" => Some(Self::Stopping),
"ERROR" => Some(Self::Error),
"DEGRADED" => Some(Self::Degraded),
_ => None,
}
}
}
}
/// ControlPlane defines common parameters between control plane nodes.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsControlPlane {
/// Required. The Kubernetes version to run on control plane replicas
/// (e.g. `1.19.10-gke.1000`).
///
/// You can list all supported versions on a given Google Cloud region by
/// calling
/// [GetAwsServerConfig][google.cloud.gkemulticloud.v1.AwsClusters.GetAwsServerConfig].
#[prost(string, tag = "1")]
pub version: ::prost::alloc::string::String,
/// Optional. The AWS instance type.
///
/// When unspecified, it uses a default based on the cluster's version.
#[prost(string, tag = "2")]
pub instance_type: ::prost::alloc::string::String,
/// Optional. SSH configuration for how to access the underlying control plane
/// machines.
#[prost(message, optional, tag = "14")]
pub ssh_config: ::core::option::Option<AwsSshConfig>,
/// Required. The list of subnets where control plane replicas will run.
/// A replica will be provisioned on each subnet and up to three values
/// can be provided.
/// Each subnet must be in a different AWS Availability Zone (AZ).
#[prost(string, repeated, tag = "4")]
pub subnet_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Optional. The IDs of additional security groups to add to control plane
/// replicas. The Anthos Multi-Cloud API will automatically create and manage
/// security groups with the minimum rules needed for a functioning cluster.
#[prost(string, repeated, tag = "5")]
pub security_group_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Required. The name or ARN of the AWS IAM instance profile to assign to each
/// control plane replica.
#[prost(string, tag = "7")]
pub iam_instance_profile: ::prost::alloc::string::String,
/// Optional. Configuration related to the root volume provisioned for each
/// control plane replica.
///
/// Volumes will be provisioned in the availability zone associated
/// with the corresponding subnet.
///
/// When unspecified, it defaults to 32 GiB with the GP2 volume type.
#[prost(message, optional, tag = "8")]
pub root_volume: ::core::option::Option<AwsVolumeTemplate>,
/// Optional. Configuration related to the main volume provisioned for each
/// control plane replica.
/// The main volume is in charge of storing all of the cluster's etcd state.
///
/// Volumes will be provisioned in the availability zone associated
/// with the corresponding subnet.
///
/// When unspecified, it defaults to 8 GiB with the GP2 volume type.
#[prost(message, optional, tag = "9")]
pub main_volume: ::core::option::Option<AwsVolumeTemplate>,
/// Required. The ARN of the AWS KMS key used to encrypt cluster secrets.
#[prost(message, optional, tag = "10")]
pub database_encryption: ::core::option::Option<AwsDatabaseEncryption>,
/// Optional. A set of AWS resource tags to propagate to all underlying managed
/// AWS resources.
///
/// Specify at most 50 pairs containing alphanumerics, spaces, and symbols
/// (.+-=_:@/). Keys can be up to 127 Unicode characters. Values can be up to
/// 255 Unicode characters.
#[prost(btree_map = "string, string", tag = "11")]
pub tags: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Required. Authentication configuration for management of AWS resources.
#[prost(message, optional, tag = "12")]
pub aws_services_authentication: ::core::option::Option<AwsServicesAuthentication>,
/// Optional. Proxy configuration for outbound HTTP(S) traffic.
#[prost(message, optional, tag = "16")]
pub proxy_config: ::core::option::Option<AwsProxyConfig>,
/// Required. Config encryption for user data.
#[prost(message, optional, tag = "17")]
pub config_encryption: ::core::option::Option<AwsConfigEncryption>,
/// Optional. The placement to use on control plane instances.
/// When unspecified, the VPC's default tenancy will be used.
#[prost(message, optional, tag = "18")]
pub instance_placement: ::core::option::Option<AwsInstancePlacement>,
}
/// Authentication configuration for the management of AWS resources.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsServicesAuthentication {
/// Required. The Amazon Resource Name (ARN) of the role that the Anthos
/// Multi-Cloud API will assume when managing AWS resources on your account.
#[prost(string, tag = "1")]
pub role_arn: ::prost::alloc::string::String,
/// Optional. An identifier for the assumed role session.
///
/// When unspecified, it defaults to `multicloud-service-agent`.
#[prost(string, tag = "2")]
pub role_session_name: ::prost::alloc::string::String,
}
/// Configuration related to the cluster RBAC settings.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsAuthorization {
/// Optional. Users that can perform operations as a cluster admin. A managed
/// ClusterRoleBinding will be created to grant the `cluster-admin` ClusterRole
/// to the users. Up to ten admin users can be provided.
///
/// For more info on RBAC, see
/// <https://kubernetes.io/docs/reference/access-authn-authz/rbac/#user-facing-roles>
#[prost(message, repeated, tag = "1")]
pub admin_users: ::prost::alloc::vec::Vec<AwsClusterUser>,
/// Optional. Groups of users that can perform operations as a cluster admin. A
/// managed ClusterRoleBinding will be created to grant the `cluster-admin`
/// ClusterRole to the groups. Up to ten admin groups can be provided.
///
/// For more info on RBAC, see
/// <https://kubernetes.io/docs/reference/access-authn-authz/rbac/#user-facing-roles>
#[prost(message, repeated, tag = "2")]
pub admin_groups: ::prost::alloc::vec::Vec<AwsClusterGroup>,
}
/// Identities of a user-type subject for AWS clusters.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsClusterUser {
/// Required. The name of the user, e.g. `my-gcp-id@gmail.com`.
#[prost(string, tag = "1")]
pub username: ::prost::alloc::string::String,
}
/// Identities of a group-type subject for AWS clusters.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsClusterGroup {
/// Required. The name of the group, e.g. `my-group@domain.com`.
#[prost(string, tag = "1")]
pub group: ::prost::alloc::string::String,
}
/// Configuration related to application-layer secrets encryption.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsDatabaseEncryption {
/// Required. The ARN of the AWS KMS key used to encrypt cluster secrets.
#[prost(string, tag = "1")]
pub kms_key_arn: ::prost::alloc::string::String,
}
/// Configuration template for AWS EBS volumes.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsVolumeTemplate {
/// Optional. The size of the volume, in GiBs.
///
/// When unspecified, a default value is provided. See the specific reference
/// in the parent resource.
#[prost(int32, tag = "1")]
pub size_gib: i32,
/// Optional. Type of the EBS volume.
///
/// When unspecified, it defaults to GP2 volume.
#[prost(enumeration = "aws_volume_template::VolumeType", tag = "2")]
pub volume_type: i32,
/// Optional. The number of I/O operations per second (IOPS) to provision for
/// GP3 volume.
#[prost(int32, tag = "3")]
pub iops: i32,
/// Optional. The throughput that the volume supports, in MiB/s. Only valid if
/// volume_type is GP3.
///
/// If the volume_type is GP3 and this is not speficied, it defaults to 125.
#[prost(int32, tag = "5")]
pub throughput: i32,
/// Optional. The Amazon Resource Name (ARN) of the Customer Managed Key (CMK)
/// used to encrypt AWS EBS volumes.
///
/// If not specified, the default Amazon managed key associated to
/// the AWS region where this cluster runs will be used.
#[prost(string, tag = "4")]
pub kms_key_arn: ::prost::alloc::string::String,
}
/// Nested message and enum types in `AwsVolumeTemplate`.
pub mod aws_volume_template {
/// Types of supported EBS volumes. We currently only support GP2 or GP3
/// volumes.
/// See <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html>
/// for more information.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum VolumeType {
/// Not set.
Unspecified = 0,
/// GP2 (General Purpose SSD volume type).
Gp2 = 1,
/// GP3 (General Purpose SSD volume type).
Gp3 = 2,
}
impl VolumeType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
VolumeType::Unspecified => "VOLUME_TYPE_UNSPECIFIED",
VolumeType::Gp2 => "GP2",
VolumeType::Gp3 => "GP3",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"VOLUME_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"GP2" => Some(Self::Gp2),
"GP3" => Some(Self::Gp3),
_ => None,
}
}
}
}
/// ClusterNetworking defines cluster-wide networking configuration.
///
/// Anthos clusters on AWS run on a single VPC. This includes control
/// plane replicas and node pool nodes.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsClusterNetworking {
/// Required. The VPC associated with the cluster. All component clusters
/// (i.e. control plane and node pools) run on a single VPC.
///
/// This field cannot be changed after creation.
#[prost(string, tag = "1")]
pub vpc_id: ::prost::alloc::string::String,
/// Required. All pods in the cluster are assigned an IPv4 address from these
/// ranges. Only a single range is supported. This field cannot be changed
/// after creation.
#[prost(string, repeated, tag = "2")]
pub pod_address_cidr_blocks: ::prost::alloc::vec::Vec<
::prost::alloc::string::String,
>,
/// Required. All services in the cluster are assigned an IPv4 address from
/// these ranges. Only a single range is supported. This field cannot be
/// changed after creation.
#[prost(string, repeated, tag = "3")]
pub service_address_cidr_blocks: ::prost::alloc::vec::Vec<
::prost::alloc::string::String,
>,
/// Optional. Disable the per node pool subnet security group rules on the
/// control plane security group. When set to true, you must also provide one
/// or more security groups that ensure node pools are able to send requests to
/// the control plane on TCP/443 and TCP/8132. Failure to do so may result in
/// unavailable node pools.
#[prost(bool, tag = "5")]
pub per_node_pool_sg_rules_disabled: bool,
}
/// An Anthos node pool running on AWS.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsNodePool {
/// The name of this resource.
///
/// Node pool names are formatted as
/// `projects/<project-number>/locations/<region>/awsClusters/<cluster-id>/awsNodePools/<node-pool-id>`.
///
/// For more details on Google Cloud resource names,
/// see [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Required. The Kubernetes version to run on this node pool (e.g.
/// `1.19.10-gke.1000`).
///
/// You can list all supported versions on a given Google Cloud region by
/// calling
/// [GetAwsServerConfig][google.cloud.gkemulticloud.v1.AwsClusters.GetAwsServerConfig].
#[prost(string, tag = "3")]
pub version: ::prost::alloc::string::String,
/// Required. The configuration of the node pool.
#[prost(message, optional, tag = "28")]
pub config: ::core::option::Option<AwsNodeConfig>,
/// Required. Autoscaler configuration for this node pool.
#[prost(message, optional, tag = "25")]
pub autoscaling: ::core::option::Option<AwsNodePoolAutoscaling>,
/// Required. The subnet where the node pool node run.
#[prost(string, tag = "6")]
pub subnet_id: ::prost::alloc::string::String,
/// Output only. The lifecycle state of the node pool.
#[prost(enumeration = "aws_node_pool::State", tag = "16")]
pub state: i32,
/// Output only. A globally unique identifier for the node pool.
#[prost(string, tag = "17")]
pub uid: ::prost::alloc::string::String,
/// Output only. If set, there are currently changes in flight to the node
/// pool.
#[prost(bool, tag = "18")]
pub reconciling: bool,
/// Output only. The time at which this node pool was created.
#[prost(message, optional, tag = "19")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time at which this node pool was last updated.
#[prost(message, optional, tag = "20")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// Allows clients to perform consistent read-modify-writes
/// through optimistic concurrency control.
///
/// Can be sent on update and delete requests to ensure the
/// client has an up-to-date value before proceeding.
#[prost(string, tag = "21")]
pub etag: ::prost::alloc::string::String,
/// Optional. Annotations on the node pool.
///
/// This field has the same restrictions as Kubernetes annotations.
/// The total size of all keys and values combined is limited to 256k.
/// Key can have 2 segments: prefix (optional) and name (required),
/// separated by a slash (/).
/// Prefix must be a DNS subdomain.
/// Name must be 63 characters or less, begin and end with alphanumerics,
/// with dashes (-), underscores (_), dots (.), and alphanumerics between.
#[prost(btree_map = "string, string", tag = "22")]
pub annotations: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Required. The constraint on the maximum number of pods that can be run
/// simultaneously on a node in the node pool.
#[prost(message, optional, tag = "27")]
pub max_pods_constraint: ::core::option::Option<MaxPodsConstraint>,
/// Output only. A set of errors found in the node pool.
#[prost(message, repeated, tag = "29")]
pub errors: ::prost::alloc::vec::Vec<AwsNodePoolError>,
/// Optional. The Management configuration for this node pool.
#[prost(message, optional, tag = "30")]
pub management: ::core::option::Option<AwsNodeManagement>,
/// Optional. Update settings control the speed and disruption of the update.
#[prost(message, optional, tag = "32")]
pub update_settings: ::core::option::Option<UpdateSettings>,
}
/// Nested message and enum types in `AwsNodePool`.
pub mod aws_node_pool {
/// The lifecycle state of the node pool.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// Not set.
Unspecified = 0,
/// The PROVISIONING state indicates the node pool is being created.
Provisioning = 1,
/// The RUNNING state indicates the node pool has been created
/// and is fully usable.
Running = 2,
/// The RECONCILING state indicates that the node pool is being reconciled.
Reconciling = 3,
/// The STOPPING state indicates the node pool is being deleted.
Stopping = 4,
/// The ERROR state indicates the node pool is in a broken unrecoverable
/// state.
Error = 5,
/// The DEGRADED state indicates the node pool requires user action to
/// restore full functionality.
Degraded = 6,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
State::Unspecified => "STATE_UNSPECIFIED",
State::Provisioning => "PROVISIONING",
State::Running => "RUNNING",
State::Reconciling => "RECONCILING",
State::Stopping => "STOPPING",
State::Error => "ERROR",
State::Degraded => "DEGRADED",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"PROVISIONING" => Some(Self::Provisioning),
"RUNNING" => Some(Self::Running),
"RECONCILING" => Some(Self::Reconciling),
"STOPPING" => Some(Self::Stopping),
"ERROR" => Some(Self::Error),
"DEGRADED" => Some(Self::Degraded),
_ => None,
}
}
}
}
/// UpdateSettings control the level of parallelism and the level of
/// disruption caused during the update of a node pool.
///
/// These settings are applicable when the node pool update requires replacing
/// the existing node pool nodes with the updated ones.
///
/// UpdateSettings are optional. When UpdateSettings are not specified during the
/// node pool creation, a default is chosen based on the parent cluster's
/// version. For clusters with minor version 1.27 and later, a default
/// surge_settings configuration with max_surge = 1 and max_unavailable = 0 is
/// used. For clusters with older versions, node pool updates use the traditional
/// rolling update mechanism of updating one node at a time in a
/// "terminate before create" fashion and update_settings is not applicable.
///
/// Set the surge_settings parameter to use the Surge Update mechanism for
/// the rolling update of node pool nodes.
/// 1. max_surge controls the number of additional nodes that can be created
/// beyond the current size of the node pool temporarily for the time of the
/// update to increase the number of available nodes.
/// 2. max_unavailable controls the number of nodes that can be simultaneously
/// unavailable during the update.
/// 3. (max_surge + max_unavailable) determines the level of parallelism (i.e.,
/// the number of nodes being updated at the same time).
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct UpdateSettings {
/// Optional. Settings for surge update.
#[prost(message, optional, tag = "1")]
pub surge_settings: ::core::option::Option<SurgeSettings>,
}
/// SurgeSettings contains the parameters for Surge update.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct SurgeSettings {
/// Optional. The maximum number of nodes that can be created beyond the
/// current size of the node pool during the update process.
#[prost(int32, tag = "1")]
pub max_surge: i32,
/// Optional. The maximum number of nodes that can be simultaneously
/// unavailable during the update process. A node is considered unavailable if
/// its status is not Ready.
#[prost(int32, tag = "2")]
pub max_unavailable: i32,
}
/// AwsNodeManagement defines the set of node management features turned on for
/// an AWS node pool.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct AwsNodeManagement {
/// Optional. Whether or not the nodes will be automatically repaired. When set
/// to true, the nodes in this node pool will be monitored and if they fail
/// health checks consistently over a period of time, an automatic repair
/// action will be triggered to replace them with new nodes.
#[prost(bool, tag = "1")]
pub auto_repair: bool,
}
/// Parameters that describe the nodes in a cluster.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsNodeConfig {
/// Optional. The EC2 instance type when creating on-Demand instances.
///
/// If unspecified during node pool creation, a default will be chosen based on
/// the node pool version, and assigned to this field.
#[prost(string, tag = "1")]
pub instance_type: ::prost::alloc::string::String,
/// Optional. Template for the root volume provisioned for node pool nodes.
/// Volumes will be provisioned in the availability zone assigned
/// to the node pool subnet.
///
/// When unspecified, it defaults to 32 GiB with the GP2 volume type.
#[prost(message, optional, tag = "2")]
pub root_volume: ::core::option::Option<AwsVolumeTemplate>,
/// Optional. The initial taints assigned to nodes of this node pool.
#[prost(message, repeated, tag = "3")]
pub taints: ::prost::alloc::vec::Vec<NodeTaint>,
/// Optional. The initial labels assigned to nodes of this node pool. An object
/// containing a list of "key": value pairs. Example: { "name": "wrench",
/// "mass": "1.3kg", "count": "3" }.
#[prost(btree_map = "string, string", tag = "4")]
pub labels: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Optional. Key/value metadata to assign to each underlying AWS resource.
/// Specify at most 50 pairs containing alphanumerics, spaces, and symbols
/// (.+-=_:@/). Keys can be up to 127 Unicode characters. Values can be up to
/// 255 Unicode characters.
#[prost(btree_map = "string, string", tag = "5")]
pub tags: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Required. The name or ARN of the AWS IAM instance profile to assign to
/// nodes in the pool.
#[prost(string, tag = "6")]
pub iam_instance_profile: ::prost::alloc::string::String,
/// Optional. The OS image type to use on node pool instances.
/// Can be unspecified, or have a value of `ubuntu`.
///
/// When unspecified, it defaults to `ubuntu`.
#[prost(string, tag = "11")]
pub image_type: ::prost::alloc::string::String,
/// Optional. The SSH configuration.
#[prost(message, optional, tag = "9")]
pub ssh_config: ::core::option::Option<AwsSshConfig>,
/// Optional. The IDs of additional security groups to add to nodes in this
/// pool. The manager will automatically create security groups with minimum
/// rules needed for a functioning cluster.
#[prost(string, repeated, tag = "10")]
pub security_group_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Optional. Proxy configuration for outbound HTTP(S) traffic.
#[prost(message, optional, tag = "12")]
pub proxy_config: ::core::option::Option<AwsProxyConfig>,
/// Required. Config encryption for user data.
#[prost(message, optional, tag = "13")]
pub config_encryption: ::core::option::Option<AwsConfigEncryption>,
/// Optional. Placement related info for this node.
/// When unspecified, the VPC's default tenancy will be used.
#[prost(message, optional, tag = "14")]
pub instance_placement: ::core::option::Option<AwsInstancePlacement>,
/// Optional. Configuration related to CloudWatch metrics collection on the
/// Auto Scaling group of the node pool.
///
/// When unspecified, metrics collection is disabled.
#[prost(message, optional, tag = "15")]
pub autoscaling_metrics_collection: ::core::option::Option<
AwsAutoscalingGroupMetricsCollection,
>,
/// Optional. Configuration for provisioning EC2 Spot instances
///
/// When specified, the node pool will provision Spot instances from the set
/// of spot_config.instance_types.
/// This field is mutually exclusive with `instance_type`.
#[prost(message, optional, tag = "16")]
pub spot_config: ::core::option::Option<SpotConfig>,
}
/// AwsNodePoolAutoscaling contains information required by cluster autoscaler
/// to adjust the size of the node pool to the current cluster usage.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct AwsNodePoolAutoscaling {
/// Required. Minimum number of nodes in the node pool. Must be greater than or
/// equal to 1 and less than or equal to max_node_count.
#[prost(int32, tag = "1")]
pub min_node_count: i32,
/// Required. Maximum number of nodes in the node pool. Must be greater than or
/// equal to min_node_count and less than or equal to 50.
#[prost(int32, tag = "2")]
pub max_node_count: i32,
}
/// AwsOpenIdConfig is an OIDC discovery document for the cluster.
/// See the OpenID Connect Discovery 1.0 specification for details.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsOpenIdConfig {
/// OIDC Issuer.
#[prost(string, tag = "1")]
pub issuer: ::prost::alloc::string::String,
/// JSON Web Key uri.
#[prost(string, tag = "2")]
pub jwks_uri: ::prost::alloc::string::String,
/// Supported response types.
#[prost(string, repeated, tag = "3")]
pub response_types_supported: ::prost::alloc::vec::Vec<
::prost::alloc::string::String,
>,
/// Supported subject types.
#[prost(string, repeated, tag = "4")]
pub subject_types_supported: ::prost::alloc::vec::Vec<
::prost::alloc::string::String,
>,
/// supported ID Token signing Algorithms.
#[prost(string, repeated, tag = "5")]
pub id_token_signing_alg_values_supported: ::prost::alloc::vec::Vec<
::prost::alloc::string::String,
>,
/// Supported claims.
#[prost(string, repeated, tag = "6")]
pub claims_supported: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Supported grant types.
#[prost(string, repeated, tag = "7")]
pub grant_types: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// AwsJsonWebKeys is a valid JSON Web Key Set as specififed in RFC 7517.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsJsonWebKeys {
/// The public component of the keys used by the cluster to sign token
/// requests.
#[prost(message, repeated, tag = "1")]
pub keys: ::prost::alloc::vec::Vec<Jwk>,
}
/// AwsServerConfig is the configuration of GKE cluster on AWS.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsServerConfig {
/// The resource name of the config.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// List of all released Kubernetes versions, including ones which are end of
/// life and can no longer be used. Filter by the `enabled`
/// property to limit to currently available versions.
/// Valid versions supported for both create and update operations
#[prost(message, repeated, tag = "2")]
pub valid_versions: ::prost::alloc::vec::Vec<AwsK8sVersionInfo>,
/// The list of supported AWS regions.
#[prost(string, repeated, tag = "3")]
pub supported_aws_regions: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// Kubernetes version information of GKE cluster on AWS.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsK8sVersionInfo {
/// Kubernetes version name.
#[prost(string, tag = "1")]
pub version: ::prost::alloc::string::String,
/// Optional. True if the version is available for cluster creation. If a
/// version is enabled for creation, it can be used to create new clusters.
/// Otherwise, cluster creation will fail. However, cluster upgrade operations
/// may succeed, even if the version is not enabled.
#[prost(bool, tag = "3")]
pub enabled: bool,
/// Optional. True if this cluster version belongs to a minor version that has
/// reached its end of life and is no longer in scope to receive security and
/// bug fixes.
#[prost(bool, tag = "4")]
pub end_of_life: bool,
/// Optional. The estimated date (in Pacific Time) when this cluster version
/// will reach its end of life. Or if this version is no longer supported (the
/// `end_of_life` field is true), this is the actual date (in Pacific time)
/// when the version reached its end of life.
#[prost(message, optional, tag = "5")]
pub end_of_life_date: ::core::option::Option<super::super::super::r#type::Date>,
/// Optional. The date (in Pacific Time) when the cluster version was released.
#[prost(message, optional, tag = "6")]
pub release_date: ::core::option::Option<super::super::super::r#type::Date>,
}
/// SSH configuration for AWS resources.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsSshConfig {
/// Required. The name of the EC2 key pair used to login into cluster machines.
#[prost(string, tag = "1")]
pub ec2_key_pair: ::prost::alloc::string::String,
}
/// Details of a proxy config stored in AWS Secret Manager.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsProxyConfig {
/// The ARN of the AWS Secret Manager secret that contains the HTTP(S) proxy
/// configuration.
///
/// The secret must be a JSON encoded proxy configuration
/// as described in
/// <https://cloud.google.com/anthos/clusters/docs/multi-cloud/aws/how-to/use-a-proxy#create_a_proxy_configuration_file>
#[prost(string, tag = "1")]
pub secret_arn: ::prost::alloc::string::String,
/// The version string of the AWS Secret Manager secret that contains the
/// HTTP(S) proxy configuration.
#[prost(string, tag = "2")]
pub secret_version: ::prost::alloc::string::String,
}
/// Config encryption for user data.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsConfigEncryption {
/// Required. The ARN of the AWS KMS key used to encrypt user data.
#[prost(string, tag = "1")]
pub kms_key_arn: ::prost::alloc::string::String,
}
/// Details of placement information for an instance.
/// Limitations for using the `host` tenancy:
///
/// * T3 instances that use the unlimited CPU credit option don't support host
/// tenancy.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct AwsInstancePlacement {
/// Required. The tenancy for instance.
#[prost(enumeration = "aws_instance_placement::Tenancy", tag = "1")]
pub tenancy: i32,
}
/// Nested message and enum types in `AwsInstancePlacement`.
pub mod aws_instance_placement {
/// Tenancy defines how EC2 instances are distributed across physical hardware.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Tenancy {
/// Not set.
Unspecified = 0,
/// Use default VPC tenancy.
Default = 1,
/// Run a dedicated instance.
Dedicated = 2,
/// Launch this instance to a dedicated host.
Host = 3,
}
impl Tenancy {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Tenancy::Unspecified => "TENANCY_UNSPECIFIED",
Tenancy::Default => "DEFAULT",
Tenancy::Dedicated => "DEDICATED",
Tenancy::Host => "HOST",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"TENANCY_UNSPECIFIED" => Some(Self::Unspecified),
"DEFAULT" => Some(Self::Default),
"DEDICATED" => Some(Self::Dedicated),
"HOST" => Some(Self::Host),
_ => None,
}
}
}
}
/// Configuration related to CloudWatch metrics collection in an AWS
/// Auto Scaling group.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsAutoscalingGroupMetricsCollection {
/// Required. The frequency at which EC2 Auto Scaling sends aggregated data to
/// AWS CloudWatch. The only valid value is "1Minute".
#[prost(string, tag = "1")]
pub granularity: ::prost::alloc::string::String,
/// Optional. The metrics to enable. For a list of valid metrics, see
/// <https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_EnableMetricsCollection.html.>
/// If you specify Granularity and don't specify any metrics, all metrics are
/// enabled.
#[prost(string, repeated, tag = "2")]
pub metrics: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// SpotConfig has configuration info for Spot node.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SpotConfig {
/// Required. A list of instance types for creating spot node pool.
#[prost(string, repeated, tag = "1")]
pub instance_types: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// AwsClusterError describes errors found on AWS clusters.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsClusterError {
/// Human-friendly description of the error.
#[prost(string, tag = "1")]
pub message: ::prost::alloc::string::String,
}
/// AwsNodePoolError describes errors found on AWS node pools.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AwsNodePoolError {
/// Human-friendly description of the error.
#[prost(string, tag = "1")]
pub message: ::prost::alloc::string::String,
}
/// Request message for `AwsClusters.CreateAwsCluster` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateAwsClusterRequest {
/// Required. The parent location where this
/// [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster] resource will be
/// created.
///
/// Location names are formatted as `projects/<project-id>/locations/<region>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. The specification of the
/// [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster] to create.
#[prost(message, optional, tag = "2")]
pub aws_cluster: ::core::option::Option<AwsCluster>,
/// Required. A client provided ID the resource. Must be unique within the
/// parent resource.
///
/// The provided ID will be part of the
/// [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster] resource name
/// formatted as
/// `projects/<project-id>/locations/<region>/awsClusters/<cluster-id>`.
///
/// Valid characters are `/[a-z][0-9]-/`. Cannot be longer than 63 characters.
#[prost(string, tag = "3")]
pub aws_cluster_id: ::prost::alloc::string::String,
/// If set, only validate the request, but do not actually create the cluster.
#[prost(bool, tag = "4")]
pub validate_only: bool,
}
/// Request message for `AwsClusters.UpdateAwsCluster` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateAwsClusterRequest {
/// Required. The [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster]
/// resource to update.
#[prost(message, optional, tag = "1")]
pub aws_cluster: ::core::option::Option<AwsCluster>,
/// If set, only validate the request, but do not actually update the cluster.
#[prost(bool, tag = "2")]
pub validate_only: bool,
/// Required. Mask of fields to update. At least one path must be supplied in
/// this field. The elements of the repeated paths field can only include these
/// fields from [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster]:
///
/// * `description`.
/// * `annotations`.
/// * `control_plane.version`.
/// * `authorization.admin_users`.
/// * `authorization.admin_groups`.
/// * `binary_authorization.evaluation_mode`.
/// * `control_plane.aws_services_authentication.role_arn`.
/// * `control_plane.aws_services_authentication.role_session_name`.
/// * `control_plane.config_encryption.kms_key_arn`.
/// * `control_plane.instance_type`.
/// * `control_plane.security_group_ids`.
/// * `control_plane.proxy_config`.
/// * `control_plane.proxy_config.secret_arn`.
/// * `control_plane.proxy_config.secret_version`.
/// * `control_plane.root_volume.size_gib`.
/// * `control_plane.root_volume.volume_type`.
/// * `control_plane.root_volume.iops`.
/// * `control_plane.root_volume.throughput`.
/// * `control_plane.root_volume.kms_key_arn`.
/// * `control_plane.ssh_config`.
/// * `control_plane.ssh_config.ec2_key_pair`.
/// * `control_plane.instance_placement.tenancy`.
/// * `control_plane.iam_instance_profile`.
/// * `logging_config.component_config.enable_components`.
/// * `control_plane.tags`.
/// * `monitoring_config.managed_prometheus_config.enabled`.
/// * `networking.per_node_pool_sg_rules_disabled`.
#[prost(message, optional, tag = "4")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Request message for `AwsClusters.GetAwsCluster` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAwsClusterRequest {
/// Required. The name of the
/// [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster] resource to
/// describe.
///
/// `AwsCluster` names are formatted as
/// `projects/<project-id>/locations/<region>/awsClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for `AwsClusters.ListAwsClusters` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAwsClustersRequest {
/// Required. The parent location which owns this collection of
/// [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster] resources.
///
/// Location names are formatted as `projects/<project-id>/locations/<region>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The maximum number of items to return.
///
/// If not specified, a default value of 50 will be used by the service.
/// Regardless of the pageSize value, the response can include a partial list
/// and a caller should only rely on response's
/// [nextPageToken][google.cloud.gkemulticloud.v1.ListAwsClustersResponse.next_page_token]
/// to determine if there are more instances left to be queried.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// The `nextPageToken` value returned from a previous
/// [awsClusters.list][google.cloud.gkemulticloud.v1.AwsClusters.ListAwsClusters]
/// request, if any.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
}
/// Response message for `AwsClusters.ListAwsClusters` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAwsClustersResponse {
/// A list of [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster] resources
/// in the specified Google Cloud Platform project and region region.
#[prost(message, repeated, tag = "1")]
pub aws_clusters: ::prost::alloc::vec::Vec<AwsCluster>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results in the list.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// Request message for `AwsClusters.DeleteAwsCluster` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteAwsClusterRequest {
/// Required. The resource name the
/// [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster] to delete.
///
/// `AwsCluster` names are formatted as
/// `projects/<project-id>/locations/<region>/awsClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// If set, only validate the request, but do not actually delete the resource.
#[prost(bool, tag = "2")]
pub validate_only: bool,
/// If set to true, and the
/// [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster] resource is not
/// found, the request will succeed but no action will be taken on the server
/// and a completed [Operation][google.longrunning.Operation] will be returned.
///
/// Useful for idempotent deletion.
#[prost(bool, tag = "3")]
pub allow_missing: bool,
/// Optional. If set to true, the deletion of
/// [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster] resource will
/// succeed even if errors occur during deleting in cluster resources. Using
/// this parameter may result in orphaned resources in the cluster.
#[prost(bool, tag = "5")]
pub ignore_errors: bool,
/// The current etag of the
/// [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster].
///
/// Allows clients to perform deletions through optimistic concurrency control.
///
/// If the provided etag does not match the current etag of the cluster,
/// the request will fail and an ABORTED error will be returned.
#[prost(string, tag = "4")]
pub etag: ::prost::alloc::string::String,
}
/// Response message for `AwsClusters.CreateAwsNodePool` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateAwsNodePoolRequest {
/// Required. The [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster]
/// resource where this node pool will be created.
///
/// `AwsCluster` names are formatted as
/// `projects/<project-id>/locations/<region>/awsClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. The specification of the
/// [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool] to create.
#[prost(message, optional, tag = "2")]
pub aws_node_pool: ::core::option::Option<AwsNodePool>,
/// Required. A client provided ID the resource. Must be unique within the
/// parent resource.
///
/// The provided ID will be part of the
/// [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool] resource name
/// formatted as
/// `projects/<project-id>/locations/<region>/awsClusters/<cluster-id>/awsNodePools/<node-pool-id>`.
///
/// Valid characters are `/[a-z][0-9]-/`. Cannot be longer than 63 characters.
#[prost(string, tag = "3")]
pub aws_node_pool_id: ::prost::alloc::string::String,
/// If set, only validate the request, but do not actually create the node
/// pool.
#[prost(bool, tag = "4")]
pub validate_only: bool,
}
/// Request message for `AwsClusters.UpdateAwsNodePool` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateAwsNodePoolRequest {
/// Required. The [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool]
/// resource to update.
#[prost(message, optional, tag = "1")]
pub aws_node_pool: ::core::option::Option<AwsNodePool>,
/// If set, only validate the request, but don't actually update the node pool.
#[prost(bool, tag = "2")]
pub validate_only: bool,
/// Required. Mask of fields to update. At least one path must be supplied in
/// this field. The elements of the repeated paths field can only include these
/// fields from [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool]:
///
/// * `annotations`.
/// * `version`.
/// * `autoscaling.min_node_count`.
/// * `autoscaling.max_node_count`.
/// * `config.config_encryption.kms_key_arn`.
/// * `config.security_group_ids`.
/// * `config.root_volume.iops`.
/// * `config.root_volume.throughput`.
/// * `config.root_volume.kms_key_arn`.
/// * `config.root_volume.volume_type`.
/// * `config.root_volume.size_gib`.
/// * `config.proxy_config`.
/// * `config.proxy_config.secret_arn`.
/// * `config.proxy_config.secret_version`.
/// * `config.ssh_config`.
/// * `config.ssh_config.ec2_key_pair`.
/// * `config.instance_placement.tenancy`.
/// * `config.iam_instance_profile`.
/// * `config.labels`.
/// * `config.tags`.
/// * `config.autoscaling_metrics_collection`.
/// * `config.autoscaling_metrics_collection.granularity`.
/// * `config.autoscaling_metrics_collection.metrics`.
/// * `config.instance_type`.
/// * `management.auto_repair`.
/// * `management`.
/// * `update_settings`.
/// * `update_settings.surge_settings`.
/// * `update_settings.surge_settings.max_surge`.
/// * `update_settings.surge_settings.max_unavailable`.
#[prost(message, optional, tag = "3")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Request message for `AwsClusters.RollbackAwsNodePoolUpdate` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RollbackAwsNodePoolUpdateRequest {
/// Required. The name of the
/// [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool] resource to
/// rollback.
///
/// `AwsNodePool` names are formatted as
/// `projects/<project-id>/locations/<region>/awsClusters/<cluster-id>/awsNodePools/<node-pool-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Optional. Option for rollback to ignore the PodDisruptionBudget when
/// draining the node pool nodes. Default value is false.
#[prost(bool, tag = "2")]
pub respect_pdb: bool,
}
/// Request message for `AwsClusters.GetAwsNodePool` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAwsNodePoolRequest {
/// Required. The name of the
/// [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool] resource to
/// describe.
///
/// `AwsNodePool` names are formatted as
/// `projects/<project-id>/locations/<region>/awsClusters/<cluster-id>/awsNodePools/<node-pool-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for `AwsClusters.ListAwsNodePools` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAwsNodePoolsRequest {
/// Required. The parent `AwsCluster` which owns this collection of
/// [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool] resources.
///
/// `AwsCluster` names are formatted as
/// `projects/<project-id>/locations/<region>/awsClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The maximum number of items to return.
///
/// If not specified, a default value of 50 will be used by the service.
/// Regardless of the pageSize value, the response can include a partial list
/// and a caller should only rely on response's
/// [nextPageToken][google.cloud.gkemulticloud.v1.ListAwsNodePoolsResponse.next_page_token]
/// to determine if there are more instances left to be queried.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// The `nextPageToken` value returned from a previous
/// [awsNodePools.list][google.cloud.gkemulticloud.v1.AwsClusters.ListAwsNodePools]
/// request, if any.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
}
/// Response message for `AwsClusters.ListAwsNodePools` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAwsNodePoolsResponse {
/// A list of [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool]
/// resources in the specified `AwsCluster`.
#[prost(message, repeated, tag = "1")]
pub aws_node_pools: ::prost::alloc::vec::Vec<AwsNodePool>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results in the list.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// Request message for `AwsClusters.DeleteAwsNodePool` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteAwsNodePoolRequest {
/// Required. The resource name the
/// [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool] to delete.
///
/// `AwsNodePool` names are formatted as
/// `projects/<project-id>/locations/<region>/awsClusters/<cluster-id>/awsNodePools/<node-pool-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// If set, only validate the request, but do not actually delete the node
/// pool.
#[prost(bool, tag = "2")]
pub validate_only: bool,
/// If set to true, and the
/// [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool] resource is not
/// found, the request will succeed but no action will be taken on the server
/// and a completed [Operation][google.longrunning.Operation] will be returned.
///
/// Useful for idempotent deletion.
#[prost(bool, tag = "3")]
pub allow_missing: bool,
/// Optional. If set to true, the deletion of
/// [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool] resource will
/// succeed even if errors occur during deleting in node pool resources. Using
/// this parameter may result in orphaned resources in the node pool.
#[prost(bool, tag = "5")]
pub ignore_errors: bool,
/// The current ETag of the
/// [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool].
///
/// Allows clients to perform deletions through optimistic concurrency control.
///
/// If the provided ETag does not match the current etag of the node pool,
/// the request will fail and an ABORTED error will be returned.
#[prost(string, tag = "4")]
pub etag: ::prost::alloc::string::String,
}
/// GetAwsOpenIdConfigRequest gets the OIDC discovery document for the
/// cluster. See the OpenID Connect Discovery 1.0 specification for details.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAwsOpenIdConfigRequest {
/// Required. The AwsCluster, which owns the OIDC discovery document.
/// Format:
/// projects/{project}/locations/{location}/awsClusters/{cluster}
#[prost(string, tag = "1")]
pub aws_cluster: ::prost::alloc::string::String,
}
/// GetAwsJsonWebKeysRequest gets the public component of the keys used by the
/// cluster to sign token requests. This will be the jwks_uri for the discover
/// document returned by getOpenIDConfig. See the OpenID Connect
/// Discovery 1.0 specification for details.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAwsJsonWebKeysRequest {
/// Required. The AwsCluster, which owns the JsonWebKeys.
/// Format:
/// projects/{project}/locations/{location}/awsClusters/{cluster}
#[prost(string, tag = "1")]
pub aws_cluster: ::prost::alloc::string::String,
}
/// GetAwsServerConfigRequest gets the server config of GKE cluster on AWS.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAwsServerConfigRequest {
/// Required. The name of the
/// [AwsServerConfig][google.cloud.gkemulticloud.v1.AwsServerConfig] resource
/// to describe.
///
/// `AwsServerConfig` names are formatted as
/// `projects/<project-id>/locations/<region>/awsServerConfig`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for `AwsClusters.GenerateAwsAccessToken` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateAwsAccessTokenRequest {
/// Required. The name of the
/// [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster] resource to
/// authenticate to.
///
/// `AwsCluster` names are formatted as
/// `projects/<project-id>/locations/<region>/awsClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub aws_cluster: ::prost::alloc::string::String,
}
/// Response message for `AwsClusters.GenerateAwsAccessToken` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateAwsAccessTokenResponse {
/// Output only. Access token to authenticate to k8s api-server.
#[prost(string, tag = "1")]
pub access_token: ::prost::alloc::string::String,
/// Output only. Timestamp at which the token will expire.
#[prost(message, optional, tag = "2")]
pub expiration_time: ::core::option::Option<::prost_types::Timestamp>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateAwsClusterAgentTokenRequest {
/// Required.
#[prost(string, tag = "1")]
pub aws_cluster: ::prost::alloc::string::String,
/// Required.
#[prost(string, tag = "2")]
pub subject_token: ::prost::alloc::string::String,
/// Required.
#[prost(string, tag = "3")]
pub subject_token_type: ::prost::alloc::string::String,
/// Required.
#[prost(string, tag = "4")]
pub version: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "5")]
pub node_pool_id: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "6")]
pub grant_type: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "7")]
pub audience: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "8")]
pub scope: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "9")]
pub requested_token_type: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "10")]
pub options: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateAwsClusterAgentTokenResponse {
#[prost(string, tag = "1")]
pub access_token: ::prost::alloc::string::String,
#[prost(int32, tag = "2")]
pub expires_in: i32,
#[prost(string, tag = "3")]
pub token_type: ::prost::alloc::string::String,
}
/// Generated client implementations.
pub mod aws_clusters_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
/// The AwsClusters API provides a single centrally managed service
/// to create and manage Anthos clusters that run on AWS infrastructure.
#[derive(Debug, Clone)]
pub struct AwsClustersClient<T> {
inner: tonic::client::Grpc<T>,
}
impl<T> AwsClustersClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> AwsClustersClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
AwsClustersClient::new(InterceptedService::new(inner, interceptor))
}
/// Compress requests with the given encoding.
///
/// This requires the server to support it otherwise it might respond with an
/// error.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
/// Enable decompressing responses.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
/// Limits the maximum size of a decoded message.
///
/// Default: `4MB`
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
/// Limits the maximum size of an encoded message.
///
/// Default: `usize::MAX`
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
/// Creates a new [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster]
/// resource on a given Google Cloud Platform project and region.
///
/// If successful, the response contains a newly created
/// [Operation][google.longrunning.Operation] resource that can be
/// described to track the status of the operation.
pub async fn create_aws_cluster(
&mut self,
request: impl tonic::IntoRequest<super::CreateAwsClusterRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/CreateAwsCluster",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"CreateAwsCluster",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates an [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster].
pub async fn update_aws_cluster(
&mut self,
request: impl tonic::IntoRequest<super::UpdateAwsClusterRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/UpdateAwsCluster",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"UpdateAwsCluster",
),
);
self.inner.unary(req, path, codec).await
}
/// Describes a specific [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster]
/// resource.
pub async fn get_aws_cluster(
&mut self,
request: impl tonic::IntoRequest<super::GetAwsClusterRequest>,
) -> std::result::Result<tonic::Response<super::AwsCluster>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/GetAwsCluster",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"GetAwsCluster",
),
);
self.inner.unary(req, path, codec).await
}
/// Lists all [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster] resources
/// on a given Google Cloud project and region.
pub async fn list_aws_clusters(
&mut self,
request: impl tonic::IntoRequest<super::ListAwsClustersRequest>,
) -> std::result::Result<
tonic::Response<super::ListAwsClustersResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/ListAwsClusters",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"ListAwsClusters",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes a specific [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster]
/// resource.
///
/// Fails if the cluster has one or more associated
/// [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool] resources.
///
/// If successful, the response contains a newly created
/// [Operation][google.longrunning.Operation] resource that can be
/// described to track the status of the operation.
pub async fn delete_aws_cluster(
&mut self,
request: impl tonic::IntoRequest<super::DeleteAwsClusterRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/DeleteAwsCluster",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"DeleteAwsCluster",
),
);
self.inner.unary(req, path, codec).await
}
/// Generates an access token for a cluster agent.
pub async fn generate_aws_cluster_agent_token(
&mut self,
request: impl tonic::IntoRequest<super::GenerateAwsClusterAgentTokenRequest>,
) -> std::result::Result<
tonic::Response<super::GenerateAwsClusterAgentTokenResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/GenerateAwsClusterAgentToken",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"GenerateAwsClusterAgentToken",
),
);
self.inner.unary(req, path, codec).await
}
/// Generates a short-lived access token to authenticate to a given
/// [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster] resource.
pub async fn generate_aws_access_token(
&mut self,
request: impl tonic::IntoRequest<super::GenerateAwsAccessTokenRequest>,
) -> std::result::Result<
tonic::Response<super::GenerateAwsAccessTokenResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/GenerateAwsAccessToken",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"GenerateAwsAccessToken",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates a new [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool],
/// attached to a given [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster].
///
/// If successful, the response contains a newly created
/// [Operation][google.longrunning.Operation] resource that can be
/// described to track the status of the operation.
pub async fn create_aws_node_pool(
&mut self,
request: impl tonic::IntoRequest<super::CreateAwsNodePoolRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/CreateAwsNodePool",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"CreateAwsNodePool",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates an [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool].
pub async fn update_aws_node_pool(
&mut self,
request: impl tonic::IntoRequest<super::UpdateAwsNodePoolRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/UpdateAwsNodePool",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"UpdateAwsNodePool",
),
);
self.inner.unary(req, path, codec).await
}
/// Rolls back a previously aborted or failed
/// [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool] update request.
/// Makes no changes if the last update request successfully finished.
/// If an update request is in progress, you cannot rollback the update.
/// You must first cancel or let it finish unsuccessfully before you can
/// rollback.
pub async fn rollback_aws_node_pool_update(
&mut self,
request: impl tonic::IntoRequest<super::RollbackAwsNodePoolUpdateRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/RollbackAwsNodePoolUpdate",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"RollbackAwsNodePoolUpdate",
),
);
self.inner.unary(req, path, codec).await
}
/// Describes a specific
/// [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool] resource.
pub async fn get_aws_node_pool(
&mut self,
request: impl tonic::IntoRequest<super::GetAwsNodePoolRequest>,
) -> std::result::Result<tonic::Response<super::AwsNodePool>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/GetAwsNodePool",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"GetAwsNodePool",
),
);
self.inner.unary(req, path, codec).await
}
/// Lists all [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool]
/// resources on a given
/// [AwsCluster][google.cloud.gkemulticloud.v1.AwsCluster].
pub async fn list_aws_node_pools(
&mut self,
request: impl tonic::IntoRequest<super::ListAwsNodePoolsRequest>,
) -> std::result::Result<
tonic::Response<super::ListAwsNodePoolsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/ListAwsNodePools",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"ListAwsNodePools",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes a specific [AwsNodePool][google.cloud.gkemulticloud.v1.AwsNodePool]
/// resource.
///
/// If successful, the response contains a newly created
/// [Operation][google.longrunning.Operation] resource that can be
/// described to track the status of the operation.
pub async fn delete_aws_node_pool(
&mut self,
request: impl tonic::IntoRequest<super::DeleteAwsNodePoolRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/DeleteAwsNodePool",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"DeleteAwsNodePool",
),
);
self.inner.unary(req, path, codec).await
}
/// Gets the OIDC discovery document for the cluster.
/// See the
/// [OpenID Connect Discovery 1.0
/// specification](https://openid.net/specs/openid-connect-discovery-1_0.html)
/// for details.
pub async fn get_aws_open_id_config(
&mut self,
request: impl tonic::IntoRequest<super::GetAwsOpenIdConfigRequest>,
) -> std::result::Result<
tonic::Response<super::AwsOpenIdConfig>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/GetAwsOpenIdConfig",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"GetAwsOpenIdConfig",
),
);
self.inner.unary(req, path, codec).await
}
/// Gets the public component of the cluster signing keys in
/// JSON Web Key format.
pub async fn get_aws_json_web_keys(
&mut self,
request: impl tonic::IntoRequest<super::GetAwsJsonWebKeysRequest>,
) -> std::result::Result<tonic::Response<super::AwsJsonWebKeys>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/GetAwsJsonWebKeys",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"GetAwsJsonWebKeys",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns information, such as supported AWS regions and Kubernetes
/// versions, on a given Google Cloud location.
pub async fn get_aws_server_config(
&mut self,
request: impl tonic::IntoRequest<super::GetAwsServerConfigRequest>,
) -> std::result::Result<
tonic::Response<super::AwsServerConfig>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AwsClusters/GetAwsServerConfig",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AwsClusters",
"GetAwsServerConfig",
),
);
self.inner.unary(req, path, codec).await
}
}
}
/// An Anthos cluster running on customer own infrastructure.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttachedCluster {
/// The name of this resource.
///
/// Cluster names are formatted as
/// `projects/<project-number>/locations/<region>/attachedClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Optional. A human readable description of this cluster.
/// Cannot be longer than 255 UTF-8 encoded bytes.
#[prost(string, tag = "2")]
pub description: ::prost::alloc::string::String,
/// Required. OpenID Connect (OIDC) configuration for the cluster.
#[prost(message, optional, tag = "3")]
pub oidc_config: ::core::option::Option<AttachedOidcConfig>,
/// Required. The platform version for the cluster (e.g. `1.19.0-gke.1000`).
///
/// You can list all supported versions on a given Google Cloud region by
/// calling
/// [GetAttachedServerConfig][google.cloud.gkemulticloud.v1.AttachedClusters.GetAttachedServerConfig].
#[prost(string, tag = "4")]
pub platform_version: ::prost::alloc::string::String,
/// Required. The Kubernetes distribution of the underlying attached cluster.
///
/// Supported values: \["eks", "aks", "generic"\].
#[prost(string, tag = "16")]
pub distribution: ::prost::alloc::string::String,
/// Output only. The region where this cluster runs.
///
/// For EKS clusters, this is a AWS region. For AKS clusters,
/// this is an Azure region.
#[prost(string, tag = "22")]
pub cluster_region: ::prost::alloc::string::String,
/// Required. Fleet configuration.
#[prost(message, optional, tag = "5")]
pub fleet: ::core::option::Option<Fleet>,
/// Output only. The current state of the cluster.
#[prost(enumeration = "attached_cluster::State", tag = "6")]
pub state: i32,
/// Output only. A globally unique identifier for the cluster.
#[prost(string, tag = "7")]
pub uid: ::prost::alloc::string::String,
/// Output only. If set, there are currently changes in flight to the cluster.
#[prost(bool, tag = "8")]
pub reconciling: bool,
/// Output only. The time at which this cluster was registered.
#[prost(message, optional, tag = "9")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time at which this cluster was last updated.
#[prost(message, optional, tag = "10")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// Allows clients to perform consistent read-modify-writes
/// through optimistic concurrency control.
///
/// Can be sent on update and delete requests to ensure the
/// client has an up-to-date value before proceeding.
#[prost(string, tag = "11")]
pub etag: ::prost::alloc::string::String,
/// Output only. The Kubernetes version of the cluster.
#[prost(string, tag = "12")]
pub kubernetes_version: ::prost::alloc::string::String,
/// Optional. Annotations on the cluster.
///
/// This field has the same restrictions as Kubernetes annotations.
/// The total size of all keys and values combined is limited to 256k.
/// Key can have 2 segments: prefix (optional) and name (required),
/// separated by a slash (/).
/// Prefix must be a DNS subdomain.
/// Name must be 63 characters or less, begin and end with alphanumerics,
/// with dashes (-), underscores (_), dots (.), and alphanumerics between.
#[prost(btree_map = "string, string", tag = "13")]
pub annotations: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Output only. Workload Identity settings.
#[prost(message, optional, tag = "14")]
pub workload_identity_config: ::core::option::Option<WorkloadIdentityConfig>,
/// Optional. Logging configuration for this cluster.
#[prost(message, optional, tag = "15")]
pub logging_config: ::core::option::Option<LoggingConfig>,
/// Output only. A set of errors found in the cluster.
#[prost(message, repeated, tag = "20")]
pub errors: ::prost::alloc::vec::Vec<AttachedClusterError>,
/// Optional. Configuration related to the cluster RBAC settings.
#[prost(message, optional, tag = "21")]
pub authorization: ::core::option::Option<AttachedClustersAuthorization>,
/// Optional. Monitoring configuration for this cluster.
#[prost(message, optional, tag = "23")]
pub monitoring_config: ::core::option::Option<MonitoringConfig>,
/// Optional. Proxy configuration for outbound HTTP(S) traffic.
#[prost(message, optional, tag = "24")]
pub proxy_config: ::core::option::Option<AttachedProxyConfig>,
/// Optional. Binary Authorization configuration for this cluster.
#[prost(message, optional, tag = "25")]
pub binary_authorization: ::core::option::Option<BinaryAuthorization>,
}
/// Nested message and enum types in `AttachedCluster`.
pub mod attached_cluster {
/// The lifecycle state of the cluster.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// Not set.
Unspecified = 0,
/// The PROVISIONING state indicates the cluster is being registered.
Provisioning = 1,
/// The RUNNING state indicates the cluster has been register and is fully
/// usable.
Running = 2,
/// The RECONCILING state indicates that some work is actively being done on
/// the cluster, such as upgrading software components.
Reconciling = 3,
/// The STOPPING state indicates the cluster is being de-registered.
Stopping = 4,
/// The ERROR state indicates the cluster is in a broken unrecoverable
/// state.
Error = 5,
/// The DEGRADED state indicates the cluster requires user action to
/// restore full functionality.
Degraded = 6,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
State::Unspecified => "STATE_UNSPECIFIED",
State::Provisioning => "PROVISIONING",
State::Running => "RUNNING",
State::Reconciling => "RECONCILING",
State::Stopping => "STOPPING",
State::Error => "ERROR",
State::Degraded => "DEGRADED",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"PROVISIONING" => Some(Self::Provisioning),
"RUNNING" => Some(Self::Running),
"RECONCILING" => Some(Self::Reconciling),
"STOPPING" => Some(Self::Stopping),
"ERROR" => Some(Self::Error),
"DEGRADED" => Some(Self::Degraded),
_ => None,
}
}
}
}
/// Configuration related to the cluster RBAC settings.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttachedClustersAuthorization {
/// Optional. Users that can perform operations as a cluster admin. A managed
/// ClusterRoleBinding will be created to grant the `cluster-admin` ClusterRole
/// to the users. Up to ten admin users can be provided.
///
/// For more info on RBAC, see
/// <https://kubernetes.io/docs/reference/access-authn-authz/rbac/#user-facing-roles>
#[prost(message, repeated, tag = "1")]
pub admin_users: ::prost::alloc::vec::Vec<AttachedClusterUser>,
/// Optional. Groups of users that can perform operations as a cluster admin. A
/// managed ClusterRoleBinding will be created to grant the `cluster-admin`
/// ClusterRole to the groups. Up to ten admin groups can be provided.
///
/// For more info on RBAC, see
/// <https://kubernetes.io/docs/reference/access-authn-authz/rbac/#user-facing-roles>
#[prost(message, repeated, tag = "2")]
pub admin_groups: ::prost::alloc::vec::Vec<AttachedClusterGroup>,
}
/// Identities of a user-type subject for Attached clusters.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttachedClusterUser {
/// Required. The name of the user, e.g. `my-gcp-id@gmail.com`.
#[prost(string, tag = "1")]
pub username: ::prost::alloc::string::String,
}
/// Identities of a group-type subject for Attached clusters.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttachedClusterGroup {
/// Required. The name of the group, e.g. `my-group@domain.com`.
#[prost(string, tag = "1")]
pub group: ::prost::alloc::string::String,
}
/// OIDC discovery information of the target cluster.
///
/// Kubernetes Service Account (KSA) tokens are JWT tokens signed by the cluster
/// API server. This fields indicates how Google Cloud Platform services
/// validate KSA tokens in order to allow system workloads (such as GKE Connect
/// and telemetry agents) to authenticate back to Google Cloud Platform.
///
/// Both clusters with public and private issuer URLs are supported.
/// Clusters with public issuers only need to specify the `issuer_url` field
/// while clusters with private issuers need to provide both
/// `issuer_url` and `oidc_jwks`.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttachedOidcConfig {
/// A JSON Web Token (JWT) issuer URI. `issuer` must start with `<https://`.>
#[prost(string, tag = "1")]
pub issuer_url: ::prost::alloc::string::String,
/// Optional. OIDC verification keys in JWKS format (RFC 7517).
/// It contains a list of OIDC verification keys that can be used to verify
/// OIDC JWTs.
///
/// This field is required for cluster that doesn't have a publicly available
/// discovery endpoint. When provided, it will be directly used
/// to verify the OIDC JWT asserted by the IDP.
#[prost(bytes = "bytes", tag = "2")]
pub jwks: ::prost::bytes::Bytes,
}
/// AttachedServerConfig provides information about supported
/// Kubernetes versions
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttachedServerConfig {
/// The resource name of the config.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// List of valid platform versions.
#[prost(message, repeated, tag = "2")]
pub valid_versions: ::prost::alloc::vec::Vec<AttachedPlatformVersionInfo>,
}
/// Information about a supported Attached Clusters platform version.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttachedPlatformVersionInfo {
/// Platform version name.
#[prost(string, tag = "1")]
pub version: ::prost::alloc::string::String,
}
/// AttachedClusterError describes errors found on attached clusters.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttachedClusterError {
/// Human-friendly description of the error.
#[prost(string, tag = "1")]
pub message: ::prost::alloc::string::String,
}
/// Details of a proxy config.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttachedProxyConfig {
/// The Kubernetes Secret resource that contains the HTTP(S) proxy
/// configuration. The secret must be a JSON encoded proxy configuration
/// as described in
#[prost(message, optional, tag = "1")]
pub kubernetes_secret: ::core::option::Option<KubernetesSecret>,
}
/// Information about a Kubernetes Secret
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct KubernetesSecret {
/// Name of the kubernetes secret.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Namespace in which the kubernetes secret is stored.
#[prost(string, tag = "2")]
pub namespace: ::prost::alloc::string::String,
}
/// An Anthos cluster running on Azure.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureCluster {
/// The name of this resource.
///
/// Cluster names are formatted as
/// `projects/<project-number>/locations/<region>/azureClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Optional. A human readable description of this cluster.
/// Cannot be longer than 255 UTF-8 encoded bytes.
#[prost(string, tag = "2")]
pub description: ::prost::alloc::string::String,
/// Required. The Azure region where the cluster runs.
///
/// Each Google Cloud region supports a subset of nearby Azure regions.
/// You can call
/// [GetAzureServerConfig][google.cloud.gkemulticloud.v1.AzureClusters.GetAzureServerConfig]
/// to list all supported Azure regions within a given Google Cloud region.
#[prost(string, tag = "3")]
pub azure_region: ::prost::alloc::string::String,
/// Required. The ARM ID of the resource group where the cluster resources are
/// deployed. For example:
/// `/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>`
#[prost(string, tag = "17")]
pub resource_group_id: ::prost::alloc::string::String,
/// Optional. Name of the
/// [AzureClient][google.cloud.gkemulticloud.v1.AzureClient] that contains
/// authentication configuration for how the Anthos Multi-Cloud API connects to
/// Azure APIs.
///
/// Either azure_client or azure_services_authentication should be provided.
///
/// The `AzureClient` resource must reside on the same Google Cloud Platform
/// project and region as the `AzureCluster`.
///
/// `AzureClient` names are formatted as
/// `projects/<project-number>/locations/<region>/azureClients/<client-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "16")]
pub azure_client: ::prost::alloc::string::String,
/// Required. Cluster-wide networking configuration.
#[prost(message, optional, tag = "4")]
pub networking: ::core::option::Option<AzureClusterNetworking>,
/// Required. Configuration related to the cluster control plane.
#[prost(message, optional, tag = "5")]
pub control_plane: ::core::option::Option<AzureControlPlane>,
/// Required. Configuration related to the cluster RBAC settings.
#[prost(message, optional, tag = "6")]
pub authorization: ::core::option::Option<AzureAuthorization>,
/// Optional. Authentication configuration for management of Azure resources.
///
/// Either azure_client or azure_services_authentication should be provided.
#[prost(message, optional, tag = "22")]
pub azure_services_authentication: ::core::option::Option<
AzureServicesAuthentication,
>,
/// Output only. The current state of the cluster.
#[prost(enumeration = "azure_cluster::State", tag = "7")]
pub state: i32,
/// Output only. The endpoint of the cluster's API server.
#[prost(string, tag = "8")]
pub endpoint: ::prost::alloc::string::String,
/// Output only. A globally unique identifier for the cluster.
#[prost(string, tag = "9")]
pub uid: ::prost::alloc::string::String,
/// Output only. If set, there are currently changes in flight to the cluster.
#[prost(bool, tag = "10")]
pub reconciling: bool,
/// Output only. The time at which this cluster was created.
#[prost(message, optional, tag = "11")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time at which this cluster was last updated.
#[prost(message, optional, tag = "12")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// Allows clients to perform consistent read-modify-writes
/// through optimistic concurrency control.
///
/// Can be sent on update and delete requests to ensure the
/// client has an up-to-date value before proceeding.
#[prost(string, tag = "13")]
pub etag: ::prost::alloc::string::String,
/// Optional. Annotations on the cluster.
///
/// This field has the same restrictions as Kubernetes annotations.
/// The total size of all keys and values combined is limited to 256k.
/// Keys can have 2 segments: prefix (optional) and name (required),
/// separated by a slash (/).
/// Prefix must be a DNS subdomain.
/// Name must be 63 characters or less, begin and end with alphanumerics,
/// with dashes (-), underscores (_), dots (.), and alphanumerics between.
#[prost(btree_map = "string, string", tag = "14")]
pub annotations: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Output only. Workload Identity settings.
#[prost(message, optional, tag = "18")]
pub workload_identity_config: ::core::option::Option<WorkloadIdentityConfig>,
/// Output only. PEM encoded x509 certificate of the cluster root of trust.
#[prost(string, tag = "19")]
pub cluster_ca_certificate: ::prost::alloc::string::String,
/// Required. Fleet configuration.
#[prost(message, optional, tag = "20")]
pub fleet: ::core::option::Option<Fleet>,
/// Output only. Managed Azure resources for this cluster.
#[prost(message, optional, tag = "21")]
pub managed_resources: ::core::option::Option<AzureClusterResources>,
/// Optional. Logging configuration for this cluster.
#[prost(message, optional, tag = "23")]
pub logging_config: ::core::option::Option<LoggingConfig>,
/// Output only. A set of errors found in the cluster.
#[prost(message, repeated, tag = "24")]
pub errors: ::prost::alloc::vec::Vec<AzureClusterError>,
/// Optional. Monitoring configuration for this cluster.
#[prost(message, optional, tag = "25")]
pub monitoring_config: ::core::option::Option<MonitoringConfig>,
}
/// Nested message and enum types in `AzureCluster`.
pub mod azure_cluster {
/// The lifecycle state of the cluster.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// Not set.
Unspecified = 0,
/// The PROVISIONING state indicates the cluster is being created.
Provisioning = 1,
/// The RUNNING state indicates the cluster has been created and is fully
/// usable.
Running = 2,
/// The RECONCILING state indicates that some work is actively being done on
/// the cluster, such as upgrading the control plane replicas.
Reconciling = 3,
/// The STOPPING state indicates the cluster is being deleted.
Stopping = 4,
/// The ERROR state indicates the cluster is in a broken unrecoverable
/// state.
Error = 5,
/// The DEGRADED state indicates the cluster requires user action to
/// restore full functionality.
Degraded = 6,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
State::Unspecified => "STATE_UNSPECIFIED",
State::Provisioning => "PROVISIONING",
State::Running => "RUNNING",
State::Reconciling => "RECONCILING",
State::Stopping => "STOPPING",
State::Error => "ERROR",
State::Degraded => "DEGRADED",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"PROVISIONING" => Some(Self::Provisioning),
"RUNNING" => Some(Self::Running),
"RECONCILING" => Some(Self::Reconciling),
"STOPPING" => Some(Self::Stopping),
"ERROR" => Some(Self::Error),
"DEGRADED" => Some(Self::Degraded),
_ => None,
}
}
}
}
/// ClusterNetworking contains cluster-wide networking configuration.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureClusterNetworking {
/// Required. The Azure Resource Manager (ARM) ID of the VNet associated with
/// your cluster.
///
/// All components in the cluster (i.e. control plane and node pools) run on a
/// single VNet.
///
/// Example:
/// `/subscriptions/<subscription-id>/resourceGroups/<resource-group-id>/providers/Microsoft.Network/virtualNetworks/<vnet-id>`
///
/// This field cannot be changed after creation.
#[prost(string, tag = "1")]
pub virtual_network_id: ::prost::alloc::string::String,
/// Required. The IP address range of the pods in this cluster, in CIDR
/// notation (e.g. `10.96.0.0/14`).
///
/// All pods in the cluster get assigned a unique IPv4 address from these
/// ranges. Only a single range is supported.
///
/// This field cannot be changed after creation.
#[prost(string, repeated, tag = "2")]
pub pod_address_cidr_blocks: ::prost::alloc::vec::Vec<
::prost::alloc::string::String,
>,
/// Required. The IP address range for services in this cluster, in CIDR
/// notation (e.g. `10.96.0.0/14`).
///
/// All services in the cluster get assigned a unique IPv4 address from these
/// ranges. Only a single range is supported.
///
/// This field cannot be changed after creating a cluster.
#[prost(string, repeated, tag = "3")]
pub service_address_cidr_blocks: ::prost::alloc::vec::Vec<
::prost::alloc::string::String,
>,
/// Optional. The ARM ID of the subnet where Kubernetes private service type
/// load balancers are deployed. When unspecified, it defaults to
/// AzureControlPlane.subnet_id.
///
/// Example:
/// "/subscriptions/d00494d6-6f3c-4280-bbb2-899e163d1d30/resourceGroups/anthos_cluster_gkeust4/providers/Microsoft.Network/virtualNetworks/gke-vnet-gkeust4/subnets/subnetid456"
#[prost(string, tag = "5")]
pub service_load_balancer_subnet_id: ::prost::alloc::string::String,
}
/// AzureControlPlane represents the control plane configurations.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureControlPlane {
/// Required. The Kubernetes version to run on control plane replicas
/// (e.g. `1.19.10-gke.1000`).
///
/// You can list all supported versions on a given Google Cloud region by
/// calling
/// [GetAzureServerConfig][google.cloud.gkemulticloud.v1.AzureClusters.GetAzureServerConfig].
#[prost(string, tag = "1")]
pub version: ::prost::alloc::string::String,
/// Optional. The ARM ID of the default subnet for the control plane. The
/// control plane VMs are deployed in this subnet, unless
/// `AzureControlPlane.replica_placements` is specified. This subnet will also
/// be used as default for `AzureControlPlane.endpoint_subnet_id` if
/// `AzureControlPlane.endpoint_subnet_id` is not specified. Similarly it will
/// be used as default for
/// `AzureClusterNetworking.service_load_balancer_subnet_id`.
///
/// Example:
/// `/subscriptions/<subscription-id>/resourceGroups/<resource-group-id>/providers/Microsoft.Network/virtualNetworks/<vnet-id>/subnets/default`.
#[prost(string, tag = "2")]
pub subnet_id: ::prost::alloc::string::String,
/// Optional. The Azure VM size name. Example: `Standard_DS2_v2`.
///
/// For available VM sizes, see
/// <https://docs.microsoft.com/en-us/azure/virtual-machines/vm-naming-conventions.>
///
/// When unspecified, it defaults to `Standard_DS2_v2`.
#[prost(string, tag = "3")]
pub vm_size: ::prost::alloc::string::String,
/// Required. SSH configuration for how to access the underlying control plane
/// machines.
#[prost(message, optional, tag = "11")]
pub ssh_config: ::core::option::Option<AzureSshConfig>,
/// Optional. Configuration related to the root volume provisioned for each
/// control plane replica.
///
/// When unspecified, it defaults to 32-GiB Azure Disk.
#[prost(message, optional, tag = "4")]
pub root_volume: ::core::option::Option<AzureDiskTemplate>,
/// Optional. Configuration related to the main volume provisioned for each
/// control plane replica.
/// The main volume is in charge of storing all of the cluster's etcd state.
///
/// When unspecified, it defaults to a 8-GiB Azure Disk.
#[prost(message, optional, tag = "5")]
pub main_volume: ::core::option::Option<AzureDiskTemplate>,
/// Optional. Configuration related to application-layer secrets encryption.
#[prost(message, optional, tag = "10")]
pub database_encryption: ::core::option::Option<AzureDatabaseEncryption>,
/// Optional. Proxy configuration for outbound HTTP(S) traffic.
#[prost(message, optional, tag = "12")]
pub proxy_config: ::core::option::Option<AzureProxyConfig>,
/// Optional. Configuration related to vm config encryption.
#[prost(message, optional, tag = "14")]
pub config_encryption: ::core::option::Option<AzureConfigEncryption>,
/// Optional. A set of tags to apply to all underlying control plane Azure
/// resources.
#[prost(btree_map = "string, string", tag = "7")]
pub tags: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Optional. Configuration for where to place the control plane replicas.
///
/// Up to three replica placement instances can be specified. If
/// replica_placements is set, the replica placement instances will be applied
/// to the three control plane replicas as evenly as possible.
#[prost(message, repeated, tag = "13")]
pub replica_placements: ::prost::alloc::vec::Vec<ReplicaPlacement>,
/// Optional. The ARM ID of the subnet where the control plane load balancer is
/// deployed. When unspecified, it defaults to AzureControlPlane.subnet_id.
///
/// Example:
/// "/subscriptions/d00494d6-6f3c-4280-bbb2-899e163d1d30/resourceGroups/anthos_cluster_gkeust4/providers/Microsoft.Network/virtualNetworks/gke-vnet-gkeust4/subnets/subnetid123"
#[prost(string, tag = "15")]
pub endpoint_subnet_id: ::prost::alloc::string::String,
}
/// Configuration for the placement of a control plane replica.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ReplicaPlacement {
/// Required. For a given replica, the ARM ID of the subnet where the control
/// plane VM is deployed. Make sure it's a subnet under the virtual network in
/// the cluster configuration.
#[prost(string, tag = "1")]
pub subnet_id: ::prost::alloc::string::String,
/// Required. For a given replica, the Azure availability zone where to
/// provision the control plane VM and the ETCD disk.
#[prost(string, tag = "2")]
pub azure_availability_zone: ::prost::alloc::string::String,
}
/// Details of a proxy config stored in Azure Key Vault.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureProxyConfig {
/// The ARM ID the of the resource group containing proxy keyvault.
///
/// Resource group ids are formatted as
/// `/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>`.
#[prost(string, tag = "1")]
pub resource_group_id: ::prost::alloc::string::String,
/// The URL the of the proxy setting secret with its version.
///
/// The secret must be a JSON encoded proxy configuration
/// as described in
/// <https://cloud.google.com/anthos/clusters/docs/multi-cloud/azure/how-to/use-a-proxy#create_a_proxy_configuration_file>
///
/// Secret ids are formatted as
/// `<https://<key-vault-name>.vault.azure.net/secrets/<secret-name>/<secret-version>`.>
#[prost(string, tag = "2")]
pub secret_id: ::prost::alloc::string::String,
}
/// Configuration related to application-layer secrets encryption.
///
/// Anthos clusters on Azure encrypts your Kubernetes data at rest
/// in etcd using Azure Key Vault.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureDatabaseEncryption {
/// Required. The ARM ID of the Azure Key Vault key to encrypt / decrypt data.
///
/// For example:
/// `/subscriptions/<subscription-id>/resourceGroups/<resource-group-id>/providers/Microsoft.KeyVault/vaults/<key-vault-id>/keys/<key-name>`
/// Encryption will always take the latest version of the key and hence
/// specific version is not supported.
#[prost(string, tag = "3")]
pub key_id: ::prost::alloc::string::String,
}
/// Configuration related to config data encryption.
///
/// Azure VM bootstrap secret is envelope encrypted with the provided key vault
/// key.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureConfigEncryption {
/// Required. The ARM ID of the Azure Key Vault key to encrypt / decrypt config
/// data.
///
/// For example:
/// `/subscriptions/<subscription-id>/resourceGroups/<resource-group-id>/providers/Microsoft.KeyVault/vaults/<key-vault-id>/keys/<key-name>`
#[prost(string, tag = "2")]
pub key_id: ::prost::alloc::string::String,
/// Optional. RSA key of the Azure Key Vault public key to use for encrypting
/// the data.
///
/// This key must be formatted as a PEM-encoded SubjectPublicKeyInfo (RFC 5280)
/// in ASN.1 DER form. The string must be comprised of a single PEM block of
/// type "PUBLIC KEY".
#[prost(string, tag = "3")]
pub public_key: ::prost::alloc::string::String,
}
/// Configuration for Azure Disks.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct AzureDiskTemplate {
/// Optional. The size of the disk, in GiBs.
///
/// When unspecified, a default value is provided. See the specific reference
/// in the parent resource.
#[prost(int32, tag = "1")]
pub size_gib: i32,
}
/// `AzureClient` resources hold client authentication information needed by the
/// Anthos Multi-Cloud API to manage Azure resources on your Azure subscription.
///
/// When an [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster] is
/// created, an `AzureClient` resource needs to be provided and all operations on
/// Azure resources associated to that cluster will authenticate to Azure
/// services using the given client.
///
/// `AzureClient` resources are immutable and cannot be modified upon creation.
///
/// Each `AzureClient` resource is bound to a single Azure Active Directory
/// Application and tenant.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureClient {
/// The name of this resource.
///
/// `AzureClient` resource names are formatted as
/// `projects/<project-number>/locations/<region>/azureClients/<client-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Required. The Azure Active Directory Tenant ID.
#[prost(string, tag = "2")]
pub tenant_id: ::prost::alloc::string::String,
/// Required. The Azure Active Directory Application ID.
#[prost(string, tag = "3")]
pub application_id: ::prost::alloc::string::String,
/// Output only. If set, there are currently pending changes to the client.
#[prost(bool, tag = "9")]
pub reconciling: bool,
/// Optional. Annotations on the resource.
///
/// This field has the same restrictions as Kubernetes annotations.
/// The total size of all keys and values combined is limited to 256k.
/// Keys can have 2 segments: prefix (optional) and name (required),
/// separated by a slash (/).
/// Prefix must be a DNS subdomain.
/// Name must be 63 characters or less, begin and end with alphanumerics,
/// with dashes (-), underscores (_), dots (.), and alphanumerics between.
#[prost(btree_map = "string, string", tag = "8")]
pub annotations: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Output only. The PEM encoded x509 certificate.
#[prost(string, tag = "7")]
pub pem_certificate: ::prost::alloc::string::String,
/// Output only. A globally unique identifier for the client.
#[prost(string, tag = "5")]
pub uid: ::prost::alloc::string::String,
/// Output only. The time at which this resource was created.
#[prost(message, optional, tag = "6")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time at which this client was last updated.
#[prost(message, optional, tag = "10")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
}
/// Configuration related to the cluster RBAC settings.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureAuthorization {
/// Optional. Users that can perform operations as a cluster admin. A managed
/// ClusterRoleBinding will be created to grant the `cluster-admin` ClusterRole
/// to the users. Up to ten admin users can be provided.
///
/// For more info on RBAC, see
/// <https://kubernetes.io/docs/reference/access-authn-authz/rbac/#user-facing-roles>
#[prost(message, repeated, tag = "1")]
pub admin_users: ::prost::alloc::vec::Vec<AzureClusterUser>,
/// Optional. Groups of users that can perform operations as a cluster admin. A
/// managed ClusterRoleBinding will be created to grant the `cluster-admin`
/// ClusterRole to the groups. Up to ten admin groups can be provided.
///
/// For more info on RBAC, see
/// <https://kubernetes.io/docs/reference/access-authn-authz/rbac/#user-facing-roles>
#[prost(message, repeated, tag = "2")]
pub admin_groups: ::prost::alloc::vec::Vec<AzureClusterGroup>,
}
/// Authentication configuration for the management of Azure resources.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureServicesAuthentication {
/// Required. The Azure Active Directory Tenant ID.
#[prost(string, tag = "1")]
pub tenant_id: ::prost::alloc::string::String,
/// Required. The Azure Active Directory Application ID.
#[prost(string, tag = "2")]
pub application_id: ::prost::alloc::string::String,
}
/// Identities of a user-type subject for Azure clusters.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureClusterUser {
/// Required. The name of the user, e.g. `my-gcp-id@gmail.com`.
#[prost(string, tag = "1")]
pub username: ::prost::alloc::string::String,
}
/// Identities of a group-type subject for Azure clusters.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureClusterGroup {
/// Required. The name of the group, e.g. `my-group@domain.com`.
#[prost(string, tag = "1")]
pub group: ::prost::alloc::string::String,
}
/// An Anthos node pool running on Azure.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureNodePool {
/// The name of this resource.
///
/// Node pool names are formatted as
/// `projects/<project-number>/locations/<region>/azureClusters/<cluster-id>/azureNodePools/<node-pool-id>`.
///
/// For more details on Google Cloud resource names,
/// see [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Required. The Kubernetes version (e.g. `1.19.10-gke.1000`) running on this
/// node pool.
#[prost(string, tag = "2")]
pub version: ::prost::alloc::string::String,
/// Required. The node configuration of the node pool.
#[prost(message, optional, tag = "22")]
pub config: ::core::option::Option<AzureNodeConfig>,
/// Required. The ARM ID of the subnet where the node pool VMs run. Make sure
/// it's a subnet under the virtual network in the cluster configuration.
#[prost(string, tag = "3")]
pub subnet_id: ::prost::alloc::string::String,
/// Required. Autoscaler configuration for this node pool.
#[prost(message, optional, tag = "4")]
pub autoscaling: ::core::option::Option<AzureNodePoolAutoscaling>,
/// Output only. The current state of the node pool.
#[prost(enumeration = "azure_node_pool::State", tag = "6")]
pub state: i32,
/// Output only. A globally unique identifier for the node pool.
#[prost(string, tag = "8")]
pub uid: ::prost::alloc::string::String,
/// Output only. If set, there are currently pending changes to the node
/// pool.
#[prost(bool, tag = "9")]
pub reconciling: bool,
/// Output only. The time at which this node pool was created.
#[prost(message, optional, tag = "10")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time at which this node pool was last updated.
#[prost(message, optional, tag = "11")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// Allows clients to perform consistent read-modify-writes
/// through optimistic concurrency control.
///
/// Can be sent on update and delete requests to ensure the
/// client has an up-to-date value before proceeding.
#[prost(string, tag = "12")]
pub etag: ::prost::alloc::string::String,
/// Optional. Annotations on the node pool.
///
/// This field has the same restrictions as Kubernetes annotations.
/// The total size of all keys and values combined is limited to 256k.
/// Keys can have 2 segments: prefix (optional) and name (required),
/// separated by a slash (/).
/// Prefix must be a DNS subdomain.
/// Name must be 63 characters or less, begin and end with alphanumerics,
/// with dashes (-), underscores (_), dots (.), and alphanumerics between.
#[prost(btree_map = "string, string", tag = "13")]
pub annotations: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Required. The constraint on the maximum number of pods that can be run
/// simultaneously on a node in the node pool.
#[prost(message, optional, tag = "21")]
pub max_pods_constraint: ::core::option::Option<MaxPodsConstraint>,
/// Optional. The Azure availability zone of the nodes in this nodepool.
///
/// When unspecified, it defaults to `1`.
#[prost(string, tag = "23")]
pub azure_availability_zone: ::prost::alloc::string::String,
/// Output only. A set of errors found in the node pool.
#[prost(message, repeated, tag = "29")]
pub errors: ::prost::alloc::vec::Vec<AzureNodePoolError>,
/// Optional. The Management configuration for this node pool.
#[prost(message, optional, tag = "30")]
pub management: ::core::option::Option<AzureNodeManagement>,
}
/// Nested message and enum types in `AzureNodePool`.
pub mod azure_node_pool {
/// The lifecycle state of the node pool.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// Not set.
Unspecified = 0,
/// The PROVISIONING state indicates the node pool is being created.
Provisioning = 1,
/// The RUNNING state indicates the node pool has been created and is fully
/// usable.
Running = 2,
/// The RECONCILING state indicates that the node pool is being reconciled.
Reconciling = 3,
/// The STOPPING state indicates the node pool is being deleted.
Stopping = 4,
/// The ERROR state indicates the node pool is in a broken unrecoverable
/// state.
Error = 5,
/// The DEGRADED state indicates the node pool requires user action to
/// restore full functionality.
Degraded = 6,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
State::Unspecified => "STATE_UNSPECIFIED",
State::Provisioning => "PROVISIONING",
State::Running => "RUNNING",
State::Reconciling => "RECONCILING",
State::Stopping => "STOPPING",
State::Error => "ERROR",
State::Degraded => "DEGRADED",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"PROVISIONING" => Some(Self::Provisioning),
"RUNNING" => Some(Self::Running),
"RECONCILING" => Some(Self::Reconciling),
"STOPPING" => Some(Self::Stopping),
"ERROR" => Some(Self::Error),
"DEGRADED" => Some(Self::Degraded),
_ => None,
}
}
}
}
/// AzureNodeManagement defines the set of node management features turned on for
/// an Azure node pool.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct AzureNodeManagement {
/// Optional. Whether or not the nodes will be automatically repaired. When set
/// to true, the nodes in this node pool will be monitored and if they fail
/// health checks consistently over a period of time, an automatic repair
/// action will be triggered to replace them with new nodes.
#[prost(bool, tag = "1")]
pub auto_repair: bool,
}
/// Parameters that describe the configuration of all node machines
/// on a given node pool.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureNodeConfig {
/// Optional. The Azure VM size name. Example: `Standard_DS2_v2`.
///
/// See [Supported VM
/// sizes](/anthos/clusters/docs/azure/reference/supported-vms) for options.
///
/// When unspecified, it defaults to `Standard_DS2_v2`.
#[prost(string, tag = "1")]
pub vm_size: ::prost::alloc::string::String,
/// Optional. Configuration related to the root volume provisioned for each
/// node pool machine.
///
/// When unspecified, it defaults to a 32-GiB Azure Disk.
#[prost(message, optional, tag = "2")]
pub root_volume: ::core::option::Option<AzureDiskTemplate>,
/// Optional. A set of tags to apply to all underlying Azure resources for this
/// node pool. This currently only includes Virtual Machine Scale Sets.
///
/// Specify at most 50 pairs containing alphanumerics, spaces, and symbols
/// (.+-=_:@/). Keys can be up to 127 Unicode characters. Values can be up to
/// 255 Unicode characters.
#[prost(btree_map = "string, string", tag = "3")]
pub tags: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Optional. The OS image type to use on node pool instances.
/// Can be unspecified, or have a value of `ubuntu`.
///
/// When unspecified, it defaults to `ubuntu`.
#[prost(string, tag = "8")]
pub image_type: ::prost::alloc::string::String,
/// Required. SSH configuration for how to access the node pool machines.
#[prost(message, optional, tag = "7")]
pub ssh_config: ::core::option::Option<AzureSshConfig>,
/// Optional. Proxy configuration for outbound HTTP(S) traffic.
#[prost(message, optional, tag = "9")]
pub proxy_config: ::core::option::Option<AzureProxyConfig>,
/// Optional. Configuration related to vm config encryption.
#[prost(message, optional, tag = "12")]
pub config_encryption: ::core::option::Option<AzureConfigEncryption>,
/// Optional. The initial taints assigned to nodes of this node pool.
#[prost(message, repeated, tag = "10")]
pub taints: ::prost::alloc::vec::Vec<NodeTaint>,
/// Optional. The initial labels assigned to nodes of this node pool. An object
/// containing a list of "key": value pairs. Example: { "name": "wrench",
/// "mass": "1.3kg", "count": "3" }.
#[prost(btree_map = "string, string", tag = "11")]
pub labels: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
}
/// Configuration related to Kubernetes cluster autoscaler.
///
/// The Kubernetes cluster autoscaler will automatically adjust the
/// size of the node pool based on the cluster load.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct AzureNodePoolAutoscaling {
/// Required. Minimum number of nodes in the node pool. Must be greater than or
/// equal to 1 and less than or equal to max_node_count.
#[prost(int32, tag = "1")]
pub min_node_count: i32,
/// Required. Maximum number of nodes in the node pool. Must be greater than or
/// equal to min_node_count and less than or equal to 50.
#[prost(int32, tag = "2")]
pub max_node_count: i32,
}
/// AzureOpenIdConfig is an OIDC discovery document for the cluster.
/// See the OpenID Connect Discovery 1.0 specification for details.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureOpenIdConfig {
/// OIDC Issuer.
#[prost(string, tag = "1")]
pub issuer: ::prost::alloc::string::String,
/// JSON Web Key uri.
#[prost(string, tag = "2")]
pub jwks_uri: ::prost::alloc::string::String,
/// Supported response types.
#[prost(string, repeated, tag = "3")]
pub response_types_supported: ::prost::alloc::vec::Vec<
::prost::alloc::string::String,
>,
/// Supported subject types.
#[prost(string, repeated, tag = "4")]
pub subject_types_supported: ::prost::alloc::vec::Vec<
::prost::alloc::string::String,
>,
/// supported ID Token signing Algorithms.
#[prost(string, repeated, tag = "5")]
pub id_token_signing_alg_values_supported: ::prost::alloc::vec::Vec<
::prost::alloc::string::String,
>,
/// Supported claims.
#[prost(string, repeated, tag = "6")]
pub claims_supported: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Supported grant types.
#[prost(string, repeated, tag = "7")]
pub grant_types: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// AzureJsonWebKeys is a valid JSON Web Key Set as specififed in RFC 7517.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureJsonWebKeys {
/// The public component of the keys used by the cluster to sign token
/// requests.
#[prost(message, repeated, tag = "1")]
pub keys: ::prost::alloc::vec::Vec<Jwk>,
}
/// AzureServerConfig contains information about a Google Cloud location, such as
/// supported Azure regions and Kubernetes versions.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureServerConfig {
/// The `AzureServerConfig` resource name.
///
/// `AzureServerConfig` names are formatted as
/// `projects/<project-number>/locations/<region>/azureServerConfig`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// List of all released Kubernetes versions, including ones which are end of
/// life and can no longer be used. Filter by the `enabled`
/// property to limit to currently available versions.
/// Valid versions supported for both create and update operations
#[prost(message, repeated, tag = "2")]
pub valid_versions: ::prost::alloc::vec::Vec<AzureK8sVersionInfo>,
/// The list of supported Azure regions.
#[prost(string, repeated, tag = "3")]
pub supported_azure_regions: ::prost::alloc::vec::Vec<
::prost::alloc::string::String,
>,
}
/// Kubernetes version information of GKE cluster on Azure.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureK8sVersionInfo {
/// Kubernetes version name (for example, `1.19.10-gke.1000`)
#[prost(string, tag = "1")]
pub version: ::prost::alloc::string::String,
/// Optional. True if the version is available for cluster creation. If a
/// version is enabled for creation, it can be used to create new clusters.
/// Otherwise, cluster creation will fail. However, cluster upgrade operations
/// may succeed, even if the version is not enabled.
#[prost(bool, tag = "3")]
pub enabled: bool,
/// Optional. True if this cluster version belongs to a minor version that has
/// reached its end of life and is no longer in scope to receive security and
/// bug fixes.
#[prost(bool, tag = "4")]
pub end_of_life: bool,
/// Optional. The estimated date (in Pacific Time) when this cluster version
/// will reach its end of life. Or if this version is no longer supported (the
/// `end_of_life` field is true), this is the actual date (in Pacific time)
/// when the version reached its end of life.
#[prost(message, optional, tag = "5")]
pub end_of_life_date: ::core::option::Option<super::super::super::r#type::Date>,
/// Optional. The date (in Pacific Time) when the cluster version was released.
#[prost(message, optional, tag = "6")]
pub release_date: ::core::option::Option<super::super::super::r#type::Date>,
}
/// SSH configuration for Azure resources.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureSshConfig {
/// Required. The SSH public key data for VMs managed by Anthos. This accepts
/// the authorized_keys file format used in OpenSSH according to the sshd(8)
/// manual page.
#[prost(string, tag = "1")]
pub authorized_key: ::prost::alloc::string::String,
}
/// Managed Azure resources for the cluster.
///
/// The values could change and be empty, depending on the state of the cluster.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureClusterResources {
/// Output only. The ARM ID of the cluster network security group.
#[prost(string, tag = "1")]
pub network_security_group_id: ::prost::alloc::string::String,
/// Output only. The ARM ID of the control plane application security group.
#[prost(string, tag = "2")]
pub control_plane_application_security_group_id: ::prost::alloc::string::String,
}
/// AzureClusterError describes errors found on Azure clusters.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureClusterError {
/// Human-friendly description of the error.
#[prost(string, tag = "1")]
pub message: ::prost::alloc::string::String,
}
/// AzureNodePoolError describes errors found on Azure node pools.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AzureNodePoolError {
/// Human-friendly description of the error.
#[prost(string, tag = "1")]
pub message: ::prost::alloc::string::String,
}
/// Request message for `AzureClusters.CreateAzureCluster` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateAzureClusterRequest {
/// Required. The parent location where this
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster] resource will be
/// created.
///
/// Location names are formatted as `projects/<project-id>/locations/<region>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. The specification of the
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster] to create.
#[prost(message, optional, tag = "2")]
pub azure_cluster: ::core::option::Option<AzureCluster>,
/// Required. A client provided ID the resource. Must be unique within the
/// parent resource.
///
/// The provided ID will be part of the
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster] resource name
/// formatted as
/// `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>`.
///
/// Valid characters are `/[a-z][0-9]-/`. Cannot be longer than 63 characters.
#[prost(string, tag = "3")]
pub azure_cluster_id: ::prost::alloc::string::String,
/// If set, only validate the request, but do not actually create the cluster.
#[prost(bool, tag = "4")]
pub validate_only: bool,
}
/// Request message for `AzureClusters.UpdateAzureCluster` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateAzureClusterRequest {
/// Required. The [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster]
/// resource to update.
#[prost(message, optional, tag = "1")]
pub azure_cluster: ::core::option::Option<AzureCluster>,
/// If set, only validate the request, but do not actually update the cluster.
#[prost(bool, tag = "2")]
pub validate_only: bool,
/// Required. Mask of fields to update. At least one path must be supplied in
/// this field. The elements of the repeated paths field can only include these
/// fields from [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster]:
///
/// * `description`.
/// * `azureClient`.
/// * `control_plane.version`.
/// * `control_plane.vm_size`.
/// * `annotations`.
/// * `authorization.admin_users`.
/// * `authorization.admin_groups`.
/// * `control_plane.root_volume.size_gib`.
/// * `azure_services_authentication`.
/// * `azure_services_authentication.tenant_id`.
/// * `azure_services_authentication.application_id`.
/// * `control_plane.proxy_config`.
/// * `control_plane.proxy_config.resource_group_id`.
/// * `control_plane.proxy_config.secret_id`.
/// * `control_plane.ssh_config.authorized_key`.
/// * `logging_config.component_config.enable_components`
/// * `monitoring_config.managed_prometheus_config.enabled`.
#[prost(message, optional, tag = "4")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Request message for `AzureClusters.GetAzureCluster` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAzureClusterRequest {
/// Required. The name of the
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster] resource to
/// describe.
///
/// `AzureCluster` names are formatted as
/// `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for `AzureClusters.ListAzureClusters` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAzureClustersRequest {
/// Required. The parent location which owns this collection of
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster] resources.
///
/// Location names are formatted as `projects/<project-id>/locations/<region>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The maximum number of items to return.
///
/// If not specified, a default value of 50 will be used by the service.
/// Regardless of the pageSize value, the response can include a partial list
/// and a caller should only rely on response's
/// [nextPageToken][google.cloud.gkemulticloud.v1.ListAzureClustersResponse.next_page_token]
/// to determine if there are more instances left to be queried.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// The `nextPageToken` value returned from a previous
/// [azureClusters.list][google.cloud.gkemulticloud.v1.AzureClusters.ListAzureClusters]
/// request, if any.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
}
/// Response message for `AzureClusters.ListAzureClusters` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAzureClustersResponse {
/// A list of [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster]
/// resources in the specified Google Cloud Platform project and region region.
#[prost(message, repeated, tag = "1")]
pub azure_clusters: ::prost::alloc::vec::Vec<AzureCluster>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results in the list.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// Request message for `AzureClusters.DeleteAzureCluster` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteAzureClusterRequest {
/// Required. The resource name the
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster] to delete.
///
/// `AzureCluster` names are formatted as
/// `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// If set to true, and the
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster] resource is not
/// found, the request will succeed but no action will be taken on the server
/// and a completed [Operation][google.longrunning.Operation] will be returned.
///
/// Useful for idempotent deletion.
#[prost(bool, tag = "2")]
pub allow_missing: bool,
/// If set, only validate the request, but do not actually delete the resource.
#[prost(bool, tag = "3")]
pub validate_only: bool,
/// The current etag of the
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster].
///
/// Allows clients to perform deletions through optimistic concurrency control.
///
/// If the provided etag does not match the current etag of the cluster,
/// the request will fail and an ABORTED error will be returned.
#[prost(string, tag = "4")]
pub etag: ::prost::alloc::string::String,
/// Optional. If set to true, the deletion of
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster] resource will
/// succeed even if errors occur during deleting in cluster resources. Using
/// this parameter may result in orphaned resources in the cluster.
#[prost(bool, tag = "5")]
pub ignore_errors: bool,
}
/// Response message for `AzureClusters.CreateAzureNodePool` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateAzureNodePoolRequest {
/// Required. The [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster]
/// resource where this node pool will be created.
///
/// `AzureCluster` names are formatted as
/// `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. The specification of the
/// [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool] to create.
#[prost(message, optional, tag = "2")]
pub azure_node_pool: ::core::option::Option<AzureNodePool>,
/// Required. A client provided ID the resource. Must be unique within the
/// parent resource.
///
/// The provided ID will be part of the
/// [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool] resource name
/// formatted as
/// `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>/azureNodePools/<node-pool-id>`.
///
/// Valid characters are `/[a-z][0-9]-/`. Cannot be longer than 63 characters.
#[prost(string, tag = "3")]
pub azure_node_pool_id: ::prost::alloc::string::String,
/// If set, only validate the request, but do not actually create the node
/// pool.
#[prost(bool, tag = "4")]
pub validate_only: bool,
}
/// Request message for `AzureClusters.UpdateAzureNodePool` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateAzureNodePoolRequest {
/// Required. The [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool]
/// resource to update.
#[prost(message, optional, tag = "1")]
pub azure_node_pool: ::core::option::Option<AzureNodePool>,
/// If set, only validate the request, but don't actually update the node pool.
#[prost(bool, tag = "2")]
pub validate_only: bool,
/// Required. Mask of fields to update. At least one path must be supplied in
/// this field. The elements of the repeated paths field can only include these
/// fields from [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool]:
///
/// *. `annotations`.
/// * `version`.
/// * `autoscaling.min_node_count`.
/// * `autoscaling.max_node_count`.
/// * `config.ssh_config.authorized_key`.
/// * `management.auto_repair`.
/// * `management`.
#[prost(message, optional, tag = "3")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Request message for `AzureClusters.GetAzureNodePool` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAzureNodePoolRequest {
/// Required. The name of the
/// [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool] resource to
/// describe.
///
/// `AzureNodePool` names are formatted as
/// `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>/azureNodePools/<node-pool-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for `AzureClusters.ListAzureNodePools` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAzureNodePoolsRequest {
/// Required. The parent `AzureCluster` which owns this collection of
/// [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool] resources.
///
/// `AzureCluster` names are formatted as
/// `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The maximum number of items to return.
///
/// If not specified, a default value of 50 will be used by the service.
/// Regardless of the pageSize value, the response can include a partial list
/// and a caller should only rely on response's
/// [nextPageToken][google.cloud.gkemulticloud.v1.ListAzureNodePoolsResponse.next_page_token]
/// to determine if there are more instances left to be queried.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// The `nextPageToken` value returned from a previous
/// [azureNodePools.list][google.cloud.gkemulticloud.v1.AzureClusters.ListAzureNodePools]
/// request, if any.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
}
/// Response message for `AzureClusters.ListAzureNodePools` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAzureNodePoolsResponse {
/// A list of [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool]
/// resources in the specified `AzureCluster`.
#[prost(message, repeated, tag = "1")]
pub azure_node_pools: ::prost::alloc::vec::Vec<AzureNodePool>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results in the list.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// Request message for `AzureClusters.DeleteAzureNodePool` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteAzureNodePoolRequest {
/// Required. The resource name the
/// [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool] to delete.
///
/// `AzureNodePool` names are formatted as
/// `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>/azureNodePools/<node-pool-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// If set, only validate the request, but do not actually delete the node
/// pool.
#[prost(bool, tag = "2")]
pub validate_only: bool,
/// If set to true, and the
/// [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool] resource is
/// not found, the request will succeed but no action will be taken on the
/// server and a completed [Operation][google.longrunning.Operation] will be
/// returned.
///
/// Useful for idempotent deletion.
#[prost(bool, tag = "3")]
pub allow_missing: bool,
/// The current ETag of the
/// [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool].
///
/// Allows clients to perform deletions through optimistic concurrency control.
///
/// If the provided ETag does not match the current etag of the node pool,
/// the request will fail and an ABORTED error will be returned.
#[prost(string, tag = "4")]
pub etag: ::prost::alloc::string::String,
/// Optional. If set to true, the deletion of
/// [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool] resource will
/// succeed even if errors occur during deleting in node pool resources. Using
/// this parameter may result in orphaned resources in the node pool.
#[prost(bool, tag = "5")]
pub ignore_errors: bool,
}
/// GetAzureOpenIdConfigRequest gets the OIDC discovery document for the
/// cluster. See the OpenID Connect Discovery 1.0 specification for details.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAzureOpenIdConfigRequest {
/// Required. The AzureCluster, which owns the OIDC discovery document.
/// Format:
/// projects/<project-id>/locations/<region>/azureClusters/<cluster-id>
#[prost(string, tag = "1")]
pub azure_cluster: ::prost::alloc::string::String,
}
/// GetAzureJsonWebKeysRequest gets the public component of the keys used by the
/// cluster to sign token requests. This will be the jwks_uri for the discover
/// document returned by getOpenIDConfig. See the OpenID Connect
/// Discovery 1.0 specification for details.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAzureJsonWebKeysRequest {
/// Required. The AzureCluster, which owns the JsonWebKeys.
/// Format:
/// `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>`
#[prost(string, tag = "1")]
pub azure_cluster: ::prost::alloc::string::String,
}
/// GetAzureServerConfigRequest gets the server config of GKE cluster on Azure.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAzureServerConfigRequest {
/// Required. The name of the
/// [AzureServerConfig][google.cloud.gkemulticloud.v1.AzureServerConfig]
/// resource to describe.
///
/// `AzureServerConfig` names are formatted as
/// `projects/<project-id>/locations/<region>/azureServerConfig`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for `AzureClusters.CreateAzureClient` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateAzureClientRequest {
/// Required. The parent location where this
/// [AzureClient][google.cloud.gkemulticloud.v1.AzureClient] resource will be
/// created.
///
/// Location names are formatted as `projects/<project-id>/locations/<region>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. The specification of the
/// [AzureClient][google.cloud.gkemulticloud.v1.AzureClient] to create.
#[prost(message, optional, tag = "2")]
pub azure_client: ::core::option::Option<AzureClient>,
/// Required. A client provided ID the resource. Must be unique within the
/// parent resource.
///
/// The provided ID will be part of the
/// [AzureClient][google.cloud.gkemulticloud.v1.AzureClient] resource name
/// formatted as
/// `projects/<project-id>/locations/<region>/azureClients/<client-id>`.
///
/// Valid characters are `/[a-z][0-9]-/`. Cannot be longer than 63 characters.
#[prost(string, tag = "4")]
pub azure_client_id: ::prost::alloc::string::String,
/// If set, only validate the request, but do not actually create the client.
#[prost(bool, tag = "3")]
pub validate_only: bool,
}
/// Request message for `AzureClusters.GetAzureClient` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAzureClientRequest {
/// Required. The name of the
/// [AzureClient][google.cloud.gkemulticloud.v1.AzureClient] resource to
/// describe.
///
/// [AzureClient][google.cloud.gkemulticloud.v1.AzureClient] names are
/// formatted as
/// `projects/<project-id>/locations/<region>/azureClients/<client-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for `AzureClusters.ListAzureClients` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAzureClientsRequest {
/// Required. The parent location which owns this collection of
/// [AzureClient][google.cloud.gkemulticloud.v1.AzureClient] resources.
///
/// Location names are formatted as `projects/<project-id>/locations/<region>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The maximum number of items to return.
///
/// If not specified, a default value of 50 will be used by the service.
/// Regardless of the pageSize value, the response can include a partial list
/// and a caller should only rely on response's
/// [nextPageToken][google.cloud.gkemulticloud.v1.ListAzureClientsResponse.next_page_token]
/// to determine if there are more instances left to be queried.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// The `nextPageToken` value returned from a previous
/// [azureClients.list][google.cloud.gkemulticloud.v1.AzureClusters.ListAzureClients]
/// request, if any.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
}
/// Response message for `AzureClusters.ListAzureClients` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAzureClientsResponse {
/// A list of [AzureClient][google.cloud.gkemulticloud.v1.AzureClient]
/// resources in the specified Google Cloud project and region region.
#[prost(message, repeated, tag = "1")]
pub azure_clients: ::prost::alloc::vec::Vec<AzureClient>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results in the list.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// Request message for `AzureClusters.DeleteAzureClient` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteAzureClientRequest {
/// Required. The resource name the
/// [AzureClient][google.cloud.gkemulticloud.v1.AzureClient] to delete.
///
/// [AzureClient][google.cloud.gkemulticloud.v1.AzureClient] names are
/// formatted as
/// `projects/<project-id>/locations/<region>/azureClients/<client-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// If set to true, and the
/// [AzureClient][google.cloud.gkemulticloud.v1.AzureClient] resource is not
/// found, the request will succeed but no action will be taken on the server
/// and a completed [Operation][google.longrunning.Operation] will be returned.
///
/// Useful for idempotent deletion.
#[prost(bool, tag = "2")]
pub allow_missing: bool,
/// If set, only validate the request, but do not actually delete the resource.
#[prost(bool, tag = "3")]
pub validate_only: bool,
}
/// Request message for `AzureClusters.GenerateAzureAccessToken` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateAzureAccessTokenRequest {
/// Required. The name of the
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster] resource to
/// authenticate to.
///
/// `AzureCluster` names are formatted as
/// `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub azure_cluster: ::prost::alloc::string::String,
}
/// Response message for `AzureClusters.GenerateAzureAccessToken` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateAzureAccessTokenResponse {
/// Output only. Access token to authenticate to k8s api-server.
#[prost(string, tag = "1")]
pub access_token: ::prost::alloc::string::String,
/// Output only. Timestamp at which the token will expire.
#[prost(message, optional, tag = "2")]
pub expiration_time: ::core::option::Option<::prost_types::Timestamp>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateAzureClusterAgentTokenRequest {
/// Required.
#[prost(string, tag = "1")]
pub azure_cluster: ::prost::alloc::string::String,
/// Required.
#[prost(string, tag = "2")]
pub subject_token: ::prost::alloc::string::String,
/// Required.
#[prost(string, tag = "3")]
pub subject_token_type: ::prost::alloc::string::String,
/// Required.
#[prost(string, tag = "4")]
pub version: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "5")]
pub node_pool_id: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "6")]
pub grant_type: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "7")]
pub audience: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "8")]
pub scope: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "9")]
pub requested_token_type: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "10")]
pub options: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateAzureClusterAgentTokenResponse {
#[prost(string, tag = "1")]
pub access_token: ::prost::alloc::string::String,
#[prost(int32, tag = "2")]
pub expires_in: i32,
#[prost(string, tag = "3")]
pub token_type: ::prost::alloc::string::String,
}
/// Generated client implementations.
pub mod azure_clusters_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
/// The AzureClusters API provides a single centrally managed service
/// to create and manage Anthos clusters that run on Azure infrastructure.
#[derive(Debug, Clone)]
pub struct AzureClustersClient<T> {
inner: tonic::client::Grpc<T>,
}
impl<T> AzureClustersClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> AzureClustersClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
AzureClustersClient::new(InterceptedService::new(inner, interceptor))
}
/// Compress requests with the given encoding.
///
/// This requires the server to support it otherwise it might respond with an
/// error.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
/// Enable decompressing responses.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
/// Limits the maximum size of a decoded message.
///
/// Default: `4MB`
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
/// Limits the maximum size of an encoded message.
///
/// Default: `usize::MAX`
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
/// Creates a new [AzureClient][google.cloud.gkemulticloud.v1.AzureClient]
/// resource on a given Google Cloud project and region.
///
/// `AzureClient` resources hold client authentication
/// information needed by the Anthos Multicloud API to manage Azure resources
/// on your Azure subscription on your behalf.
///
/// If successful, the response contains a newly created
/// [Operation][google.longrunning.Operation] resource that can be
/// described to track the status of the operation.
pub async fn create_azure_client(
&mut self,
request: impl tonic::IntoRequest<super::CreateAzureClientRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/CreateAzureClient",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"CreateAzureClient",
),
);
self.inner.unary(req, path, codec).await
}
/// Describes a specific
/// [AzureClient][google.cloud.gkemulticloud.v1.AzureClient] resource.
pub async fn get_azure_client(
&mut self,
request: impl tonic::IntoRequest<super::GetAzureClientRequest>,
) -> std::result::Result<tonic::Response<super::AzureClient>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/GetAzureClient",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"GetAzureClient",
),
);
self.inner.unary(req, path, codec).await
}
/// Lists all [AzureClient][google.cloud.gkemulticloud.v1.AzureClient]
/// resources on a given Google Cloud project and region.
pub async fn list_azure_clients(
&mut self,
request: impl tonic::IntoRequest<super::ListAzureClientsRequest>,
) -> std::result::Result<
tonic::Response<super::ListAzureClientsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/ListAzureClients",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"ListAzureClients",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes a specific [AzureClient][google.cloud.gkemulticloud.v1.AzureClient]
/// resource.
///
/// If the client is used by one or more clusters, deletion will
/// fail and a `FAILED_PRECONDITION` error will be returned.
///
/// If successful, the response contains a newly created
/// [Operation][google.longrunning.Operation] resource that can be
/// described to track the status of the operation.
pub async fn delete_azure_client(
&mut self,
request: impl tonic::IntoRequest<super::DeleteAzureClientRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/DeleteAzureClient",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"DeleteAzureClient",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates a new [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster]
/// resource on a given Google Cloud Platform project and region.
///
/// If successful, the response contains a newly created
/// [Operation][google.longrunning.Operation] resource that can be
/// described to track the status of the operation.
pub async fn create_azure_cluster(
&mut self,
request: impl tonic::IntoRequest<super::CreateAzureClusterRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/CreateAzureCluster",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"CreateAzureCluster",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates an [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster].
pub async fn update_azure_cluster(
&mut self,
request: impl tonic::IntoRequest<super::UpdateAzureClusterRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/UpdateAzureCluster",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"UpdateAzureCluster",
),
);
self.inner.unary(req, path, codec).await
}
/// Describes a specific
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster] resource.
pub async fn get_azure_cluster(
&mut self,
request: impl tonic::IntoRequest<super::GetAzureClusterRequest>,
) -> std::result::Result<tonic::Response<super::AzureCluster>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/GetAzureCluster",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"GetAzureCluster",
),
);
self.inner.unary(req, path, codec).await
}
/// Lists all [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster]
/// resources on a given Google Cloud project and region.
pub async fn list_azure_clusters(
&mut self,
request: impl tonic::IntoRequest<super::ListAzureClustersRequest>,
) -> std::result::Result<
tonic::Response<super::ListAzureClustersResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/ListAzureClusters",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"ListAzureClusters",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes a specific
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster] resource.
///
/// Fails if the cluster has one or more associated
/// [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool] resources.
///
/// If successful, the response contains a newly created
/// [Operation][google.longrunning.Operation] resource that can be
/// described to track the status of the operation.
pub async fn delete_azure_cluster(
&mut self,
request: impl tonic::IntoRequest<super::DeleteAzureClusterRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/DeleteAzureCluster",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"DeleteAzureCluster",
),
);
self.inner.unary(req, path, codec).await
}
/// Generates an access token for a cluster agent.
pub async fn generate_azure_cluster_agent_token(
&mut self,
request: impl tonic::IntoRequest<
super::GenerateAzureClusterAgentTokenRequest,
>,
) -> std::result::Result<
tonic::Response<super::GenerateAzureClusterAgentTokenResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/GenerateAzureClusterAgentToken",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"GenerateAzureClusterAgentToken",
),
);
self.inner.unary(req, path, codec).await
}
/// Generates a short-lived access token to authenticate to a given
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster] resource.
pub async fn generate_azure_access_token(
&mut self,
request: impl tonic::IntoRequest<super::GenerateAzureAccessTokenRequest>,
) -> std::result::Result<
tonic::Response<super::GenerateAzureAccessTokenResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/GenerateAzureAccessToken",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"GenerateAzureAccessToken",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates a new [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool],
/// attached to a given
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster].
///
/// If successful, the response contains a newly created
/// [Operation][google.longrunning.Operation] resource that can be
/// described to track the status of the operation.
pub async fn create_azure_node_pool(
&mut self,
request: impl tonic::IntoRequest<super::CreateAzureNodePoolRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/CreateAzureNodePool",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"CreateAzureNodePool",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates an [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool].
pub async fn update_azure_node_pool(
&mut self,
request: impl tonic::IntoRequest<super::UpdateAzureNodePoolRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/UpdateAzureNodePool",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"UpdateAzureNodePool",
),
);
self.inner.unary(req, path, codec).await
}
/// Describes a specific
/// [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool] resource.
pub async fn get_azure_node_pool(
&mut self,
request: impl tonic::IntoRequest<super::GetAzureNodePoolRequest>,
) -> std::result::Result<tonic::Response<super::AzureNodePool>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/GetAzureNodePool",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"GetAzureNodePool",
),
);
self.inner.unary(req, path, codec).await
}
/// Lists all [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool]
/// resources on a given
/// [AzureCluster][google.cloud.gkemulticloud.v1.AzureCluster].
pub async fn list_azure_node_pools(
&mut self,
request: impl tonic::IntoRequest<super::ListAzureNodePoolsRequest>,
) -> std::result::Result<
tonic::Response<super::ListAzureNodePoolsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/ListAzureNodePools",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"ListAzureNodePools",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes a specific
/// [AzureNodePool][google.cloud.gkemulticloud.v1.AzureNodePool] resource.
///
/// If successful, the response contains a newly created
/// [Operation][google.longrunning.Operation] resource that can be
/// described to track the status of the operation.
pub async fn delete_azure_node_pool(
&mut self,
request: impl tonic::IntoRequest<super::DeleteAzureNodePoolRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/DeleteAzureNodePool",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"DeleteAzureNodePool",
),
);
self.inner.unary(req, path, codec).await
}
/// Gets the OIDC discovery document for the cluster.
/// See the
/// [OpenID Connect Discovery 1.0
/// specification](https://openid.net/specs/openid-connect-discovery-1_0.html)
/// for details.
pub async fn get_azure_open_id_config(
&mut self,
request: impl tonic::IntoRequest<super::GetAzureOpenIdConfigRequest>,
) -> std::result::Result<
tonic::Response<super::AzureOpenIdConfig>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/GetAzureOpenIdConfig",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"GetAzureOpenIdConfig",
),
);
self.inner.unary(req, path, codec).await
}
/// Gets the public component of the cluster signing keys in
/// JSON Web Key format.
pub async fn get_azure_json_web_keys(
&mut self,
request: impl tonic::IntoRequest<super::GetAzureJsonWebKeysRequest>,
) -> std::result::Result<
tonic::Response<super::AzureJsonWebKeys>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/GetAzureJsonWebKeys",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"GetAzureJsonWebKeys",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns information, such as supported Azure regions and Kubernetes
/// versions, on a given Google Cloud location.
pub async fn get_azure_server_config(
&mut self,
request: impl tonic::IntoRequest<super::GetAzureServerConfigRequest>,
) -> std::result::Result<
tonic::Response<super::AzureServerConfig>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AzureClusters/GetAzureServerConfig",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AzureClusters",
"GetAzureServerConfig",
),
);
self.inner.unary(req, path, codec).await
}
}
}
/// Request message for `AttachedClusters.GenerateAttachedClusterInstallManifest`
/// method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateAttachedClusterInstallManifestRequest {
/// Required. The parent location where this
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resource
/// will be created.
///
/// Location names are formatted as `projects/<project-id>/locations/<region>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. A client provided ID of the resource. Must be unique within the
/// parent resource.
///
/// The provided ID will be part of the
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resource
/// name formatted as
/// `projects/<project-id>/locations/<region>/attachedClusters/<cluster-id>`.
///
/// Valid characters are `/[a-z][0-9]-/`. Cannot be longer than 63 characters.
///
/// When generating an install manifest for importing an existing Membership
/// resource, the attached_cluster_id field must be the Membership id.
///
/// Membership names are formatted as
/// `projects/<project-id>/locations/<region>/memberships/<membership-id>`.
#[prost(string, tag = "2")]
pub attached_cluster_id: ::prost::alloc::string::String,
/// Required. The platform version for the cluster (e.g. `1.19.0-gke.1000`).
///
/// You can list all supported versions on a given Google Cloud region by
/// calling
/// [GetAttachedServerConfig][google.cloud.gkemulticloud.v1.AttachedClusters.GetAttachedServerConfig].
#[prost(string, tag = "3")]
pub platform_version: ::prost::alloc::string::String,
/// Optional. Proxy configuration for outbound HTTP(S) traffic.
#[prost(message, optional, tag = "4")]
pub proxy_config: ::core::option::Option<AttachedProxyConfig>,
}
/// Response message for
/// `AttachedClusters.GenerateAttachedClusterInstallManifest` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateAttachedClusterInstallManifestResponse {
/// A set of Kubernetes resources (in YAML format) to be applied
/// to the cluster to be attached.
#[prost(string, tag = "1")]
pub manifest: ::prost::alloc::string::String,
}
/// Request message for `AttachedClusters.CreateAttachedCluster` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateAttachedClusterRequest {
/// Required. The parent location where this
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resource
/// will be created.
///
/// Location names are formatted as `projects/<project-id>/locations/<region>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. The specification of the
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] to create.
#[prost(message, optional, tag = "2")]
pub attached_cluster: ::core::option::Option<AttachedCluster>,
/// Required. A client provided ID the resource. Must be unique within the
/// parent resource.
///
/// The provided ID will be part of the
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resource
/// name formatted as
/// `projects/<project-id>/locations/<region>/attachedClusters/<cluster-id>`.
///
/// Valid characters are `/[a-z][0-9]-/`. Cannot be longer than 63 characters.
#[prost(string, tag = "3")]
pub attached_cluster_id: ::prost::alloc::string::String,
/// If set, only validate the request, but do not actually create the cluster.
#[prost(bool, tag = "4")]
pub validate_only: bool,
}
/// Request message for `AttachedClusters.ImportAttachedCluster` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ImportAttachedClusterRequest {
/// Required. The parent location where this
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resource
/// will be created.
///
/// Location names are formatted as `projects/<project-id>/locations/<region>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// If set, only validate the request, but do not actually import the cluster.
#[prost(bool, tag = "2")]
pub validate_only: bool,
/// Required. The name of the fleet membership resource to import.
#[prost(string, tag = "3")]
pub fleet_membership: ::prost::alloc::string::String,
/// Required. The platform version for the cluster (e.g. `1.19.0-gke.1000`).
///
/// You can list all supported versions on a given Google Cloud region by
/// calling
/// [GetAttachedServerConfig][google.cloud.gkemulticloud.v1.AttachedClusters.GetAttachedServerConfig].
#[prost(string, tag = "4")]
pub platform_version: ::prost::alloc::string::String,
/// Required. The Kubernetes distribution of the underlying attached cluster.
///
/// Supported values: \["eks", "aks"\].
#[prost(string, tag = "5")]
pub distribution: ::prost::alloc::string::String,
/// Optional. Proxy configuration for outbound HTTP(S) traffic.
#[prost(message, optional, tag = "6")]
pub proxy_config: ::core::option::Option<AttachedProxyConfig>,
}
/// Request message for `AttachedClusters.UpdateAttachedCluster` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateAttachedClusterRequest {
/// Required. The
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resource
/// to update.
#[prost(message, optional, tag = "1")]
pub attached_cluster: ::core::option::Option<AttachedCluster>,
/// If set, only validate the request, but do not actually update the cluster.
#[prost(bool, tag = "2")]
pub validate_only: bool,
/// Required. Mask of fields to update. At least one path must be supplied in
/// this field. The elements of the repeated paths field can only include these
/// fields from
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster]:
///
/// * `annotations`.
/// * `authorization.admin_groups`.
/// * `authorization.admin_users`.
/// * `binary_authorization.evaluation_mode`.
/// * `description`.
/// * `logging_config.component_config.enable_components`.
/// * `monitoring_config.managed_prometheus_config.enabled`.
/// * `platform_version`.
/// * `proxy_config.kubernetes_secret.name`.
/// * `proxy_config.kubernetes_secret.namespace`.
#[prost(message, optional, tag = "3")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Request message for `AttachedClusters.GetAttachedCluster` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAttachedClusterRequest {
/// Required. The name of the
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resource
/// to describe.
///
/// `AttachedCluster` names are formatted as
/// `projects/<project-id>/locations/<region>/attachedClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for `AttachedClusters.ListAttachedClusters` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAttachedClustersRequest {
/// Required. The parent location which owns this collection of
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resources.
///
/// Location names are formatted as `projects/<project-id>/locations/<region>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The maximum number of items to return.
///
/// If not specified, a default value of 50 will be used by the service.
/// Regardless of the pageSize value, the response can include a partial list
/// and a caller should only rely on response's
/// [nextPageToken][google.cloud.gkemulticloud.v1.ListAttachedClustersResponse.next_page_token]
/// to determine if there are more instances left to be queried.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// The `nextPageToken` value returned from a previous
/// [attachedClusters.list][google.cloud.gkemulticloud.v1.AttachedClusters.ListAttachedClusters]
/// request, if any.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
}
/// Response message for `AttachedClusters.ListAttachedClusters` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAttachedClustersResponse {
/// A list of [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster]
/// resources in the specified Google Cloud Platform project and region region.
#[prost(message, repeated, tag = "1")]
pub attached_clusters: ::prost::alloc::vec::Vec<AttachedCluster>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results in the list.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// Request message for `AttachedClusters.DeleteAttachedCluster` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteAttachedClusterRequest {
/// Required. The resource name the
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] to delete.
///
/// `AttachedCluster` names are formatted as
/// `projects/<project-id>/locations/<region>/attachedClusters/<cluster-id>`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud Platform resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// If set, only validate the request, but do not actually delete the resource.
#[prost(bool, tag = "2")]
pub validate_only: bool,
/// If set to true, and the
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resource
/// is not found, the request will succeed but no action will be taken on the
/// server and a completed [Operation][google.longrunning.Operation] will be
/// returned.
///
/// Useful for idempotent deletion.
#[prost(bool, tag = "3")]
pub allow_missing: bool,
/// If set to true, the deletion of
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resource
/// will succeed even if errors occur during deleting in cluster resources.
/// Using this parameter may result in orphaned resources in the cluster.
#[prost(bool, tag = "5")]
pub ignore_errors: bool,
/// The current etag of the
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster].
///
/// Allows clients to perform deletions through optimistic concurrency control.
///
/// If the provided etag does not match the current etag of the cluster,
/// the request will fail and an ABORTED error will be returned.
#[prost(string, tag = "4")]
pub etag: ::prost::alloc::string::String,
}
/// GetAttachedServerConfigRequest gets the server config for attached
/// clusters.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAttachedServerConfigRequest {
/// Required. The name of the
/// [AttachedServerConfig][google.cloud.gkemulticloud.v1.AttachedServerConfig]
/// resource to describe.
///
/// `AttachedServerConfig` names are formatted as
/// `projects/<project-id>/locations/<region>/attachedServerConfig`.
///
/// See [Resource Names](<https://cloud.google.com/apis/design/resource_names>)
/// for more details on Google Cloud resource names.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateAttachedClusterAgentTokenRequest {
/// Required.
#[prost(string, tag = "1")]
pub attached_cluster: ::prost::alloc::string::String,
/// Required.
#[prost(string, tag = "2")]
pub subject_token: ::prost::alloc::string::String,
/// Required.
#[prost(string, tag = "3")]
pub subject_token_type: ::prost::alloc::string::String,
/// Required.
#[prost(string, tag = "4")]
pub version: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "6")]
pub grant_type: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "7")]
pub audience: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "8")]
pub scope: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "9")]
pub requested_token_type: ::prost::alloc::string::String,
/// Optional.
#[prost(string, tag = "10")]
pub options: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateAttachedClusterAgentTokenResponse {
#[prost(string, tag = "1")]
pub access_token: ::prost::alloc::string::String,
#[prost(int32, tag = "2")]
pub expires_in: i32,
#[prost(string, tag = "3")]
pub token_type: ::prost::alloc::string::String,
}
/// Generated client implementations.
pub mod attached_clusters_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
/// The AttachedClusters API provides a single centrally managed service
/// to register and manage Anthos attached clusters that run on customer's owned
/// infrastructure.
#[derive(Debug, Clone)]
pub struct AttachedClustersClient<T> {
inner: tonic::client::Grpc<T>,
}
impl<T> AttachedClustersClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> AttachedClustersClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
AttachedClustersClient::new(InterceptedService::new(inner, interceptor))
}
/// Compress requests with the given encoding.
///
/// This requires the server to support it otherwise it might respond with an
/// error.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
/// Enable decompressing responses.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
/// Limits the maximum size of a decoded message.
///
/// Default: `4MB`
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
/// Limits the maximum size of an encoded message.
///
/// Default: `usize::MAX`
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
/// Creates a new
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resource
/// on a given Google Cloud Platform project and region.
///
/// If successful, the response contains a newly created
/// [Operation][google.longrunning.Operation] resource that can be
/// described to track the status of the operation.
pub async fn create_attached_cluster(
&mut self,
request: impl tonic::IntoRequest<super::CreateAttachedClusterRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AttachedClusters/CreateAttachedCluster",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AttachedClusters",
"CreateAttachedCluster",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates an
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster].
pub async fn update_attached_cluster(
&mut self,
request: impl tonic::IntoRequest<super::UpdateAttachedClusterRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AttachedClusters/UpdateAttachedCluster",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AttachedClusters",
"UpdateAttachedCluster",
),
);
self.inner.unary(req, path, codec).await
}
/// Imports creates a new
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resource
/// by importing an existing Fleet Membership resource.
///
/// Attached Clusters created before the introduction of the Anthos Multi-Cloud
/// API can be imported through this method.
///
/// If successful, the response contains a newly created
/// [Operation][google.longrunning.Operation] resource that can be
/// described to track the status of the operation.
pub async fn import_attached_cluster(
&mut self,
request: impl tonic::IntoRequest<super::ImportAttachedClusterRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AttachedClusters/ImportAttachedCluster",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AttachedClusters",
"ImportAttachedCluster",
),
);
self.inner.unary(req, path, codec).await
}
/// Describes a specific
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resource.
pub async fn get_attached_cluster(
&mut self,
request: impl tonic::IntoRequest<super::GetAttachedClusterRequest>,
) -> std::result::Result<
tonic::Response<super::AttachedCluster>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AttachedClusters/GetAttachedCluster",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AttachedClusters",
"GetAttachedCluster",
),
);
self.inner.unary(req, path, codec).await
}
/// Lists all [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster]
/// resources on a given Google Cloud project and region.
pub async fn list_attached_clusters(
&mut self,
request: impl tonic::IntoRequest<super::ListAttachedClustersRequest>,
) -> std::result::Result<
tonic::Response<super::ListAttachedClustersResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AttachedClusters/ListAttachedClusters",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AttachedClusters",
"ListAttachedClusters",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes a specific
/// [AttachedCluster][google.cloud.gkemulticloud.v1.AttachedCluster] resource.
///
/// If successful, the response contains a newly created
/// [Operation][google.longrunning.Operation] resource that can be
/// described to track the status of the operation.
pub async fn delete_attached_cluster(
&mut self,
request: impl tonic::IntoRequest<super::DeleteAttachedClusterRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AttachedClusters/DeleteAttachedCluster",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AttachedClusters",
"DeleteAttachedCluster",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns information, such as supported Kubernetes versions, on a given
/// Google Cloud location.
pub async fn get_attached_server_config(
&mut self,
request: impl tonic::IntoRequest<super::GetAttachedServerConfigRequest>,
) -> std::result::Result<
tonic::Response<super::AttachedServerConfig>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AttachedClusters/GetAttachedServerConfig",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AttachedClusters",
"GetAttachedServerConfig",
),
);
self.inner.unary(req, path, codec).await
}
/// Generates the install manifest to be installed on the target cluster.
pub async fn generate_attached_cluster_install_manifest(
&mut self,
request: impl tonic::IntoRequest<
super::GenerateAttachedClusterInstallManifestRequest,
>,
) -> std::result::Result<
tonic::Response<super::GenerateAttachedClusterInstallManifestResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AttachedClusters/GenerateAttachedClusterInstallManifest",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AttachedClusters",
"GenerateAttachedClusterInstallManifest",
),
);
self.inner.unary(req, path, codec).await
}
/// Generates an access token for a cluster agent.
pub async fn generate_attached_cluster_agent_token(
&mut self,
request: impl tonic::IntoRequest<
super::GenerateAttachedClusterAgentTokenRequest,
>,
) -> std::result::Result<
tonic::Response<super::GenerateAttachedClusterAgentTokenResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkemulticloud.v1.AttachedClusters/GenerateAttachedClusterAgentToken",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkemulticloud.v1.AttachedClusters",
"GenerateAttachedClusterAgentToken",
),
);
self.inner.unary(req, path, codec).await
}
}
}