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
|
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'date'
require 'google/apis/core/base_service'
require 'google/apis/core/json_representation'
require 'google/apis/core/hashable'
require 'google/apis/errors'
module Google
module Apis
module SqladminV1beta4
# An entry for an Access Control list.
class AclEntry
include Google::Apis::Core::Hashable
# The time when this access control entry expires in [RFC 3339](https://tools.
# ietf.org/html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`.
# Corresponds to the JSON property `expirationTime`
# @return [String]
attr_accessor :expiration_time
# This is always `sql#aclEntry`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Optional. A label to identify this entry.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# The allowlisted value for the access control list.
# Corresponds to the JSON property `value`
# @return [String]
attr_accessor :value
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@expiration_time = args[:expiration_time] if args.key?(:expiration_time)
@kind = args[:kind] if args.key?(:kind)
@name = args[:name] if args.key?(:name)
@value = args[:value] if args.key?(:value)
end
end
# An Admin API warning message.
class ApiWarning
include Google::Apis::Core::Hashable
# Code to uniquely identify the warning type.
# Corresponds to the JSON property `code`
# @return [String]
attr_accessor :code
# The warning message.
# Corresponds to the JSON property `message`
# @return [String]
attr_accessor :message
# The region name for REGION_UNREACHABLE warning.
# Corresponds to the JSON property `region`
# @return [String]
attr_accessor :region
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@code = args[:code] if args.key?(:code)
@message = args[:message] if args.key?(:message)
@region = args[:region] if args.key?(:region)
end
end
# Database instance backup configuration.
class BackupConfiguration
include Google::Apis::Core::Hashable
# We currently only support backup retention by specifying the number of backups
# we will retain.
# Corresponds to the JSON property `backupRetentionSettings`
# @return [Google::Apis::SqladminV1beta4::BackupRetentionSettings]
attr_accessor :backup_retention_settings
# (MySQL only) Whether binary log is enabled. If backup configuration is
# disabled, binarylog must be disabled as well.
# Corresponds to the JSON property `binaryLogEnabled`
# @return [Boolean]
attr_accessor :binary_log_enabled
alias_method :binary_log_enabled?, :binary_log_enabled
# Whether this configuration is enabled.
# Corresponds to the JSON property `enabled`
# @return [Boolean]
attr_accessor :enabled
alias_method :enabled?, :enabled
# This is always `sql#backupConfiguration`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Location of the backup
# Corresponds to the JSON property `location`
# @return [String]
attr_accessor :location
# (Postgres only) Whether point in time recovery is enabled.
# Corresponds to the JSON property `pointInTimeRecoveryEnabled`
# @return [Boolean]
attr_accessor :point_in_time_recovery_enabled
alias_method :point_in_time_recovery_enabled?, :point_in_time_recovery_enabled
# Reserved for future use.
# Corresponds to the JSON property `replicationLogArchivingEnabled`
# @return [Boolean]
attr_accessor :replication_log_archiving_enabled
alias_method :replication_log_archiving_enabled?, :replication_log_archiving_enabled
# Start time for the daily backup configuration in UTC timezone in the 24 hour
# format - `HH:MM`.
# Corresponds to the JSON property `startTime`
# @return [String]
attr_accessor :start_time
# The number of days of transaction logs we retain for point in time restore,
# from 1-7.
# Corresponds to the JSON property `transactionLogRetentionDays`
# @return [Fixnum]
attr_accessor :transaction_log_retention_days
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@backup_retention_settings = args[:backup_retention_settings] if args.key?(:backup_retention_settings)
@binary_log_enabled = args[:binary_log_enabled] if args.key?(:binary_log_enabled)
@enabled = args[:enabled] if args.key?(:enabled)
@kind = args[:kind] if args.key?(:kind)
@location = args[:location] if args.key?(:location)
@point_in_time_recovery_enabled = args[:point_in_time_recovery_enabled] if args.key?(:point_in_time_recovery_enabled)
@replication_log_archiving_enabled = args[:replication_log_archiving_enabled] if args.key?(:replication_log_archiving_enabled)
@start_time = args[:start_time] if args.key?(:start_time)
@transaction_log_retention_days = args[:transaction_log_retention_days] if args.key?(:transaction_log_retention_days)
end
end
# Backup context.
class BackupContext
include Google::Apis::Core::Hashable
# The identifier of the backup.
# Corresponds to the JSON property `backupId`
# @return [Fixnum]
attr_accessor :backup_id
# This is always `sql#backupContext`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@backup_id = args[:backup_id] if args.key?(:backup_id)
@kind = args[:kind] if args.key?(:kind)
end
end
# We currently only support backup retention by specifying the number of backups
# we will retain.
class BackupRetentionSettings
include Google::Apis::Core::Hashable
# Depending on the value of retention_unit, this is used to determine if a
# backup needs to be deleted. If retention_unit is 'COUNT', we will retain this
# many backups.
# Corresponds to the JSON property `retainedBackups`
# @return [Fixnum]
attr_accessor :retained_backups
# The unit that 'retained_backups' represents.
# Corresponds to the JSON property `retentionUnit`
# @return [String]
attr_accessor :retention_unit
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@retained_backups = args[:retained_backups] if args.key?(:retained_backups)
@retention_unit = args[:retention_unit] if args.key?(:retention_unit)
end
end
# A BackupRun resource.
class BackupRun
include Google::Apis::Core::Hashable
# Specifies the kind of backup, PHYSICAL or DEFAULT_SNAPSHOT.
# Corresponds to the JSON property `backupKind`
# @return [String]
attr_accessor :backup_kind
# The description of this run, only applicable to on-demand backups.
# Corresponds to the JSON property `description`
# @return [String]
attr_accessor :description
# Disk encryption configuration for an instance.
# Corresponds to the JSON property `diskEncryptionConfiguration`
# @return [Google::Apis::SqladminV1beta4::DiskEncryptionConfiguration]
attr_accessor :disk_encryption_configuration
# Disk encryption status for an instance.
# Corresponds to the JSON property `diskEncryptionStatus`
# @return [Google::Apis::SqladminV1beta4::DiskEncryptionStatus]
attr_accessor :disk_encryption_status
# The time the backup operation completed in UTC timezone in [RFC 3339](https://
# tools.ietf.org/html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`.
# Corresponds to the JSON property `endTime`
# @return [String]
attr_accessor :end_time
# The time the run was enqueued in UTC timezone in [RFC 3339](https://tools.ietf.
# org/html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`.
# Corresponds to the JSON property `enqueuedTime`
# @return [String]
attr_accessor :enqueued_time
# Database instance operation error.
# Corresponds to the JSON property `error`
# @return [Google::Apis::SqladminV1beta4::OperationError]
attr_accessor :error
# The identifier for this backup run. Unique only for a specific Cloud SQL
# instance.
# Corresponds to the JSON property `id`
# @return [Fixnum]
attr_accessor :id
# Name of the database instance.
# Corresponds to the JSON property `instance`
# @return [String]
attr_accessor :instance
# This is always `sql#backupRun`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Location of the backups.
# Corresponds to the JSON property `location`
# @return [String]
attr_accessor :location
# The URI of this resource.
# Corresponds to the JSON property `selfLink`
# @return [String]
attr_accessor :self_link
# The time the backup operation actually started in UTC timezone in [RFC 3339](
# https://tools.ietf.org/html/rfc3339) format, for example `2012-11-15T16:19:00.
# 094Z`.
# Corresponds to the JSON property `startTime`
# @return [String]
attr_accessor :start_time
# The status of this run.
# Corresponds to the JSON property `status`
# @return [String]
attr_accessor :status
# Backup time zone to prevent restores to an instance with a different time zone.
# Now relevant only for SQL Server.
# Corresponds to the JSON property `timeZone`
# @return [String]
attr_accessor :time_zone
# The type of this run; can be either "AUTOMATED" or "ON_DEMAND" or "FINAL".
# This field defaults to "ON_DEMAND" and is ignored, when specified for insert
# requests.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
# The start time of the backup window during which this the backup was attempted
# in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example `2012-
# 11-15T16:19:00.094Z`.
# Corresponds to the JSON property `windowStartTime`
# @return [String]
attr_accessor :window_start_time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@backup_kind = args[:backup_kind] if args.key?(:backup_kind)
@description = args[:description] if args.key?(:description)
@disk_encryption_configuration = args[:disk_encryption_configuration] if args.key?(:disk_encryption_configuration)
@disk_encryption_status = args[:disk_encryption_status] if args.key?(:disk_encryption_status)
@end_time = args[:end_time] if args.key?(:end_time)
@enqueued_time = args[:enqueued_time] if args.key?(:enqueued_time)
@error = args[:error] if args.key?(:error)
@id = args[:id] if args.key?(:id)
@instance = args[:instance] if args.key?(:instance)
@kind = args[:kind] if args.key?(:kind)
@location = args[:location] if args.key?(:location)
@self_link = args[:self_link] if args.key?(:self_link)
@start_time = args[:start_time] if args.key?(:start_time)
@status = args[:status] if args.key?(:status)
@time_zone = args[:time_zone] if args.key?(:time_zone)
@type = args[:type] if args.key?(:type)
@window_start_time = args[:window_start_time] if args.key?(:window_start_time)
end
end
# Backup run list results.
class ListBackupRunsResponse
include Google::Apis::Core::Hashable
# A list of backup runs in reverse chronological order of the enqueued time.
# Corresponds to the JSON property `items`
# @return [Array<Google::Apis::SqladminV1beta4::BackupRun>]
attr_accessor :items
# This is always `sql#backupRunsList`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The continuation token, used to page through large result sets. Provide this
# value in a subsequent request to return the next page of results.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@items = args[:items] if args.key?(:items)
@kind = args[:kind] if args.key?(:kind)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end
end
# Binary log coordinates.
class BinLogCoordinates
include Google::Apis::Core::Hashable
# Name of the binary log file for a Cloud SQL instance.
# Corresponds to the JSON property `binLogFileName`
# @return [String]
attr_accessor :bin_log_file_name
# Position (offset) within the binary log file.
# Corresponds to the JSON property `binLogPosition`
# @return [Fixnum]
attr_accessor :bin_log_position
# This is always `sql#binLogCoordinates`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bin_log_file_name = args[:bin_log_file_name] if args.key?(:bin_log_file_name)
@bin_log_position = args[:bin_log_position] if args.key?(:bin_log_position)
@kind = args[:kind] if args.key?(:kind)
end
end
# Database instance clone context.
class CloneContext
include Google::Apis::Core::Hashable
# The name of the allocated ip range for the private ip Cloud SQL instance. For
# example: "google-managed-services-default". If set, the cloned instance ip
# will be created in the allocated range. The range name must comply with [RFC
# 1035](https://tools.ietf.org/html/rfc1035). Specifically, the name must be 1-
# 63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])?.
# Reserved for future use.
# Corresponds to the JSON property `allocatedIpRange`
# @return [String]
attr_accessor :allocated_ip_range
# Binary log coordinates.
# Corresponds to the JSON property `binLogCoordinates`
# @return [Google::Apis::SqladminV1beta4::BinLogCoordinates]
attr_accessor :bin_log_coordinates
# (SQL Server only) Clone only the specified databases from the source instance.
# Clone all databases if empty.
# Corresponds to the JSON property `databaseNames`
# @return [Array<String>]
attr_accessor :database_names
# Name of the Cloud SQL instance to be created as a clone.
# Corresponds to the JSON property `destinationInstanceName`
# @return [String]
attr_accessor :destination_instance_name
# This is always `sql#cloneContext`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Reserved for future use.
# Corresponds to the JSON property `pitrTimestampMs`
# @return [Fixnum]
attr_accessor :pitr_timestamp_ms
# Timestamp, if specified, identifies the time to which the source instance is
# cloned.
# Corresponds to the JSON property `pointInTime`
# @return [String]
attr_accessor :point_in_time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@allocated_ip_range = args[:allocated_ip_range] if args.key?(:allocated_ip_range)
@bin_log_coordinates = args[:bin_log_coordinates] if args.key?(:bin_log_coordinates)
@database_names = args[:database_names] if args.key?(:database_names)
@destination_instance_name = args[:destination_instance_name] if args.key?(:destination_instance_name)
@kind = args[:kind] if args.key?(:kind)
@pitr_timestamp_ms = args[:pitr_timestamp_ms] if args.key?(:pitr_timestamp_ms)
@point_in_time = args[:point_in_time] if args.key?(:point_in_time)
end
end
# Connect settings retrieval response.
class ConnectSettings
include Google::Apis::Core::Hashable
# `SECOND_GEN`: Cloud SQL database instance. `EXTERNAL`: A database server that
# is not managed by Google. This property is read-only; use the `tier` property
# in the `settings` object to determine the database type.
# Corresponds to the JSON property `backendType`
# @return [String]
attr_accessor :backend_type
# The database engine type and version. The `databaseVersion` field cannot be
# changed after instance creation. MySQL instances: `MYSQL_8_0`, `MYSQL_5_7` (
# default), or `MYSQL_5_6`. PostgreSQL instances: `POSTGRES_9_6`, `POSTGRES_10`,
# `POSTGRES_11` or `POSTGRES_12` (default), `POSTGRES_13`, or `POSTGRES_14`. SQL
# Server instances: `SQLSERVER_2017_STANDARD` (default), `
# SQLSERVER_2017_ENTERPRISE`, `SQLSERVER_2017_EXPRESS`, `SQLSERVER_2017_WEB`, `
# SQLSERVER_2019_STANDARD`, `SQLSERVER_2019_ENTERPRISE`, `SQLSERVER_2019_EXPRESS`
# , or `SQLSERVER_2019_WEB`.
# Corresponds to the JSON property `databaseVersion`
# @return [String]
attr_accessor :database_version
# The assigned IP addresses for the instance.
# Corresponds to the JSON property `ipAddresses`
# @return [Array<Google::Apis::SqladminV1beta4::IpMapping>]
attr_accessor :ip_addresses
# This is always `sql#connectSettings`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The cloud region for the instance. e.g. `us-central1`, `europe-west1`. The
# region cannot be changed after instance creation.
# Corresponds to the JSON property `region`
# @return [String]
attr_accessor :region
# SslCerts Resource
# Corresponds to the JSON property `serverCaCert`
# @return [Google::Apis::SqladminV1beta4::SslCert]
attr_accessor :server_ca_cert
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@backend_type = args[:backend_type] if args.key?(:backend_type)
@database_version = args[:database_version] if args.key?(:database_version)
@ip_addresses = args[:ip_addresses] if args.key?(:ip_addresses)
@kind = args[:kind] if args.key?(:kind)
@region = args[:region] if args.key?(:region)
@server_ca_cert = args[:server_ca_cert] if args.key?(:server_ca_cert)
end
end
# Represents a SQL database on the Cloud SQL instance.
class Database
include Google::Apis::Core::Hashable
# The Cloud SQL charset value.
# Corresponds to the JSON property `charset`
# @return [String]
attr_accessor :charset
# The Cloud SQL collation value.
# Corresponds to the JSON property `collation`
# @return [String]
attr_accessor :collation
# This field is deprecated and will be removed from a future version of the API.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
# The name of the Cloud SQL instance. This does not include the project ID.
# Corresponds to the JSON property `instance`
# @return [String]
attr_accessor :instance
# This is always `sql#database`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The name of the database in the Cloud SQL instance. This does not include the
# project ID or instance name.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# The project ID of the project containing the Cloud SQL database. The Google
# apps domain is prefixed if applicable.
# Corresponds to the JSON property `project`
# @return [String]
attr_accessor :project
# The URI of this resource.
# Corresponds to the JSON property `selfLink`
# @return [String]
attr_accessor :self_link
# Represents a Sql Server database on the Cloud SQL instance.
# Corresponds to the JSON property `sqlserverDatabaseDetails`
# @return [Google::Apis::SqladminV1beta4::SqlServerDatabaseDetails]
attr_accessor :sqlserver_database_details
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@charset = args[:charset] if args.key?(:charset)
@collation = args[:collation] if args.key?(:collation)
@etag = args[:etag] if args.key?(:etag)
@instance = args[:instance] if args.key?(:instance)
@kind = args[:kind] if args.key?(:kind)
@name = args[:name] if args.key?(:name)
@project = args[:project] if args.key?(:project)
@self_link = args[:self_link] if args.key?(:self_link)
@sqlserver_database_details = args[:sqlserver_database_details] if args.key?(:sqlserver_database_details)
end
end
# Database flags for Cloud SQL instances.
class DatabaseFlags
include Google::Apis::Core::Hashable
# The name of the flag. These flags are passed at instance startup, so include
# both server options and system variables. Flags are specified with underscores,
# not hyphens. For more information, see [Configuring Database Flags](https://
# cloud.google.com/sql/docs/mysql/flags) in the Cloud SQL documentation.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# The value of the flag. Boolean flags are set to `on` for true and `off` for
# false. This field must be omitted if the flag doesn't take a value.
# Corresponds to the JSON property `value`
# @return [String]
attr_accessor :value
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@name = args[:name] if args.key?(:name)
@value = args[:value] if args.key?(:value)
end
end
# A Cloud SQL instance resource.
class DatabaseInstance
include Google::Apis::Core::Hashable
# List all maintenance versions applicable on the instance
# Corresponds to the JSON property `availableMaintenanceVersions`
# @return [Array<String>]
attr_accessor :available_maintenance_versions
# The backend type. `SECOND_GEN`: Cloud SQL database instance. `EXTERNAL`: A
# database server that is not managed by Google. This property is read-only; use
# the `tier` property in the `settings` object to determine the database type.
# Corresponds to the JSON property `backendType`
# @return [String]
attr_accessor :backend_type
# Connection name of the Cloud SQL instance used in connection strings.
# Corresponds to the JSON property `connectionName`
# @return [String]
attr_accessor :connection_name
# Output only. The time when the instance was created in [RFC 3339](https://
# tools.ietf.org/html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`.
# Corresponds to the JSON property `createTime`
# @return [String]
attr_accessor :create_time
# The current disk usage of the instance in bytes. This property has been
# deprecated. Use the "cloudsql.googleapis.com/database/disk/bytes_used" metric
# in Cloud Monitoring API instead. Please see [this announcement](https://groups.
# google.com/d/msg/google-cloud-sql-announce/I_7-F9EBhT0/BtvFtdFeAgAJ) for
# details.
# Corresponds to the JSON property `currentDiskSize`
# @return [Fixnum]
attr_accessor :current_disk_size
# Output only. Stores the current database version running on the instance
# including minor version such as `MYSQL_8_0_18`.
# Corresponds to the JSON property `databaseInstalledVersion`
# @return [String]
attr_accessor :database_installed_version
# The database engine type and version. The `databaseVersion` field cannot be
# changed after instance creation.
# Corresponds to the JSON property `databaseVersion`
# @return [String]
attr_accessor :database_version
# Disk encryption configuration for an instance.
# Corresponds to the JSON property `diskEncryptionConfiguration`
# @return [Google::Apis::SqladminV1beta4::DiskEncryptionConfiguration]
attr_accessor :disk_encryption_configuration
# Disk encryption status for an instance.
# Corresponds to the JSON property `diskEncryptionStatus`
# @return [Google::Apis::SqladminV1beta4::DiskEncryptionStatus]
attr_accessor :disk_encryption_status
# This field is deprecated and will be removed from a future version of the API.
# Use the `settings.settingsVersion` field instead.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
# The name and status of the failover replica.
# Corresponds to the JSON property `failoverReplica`
# @return [Google::Apis::SqladminV1beta4::DatabaseInstance::FailoverReplica]
attr_accessor :failover_replica
# The Compute Engine zone that the instance is currently serving from. This
# value could be different from the zone that was specified when the instance
# was created if the instance has failed over to its secondary zone. WARNING:
# Changing this might restart the instance.
# Corresponds to the JSON property `gceZone`
# @return [String]
attr_accessor :gce_zone
# The instance type.
# Corresponds to the JSON property `instanceType`
# @return [String]
attr_accessor :instance_type
# The assigned IP addresses for the instance.
# Corresponds to the JSON property `ipAddresses`
# @return [Array<Google::Apis::SqladminV1beta4::IpMapping>]
attr_accessor :ip_addresses
# The IPv6 address assigned to the instance. (Deprecated) This property was
# applicable only to First Generation instances.
# Corresponds to the JSON property `ipv6Address`
# @return [String]
attr_accessor :ipv6_address
# This is always `sql#instance`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The current software version on the instance.
# Corresponds to the JSON property `maintenanceVersion`
# @return [String]
attr_accessor :maintenance_version
# The name of the instance which will act as primary in the replication setup.
# Corresponds to the JSON property `masterInstanceName`
# @return [String]
attr_accessor :master_instance_name
# The maximum disk size of the instance in bytes.
# Corresponds to the JSON property `maxDiskSize`
# @return [Fixnum]
attr_accessor :max_disk_size
# Name of the Cloud SQL instance. This does not include the project ID.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# On-premises instance configuration.
# Corresponds to the JSON property `onPremisesConfiguration`
# @return [Google::Apis::SqladminV1beta4::OnPremisesConfiguration]
attr_accessor :on_premises_configuration
# This message wraps up the information written by out-of-disk detection job.
# Corresponds to the JSON property `outOfDiskReport`
# @return [Google::Apis::SqladminV1beta4::SqlOutOfDiskReport]
attr_accessor :out_of_disk_report
# The project ID of the project containing the Cloud SQL instance. The Google
# apps domain is prefixed if applicable.
# Corresponds to the JSON property `project`
# @return [String]
attr_accessor :project
# The geographical region. Can be: * `us-central` (`FIRST_GEN` instances only) *
# `us-central1` (`SECOND_GEN` instances only) * `asia-east1` or `europe-west1`.
# Defaults to `us-central` or `us-central1` depending on the instance type. The
# region cannot be changed after instance creation.
# Corresponds to the JSON property `region`
# @return [String]
attr_accessor :region
# Read-replica configuration for connecting to the primary instance.
# Corresponds to the JSON property `replicaConfiguration`
# @return [Google::Apis::SqladminV1beta4::ReplicaConfiguration]
attr_accessor :replica_configuration
# The replicas of the instance.
# Corresponds to the JSON property `replicaNames`
# @return [Array<String>]
attr_accessor :replica_names
# Initial root password. Use only on creation. You must set root passwords
# before you can connect to PostgreSQL instances.
# Corresponds to the JSON property `rootPassword`
# @return [String]
attr_accessor :root_password
# The status indicating if instance satisfiesPzs. Reserved for future use.
# Corresponds to the JSON property `satisfiesPzs`
# @return [Boolean]
attr_accessor :satisfies_pzs
alias_method :satisfies_pzs?, :satisfies_pzs
# Any scheduled maintenance for this instance.
# Corresponds to the JSON property `scheduledMaintenance`
# @return [Google::Apis::SqladminV1beta4::SqlScheduledMaintenance]
attr_accessor :scheduled_maintenance
# The Compute Engine zone that the failover instance is currently serving from
# for a regional instance. This value could be different from the zone that was
# specified when the instance was created if the instance has failed over to its
# secondary/failover zone.
# Corresponds to the JSON property `secondaryGceZone`
# @return [String]
attr_accessor :secondary_gce_zone
# The URI of this resource.
# Corresponds to the JSON property `selfLink`
# @return [String]
attr_accessor :self_link
# SslCerts Resource
# Corresponds to the JSON property `serverCaCert`
# @return [Google::Apis::SqladminV1beta4::SslCert]
attr_accessor :server_ca_cert
# The service account email address assigned to the instance. \This property is
# read-only.
# Corresponds to the JSON property `serviceAccountEmailAddress`
# @return [String]
attr_accessor :service_account_email_address
# Database instance settings.
# Corresponds to the JSON property `settings`
# @return [Google::Apis::SqladminV1beta4::Settings]
attr_accessor :settings
# The current serving state of the Cloud SQL instance.
# Corresponds to the JSON property `state`
# @return [String]
attr_accessor :state
# If the instance state is SUSPENDED, the reason for the suspension.
# Corresponds to the JSON property `suspensionReason`
# @return [Array<String>]
attr_accessor :suspension_reason
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@available_maintenance_versions = args[:available_maintenance_versions] if args.key?(:available_maintenance_versions)
@backend_type = args[:backend_type] if args.key?(:backend_type)
@connection_name = args[:connection_name] if args.key?(:connection_name)
@create_time = args[:create_time] if args.key?(:create_time)
@current_disk_size = args[:current_disk_size] if args.key?(:current_disk_size)
@database_installed_version = args[:database_installed_version] if args.key?(:database_installed_version)
@database_version = args[:database_version] if args.key?(:database_version)
@disk_encryption_configuration = args[:disk_encryption_configuration] if args.key?(:disk_encryption_configuration)
@disk_encryption_status = args[:disk_encryption_status] if args.key?(:disk_encryption_status)
@etag = args[:etag] if args.key?(:etag)
@failover_replica = args[:failover_replica] if args.key?(:failover_replica)
@gce_zone = args[:gce_zone] if args.key?(:gce_zone)
@instance_type = args[:instance_type] if args.key?(:instance_type)
@ip_addresses = args[:ip_addresses] if args.key?(:ip_addresses)
@ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
@kind = args[:kind] if args.key?(:kind)
@maintenance_version = args[:maintenance_version] if args.key?(:maintenance_version)
@master_instance_name = args[:master_instance_name] if args.key?(:master_instance_name)
@max_disk_size = args[:max_disk_size] if args.key?(:max_disk_size)
@name = args[:name] if args.key?(:name)
@on_premises_configuration = args[:on_premises_configuration] if args.key?(:on_premises_configuration)
@out_of_disk_report = args[:out_of_disk_report] if args.key?(:out_of_disk_report)
@project = args[:project] if args.key?(:project)
@region = args[:region] if args.key?(:region)
@replica_configuration = args[:replica_configuration] if args.key?(:replica_configuration)
@replica_names = args[:replica_names] if args.key?(:replica_names)
@root_password = args[:root_password] if args.key?(:root_password)
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
@scheduled_maintenance = args[:scheduled_maintenance] if args.key?(:scheduled_maintenance)
@secondary_gce_zone = args[:secondary_gce_zone] if args.key?(:secondary_gce_zone)
@self_link = args[:self_link] if args.key?(:self_link)
@server_ca_cert = args[:server_ca_cert] if args.key?(:server_ca_cert)
@service_account_email_address = args[:service_account_email_address] if args.key?(:service_account_email_address)
@settings = args[:settings] if args.key?(:settings)
@state = args[:state] if args.key?(:state)
@suspension_reason = args[:suspension_reason] if args.key?(:suspension_reason)
end
# The name and status of the failover replica.
class FailoverReplica
include Google::Apis::Core::Hashable
# The availability status of the failover replica. A false status indicates that
# the failover replica is out of sync. The primary instance can only failover to
# the failover replica when the status is true.
# Corresponds to the JSON property `available`
# @return [Boolean]
attr_accessor :available
alias_method :available?, :available
# The name of the failover replica. If specified at instance creation, a
# failover replica is created for the instance. The name doesn't include the
# project ID.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@available = args[:available] if args.key?(:available)
@name = args[:name] if args.key?(:name)
end
end
end
# Database list response.
class ListDatabasesResponse
include Google::Apis::Core::Hashable
# List of database resources in the instance.
# Corresponds to the JSON property `items`
# @return [Array<Google::Apis::SqladminV1beta4::Database>]
attr_accessor :items
# This is always `sql#databasesList`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@items = args[:items] if args.key?(:items)
@kind = args[:kind] if args.key?(:kind)
end
end
# Read-replica configuration for connecting to the on-premises primary instance.
class DemoteMasterConfiguration
include Google::Apis::Core::Hashable
# This is always `sql#demoteMasterConfiguration`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Read-replica configuration specific to MySQL databases.
# Corresponds to the JSON property `mysqlReplicaConfiguration`
# @return [Google::Apis::SqladminV1beta4::DemoteMasterMySqlReplicaConfiguration]
attr_accessor :mysql_replica_configuration
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@kind = args[:kind] if args.key?(:kind)
@mysql_replica_configuration = args[:mysql_replica_configuration] if args.key?(:mysql_replica_configuration)
end
end
# Database instance demote primary instance context.
class DemoteMasterContext
include Google::Apis::Core::Hashable
# This is always `sql#demoteMasterContext`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The name of the instance which will act as on-premises primary instance in the
# replication setup.
# Corresponds to the JSON property `masterInstanceName`
# @return [String]
attr_accessor :master_instance_name
# Read-replica configuration for connecting to the on-premises primary instance.
# Corresponds to the JSON property `replicaConfiguration`
# @return [Google::Apis::SqladminV1beta4::DemoteMasterConfiguration]
attr_accessor :replica_configuration
# Flag to skip replication setup on the instance.
# Corresponds to the JSON property `skipReplicationSetup`
# @return [Boolean]
attr_accessor :skip_replication_setup
alias_method :skip_replication_setup?, :skip_replication_setup
# Verify the GTID consistency for demote operation. Default value: `True`.
# Setting this flag to `false` enables you to bypass the GTID consistency check
# between on-premises primary instance and Cloud SQL instance during the
# demotion operation but also exposes you to the risk of future replication
# failures. Change the value only if you know the reason for the GTID divergence
# and are confident that doing so will not cause any replication issues.
# Corresponds to the JSON property `verifyGtidConsistency`
# @return [Boolean]
attr_accessor :verify_gtid_consistency
alias_method :verify_gtid_consistency?, :verify_gtid_consistency
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@kind = args[:kind] if args.key?(:kind)
@master_instance_name = args[:master_instance_name] if args.key?(:master_instance_name)
@replica_configuration = args[:replica_configuration] if args.key?(:replica_configuration)
@skip_replication_setup = args[:skip_replication_setup] if args.key?(:skip_replication_setup)
@verify_gtid_consistency = args[:verify_gtid_consistency] if args.key?(:verify_gtid_consistency)
end
end
# Read-replica configuration specific to MySQL databases.
class DemoteMasterMySqlReplicaConfiguration
include Google::Apis::Core::Hashable
# PEM representation of the trusted CA's x509 certificate.
# Corresponds to the JSON property `caCertificate`
# @return [String]
attr_accessor :ca_certificate
# PEM representation of the replica's x509 certificate.
# Corresponds to the JSON property `clientCertificate`
# @return [String]
attr_accessor :client_certificate
# PEM representation of the replica's private key. The corresponsing public key
# is encoded in the client's certificate. The format of the replica's private
# key can be either PKCS #1 or PKCS #8.
# Corresponds to the JSON property `clientKey`
# @return [String]
attr_accessor :client_key
# This is always `sql#demoteMasterMysqlReplicaConfiguration`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The password for the replication connection.
# Corresponds to the JSON property `password`
# @return [String]
attr_accessor :password
# The username for the replication connection.
# Corresponds to the JSON property `username`
# @return [String]
attr_accessor :username
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
@client_certificate = args[:client_certificate] if args.key?(:client_certificate)
@client_key = args[:client_key] if args.key?(:client_key)
@kind = args[:kind] if args.key?(:kind)
@password = args[:password] if args.key?(:password)
@username = args[:username] if args.key?(:username)
end
end
# Deny Maintenance Periods. This specifies a date range during when all CSA
# rollout will be denied.
class DenyMaintenancePeriod
include Google::Apis::Core::Hashable
# "deny maintenance period" end date. If the year of the end date is empty, the
# year of the start date also must be empty. In this case, it means the deny
# maintenance period recurs every year. The date is in format yyyy-mm-dd i.e.,
# 2020-11-01, or mm-dd, i.e., 11-01
# Corresponds to the JSON property `endDate`
# @return [String]
attr_accessor :end_date
# "deny maintenance period" start date. If the year of the start date is empty,
# the year of the end date also must be empty. In this case, it means the deny
# maintenance period recurs every year. The date is in format yyyy-mm-dd i.e.,
# 2020-11-01, or mm-dd, i.e., 11-01
# Corresponds to the JSON property `startDate`
# @return [String]
attr_accessor :start_date
# Time in UTC when the "deny maintenance period" starts on start_date and ends
# on end_date. The time is in format: HH:mm:SS, i.e., 00:00:00
# Corresponds to the JSON property `time`
# @return [String]
attr_accessor :time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@end_date = args[:end_date] if args.key?(:end_date)
@start_date = args[:start_date] if args.key?(:start_date)
@time = args[:time] if args.key?(:time)
end
end
# Disk encryption configuration for an instance.
class DiskEncryptionConfiguration
include Google::Apis::Core::Hashable
# This is always `sql#diskEncryptionConfiguration`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Resource name of KMS key for disk encryption
# Corresponds to the JSON property `kmsKeyName`
# @return [String]
attr_accessor :kms_key_name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@kind = args[:kind] if args.key?(:kind)
@kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
end
end
# Disk encryption status for an instance.
class DiskEncryptionStatus
include Google::Apis::Core::Hashable
# This is always `sql#diskEncryptionStatus`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# KMS key version used to encrypt the Cloud SQL instance resource
# Corresponds to the JSON property `kmsKeyVersionName`
# @return [String]
attr_accessor :kms_key_version_name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@kind = args[:kind] if args.key?(:kind)
@kms_key_version_name = args[:kms_key_version_name] if args.key?(:kms_key_version_name)
end
end
# Database instance export context.
class ExportContext
include Google::Apis::Core::Hashable
# Options for exporting BAK files (SQL Server-only)
# Corresponds to the JSON property `bakExportOptions`
# @return [Google::Apis::SqladminV1beta4::ExportContext::BakExportOptions]
attr_accessor :bak_export_options
# Options for exporting data as CSV. `MySQL` and `PostgreSQL` instances only.
# Corresponds to the JSON property `csvExportOptions`
# @return [Google::Apis::SqladminV1beta4::ExportContext::CsvExportOptions]
attr_accessor :csv_export_options
# Databases to be exported. `MySQL instances:` If `fileType` is `SQL` and no
# database is specified, all databases are exported, except for the `mysql`
# system database. If `fileType` is `CSV`, you can specify one database, either
# by using this property or by using the `csvExportOptions.selectQuery` property,
# which takes precedence over this property. `PostgreSQL instances:` You must
# specify one database to be exported. If `fileType` is `CSV`, this database
# must match the one specified in the `csvExportOptions.selectQuery` property. `
# SQL Server instances:` You must specify one database to be exported, and the `
# fileType` must be `BAK`.
# Corresponds to the JSON property `databases`
# @return [Array<String>]
attr_accessor :databases
# The file type for the specified uri.
# Corresponds to the JSON property `fileType`
# @return [String]
attr_accessor :file_type
# This is always `sql#exportContext`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Option for export offload.
# Corresponds to the JSON property `offload`
# @return [Boolean]
attr_accessor :offload
alias_method :offload?, :offload
# Options for exporting data as SQL statements.
# Corresponds to the JSON property `sqlExportOptions`
# @return [Google::Apis::SqladminV1beta4::ExportContext::SqlExportOptions]
attr_accessor :sql_export_options
# The path to the file in Google Cloud Storage where the export will be stored.
# The URI is in the form `gs://bucketName/fileName`. If the file already exists,
# the request succeeds, but the operation fails. If `fileType` is `SQL` and the
# filename ends with .gz, the contents are compressed.
# Corresponds to the JSON property `uri`
# @return [String]
attr_accessor :uri
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bak_export_options = args[:bak_export_options] if args.key?(:bak_export_options)
@csv_export_options = args[:csv_export_options] if args.key?(:csv_export_options)
@databases = args[:databases] if args.key?(:databases)
@file_type = args[:file_type] if args.key?(:file_type)
@kind = args[:kind] if args.key?(:kind)
@offload = args[:offload] if args.key?(:offload)
@sql_export_options = args[:sql_export_options] if args.key?(:sql_export_options)
@uri = args[:uri] if args.key?(:uri)
end
# Options for exporting BAK files (SQL Server-only)
class BakExportOptions
include Google::Apis::Core::Hashable
# Option for specifying how many stripes to use for the export. If blank, and
# the value of the striped field is true, the number of stripes is automatically
# chosen.
# Corresponds to the JSON property `stripeCount`
# @return [Fixnum]
attr_accessor :stripe_count
# Whether or not the export should be striped.
# Corresponds to the JSON property `striped`
# @return [Boolean]
attr_accessor :striped
alias_method :striped?, :striped
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@stripe_count = args[:stripe_count] if args.key?(:stripe_count)
@striped = args[:striped] if args.key?(:striped)
end
end
# Options for exporting data as CSV. `MySQL` and `PostgreSQL` instances only.
class CsvExportOptions
include Google::Apis::Core::Hashable
# Specifies the character that should appear before a data character that needs
# to be escaped.
# Corresponds to the JSON property `escapeCharacter`
# @return [String]
attr_accessor :escape_character
# Specifies the character that separates columns within each row (line) of the
# file.
# Corresponds to the JSON property `fieldsTerminatedBy`
# @return [String]
attr_accessor :fields_terminated_by
# This is used to separate lines. If a line does not contain all fields, the
# rest of the columns are set to their default values.
# Corresponds to the JSON property `linesTerminatedBy`
# @return [String]
attr_accessor :lines_terminated_by
# Specifies the quoting character to be used when a data value is quoted.
# Corresponds to the JSON property `quoteCharacter`
# @return [String]
attr_accessor :quote_character
# The select query used to extract the data.
# Corresponds to the JSON property `selectQuery`
# @return [String]
attr_accessor :select_query
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@escape_character = args[:escape_character] if args.key?(:escape_character)
@fields_terminated_by = args[:fields_terminated_by] if args.key?(:fields_terminated_by)
@lines_terminated_by = args[:lines_terminated_by] if args.key?(:lines_terminated_by)
@quote_character = args[:quote_character] if args.key?(:quote_character)
@select_query = args[:select_query] if args.key?(:select_query)
end
end
# Options for exporting data as SQL statements.
class SqlExportOptions
include Google::Apis::Core::Hashable
# Options for exporting from MySQL.
# Corresponds to the JSON property `mysqlExportOptions`
# @return [Google::Apis::SqladminV1beta4::ExportContext::SqlExportOptions::MysqlExportOptions]
attr_accessor :mysql_export_options
# Export only schemas.
# Corresponds to the JSON property `schemaOnly`
# @return [Boolean]
attr_accessor :schema_only
alias_method :schema_only?, :schema_only
# Tables to export, or that were exported, from the specified database. If you
# specify tables, specify one and only one database. For PostgreSQL instances,
# you can specify only one table.
# Corresponds to the JSON property `tables`
# @return [Array<String>]
attr_accessor :tables
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@mysql_export_options = args[:mysql_export_options] if args.key?(:mysql_export_options)
@schema_only = args[:schema_only] if args.key?(:schema_only)
@tables = args[:tables] if args.key?(:tables)
end
# Options for exporting from MySQL.
class MysqlExportOptions
include Google::Apis::Core::Hashable
# Option to include SQL statement required to set up replication. If set to `1`,
# the dump file includes a CHANGE MASTER TO statement with the binary log
# coordinates, and --set-gtid-purged is set to ON. If set to `2`, the CHANGE
# MASTER TO statement is written as a SQL comment and has no effect. If set to
# any value other than `1`, --set-gtid-purged is set to OFF.
# Corresponds to the JSON property `masterData`
# @return [Fixnum]
attr_accessor :master_data
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@master_data = args[:master_data] if args.key?(:master_data)
end
end
end
end
# Database instance failover context.
class FailoverContext
include Google::Apis::Core::Hashable
# This is always `sql#failoverContext`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The current settings version of this instance. Request will be rejected if
# this version doesn't match the current settings version.
# Corresponds to the JSON property `settingsVersion`
# @return [Fixnum]
attr_accessor :settings_version
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@kind = args[:kind] if args.key?(:kind)
@settings_version = args[:settings_version] if args.key?(:settings_version)
end
end
# A flag resource.
class Flag
include Google::Apis::Core::Hashable
# Use this field if only certain integers are accepted. Can be combined with
# min_value and max_value to add additional values.
# Corresponds to the JSON property `allowedIntValues`
# @return [Array<Fixnum>]
attr_accessor :allowed_int_values
# For `STRING` flags, a list of strings that the value can be set to.
# Corresponds to the JSON property `allowedStringValues`
# @return [Array<String>]
attr_accessor :allowed_string_values
# The database version this flag applies to. Can be MySQL instances: `MYSQL_8_0`,
# `MYSQL_8_0_18`, `MYSQL_8_0_26`, `MYSQL_5_7`, or `MYSQL_5_6`. PostgreSQL
# instances: `POSTGRES_9_6`, `POSTGRES_10`, `POSTGRES_11` or `POSTGRES_12`. SQL
# Server instances: `SQLSERVER_2017_STANDARD`, `SQLSERVER_2017_ENTERPRISE`, `
# SQLSERVER_2017_EXPRESS`, `SQLSERVER_2017_WEB`, `SQLSERVER_2019_STANDARD`, `
# SQLSERVER_2019_ENTERPRISE`, `SQLSERVER_2019_EXPRESS`, or `SQLSERVER_2019_WEB`.
# See [the complete list](/sql/docs/mysql/admin-api/rest/v1/SqlDatabaseVersion).
# Corresponds to the JSON property `appliesTo`
# @return [Array<String>]
attr_accessor :applies_to
# Whether or not the flag is considered in beta.
# Corresponds to the JSON property `inBeta`
# @return [Boolean]
attr_accessor :in_beta
alias_method :in_beta?, :in_beta
# This is always `sql#flag`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# For `INTEGER` flags, the maximum allowed value.
# Corresponds to the JSON property `maxValue`
# @return [Fixnum]
attr_accessor :max_value
# For `INTEGER` flags, the minimum allowed value.
# Corresponds to the JSON property `minValue`
# @return [Fixnum]
attr_accessor :min_value
# This is the name of the flag. Flag names always use underscores, not hyphens,
# for example: `max_allowed_packet`
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# Indicates whether changing this flag will trigger a database restart. Only
# applicable to Second Generation instances.
# Corresponds to the JSON property `requiresRestart`
# @return [Boolean]
attr_accessor :requires_restart
alias_method :requires_restart?, :requires_restart
# The type of the flag. Flags are typed to being `BOOLEAN`, `STRING`, `INTEGER`
# or `NONE`. `NONE` is used for flags which do not take a value, such as `
# skip_grant_tables`.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@allowed_int_values = args[:allowed_int_values] if args.key?(:allowed_int_values)
@allowed_string_values = args[:allowed_string_values] if args.key?(:allowed_string_values)
@applies_to = args[:applies_to] if args.key?(:applies_to)
@in_beta = args[:in_beta] if args.key?(:in_beta)
@kind = args[:kind] if args.key?(:kind)
@max_value = args[:max_value] if args.key?(:max_value)
@min_value = args[:min_value] if args.key?(:min_value)
@name = args[:name] if args.key?(:name)
@requires_restart = args[:requires_restart] if args.key?(:requires_restart)
@type = args[:type] if args.key?(:type)
end
end
# Flags list response.
class ListFlagsResponse
include Google::Apis::Core::Hashable
# List of flags.
# Corresponds to the JSON property `items`
# @return [Array<Google::Apis::SqladminV1beta4::Flag>]
attr_accessor :items
# This is always `sql#flagsList`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@items = args[:items] if args.key?(:items)
@kind = args[:kind] if args.key?(:kind)
end
end
# Ephemeral certificate creation request.
class GenerateEphemeralCertRequest
include Google::Apis::Core::Hashable
# Optional. Access token to include in the signed certificate.
# Corresponds to the JSON property `access_token`
# @return [String]
attr_accessor :access_token
# PEM encoded public key to include in the signed certificate.
# Corresponds to the JSON property `public_key`
# @return [String]
attr_accessor :public_key
# Optional. Optional snapshot read timestamp to trade freshness for performance.
# Corresponds to the JSON property `readTime`
# @return [String]
attr_accessor :read_time
# Optional. If set, it will contain the cert valid duration.
# Corresponds to the JSON property `validDuration`
# @return [String]
attr_accessor :valid_duration
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@access_token = args[:access_token] if args.key?(:access_token)
@public_key = args[:public_key] if args.key?(:public_key)
@read_time = args[:read_time] if args.key?(:read_time)
@valid_duration = args[:valid_duration] if args.key?(:valid_duration)
end
end
# Ephemeral certificate creation request.
class GenerateEphemeralCertResponse
include Google::Apis::Core::Hashable
# SslCerts Resource
# Corresponds to the JSON property `ephemeralCert`
# @return [Google::Apis::SqladminV1beta4::SslCert]
attr_accessor :ephemeral_cert
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@ephemeral_cert = args[:ephemeral_cert] if args.key?(:ephemeral_cert)
end
end
# Database instance import context.
class ImportContext
include Google::Apis::Core::Hashable
# Import parameters specific to SQL Server .BAK files
# Corresponds to the JSON property `bakImportOptions`
# @return [Google::Apis::SqladminV1beta4::ImportContext::BakImportOptions]
attr_accessor :bak_import_options
# Options for importing data as CSV.
# Corresponds to the JSON property `csvImportOptions`
# @return [Google::Apis::SqladminV1beta4::ImportContext::CsvImportOptions]
attr_accessor :csv_import_options
# The target database for the import. If `fileType` is `SQL`, this field is
# required only if the import file does not specify a database, and is
# overridden by any database specification in the import file. If `fileType` is `
# CSV`, one database must be specified.
# Corresponds to the JSON property `database`
# @return [String]
attr_accessor :database
# The file type for the specified uri. * `SQL`: The file contains SQL statements.
# * `CSV`: The file contains CSV data. * `BAK`: The file contains backup data
# for a SQL Server instance.
# Corresponds to the JSON property `fileType`
# @return [String]
attr_accessor :file_type
# The PostgreSQL user for this import operation. PostgreSQL instances only.
# Corresponds to the JSON property `importUser`
# @return [String]
attr_accessor :import_user
# This is always `sql#importContext`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Path to the import file in Cloud Storage, in the form `gs://bucketName/
# fileName`. Compressed gzip files (.gz) are supported when `fileType` is `SQL`.
# The instance must have write permissions to the bucket and read access to the
# file.
# Corresponds to the JSON property `uri`
# @return [String]
attr_accessor :uri
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bak_import_options = args[:bak_import_options] if args.key?(:bak_import_options)
@csv_import_options = args[:csv_import_options] if args.key?(:csv_import_options)
@database = args[:database] if args.key?(:database)
@file_type = args[:file_type] if args.key?(:file_type)
@import_user = args[:import_user] if args.key?(:import_user)
@kind = args[:kind] if args.key?(:kind)
@uri = args[:uri] if args.key?(:uri)
end
# Import parameters specific to SQL Server .BAK files
class BakImportOptions
include Google::Apis::Core::Hashable
#
# Corresponds to the JSON property `encryptionOptions`
# @return [Google::Apis::SqladminV1beta4::ImportContext::BakImportOptions::EncryptionOptions]
attr_accessor :encryption_options
# Whether or not the backup set being restored is striped. Applies only to Cloud
# SQL for SQL Server.
# Corresponds to the JSON property `striped`
# @return [Boolean]
attr_accessor :striped
alias_method :striped?, :striped
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@encryption_options = args[:encryption_options] if args.key?(:encryption_options)
@striped = args[:striped] if args.key?(:striped)
end
#
class EncryptionOptions
include Google::Apis::Core::Hashable
# Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/
# fileName`. The instance must have write permissions to the bucket and read
# access to the file.
# Corresponds to the JSON property `certPath`
# @return [String]
attr_accessor :cert_path
# Password that encrypts the private key
# Corresponds to the JSON property `pvkPassword`
# @return [String]
attr_accessor :pvk_password
# Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://
# bucketName/fileName`. The instance must have write permissions to the bucket
# and read access to the file.
# Corresponds to the JSON property `pvkPath`
# @return [String]
attr_accessor :pvk_path
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@cert_path = args[:cert_path] if args.key?(:cert_path)
@pvk_password = args[:pvk_password] if args.key?(:pvk_password)
@pvk_path = args[:pvk_path] if args.key?(:pvk_path)
end
end
end
# Options for importing data as CSV.
class CsvImportOptions
include Google::Apis::Core::Hashable
# The columns to which CSV data is imported. If not specified, all columns of
# the database table are loaded with CSV data.
# Corresponds to the JSON property `columns`
# @return [Array<String>]
attr_accessor :columns
# Specifies the character that should appear before a data character that needs
# to be escaped.
# Corresponds to the JSON property `escapeCharacter`
# @return [String]
attr_accessor :escape_character
# Specifies the character that separates columns within each row (line) of the
# file.
# Corresponds to the JSON property `fieldsTerminatedBy`
# @return [String]
attr_accessor :fields_terminated_by
# This is used to separate lines. If a line does not contain all fields, the
# rest of the columns are set to their default values.
# Corresponds to the JSON property `linesTerminatedBy`
# @return [String]
attr_accessor :lines_terminated_by
# Specifies the quoting character to be used when a data value is quoted.
# Corresponds to the JSON property `quoteCharacter`
# @return [String]
attr_accessor :quote_character
# The table to which CSV data is imported.
# Corresponds to the JSON property `table`
# @return [String]
attr_accessor :table
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@columns = args[:columns] if args.key?(:columns)
@escape_character = args[:escape_character] if args.key?(:escape_character)
@fields_terminated_by = args[:fields_terminated_by] if args.key?(:fields_terminated_by)
@lines_terminated_by = args[:lines_terminated_by] if args.key?(:lines_terminated_by)
@quote_character = args[:quote_character] if args.key?(:quote_character)
@table = args[:table] if args.key?(:table)
end
end
end
# Insights configuration. This specifies when Cloud SQL Insights feature is
# enabled and optional configuration.
class InsightsConfig
include Google::Apis::Core::Hashable
# Whether Query Insights feature is enabled.
# Corresponds to the JSON property `queryInsightsEnabled`
# @return [Boolean]
attr_accessor :query_insights_enabled
alias_method :query_insights_enabled?, :query_insights_enabled
# Number of query execution plans captured by Insights per minute for all
# queries combined. Default is 5.
# Corresponds to the JSON property `queryPlansPerMinute`
# @return [Fixnum]
attr_accessor :query_plans_per_minute
# Maximum query length stored in bytes. Default value: 1024 bytes. Range: 256-
# 4500 bytes. Query length more than this field value will be truncated to this
# value. When unset, query length will be the default value. Changing query
# length will restart the database.
# Corresponds to the JSON property `queryStringLength`
# @return [Fixnum]
attr_accessor :query_string_length
# Whether Query Insights will record application tags from query when enabled.
# Corresponds to the JSON property `recordApplicationTags`
# @return [Boolean]
attr_accessor :record_application_tags
alias_method :record_application_tags?, :record_application_tags
# Whether Query Insights will record client address when enabled.
# Corresponds to the JSON property `recordClientAddress`
# @return [Boolean]
attr_accessor :record_client_address
alias_method :record_client_address?, :record_client_address
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@query_insights_enabled = args[:query_insights_enabled] if args.key?(:query_insights_enabled)
@query_plans_per_minute = args[:query_plans_per_minute] if args.key?(:query_plans_per_minute)
@query_string_length = args[:query_string_length] if args.key?(:query_string_length)
@record_application_tags = args[:record_application_tags] if args.key?(:record_application_tags)
@record_client_address = args[:record_client_address] if args.key?(:record_client_address)
end
end
# Reference to another Cloud SQL instance.
class InstanceReference
include Google::Apis::Core::Hashable
# The name of the Cloud SQL instance being referenced. This does not include the
# project ID.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# The project ID of the Cloud SQL instance being referenced. The default is the
# same project ID as the instance references it.
# Corresponds to the JSON property `project`
# @return [String]
attr_accessor :project
# The region of the Cloud SQL instance being referenced.
# Corresponds to the JSON property `region`
# @return [String]
attr_accessor :region
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@name = args[:name] if args.key?(:name)
@project = args[:project] if args.key?(:project)
@region = args[:region] if args.key?(:region)
end
end
# Database instance clone request.
class CloneInstancesRequest
include Google::Apis::Core::Hashable
# Database instance clone context.
# Corresponds to the JSON property `cloneContext`
# @return [Google::Apis::SqladminV1beta4::CloneContext]
attr_accessor :clone_context
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@clone_context = args[:clone_context] if args.key?(:clone_context)
end
end
# Database demote primary instance request.
class InstancesDemoteMasterRequest
include Google::Apis::Core::Hashable
# Database instance demote primary instance context.
# Corresponds to the JSON property `demoteMasterContext`
# @return [Google::Apis::SqladminV1beta4::DemoteMasterContext]
attr_accessor :demote_master_context
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@demote_master_context = args[:demote_master_context] if args.key?(:demote_master_context)
end
end
# Database instance export request.
class ExportInstancesRequest
include Google::Apis::Core::Hashable
# Database instance export context.
# Corresponds to the JSON property `exportContext`
# @return [Google::Apis::SqladminV1beta4::ExportContext]
attr_accessor :export_context
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@export_context = args[:export_context] if args.key?(:export_context)
end
end
# Instance failover request.
class InstancesFailoverRequest
include Google::Apis::Core::Hashable
# Database instance failover context.
# Corresponds to the JSON property `failoverContext`
# @return [Google::Apis::SqladminV1beta4::FailoverContext]
attr_accessor :failover_context
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@failover_context = args[:failover_context] if args.key?(:failover_context)
end
end
# Database instance import request.
class ImportInstancesRequest
include Google::Apis::Core::Hashable
# Database instance import context.
# Corresponds to the JSON property `importContext`
# @return [Google::Apis::SqladminV1beta4::ImportContext]
attr_accessor :import_context
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@import_context = args[:import_context] if args.key?(:import_context)
end
end
# Database instances list response.
class ListInstancesResponse
include Google::Apis::Core::Hashable
# List of database instance resources.
# Corresponds to the JSON property `items`
# @return [Array<Google::Apis::SqladminV1beta4::DatabaseInstance>]
attr_accessor :items
# This is always `sql#instancesList`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The continuation token, used to page through large result sets. Provide this
# value in a subsequent request to return the next page of results.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
# List of warnings that occurred while handling the request.
# Corresponds to the JSON property `warnings`
# @return [Array<Google::Apis::SqladminV1beta4::ApiWarning>]
attr_accessor :warnings
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@items = args[:items] if args.key?(:items)
@kind = args[:kind] if args.key?(:kind)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
@warnings = args[:warnings] if args.key?(:warnings)
end
end
# Instances ListServerCas response.
class InstancesListServerCasResponse
include Google::Apis::Core::Hashable
#
# Corresponds to the JSON property `activeVersion`
# @return [String]
attr_accessor :active_version
# List of server CA certificates for the instance.
# Corresponds to the JSON property `certs`
# @return [Array<Google::Apis::SqladminV1beta4::SslCert>]
attr_accessor :certs
# This is always `sql#instancesListServerCas`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@active_version = args[:active_version] if args.key?(:active_version)
@certs = args[:certs] if args.key?(:certs)
@kind = args[:kind] if args.key?(:kind)
end
end
# Database instance restore backup request.
class RestoreInstancesBackupRequest
include Google::Apis::Core::Hashable
# Database instance restore from backup context. Backup context contains source
# instance id and project id.
# Corresponds to the JSON property `restoreBackupContext`
# @return [Google::Apis::SqladminV1beta4::RestoreBackupContext]
attr_accessor :restore_backup_context
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@restore_backup_context = args[:restore_backup_context] if args.key?(:restore_backup_context)
end
end
# Rotate Server CA request.
class InstancesRotateServerCaRequest
include Google::Apis::Core::Hashable
# Instance rotate server CA context.
# Corresponds to the JSON property `rotateServerCaContext`
# @return [Google::Apis::SqladminV1beta4::RotateServerCaContext]
attr_accessor :rotate_server_ca_context
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@rotate_server_ca_context = args[:rotate_server_ca_context] if args.key?(:rotate_server_ca_context)
end
end
# Instance truncate log request.
class InstancesTruncateLogRequest
include Google::Apis::Core::Hashable
# Database Instance truncate log context.
# Corresponds to the JSON property `truncateLogContext`
# @return [Google::Apis::SqladminV1beta4::TruncateLogContext]
attr_accessor :truncate_log_context
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@truncate_log_context = args[:truncate_log_context] if args.key?(:truncate_log_context)
end
end
# IP Management configuration.
class IpConfiguration
include Google::Apis::Core::Hashable
# The name of the allocated ip range for the private ip Cloud SQL instance. For
# example: "google-managed-services-default". If set, the instance ip will be
# created in the allocated range. The range name must comply with [RFC 1035](
# https://tools.ietf.org/html/rfc1035). Specifically, the name must be 1-63
# characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?.`
# Corresponds to the JSON property `allocatedIpRange`
# @return [String]
attr_accessor :allocated_ip_range
# The list of external networks that are allowed to connect to the instance
# using the IP. In 'CIDR' notation, also known as 'slash' notation (for example:
# `157.197.200.0/24`).
# Corresponds to the JSON property `authorizedNetworks`
# @return [Array<Google::Apis::SqladminV1beta4::AclEntry>]
attr_accessor :authorized_networks
# Controls connectivity to private IP instances from Google services, such as
# BigQuery.
# Corresponds to the JSON property `enablePrivatePathForGoogleCloudServices`
# @return [Boolean]
attr_accessor :enable_private_path_for_google_cloud_services
alias_method :enable_private_path_for_google_cloud_services?, :enable_private_path_for_google_cloud_services
# Whether the instance is assigned a public IP address or not.
# Corresponds to the JSON property `ipv4Enabled`
# @return [Boolean]
attr_accessor :ipv4_enabled
alias_method :ipv4_enabled?, :ipv4_enabled
# The resource link for the VPC network from which the Cloud SQL instance is
# accessible for private IP. For example, `/projects/myProject/global/networks/
# default`. This setting can be updated, but it cannot be removed after it is
# set.
# Corresponds to the JSON property `privateNetwork`
# @return [String]
attr_accessor :private_network
# Whether SSL connections over IP are enforced or not.
# Corresponds to the JSON property `requireSsl`
# @return [Boolean]
attr_accessor :require_ssl
alias_method :require_ssl?, :require_ssl
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@allocated_ip_range = args[:allocated_ip_range] if args.key?(:allocated_ip_range)
@authorized_networks = args[:authorized_networks] if args.key?(:authorized_networks)
@enable_private_path_for_google_cloud_services = args[:enable_private_path_for_google_cloud_services] if args.key?(:enable_private_path_for_google_cloud_services)
@ipv4_enabled = args[:ipv4_enabled] if args.key?(:ipv4_enabled)
@private_network = args[:private_network] if args.key?(:private_network)
@require_ssl = args[:require_ssl] if args.key?(:require_ssl)
end
end
# Database instance IP Mapping.
class IpMapping
include Google::Apis::Core::Hashable
# The IP address assigned.
# Corresponds to the JSON property `ipAddress`
# @return [String]
attr_accessor :ip_address
# The due time for this IP to be retired in [RFC 3339](https://tools.ietf.org/
# html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`. This field is
# only available when the IP is scheduled to be retired.
# Corresponds to the JSON property `timeToRetire`
# @return [String]
attr_accessor :time_to_retire
# The type of this IP address. A `PRIMARY` address is a public address that can
# accept incoming connections. A `PRIVATE` address is a private address that can
# accept incoming connections. An `OUTGOING` address is the source address of
# connections originating from the instance, if supported.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@ip_address = args[:ip_address] if args.key?(:ip_address)
@time_to_retire = args[:time_to_retire] if args.key?(:time_to_retire)
@type = args[:type] if args.key?(:type)
end
end
# Preferred location. This specifies where a Cloud SQL instance is located. Note
# that if the preferred location is not available, the instance will be located
# as close as possible within the region. Only one location may be specified.
class LocationPreference
include Google::Apis::Core::Hashable
# The App Engine application to follow, it must be in the same region as the
# Cloud SQL instance. WARNING: Changing this might restart the instance.
# Corresponds to the JSON property `followGaeApplication`
# @return [String]
attr_accessor :follow_gae_application
# This is always `sql#locationPreference`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The preferred Compute Engine zone for the secondary/failover (for example: us-
# central1-a, us-central1-b, etc.).
# Corresponds to the JSON property `secondaryZone`
# @return [String]
attr_accessor :secondary_zone
# The preferred Compute Engine zone (for example: us-central1-a, us-central1-b,
# etc.). WARNING: Changing this might restart the instance.
# Corresponds to the JSON property `zone`
# @return [String]
attr_accessor :zone
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@follow_gae_application = args[:follow_gae_application] if args.key?(:follow_gae_application)
@kind = args[:kind] if args.key?(:kind)
@secondary_zone = args[:secondary_zone] if args.key?(:secondary_zone)
@zone = args[:zone] if args.key?(:zone)
end
end
# Maintenance window. This specifies when a Cloud SQL instance is restarted for
# system maintenance purposes.
class MaintenanceWindow
include Google::Apis::Core::Hashable
# day of week (1-7), starting on Monday.
# Corresponds to the JSON property `day`
# @return [Fixnum]
attr_accessor :day
# hour of day - 0 to 23.
# Corresponds to the JSON property `hour`
# @return [Fixnum]
attr_accessor :hour
# This is always `sql#maintenanceWindow`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Maintenance timing setting: `canary` (Earlier) or `stable` (Later). [Learn
# more](https://cloud.google.com/sql/docs/mysql/instance-settings#maintenance-
# timing-2ndgen).
# Corresponds to the JSON property `updateTrack`
# @return [String]
attr_accessor :update_track
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@day = args[:day] if args.key?(:day)
@hour = args[:hour] if args.key?(:hour)
@kind = args[:kind] if args.key?(:kind)
@update_track = args[:update_track] if args.key?(:update_track)
end
end
# Read-replica configuration specific to MySQL databases.
class MySqlReplicaConfiguration
include Google::Apis::Core::Hashable
# PEM representation of the trusted CA's x509 certificate.
# Corresponds to the JSON property `caCertificate`
# @return [String]
attr_accessor :ca_certificate
# PEM representation of the replica's x509 certificate.
# Corresponds to the JSON property `clientCertificate`
# @return [String]
attr_accessor :client_certificate
# PEM representation of the replica's private key. The corresponsing public key
# is encoded in the client's certificate.
# Corresponds to the JSON property `clientKey`
# @return [String]
attr_accessor :client_key
# Seconds to wait between connect retries. MySQL's default is 60 seconds.
# Corresponds to the JSON property `connectRetryInterval`
# @return [Fixnum]
attr_accessor :connect_retry_interval
# Path to a SQL dump file in Google Cloud Storage from which the replica
# instance is to be created. The URI is in the form gs://bucketName/fileName.
# Compressed gzip files (.gz) are also supported. Dumps have the binlog co-
# ordinates from which replication begins. This can be accomplished by setting --
# master-data to 1 when using mysqldump.
# Corresponds to the JSON property `dumpFilePath`
# @return [String]
attr_accessor :dump_file_path
# This is always `sql#mysqlReplicaConfiguration`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Interval in milliseconds between replication heartbeats.
# Corresponds to the JSON property `masterHeartbeatPeriod`
# @return [Fixnum]
attr_accessor :master_heartbeat_period
# The password for the replication connection.
# Corresponds to the JSON property `password`
# @return [String]
attr_accessor :password
# A list of permissible ciphers to use for SSL encryption.
# Corresponds to the JSON property `sslCipher`
# @return [String]
attr_accessor :ssl_cipher
# The username for the replication connection.
# Corresponds to the JSON property `username`
# @return [String]
attr_accessor :username
# Whether or not to check the primary instance's Common Name value in the
# certificate that it sends during the SSL handshake.
# Corresponds to the JSON property `verifyServerCertificate`
# @return [Boolean]
attr_accessor :verify_server_certificate
alias_method :verify_server_certificate?, :verify_server_certificate
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
@client_certificate = args[:client_certificate] if args.key?(:client_certificate)
@client_key = args[:client_key] if args.key?(:client_key)
@connect_retry_interval = args[:connect_retry_interval] if args.key?(:connect_retry_interval)
@dump_file_path = args[:dump_file_path] if args.key?(:dump_file_path)
@kind = args[:kind] if args.key?(:kind)
@master_heartbeat_period = args[:master_heartbeat_period] if args.key?(:master_heartbeat_period)
@password = args[:password] if args.key?(:password)
@ssl_cipher = args[:ssl_cipher] if args.key?(:ssl_cipher)
@username = args[:username] if args.key?(:username)
@verify_server_certificate = args[:verify_server_certificate] if args.key?(:verify_server_certificate)
end
end
# MySQL-specific external server sync settings.
class MySqlSyncConfig
include Google::Apis::Core::Hashable
# Flags to use for the initial dump.
# Corresponds to the JSON property `initialSyncFlags`
# @return [Array<Google::Apis::SqladminV1beta4::SyncFlags>]
attr_accessor :initial_sync_flags
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@initial_sync_flags = args[:initial_sync_flags] if args.key?(:initial_sync_flags)
end
end
# On-premises instance configuration.
class OnPremisesConfiguration
include Google::Apis::Core::Hashable
# PEM representation of the trusted CA's x509 certificate.
# Corresponds to the JSON property `caCertificate`
# @return [String]
attr_accessor :ca_certificate
# PEM representation of the replica's x509 certificate.
# Corresponds to the JSON property `clientCertificate`
# @return [String]
attr_accessor :client_certificate
# PEM representation of the replica's private key. The corresponsing public key
# is encoded in the client's certificate.
# Corresponds to the JSON property `clientKey`
# @return [String]
attr_accessor :client_key
# The dump file to create the Cloud SQL replica.
# Corresponds to the JSON property `dumpFilePath`
# @return [String]
attr_accessor :dump_file_path
# The host and port of the on-premises instance in host:port format
# Corresponds to the JSON property `hostPort`
# @return [String]
attr_accessor :host_port
# This is always `sql#onPremisesConfiguration`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The password for connecting to on-premises instance.
# Corresponds to the JSON property `password`
# @return [String]
attr_accessor :password
# Reference to another Cloud SQL instance.
# Corresponds to the JSON property `sourceInstance`
# @return [Google::Apis::SqladminV1beta4::InstanceReference]
attr_accessor :source_instance
# The username for connecting to on-premises instance.
# Corresponds to the JSON property `username`
# @return [String]
attr_accessor :username
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
@client_certificate = args[:client_certificate] if args.key?(:client_certificate)
@client_key = args[:client_key] if args.key?(:client_key)
@dump_file_path = args[:dump_file_path] if args.key?(:dump_file_path)
@host_port = args[:host_port] if args.key?(:host_port)
@kind = args[:kind] if args.key?(:kind)
@password = args[:password] if args.key?(:password)
@source_instance = args[:source_instance] if args.key?(:source_instance)
@username = args[:username] if args.key?(:username)
end
end
# An Operation resource. For successful operations that return an Operation
# resource, only the fields relevant to the operation are populated in the
# resource.
class Operation
include Google::Apis::Core::Hashable
# Backup context.
# Corresponds to the JSON property `backupContext`
# @return [Google::Apis::SqladminV1beta4::BackupContext]
attr_accessor :backup_context
# The time this operation finished in UTC timezone in [RFC 3339](https://tools.
# ietf.org/html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`.
# Corresponds to the JSON property `endTime`
# @return [String]
attr_accessor :end_time
# Database instance operation errors list wrapper.
# Corresponds to the JSON property `error`
# @return [Google::Apis::SqladminV1beta4::OperationErrors]
attr_accessor :error
# Database instance export context.
# Corresponds to the JSON property `exportContext`
# @return [Google::Apis::SqladminV1beta4::ExportContext]
attr_accessor :export_context
# Database instance import context.
# Corresponds to the JSON property `importContext`
# @return [Google::Apis::SqladminV1beta4::ImportContext]
attr_accessor :import_context
# The time this operation was enqueued in UTC timezone in [RFC 3339](https://
# tools.ietf.org/html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`.
# Corresponds to the JSON property `insertTime`
# @return [String]
attr_accessor :insert_time
# This is always `sql#operation`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# An identifier that uniquely identifies the operation. You can use this
# identifier to retrieve the Operations resource that has information about the
# operation.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# The type of the operation. Valid values are: * `CREATE` * `DELETE` * `UPDATE` *
# `RESTART` * `IMPORT` * `EXPORT` * `BACKUP_VOLUME` * `RESTORE_VOLUME` * `
# CREATE_USER` * `DELETE_USER` * `CREATE_DATABASE` * `DELETE_DATABASE`
# Corresponds to the JSON property `operationType`
# @return [String]
attr_accessor :operation_type
# The URI of this resource.
# Corresponds to the JSON property `selfLink`
# @return [String]
attr_accessor :self_link
# The time this operation actually started in UTC timezone in [RFC 3339](https://
# tools.ietf.org/html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`.
# Corresponds to the JSON property `startTime`
# @return [String]
attr_accessor :start_time
# The status of an operation.
# Corresponds to the JSON property `status`
# @return [String]
attr_accessor :status
# Name of the database instance related to this operation.
# Corresponds to the JSON property `targetId`
# @return [String]
attr_accessor :target_id
#
# Corresponds to the JSON property `targetLink`
# @return [String]
attr_accessor :target_link
# The project ID of the target instance related to this operation.
# Corresponds to the JSON property `targetProject`
# @return [String]
attr_accessor :target_project
# The email address of the user who initiated this operation.
# Corresponds to the JSON property `user`
# @return [String]
attr_accessor :user
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@backup_context = args[:backup_context] if args.key?(:backup_context)
@end_time = args[:end_time] if args.key?(:end_time)
@error = args[:error] if args.key?(:error)
@export_context = args[:export_context] if args.key?(:export_context)
@import_context = args[:import_context] if args.key?(:import_context)
@insert_time = args[:insert_time] if args.key?(:insert_time)
@kind = args[:kind] if args.key?(:kind)
@name = args[:name] if args.key?(:name)
@operation_type = args[:operation_type] if args.key?(:operation_type)
@self_link = args[:self_link] if args.key?(:self_link)
@start_time = args[:start_time] if args.key?(:start_time)
@status = args[:status] if args.key?(:status)
@target_id = args[:target_id] if args.key?(:target_id)
@target_link = args[:target_link] if args.key?(:target_link)
@target_project = args[:target_project] if args.key?(:target_project)
@user = args[:user] if args.key?(:user)
end
end
# Database instance operation error.
class OperationError
include Google::Apis::Core::Hashable
# Identifies the specific error that occurred.
# Corresponds to the JSON property `code`
# @return [String]
attr_accessor :code
# This is always `sql#operationError`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Additional information about the error encountered.
# Corresponds to the JSON property `message`
# @return [String]
attr_accessor :message
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@code = args[:code] if args.key?(:code)
@kind = args[:kind] if args.key?(:kind)
@message = args[:message] if args.key?(:message)
end
end
# Database instance operation errors list wrapper.
class OperationErrors
include Google::Apis::Core::Hashable
# The list of errors encountered while processing this operation.
# Corresponds to the JSON property `errors`
# @return [Array<Google::Apis::SqladminV1beta4::OperationError>]
attr_accessor :errors
# This is always `sql#operationErrors`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@errors = args[:errors] if args.key?(:errors)
@kind = args[:kind] if args.key?(:kind)
end
end
# Operations list response.
class ListOperationsResponse
include Google::Apis::Core::Hashable
# List of operation resources.
# Corresponds to the JSON property `items`
# @return [Array<Google::Apis::SqladminV1beta4::Operation>]
attr_accessor :items
# This is always `sql#operationsList`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The continuation token, used to page through large result sets. Provide this
# value in a subsequent request to return the next page of results.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@items = args[:items] if args.key?(:items)
@kind = args[:kind] if args.key?(:kind)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end
end
# Read-only password status.
class PasswordStatus
include Google::Apis::Core::Hashable
# If true, user does not have login privileges.
# Corresponds to the JSON property `locked`
# @return [Boolean]
attr_accessor :locked
alias_method :locked?, :locked
# The expiration time of the current password.
# Corresponds to the JSON property `passwordExpirationTime`
# @return [String]
attr_accessor :password_expiration_time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@locked = args[:locked] if args.key?(:locked)
@password_expiration_time = args[:password_expiration_time] if args.key?(:password_expiration_time)
end
end
# Database instance local user password validation policy
class PasswordValidationPolicy
include Google::Apis::Core::Hashable
# The complexity of the password.
# Corresponds to the JSON property `complexity`
# @return [String]
attr_accessor :complexity
# Disallow username as a part of the password.
# Corresponds to the JSON property `disallowUsernameSubstring`
# @return [Boolean]
attr_accessor :disallow_username_substring
alias_method :disallow_username_substring?, :disallow_username_substring
# Whether the password policy is enabled or not.
# Corresponds to the JSON property `enablePasswordPolicy`
# @return [Boolean]
attr_accessor :enable_password_policy
alias_method :enable_password_policy?, :enable_password_policy
# Minimum number of characters allowed.
# Corresponds to the JSON property `minLength`
# @return [Fixnum]
attr_accessor :min_length
# Minimum interval after which the password can be changed. This flag is only
# supported for PostgreSQL.
# Corresponds to the JSON property `passwordChangeInterval`
# @return [String]
attr_accessor :password_change_interval
# Number of previous passwords that cannot be reused.
# Corresponds to the JSON property `reuseInterval`
# @return [Fixnum]
attr_accessor :reuse_interval
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@complexity = args[:complexity] if args.key?(:complexity)
@disallow_username_substring = args[:disallow_username_substring] if args.key?(:disallow_username_substring)
@enable_password_policy = args[:enable_password_policy] if args.key?(:enable_password_policy)
@min_length = args[:min_length] if args.key?(:min_length)
@password_change_interval = args[:password_change_interval] if args.key?(:password_change_interval)
@reuse_interval = args[:reuse_interval] if args.key?(:reuse_interval)
end
end
# Read-replica configuration for connecting to the primary instance.
class ReplicaConfiguration
include Google::Apis::Core::Hashable
# Specifies if the replica is the failover target. If the field is set to `true`
# the replica will be designated as a failover replica. In case the primary
# instance fails, the replica instance will be promoted as the new primary
# instance. Only one replica can be specified as failover target, and the
# replica has to be in different zone with the primary instance.
# Corresponds to the JSON property `failoverTarget`
# @return [Boolean]
attr_accessor :failover_target
alias_method :failover_target?, :failover_target
# This is always `sql#replicaConfiguration`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Read-replica configuration specific to MySQL databases.
# Corresponds to the JSON property `mysqlReplicaConfiguration`
# @return [Google::Apis::SqladminV1beta4::MySqlReplicaConfiguration]
attr_accessor :mysql_replica_configuration
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@failover_target = args[:failover_target] if args.key?(:failover_target)
@kind = args[:kind] if args.key?(:kind)
@mysql_replica_configuration = args[:mysql_replica_configuration] if args.key?(:mysql_replica_configuration)
end
end
#
class Reschedule
include Google::Apis::Core::Hashable
# Required. The type of the reschedule.
# Corresponds to the JSON property `rescheduleType`
# @return [String]
attr_accessor :reschedule_type
# Optional. Timestamp when the maintenance shall be rescheduled to if
# reschedule_type=SPECIFIC_TIME, in [RFC 3339](https://tools.ietf.org/html/
# rfc3339) format, for example `2012-11-15T16:19:00.094Z`.
# Corresponds to the JSON property `scheduleTime`
# @return [String]
attr_accessor :schedule_time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@reschedule_type = args[:reschedule_type] if args.key?(:reschedule_type)
@schedule_time = args[:schedule_time] if args.key?(:schedule_time)
end
end
# Database instance restore from backup context. Backup context contains source
# instance id and project id.
class RestoreBackupContext
include Google::Apis::Core::Hashable
# The ID of the backup run to restore from.
# Corresponds to the JSON property `backupRunId`
# @return [Fixnum]
attr_accessor :backup_run_id
# The ID of the instance that the backup was taken from.
# Corresponds to the JSON property `instanceId`
# @return [String]
attr_accessor :instance_id
# This is always `sql#restoreBackupContext`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The full project ID of the source instance.
# Corresponds to the JSON property `project`
# @return [String]
attr_accessor :project
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@backup_run_id = args[:backup_run_id] if args.key?(:backup_run_id)
@instance_id = args[:instance_id] if args.key?(:instance_id)
@kind = args[:kind] if args.key?(:kind)
@project = args[:project] if args.key?(:project)
end
end
# Instance rotate server CA context.
class RotateServerCaContext
include Google::Apis::Core::Hashable
# This is always `sql#rotateServerCaContext`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The fingerprint of the next version to be rotated to. If left unspecified,
# will be rotated to the most recently added server CA version.
# Corresponds to the JSON property `nextVersion`
# @return [String]
attr_accessor :next_version
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@kind = args[:kind] if args.key?(:kind)
@next_version = args[:next_version] if args.key?(:next_version)
end
end
# Database instance settings.
class Settings
include Google::Apis::Core::Hashable
# The activation policy specifies when the instance is activated; it is
# applicable only when the instance state is RUNNABLE. Valid values: * `ALWAYS`:
# The instance is on, and remains so even in the absence of connection requests.
# * `NEVER`: The instance is off; it is not activated, even if a connection
# request arrives.
# Corresponds to the JSON property `activationPolicy`
# @return [String]
attr_accessor :activation_policy
# Active Directory configuration, relevant only for Cloud SQL for SQL Server.
# Corresponds to the JSON property `activeDirectoryConfig`
# @return [Google::Apis::SqladminV1beta4::SqlActiveDirectoryConfig]
attr_accessor :active_directory_config
# The App Engine app IDs that can access this instance. (Deprecated) Applied to
# First Generation instances only.
# Corresponds to the JSON property `authorizedGaeApplications`
# @return [Array<String>]
attr_accessor :authorized_gae_applications
# Availability type. Potential values: * `ZONAL`: The instance serves data from
# only one zone. Outages in that zone affect data accessibility. * `REGIONAL`:
# The instance can serve data from more than one zone in a region (it is highly
# available)./ For more information, see [Overview of the High Availability
# Configuration](https://cloud.google.com/sql/docs/mysql/high-availability).
# Corresponds to the JSON property `availabilityType`
# @return [String]
attr_accessor :availability_type
# Database instance backup configuration.
# Corresponds to the JSON property `backupConfiguration`
# @return [Google::Apis::SqladminV1beta4::BackupConfiguration]
attr_accessor :backup_configuration
# The name of server Instance collation.
# Corresponds to the JSON property `collation`
# @return [String]
attr_accessor :collation
# Specifies if connections must use Cloud SQL connectors. Option values include
# the following: `NOT_REQUIRED` (Cloud SQL instances can be connected without
# Cloud SQL Connectors) and `REQUIRED` (Only allow connections that use Cloud
# SQL Connectors) Note that using REQUIRED disables all existing authorized
# networks. If this field is not specified when creating a new instance,
# NOT_REQUIRED is used. If this field is not specified when patching or updating
# an existing instance, it is left unchanged in the instance.
# Corresponds to the JSON property `connectorEnforcement`
# @return [String]
attr_accessor :connector_enforcement
# Configuration specific to read replica instances. Indicates whether database
# flags for crash-safe replication are enabled. This property was only
# applicable to First Generation instances.
# Corresponds to the JSON property `crashSafeReplicationEnabled`
# @return [Boolean]
attr_accessor :crash_safe_replication_enabled
alias_method :crash_safe_replication_enabled?, :crash_safe_replication_enabled
# The size of data disk, in GB. The data disk size minimum is 10GB.
# Corresponds to the JSON property `dataDiskSizeGb`
# @return [Fixnum]
attr_accessor :data_disk_size_gb
# The type of data disk: `PD_SSD` (default) or `PD_HDD`. Not used for First
# Generation instances.
# Corresponds to the JSON property `dataDiskType`
# @return [String]
attr_accessor :data_disk_type
# The database flags passed to the instance at startup.
# Corresponds to the JSON property `databaseFlags`
# @return [Array<Google::Apis::SqladminV1beta4::DatabaseFlags>]
attr_accessor :database_flags
# Configuration specific to read replica instances. Indicates whether
# replication is enabled or not. WARNING: Changing this restarts the instance.
# Corresponds to the JSON property `databaseReplicationEnabled`
# @return [Boolean]
attr_accessor :database_replication_enabled
alias_method :database_replication_enabled?, :database_replication_enabled
# Configuration to protect against accidental instance deletion.
# Corresponds to the JSON property `deletionProtectionEnabled`
# @return [Boolean]
attr_accessor :deletion_protection_enabled
alias_method :deletion_protection_enabled?, :deletion_protection_enabled
# Deny maintenance periods
# Corresponds to the JSON property `denyMaintenancePeriods`
# @return [Array<Google::Apis::SqladminV1beta4::DenyMaintenancePeriod>]
attr_accessor :deny_maintenance_periods
# Insights configuration. This specifies when Cloud SQL Insights feature is
# enabled and optional configuration.
# Corresponds to the JSON property `insightsConfig`
# @return [Google::Apis::SqladminV1beta4::InsightsConfig]
attr_accessor :insights_config
# IP Management configuration.
# Corresponds to the JSON property `ipConfiguration`
# @return [Google::Apis::SqladminV1beta4::IpConfiguration]
attr_accessor :ip_configuration
# This is always `sql#settings`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Preferred location. This specifies where a Cloud SQL instance is located. Note
# that if the preferred location is not available, the instance will be located
# as close as possible within the region. Only one location may be specified.
# Corresponds to the JSON property `locationPreference`
# @return [Google::Apis::SqladminV1beta4::LocationPreference]
attr_accessor :location_preference
# Maintenance window. This specifies when a Cloud SQL instance is restarted for
# system maintenance purposes.
# Corresponds to the JSON property `maintenanceWindow`
# @return [Google::Apis::SqladminV1beta4::MaintenanceWindow]
attr_accessor :maintenance_window
# Database instance local user password validation policy
# Corresponds to the JSON property `passwordValidationPolicy`
# @return [Google::Apis::SqladminV1beta4::PasswordValidationPolicy]
attr_accessor :password_validation_policy
# The pricing plan for this instance. This can be either `PER_USE` or `PACKAGE`.
# Only `PER_USE` is supported for Second Generation instances.
# Corresponds to the JSON property `pricingPlan`
# @return [String]
attr_accessor :pricing_plan
# The type of replication this instance uses. This can be either `ASYNCHRONOUS`
# or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First
# Generation instances.
# Corresponds to the JSON property `replicationType`
# @return [String]
attr_accessor :replication_type
# The version of instance settings. This is a required field for update method
# to make sure concurrent updates are handled properly. During update, use the
# most recent settingsVersion value for this instance and do not try to update
# this value.
# Corresponds to the JSON property `settingsVersion`
# @return [Fixnum]
attr_accessor :settings_version
# SQL Server specific audit configuration.
# Corresponds to the JSON property `sqlServerAuditConfig`
# @return [Google::Apis::SqladminV1beta4::SqlServerAuditConfig]
attr_accessor :sql_server_audit_config
# Configuration to increase storage size automatically. The default value is
# true.
# Corresponds to the JSON property `storageAutoResize`
# @return [Boolean]
attr_accessor :storage_auto_resize
alias_method :storage_auto_resize?, :storage_auto_resize
# The maximum size to which storage capacity can be automatically increased. The
# default value is 0, which specifies that there is no limit.
# Corresponds to the JSON property `storageAutoResizeLimit`
# @return [Fixnum]
attr_accessor :storage_auto_resize_limit
# The tier (or machine type) for this instance, for example `db-custom-1-3840`.
# WARNING: Changing this restarts the instance.
# Corresponds to the JSON property `tier`
# @return [String]
attr_accessor :tier
# Server timezone, relevant only for Cloud SQL for SQL Server.
# Corresponds to the JSON property `timeZone`
# @return [String]
attr_accessor :time_zone
# User-provided labels, represented as a dictionary where each label is a single
# key value pair.
# Corresponds to the JSON property `userLabels`
# @return [Hash<String,String>]
attr_accessor :user_labels
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@activation_policy = args[:activation_policy] if args.key?(:activation_policy)
@active_directory_config = args[:active_directory_config] if args.key?(:active_directory_config)
@authorized_gae_applications = args[:authorized_gae_applications] if args.key?(:authorized_gae_applications)
@availability_type = args[:availability_type] if args.key?(:availability_type)
@backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
@collation = args[:collation] if args.key?(:collation)
@connector_enforcement = args[:connector_enforcement] if args.key?(:connector_enforcement)
@crash_safe_replication_enabled = args[:crash_safe_replication_enabled] if args.key?(:crash_safe_replication_enabled)
@data_disk_size_gb = args[:data_disk_size_gb] if args.key?(:data_disk_size_gb)
@data_disk_type = args[:data_disk_type] if args.key?(:data_disk_type)
@database_flags = args[:database_flags] if args.key?(:database_flags)
@database_replication_enabled = args[:database_replication_enabled] if args.key?(:database_replication_enabled)
@deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled)
@deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
@insights_config = args[:insights_config] if args.key?(:insights_config)
@ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
@kind = args[:kind] if args.key?(:kind)
@location_preference = args[:location_preference] if args.key?(:location_preference)
@maintenance_window = args[:maintenance_window] if args.key?(:maintenance_window)
@password_validation_policy = args[:password_validation_policy] if args.key?(:password_validation_policy)
@pricing_plan = args[:pricing_plan] if args.key?(:pricing_plan)
@replication_type = args[:replication_type] if args.key?(:replication_type)
@settings_version = args[:settings_version] if args.key?(:settings_version)
@sql_server_audit_config = args[:sql_server_audit_config] if args.key?(:sql_server_audit_config)
@storage_auto_resize = args[:storage_auto_resize] if args.key?(:storage_auto_resize)
@storage_auto_resize_limit = args[:storage_auto_resize_limit] if args.key?(:storage_auto_resize_limit)
@tier = args[:tier] if args.key?(:tier)
@time_zone = args[:time_zone] if args.key?(:time_zone)
@user_labels = args[:user_labels] if args.key?(:user_labels)
end
end
# Active Directory configuration, relevant only for Cloud SQL for SQL Server.
class SqlActiveDirectoryConfig
include Google::Apis::Core::Hashable
# The name of the domain (e.g., mydomain.com).
# Corresponds to the JSON property `domain`
# @return [String]
attr_accessor :domain
# This is always sql#activeDirectoryConfig.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@domain = args[:domain] if args.key?(:domain)
@kind = args[:kind] if args.key?(:kind)
end
end
# External primary instance migration setting error/warning.
class SqlExternalSyncSettingError
include Google::Apis::Core::Hashable
# Additional information about the error encountered.
# Corresponds to the JSON property `detail`
# @return [String]
attr_accessor :detail
# Can be `sql#externalSyncSettingError` or `sql#externalSyncSettingWarning`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Identifies the specific error that occurred.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@detail = args[:detail] if args.key?(:detail)
@kind = args[:kind] if args.key?(:kind)
@type = args[:type] if args.key?(:type)
end
end
# Reschedule options for maintenance windows.
class SqlInstancesRescheduleMaintenanceRequestBody
include Google::Apis::Core::Hashable
# Required. The type of the reschedule the user wants.
# Corresponds to the JSON property `reschedule`
# @return [Google::Apis::SqladminV1beta4::Reschedule]
attr_accessor :reschedule
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@reschedule = args[:reschedule] if args.key?(:reschedule)
end
end
#
class SqlInstancesStartExternalSyncRequest
include Google::Apis::Core::Hashable
# MySQL-specific external server sync settings.
# Corresponds to the JSON property `mysqlSyncConfig`
# @return [Google::Apis::SqladminV1beta4::MySqlSyncConfig]
attr_accessor :mysql_sync_config
# Whether to skip the verification step (VESS).
# Corresponds to the JSON property `skipVerification`
# @return [Boolean]
attr_accessor :skip_verification
alias_method :skip_verification?, :skip_verification
# External sync mode.
# Corresponds to the JSON property `syncMode`
# @return [String]
attr_accessor :sync_mode
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@mysql_sync_config = args[:mysql_sync_config] if args.key?(:mysql_sync_config)
@skip_verification = args[:skip_verification] if args.key?(:skip_verification)
@sync_mode = args[:sync_mode] if args.key?(:sync_mode)
end
end
#
class SqlInstancesVerifyExternalSyncSettingsRequest
include Google::Apis::Core::Hashable
# MySQL-specific external server sync settings.
# Corresponds to the JSON property `mysqlSyncConfig`
# @return [Google::Apis::SqladminV1beta4::MySqlSyncConfig]
attr_accessor :mysql_sync_config
# External sync mode
# Corresponds to the JSON property `syncMode`
# @return [String]
attr_accessor :sync_mode
# Flag to enable verifying connection only
# Corresponds to the JSON property `verifyConnectionOnly`
# @return [Boolean]
attr_accessor :verify_connection_only
alias_method :verify_connection_only?, :verify_connection_only
# Optional. Flag to verify settings required by replication setup only
# Corresponds to the JSON property `verifyReplicationOnly`
# @return [Boolean]
attr_accessor :verify_replication_only
alias_method :verify_replication_only?, :verify_replication_only
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@mysql_sync_config = args[:mysql_sync_config] if args.key?(:mysql_sync_config)
@sync_mode = args[:sync_mode] if args.key?(:sync_mode)
@verify_connection_only = args[:verify_connection_only] if args.key?(:verify_connection_only)
@verify_replication_only = args[:verify_replication_only] if args.key?(:verify_replication_only)
end
end
# Instance verify external sync settings response.
class SqlInstancesVerifyExternalSyncSettingsResponse
include Google::Apis::Core::Hashable
# List of migration violations.
# Corresponds to the JSON property `errors`
# @return [Array<Google::Apis::SqladminV1beta4::SqlExternalSyncSettingError>]
attr_accessor :errors
# This is always `sql#migrationSettingErrorList`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# List of migration warnings.
# Corresponds to the JSON property `warnings`
# @return [Array<Google::Apis::SqladminV1beta4::SqlExternalSyncSettingError>]
attr_accessor :warnings
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@errors = args[:errors] if args.key?(:errors)
@kind = args[:kind] if args.key?(:kind)
@warnings = args[:warnings] if args.key?(:warnings)
end
end
# This message wraps up the information written by out-of-disk detection job.
class SqlOutOfDiskReport
include Google::Apis::Core::Hashable
# The minimum recommended increase size in GigaBytes This field is consumed by
# the frontend * Writers: * the proactive database wellness job for OOD. *
# Readers:
# Corresponds to the JSON property `sqlMinRecommendedIncreaseSizeGb`
# @return [Fixnum]
attr_accessor :sql_min_recommended_increase_size_gb
# This field represents the state generated by the proactive database wellness
# job for OutOfDisk issues. * Writers: * the proactive database wellness job for
# OOD. * Readers: * the proactive database wellness job
# Corresponds to the JSON property `sqlOutOfDiskState`
# @return [String]
attr_accessor :sql_out_of_disk_state
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@sql_min_recommended_increase_size_gb = args[:sql_min_recommended_increase_size_gb] if args.key?(:sql_min_recommended_increase_size_gb)
@sql_out_of_disk_state = args[:sql_out_of_disk_state] if args.key?(:sql_out_of_disk_state)
end
end
# Any scheduled maintenance for this instance.
class SqlScheduledMaintenance
include Google::Apis::Core::Hashable
#
# Corresponds to the JSON property `canDefer`
# @return [Boolean]
attr_accessor :can_defer
alias_method :can_defer?, :can_defer
# If the scheduled maintenance can be rescheduled.
# Corresponds to the JSON property `canReschedule`
# @return [Boolean]
attr_accessor :can_reschedule
alias_method :can_reschedule?, :can_reschedule
# Maintenance cannot be rescheduled to start beyond this deadline.
# Corresponds to the JSON property `scheduleDeadlineTime`
# @return [String]
attr_accessor :schedule_deadline_time
# The start time of any upcoming scheduled maintenance for this instance.
# Corresponds to the JSON property `startTime`
# @return [String]
attr_accessor :start_time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@can_defer = args[:can_defer] if args.key?(:can_defer)
@can_reschedule = args[:can_reschedule] if args.key?(:can_reschedule)
@schedule_deadline_time = args[:schedule_deadline_time] if args.key?(:schedule_deadline_time)
@start_time = args[:start_time] if args.key?(:start_time)
end
end
# SQL Server specific audit configuration.
class SqlServerAuditConfig
include Google::Apis::Core::Hashable
# The name of the destination bucket (e.g., gs://mybucket).
# Corresponds to the JSON property `bucket`
# @return [String]
attr_accessor :bucket
# This is always sql#sqlServerAuditConfig
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# How long to keep generated audit files.
# Corresponds to the JSON property `retentionInterval`
# @return [String]
attr_accessor :retention_interval
# How often to upload generated audit files.
# Corresponds to the JSON property `uploadInterval`
# @return [String]
attr_accessor :upload_interval
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bucket = args[:bucket] if args.key?(:bucket)
@kind = args[:kind] if args.key?(:kind)
@retention_interval = args[:retention_interval] if args.key?(:retention_interval)
@upload_interval = args[:upload_interval] if args.key?(:upload_interval)
end
end
# Represents a Sql Server database on the Cloud SQL instance.
class SqlServerDatabaseDetails
include Google::Apis::Core::Hashable
# The version of SQL Server with which the database is to be made compatible
# Corresponds to the JSON property `compatibilityLevel`
# @return [Fixnum]
attr_accessor :compatibility_level
# The recovery model of a SQL Server database
# Corresponds to the JSON property `recoveryModel`
# @return [String]
attr_accessor :recovery_model
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@compatibility_level = args[:compatibility_level] if args.key?(:compatibility_level)
@recovery_model = args[:recovery_model] if args.key?(:recovery_model)
end
end
# Represents a Sql Server user on the Cloud SQL instance.
class SqlServerUserDetails
include Google::Apis::Core::Hashable
# If the user has been disabled
# Corresponds to the JSON property `disabled`
# @return [Boolean]
attr_accessor :disabled
alias_method :disabled?, :disabled
# The server roles for this user
# Corresponds to the JSON property `serverRoles`
# @return [Array<String>]
attr_accessor :server_roles
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@disabled = args[:disabled] if args.key?(:disabled)
@server_roles = args[:server_roles] if args.key?(:server_roles)
end
end
# SslCerts Resource
class SslCert
include Google::Apis::Core::Hashable
# PEM representation.
# Corresponds to the JSON property `cert`
# @return [String]
attr_accessor :cert
# Serial number, as extracted from the certificate.
# Corresponds to the JSON property `certSerialNumber`
# @return [String]
attr_accessor :cert_serial_number
# User supplied name. Constrained to [a-zA-Z.-_ ]+.
# Corresponds to the JSON property `commonName`
# @return [String]
attr_accessor :common_name
# The time when the certificate was created in [RFC 3339](https://tools.ietf.org/
# html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`.
# Corresponds to the JSON property `createTime`
# @return [String]
attr_accessor :create_time
# The time when the certificate expires in [RFC 3339](https://tools.ietf.org/
# html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`.
# Corresponds to the JSON property `expirationTime`
# @return [String]
attr_accessor :expiration_time
# Name of the database instance.
# Corresponds to the JSON property `instance`
# @return [String]
attr_accessor :instance
# This is always `sql#sslCert`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The URI of this resource.
# Corresponds to the JSON property `selfLink`
# @return [String]
attr_accessor :self_link
# Sha1 Fingerprint.
# Corresponds to the JSON property `sha1Fingerprint`
# @return [String]
attr_accessor :sha1_fingerprint
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@cert = args[:cert] if args.key?(:cert)
@cert_serial_number = args[:cert_serial_number] if args.key?(:cert_serial_number)
@common_name = args[:common_name] if args.key?(:common_name)
@create_time = args[:create_time] if args.key?(:create_time)
@expiration_time = args[:expiration_time] if args.key?(:expiration_time)
@instance = args[:instance] if args.key?(:instance)
@kind = args[:kind] if args.key?(:kind)
@self_link = args[:self_link] if args.key?(:self_link)
@sha1_fingerprint = args[:sha1_fingerprint] if args.key?(:sha1_fingerprint)
end
end
# SslCertDetail.
class SslCertDetail
include Google::Apis::Core::Hashable
# SslCerts Resource
# Corresponds to the JSON property `certInfo`
# @return [Google::Apis::SqladminV1beta4::SslCert]
attr_accessor :cert_info
# The private key for the client cert, in pem format. Keep private in order to
# protect your security.
# Corresponds to the JSON property `certPrivateKey`
# @return [String]
attr_accessor :cert_private_key
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@cert_info = args[:cert_info] if args.key?(:cert_info)
@cert_private_key = args[:cert_private_key] if args.key?(:cert_private_key)
end
end
# SslCerts create ephemeral certificate request.
class SslCertsCreateEphemeralRequest
include Google::Apis::Core::Hashable
# Access token to include in the signed certificate.
# Corresponds to the JSON property `access_token`
# @return [String]
attr_accessor :access_token
# PEM encoded public key to include in the signed certificate.
# Corresponds to the JSON property `public_key`
# @return [String]
attr_accessor :public_key
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@access_token = args[:access_token] if args.key?(:access_token)
@public_key = args[:public_key] if args.key?(:public_key)
end
end
# SslCerts insert request.
class InsertSslCertsRequest
include Google::Apis::Core::Hashable
# User supplied name. Must be a distinct name from the other certificates for
# this instance.
# Corresponds to the JSON property `commonName`
# @return [String]
attr_accessor :common_name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@common_name = args[:common_name] if args.key?(:common_name)
end
end
# SslCert insert response.
class InsertSslCertsResponse
include Google::Apis::Core::Hashable
# SslCertDetail.
# Corresponds to the JSON property `clientCert`
# @return [Google::Apis::SqladminV1beta4::SslCertDetail]
attr_accessor :client_cert
# This is always `sql#sslCertsInsert`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# An Operation resource. For successful operations that return an Operation
# resource, only the fields relevant to the operation are populated in the
# resource.
# Corresponds to the JSON property `operation`
# @return [Google::Apis::SqladminV1beta4::Operation]
attr_accessor :operation
# SslCerts Resource
# Corresponds to the JSON property `serverCaCert`
# @return [Google::Apis::SqladminV1beta4::SslCert]
attr_accessor :server_ca_cert
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@client_cert = args[:client_cert] if args.key?(:client_cert)
@kind = args[:kind] if args.key?(:kind)
@operation = args[:operation] if args.key?(:operation)
@server_ca_cert = args[:server_ca_cert] if args.key?(:server_ca_cert)
end
end
# SslCerts list response.
class ListSslCertsResponse
include Google::Apis::Core::Hashable
# List of client certificates for the instance.
# Corresponds to the JSON property `items`
# @return [Array<Google::Apis::SqladminV1beta4::SslCert>]
attr_accessor :items
# This is always `sql#sslCertsList`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@items = args[:items] if args.key?(:items)
@kind = args[:kind] if args.key?(:kind)
end
end
# Initial sync flags for certain Cloud SQL APIs. Currently used for the MySQL
# external server initial dump.
class SyncFlags
include Google::Apis::Core::Hashable
# The name of the flag.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# The value of the flag. This field must be omitted if the flag doesn't take a
# value.
# Corresponds to the JSON property `value`
# @return [String]
attr_accessor :value
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@name = args[:name] if args.key?(:name)
@value = args[:value] if args.key?(:value)
end
end
# A Google Cloud SQL service tier resource.
class Tier
include Google::Apis::Core::Hashable
# The maximum disk size of this tier in bytes.
# Corresponds to the JSON property `DiskQuota`
# @return [Fixnum]
attr_accessor :disk_quota
# The maximum RAM usage of this tier in bytes.
# Corresponds to the JSON property `RAM`
# @return [Fixnum]
attr_accessor :ram
# This is always `sql#tier`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The applicable regions for this tier.
# Corresponds to the JSON property `region`
# @return [Array<String>]
attr_accessor :region
# An identifier for the machine type, for example, `db-custom-1-3840`. For
# related information, see [Pricing](/sql/pricing).
# Corresponds to the JSON property `tier`
# @return [String]
attr_accessor :tier
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@disk_quota = args[:disk_quota] if args.key?(:disk_quota)
@ram = args[:ram] if args.key?(:ram)
@kind = args[:kind] if args.key?(:kind)
@region = args[:region] if args.key?(:region)
@tier = args[:tier] if args.key?(:tier)
end
end
# Tiers list response.
class ListTiersResponse
include Google::Apis::Core::Hashable
# List of tiers.
# Corresponds to the JSON property `items`
# @return [Array<Google::Apis::SqladminV1beta4::Tier>]
attr_accessor :items
# This is always `sql#tiersList`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@items = args[:items] if args.key?(:items)
@kind = args[:kind] if args.key?(:kind)
end
end
# Database Instance truncate log context.
class TruncateLogContext
include Google::Apis::Core::Hashable
# This is always `sql#truncateLogContext`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The type of log to truncate. Valid values are `MYSQL_GENERAL_TABLE` and `
# MYSQL_SLOW_TABLE`.
# Corresponds to the JSON property `logType`
# @return [String]
attr_accessor :log_type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@kind = args[:kind] if args.key?(:kind)
@log_type = args[:log_type] if args.key?(:log_type)
end
end
# A Cloud SQL user resource.
class User
include Google::Apis::Core::Hashable
# Dual password status for the user.
# Corresponds to the JSON property `dualPasswordType`
# @return [String]
attr_accessor :dual_password_type
# This field is deprecated and will be removed from a future version of the API.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
# Optional. The host from which the user can connect. For `insert` operations,
# host defaults to an empty string. For `update` operations, host is specified
# as part of the request URL. The host name cannot be updated after insertion.
# For a MySQL instance, it's required; for a PostgreSQL or SQL Server instance,
# it's optional.
# Corresponds to the JSON property `host`
# @return [String]
attr_accessor :host
# The name of the Cloud SQL instance. This does not include the project ID. Can
# be omitted for *update* because it is already specified on the URL.
# Corresponds to the JSON property `instance`
# @return [String]
attr_accessor :instance
# This is always `sql#user`.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The name of the user in the Cloud SQL instance. Can be omitted for `update`
# because it is already specified in the URL.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# The password for the user.
# Corresponds to the JSON property `password`
# @return [String]
attr_accessor :password
# User level password validation policy.
# Corresponds to the JSON property `passwordPolicy`
# @return [Google::Apis::SqladminV1beta4::UserPasswordValidationPolicy]
attr_accessor :password_policy
# The project ID of the project containing the Cloud SQL database. The Google
# apps domain is prefixed if applicable. Can be omitted for *update* because it
# is already specified on the URL.
# Corresponds to the JSON property `project`
# @return [String]
attr_accessor :project
# Represents a Sql Server user on the Cloud SQL instance.
# Corresponds to the JSON property `sqlserverUserDetails`
# @return [Google::Apis::SqladminV1beta4::SqlServerUserDetails]
attr_accessor :sqlserver_user_details
# The user type. It determines the method to authenticate the user during login.
# The default is the database's built-in user type.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@dual_password_type = args[:dual_password_type] if args.key?(:dual_password_type)
@etag = args[:etag] if args.key?(:etag)
@host = args[:host] if args.key?(:host)
@instance = args[:instance] if args.key?(:instance)
@kind = args[:kind] if args.key?(:kind)
@name = args[:name] if args.key?(:name)
@password = args[:password] if args.key?(:password)
@password_policy = args[:password_policy] if args.key?(:password_policy)
@project = args[:project] if args.key?(:project)
@sqlserver_user_details = args[:sqlserver_user_details] if args.key?(:sqlserver_user_details)
@type = args[:type] if args.key?(:type)
end
end
# User level password validation policy.
class UserPasswordValidationPolicy
include Google::Apis::Core::Hashable
# Number of failed login attempts allowed before user get locked.
# Corresponds to the JSON property `allowedFailedAttempts`
# @return [Fixnum]
attr_accessor :allowed_failed_attempts
# If true, failed login attempts check will be enabled.
# Corresponds to the JSON property `enableFailedAttemptsCheck`
# @return [Boolean]
attr_accessor :enable_failed_attempts_check
alias_method :enable_failed_attempts_check?, :enable_failed_attempts_check
# If true, the user must specify the current password before changing the
# password. This flag is supported only for MySQL.
# Corresponds to the JSON property `enablePasswordVerification`
# @return [Boolean]
attr_accessor :enable_password_verification
alias_method :enable_password_verification?, :enable_password_verification
# Expiration duration after password is updated.
# Corresponds to the JSON property `passwordExpirationDuration`
# @return [String]
attr_accessor :password_expiration_duration
# Read-only password status.
# Corresponds to the JSON property `status`
# @return [Google::Apis::SqladminV1beta4::PasswordStatus]
attr_accessor :status
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@allowed_failed_attempts = args[:allowed_failed_attempts] if args.key?(:allowed_failed_attempts)
@enable_failed_attempts_check = args[:enable_failed_attempts_check] if args.key?(:enable_failed_attempts_check)
@enable_password_verification = args[:enable_password_verification] if args.key?(:enable_password_verification)
@password_expiration_duration = args[:password_expiration_duration] if args.key?(:password_expiration_duration)
@status = args[:status] if args.key?(:status)
end
end
# User list response.
class ListUsersResponse
include Google::Apis::Core::Hashable
# List of user resources in the instance.
# Corresponds to the JSON property `items`
# @return [Array<Google::Apis::SqladminV1beta4::User>]
attr_accessor :items
# This is always *sql#usersList*.
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# An identifier that uniquely identifies the operation. You can use this
# identifier to retrieve the Operations resource that has information about the
# operation.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@items = args[:items] if args.key?(:items)
@kind = args[:kind] if args.key?(:kind)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end
end
end
end
end
|