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
// This file is @generated by prost-build.
/// Encoding of an input element such as an audio, video, or text track.
/// Elementary streams must be packaged before mapping and sharing between
/// different output formats.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ElementaryStream {
/// A unique key for this elementary stream. The key must be 1-63
/// characters in length. The key must begin and end with a letter (regardless
/// of case) or a number, but can contain dashes or underscores in between.
#[prost(string, tag = "4")]
pub key: ::prost::alloc::string::String,
/// Required. Encoding of an audio, video, or text track.
#[prost(oneof = "elementary_stream::ElementaryStream", tags = "1, 2, 3")]
pub elementary_stream: ::core::option::Option<elementary_stream::ElementaryStream>,
}
/// Nested message and enum types in `ElementaryStream`.
pub mod elementary_stream {
/// Required. Encoding of an audio, video, or text track.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum ElementaryStream {
/// Encoding of a video stream.
#[prost(message, tag = "1")]
VideoStream(super::VideoStream),
/// Encoding of an audio stream.
#[prost(message, tag = "2")]
AudioStream(super::AudioStream),
/// Encoding of a text stream. For example, closed captions or subtitles.
#[prost(message, tag = "3")]
TextStream(super::TextStream),
}
}
/// Multiplexing settings for output stream.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MuxStream {
/// A unique key for this multiplexed stream. The key must be 1-63
/// characters in length. The key must begin and end with a letter (regardless
/// of case) or a number, but can contain dashes or underscores in between.
#[prost(string, tag = "1")]
pub key: ::prost::alloc::string::String,
/// The container format. The default is `fmp4`.
///
/// Supported container formats:
///
/// - `fmp4` - the corresponding file extension is `.m4s`
/// - `ts` - the corresponding file extension is `.ts`
#[prost(string, tag = "3")]
pub container: ::prost::alloc::string::String,
/// List of `ElementaryStream`
/// [key][google.cloud.video.livestream.v1.ElementaryStream.key]s multiplexed
/// in this stream.
///
/// - For `fmp4` container, must contain either one video or one audio stream.
/// - For `ts` container, must contain exactly one audio stream and up to one
/// video stream.
#[prost(string, repeated, tag = "4")]
pub elementary_streams: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Segment settings for `fmp4` and `ts`.
#[prost(message, optional, tag = "5")]
pub segment_settings: ::core::option::Option<SegmentSettings>,
/// Identifier of the encryption configuration to use. If omitted, output
/// will be unencrypted.
#[prost(string, tag = "6")]
pub encryption_id: ::prost::alloc::string::String,
}
/// Manifest configuration.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Manifest {
/// The name of the generated file. The default is `manifest` with the
/// extension suffix corresponding to the `Manifest`
/// [type][google.cloud.video.livestream.v1.Manifest.type]. If multiple
/// manifests are added to the channel, each must have a unique file name.
#[prost(string, tag = "1")]
pub file_name: ::prost::alloc::string::String,
/// Required. Type of the manifest, can be `HLS` or `DASH`.
#[prost(enumeration = "manifest::ManifestType", tag = "2")]
pub r#type: i32,
/// Required. List of `MuxStream`
/// [key][google.cloud.video.livestream.v1.MuxStream.key]s that should appear
/// in this manifest.
///
/// - For HLS, either `fmp4` or `ts` mux streams can be specified but not
/// mixed.
/// - For DASH, only `fmp4` mux streams can be specified.
#[prost(string, repeated, tag = "3")]
pub mux_streams: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Maximum number of segments that this manifest holds. Once the manifest
/// reaches this maximum number of segments, whenever a new segment is added to
/// the manifest, the oldest segment will be removed from the manifest.
/// The minimum value is 3 and the default value is 5.
#[prost(int32, tag = "4")]
pub max_segment_count: i32,
/// How long to keep a segment on the output Google Cloud Storage bucket after
/// it is removed from the manifest. This field should be large enough to cover
/// the manifest propagation delay. Otherwise, a player could receive 404
/// errors while accessing segments which are listed in the manifest that the
/// player has, but were already deleted from the output Google Cloud Storage
/// bucket. Default value is `60s`.
///
/// If both segment_keep_duration and
/// [RetentionConfig.retention_window_duration][google.cloud.video.livestream.v1.RetentionConfig.retention_window_duration]
/// are set,
/// [RetentionConfig.retention_window_duration][google.cloud.video.livestream.v1.RetentionConfig.retention_window_duration]
/// is used and segment_keep_duration is ignored.
#[prost(message, optional, tag = "5")]
pub segment_keep_duration: ::core::option::Option<::prost_types::Duration>,
/// Whether to use the timecode, as specified in timecode config, when setting:
///
/// - `availabilityStartTime` attribute in DASH manifests.
/// - `#EXT-X-PROGRAM-DATE-TIME` tag in HLS manifests.
///
/// If false, ignore the input timecode and use the time from system clock
/// when the manifest is first generated. This is the default behavior.
#[prost(bool, tag = "6")]
pub use_timecode_as_timeline: bool,
/// Optional. A unique key for this manifest.
#[prost(string, tag = "7")]
pub key: ::prost::alloc::string::String,
}
/// Nested message and enum types in `Manifest`.
pub mod manifest {
/// The manifest type can be either `HLS` or `DASH`.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum ManifestType {
/// The manifest type is not specified.
Unspecified = 0,
/// Create an `HLS` manifest. The corresponding file extension is `.m3u8`.
Hls = 1,
/// Create a `DASH` manifest. The corresponding file extension is `.mpd`.
Dash = 2,
}
impl ManifestType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
ManifestType::Unspecified => "MANIFEST_TYPE_UNSPECIFIED",
ManifestType::Hls => "HLS",
ManifestType::Dash => "DASH",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"MANIFEST_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"HLS" => Some(Self::Hls),
"DASH" => Some(Self::Dash),
_ => None,
}
}
}
}
/// Sprite sheet configuration.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SpriteSheet {
/// Format type. The default is `jpeg`.
///
/// Supported formats:
///
/// - `jpeg`
#[prost(string, tag = "1")]
pub format: ::prost::alloc::string::String,
/// Required. File name prefix for the generated sprite sheets. If multiple
/// sprite sheets are added to the channel, each must have a unique file
/// prefix.
/// Each sprite sheet has an incremental 10-digit zero-padded suffix starting
/// from 0 before the extension, such as `sprite_sheet0000000123.jpeg`.
#[prost(string, tag = "2")]
pub file_prefix: ::prost::alloc::string::String,
/// Required. The width of the sprite in pixels. Must be an even integer.
#[prost(int32, tag = "3")]
pub sprite_width_pixels: i32,
/// Required. The height of the sprite in pixels. Must be an even integer.
#[prost(int32, tag = "4")]
pub sprite_height_pixels: i32,
/// The maximum number of sprites per row in a sprite sheet. Valid range is
/// \[1, 10\] and the default value is 1.
#[prost(int32, tag = "5")]
pub column_count: i32,
/// The maximum number of rows per sprite sheet. When the sprite sheet is full,
/// a new sprite sheet is created. Valid range is \[1, 10\] and the default value
/// is 1.
#[prost(int32, tag = "6")]
pub row_count: i32,
/// Create sprites at regular intervals. Valid range is \[1 second, 1 hour\] and
/// the default value is `10s`.
#[prost(message, optional, tag = "7")]
pub interval: ::core::option::Option<::prost_types::Duration>,
/// The quality of the generated sprite sheet. Enter a value between 1
/// and 100, where 1 is the lowest quality and 100 is the highest quality.
/// The default is 100. A high quality value corresponds to a low image data
/// compression ratio.
#[prost(int32, tag = "8")]
pub quality: i32,
}
/// Preprocessing configurations.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct PreprocessingConfig {
/// Audio preprocessing configuration.
#[prost(message, optional, tag = "1")]
pub audio: ::core::option::Option<preprocessing_config::Audio>,
/// Specify the video cropping configuration.
#[prost(message, optional, tag = "2")]
pub crop: ::core::option::Option<preprocessing_config::Crop>,
/// Specify the video pad filter configuration.
#[prost(message, optional, tag = "3")]
pub pad: ::core::option::Option<preprocessing_config::Pad>,
}
/// Nested message and enum types in `PreprocessingConfig`.
pub mod preprocessing_config {
/// Audio preprocessing configuration.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct Audio {
/// Specify audio loudness normalization in loudness units relative to full
/// scale (LUFS). Enter a value between -24 and 0 according to the following:
///
/// - -24 is the Advanced Television Systems Committee (ATSC A/85)
/// - -23 is the EU R128 broadcast standard
/// - -19 is the prior standard for online mono audio
/// - -18 is the ReplayGain standard
/// - -16 is the prior standard for stereo audio
/// - -14 is the new online audio standard recommended by Spotify, as well as
/// Amazon Echo
/// - 0 disables normalization. The default is 0.
#[prost(double, tag = "1")]
pub lufs: f64,
}
/// Video cropping configuration for the input video. The cropped input video
/// is scaled to match the output resolution.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct Crop {
/// The number of pixels to crop from the top. The default is 0.
#[prost(int32, tag = "1")]
pub top_pixels: i32,
/// The number of pixels to crop from the bottom. The default is 0.
#[prost(int32, tag = "2")]
pub bottom_pixels: i32,
/// The number of pixels to crop from the left. The default is 0.
#[prost(int32, tag = "3")]
pub left_pixels: i32,
/// The number of pixels to crop from the right. The default is 0.
#[prost(int32, tag = "4")]
pub right_pixels: i32,
}
/// Pad filter configuration for the input video. The padded input video
/// is scaled after padding with black to match the output resolution.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct Pad {
/// The number of pixels to add to the top. The default is 0.
#[prost(int32, tag = "1")]
pub top_pixels: i32,
/// The number of pixels to add to the bottom. The default is 0.
#[prost(int32, tag = "2")]
pub bottom_pixels: i32,
/// The number of pixels to add to the left. The default is 0.
#[prost(int32, tag = "3")]
pub left_pixels: i32,
/// The number of pixels to add to the right. The default is 0.
#[prost(int32, tag = "4")]
pub right_pixels: i32,
}
}
/// Video stream resource.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct VideoStream {
/// Codec settings.
#[prost(oneof = "video_stream::CodecSettings", tags = "20")]
pub codec_settings: ::core::option::Option<video_stream::CodecSettings>,
}
/// Nested message and enum types in `VideoStream`.
pub mod video_stream {
/// H264 codec settings.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct H264CodecSettings {
/// Required. The width of the video in pixels. Must be an even integer.
/// Valid range is \[320, 1920\].
#[prost(int32, tag = "1")]
pub width_pixels: i32,
/// Required. The height of the video in pixels. Must be an even integer.
/// Valid range is \[180, 1080\].
#[prost(int32, tag = "2")]
pub height_pixels: i32,
/// Required. The target video frame rate in frames per second (FPS). Must be
/// less than or equal to 60. Will default to the input frame rate if larger
/// than the input frame rate. The API will generate an output FPS that is
/// divisible by the input FPS, and smaller or equal to the target FPS. See
/// [Calculating frame
/// rate](<https://cloud.google.com/transcoder/docs/concepts/frame-rate>) for
/// more information.
#[prost(double, tag = "3")]
pub frame_rate: f64,
/// Required. The video bitrate in bits per second. Minimum value is 10,000.
///
/// - For SD resolution (< 720p), must be <= 3,000,000 (3 Mbps).
/// - For HD resolution (<= 1080p), must be <= 15,000,000 (15 Mbps).
#[prost(int32, tag = "4")]
pub bitrate_bps: i32,
/// Specifies whether an open Group of Pictures (GOP) structure should be
/// allowed or not. The default is `false`.
#[prost(bool, tag = "6")]
pub allow_open_gop: bool,
/// Size of the Video Buffering Verifier (VBV) buffer in bits. Must be
/// greater than zero. The default is equal to
/// [bitrate_bps][google.cloud.video.livestream.v1.VideoStream.H264CodecSettings.bitrate_bps].
#[prost(int32, tag = "9")]
pub vbv_size_bits: i32,
/// Initial fullness of the Video Buffering Verifier (VBV) buffer in bits.
/// Must be greater than zero. The default is equal to 90% of
/// [vbv_size_bits][google.cloud.video.livestream.v1.VideoStream.H264CodecSettings.vbv_size_bits].
#[prost(int32, tag = "10")]
pub vbv_fullness_bits: i32,
/// The entropy coder to use. The default is `cabac`.
///
/// Supported entropy coders:
///
/// - `cavlc`
/// - `cabac`
#[prost(string, tag = "11")]
pub entropy_coder: ::prost::alloc::string::String,
/// Allow B-pyramid for reference frame selection. This may not be supported
/// on all decoders. The default is `false`.
#[prost(bool, tag = "12")]
pub b_pyramid: bool,
/// The number of consecutive B-frames. Must be greater than or equal to
/// zero. Must be less than
/// [gop_frame_count][google.cloud.video.livestream.v1.VideoStream.H264CodecSettings.gop_frame_count]
/// if set. The default is 0.
#[prost(int32, tag = "13")]
pub b_frame_count: i32,
/// Specify the intensity of the adaptive quantizer (AQ). Must be between 0
/// and 1, where 0 disables the quantizer and 1 maximizes the quantizer. A
/// higher value equals a lower bitrate but smoother image. The default is 0.
#[prost(double, tag = "14")]
pub aq_strength: f64,
/// Enforces the specified codec profile. The following profiles are
/// supported:
///
/// * `baseline`
/// * `main` (default)
/// * `high`
///
/// The available options are [FFmpeg-compatible Profile
/// Options](<https://trac.ffmpeg.org/wiki/Encode/H.264#Profile>).
/// Note that certain values for this field may cause the
/// transcoder to override other fields you set in the
/// [H264CodecSettings][google.cloud.video.livestream.v1.VideoStream.H264CodecSettings]
/// message.
#[prost(string, tag = "15")]
pub profile: ::prost::alloc::string::String,
/// Enforces the specified codec tune. The available options are
/// [FFmpeg-compatible Encode
/// Options](<https://trac.ffmpeg.org/wiki/Encode/H.264#Tune>)
/// Note that certain values for this field may cause the transcoder to
/// override other fields you set in the
/// [H264CodecSettings][google.cloud.video.livestream.v1.VideoStream.H264CodecSettings]
/// message.
#[prost(string, tag = "16")]
pub tune: ::prost::alloc::string::String,
/// GOP mode can be either by frame count or duration.
#[prost(oneof = "h264_codec_settings::GopMode", tags = "7, 8")]
pub gop_mode: ::core::option::Option<h264_codec_settings::GopMode>,
}
/// Nested message and enum types in `H264CodecSettings`.
pub mod h264_codec_settings {
/// GOP mode can be either by frame count or duration.
#[derive(Clone, Copy, PartialEq, ::prost::Oneof)]
pub enum GopMode {
/// Select the GOP size based on the specified frame count.
/// If GOP frame count is set instead of GOP duration, GOP duration will be
/// calculated by `gopFrameCount`/`frameRate`. The calculated GOP duration
/// must satisfy the limitations on `gopDuration` as well.
/// Valid range is \[60, 600\].
#[prost(int32, tag = "7")]
GopFrameCount(i32),
/// Select the GOP size based on the specified duration. The default is
/// `2s`. Note that `gopDuration` must be less than or equal to
/// [segment_duration][google.cloud.video.livestream.v1.SegmentSettings.segment_duration],
/// and
/// [segment_duration][google.cloud.video.livestream.v1.SegmentSettings.segment_duration]
/// must be divisible by `gopDuration`. Valid range is \[2s, 20s\].
///
/// All video streams in the same channel must have the same GOP size.
#[prost(message, tag = "8")]
GopDuration(::prost_types::Duration),
}
}
/// Codec settings.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum CodecSettings {
/// H264 codec settings.
#[prost(message, tag = "20")]
H264(H264CodecSettings),
}
}
/// Audio stream resource.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AudioStream {
/// Specifies whether pass through (transmuxing) is enabled or not.
/// If set to `true`, the rest of the settings, other than `mapping`, will be
/// ignored. The default is `false`.
#[prost(bool, tag = "8")]
pub transmux: bool,
/// The codec for this audio stream. The default is `aac`.
///
/// Supported audio codecs:
///
/// - `aac`
#[prost(string, tag = "1")]
pub codec: ::prost::alloc::string::String,
/// Required. Audio bitrate in bits per second. Must be between 1 and
/// 10,000,000.
#[prost(int32, tag = "2")]
pub bitrate_bps: i32,
/// Number of audio channels. Must be between 1 and 6. The default is 2.
#[prost(int32, tag = "3")]
pub channel_count: i32,
/// A list of channel names specifying layout of the audio channels.
/// This only affects the metadata embedded in the container headers, if
/// supported by the specified format. The default is `\[fl, fr\]`.
///
/// Supported channel names:
///
/// - `fl` - Front left channel
/// - `fr` - Front right channel
/// - `sl` - Side left channel
/// - `sr` - Side right channel
/// - `fc` - Front center channel
/// - `lfe` - Low frequency
#[prost(string, repeated, tag = "4")]
pub channel_layout: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// The mapping for the input streams and audio channels.
#[prost(message, repeated, tag = "5")]
pub mapping: ::prost::alloc::vec::Vec<audio_stream::AudioMapping>,
/// The audio sample rate in Hertz. The default is 48000 Hertz.
#[prost(int32, tag = "6")]
pub sample_rate_hertz: i32,
}
/// Nested message and enum types in `AudioStream`.
pub mod audio_stream {
/// The mapping for the input streams and audio channels.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AudioMapping {
/// Required. The `Channel`
/// [InputAttachment.key][google.cloud.video.livestream.v1.InputAttachment.key]
/// that identifies the input that this audio mapping applies to. If an
/// active input doesn't have an audio mapping, the primary audio track in
/// the input stream will be selected.
#[prost(string, tag = "6")]
pub input_key: ::prost::alloc::string::String,
/// Required. The zero-based index of the track in the input stream.
/// All [mapping][google.cloud.video.livestream.v1.AudioStream.mapping]s in
/// the same [AudioStream][google.cloud.video.livestream.v1.AudioStream] must
/// have the same input track.
#[prost(int32, tag = "2")]
pub input_track: i32,
/// Required. The zero-based index of the channel in the input stream.
#[prost(int32, tag = "3")]
pub input_channel: i32,
/// Required. The zero-based index of the channel in the output audio stream.
/// Must be consistent with the
/// [input_channel][google.cloud.video.livestream.v1.AudioStream.AudioMapping.input_channel].
#[prost(int32, tag = "4")]
pub output_channel: i32,
/// Audio volume control in dB. Negative values decrease volume,
/// positive values increase. The default is 0.
#[prost(double, tag = "5")]
pub gain_db: f64,
}
}
/// Encoding of a text stream. For example, closed captions or subtitles.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TextStream {
/// Required. The codec for this text stream.
///
/// Supported text codecs:
///
/// - `cea608`
/// - `cea708`
#[prost(string, tag = "1")]
pub codec: ::prost::alloc::string::String,
}
/// Segment settings for `fmp4` and `ts`.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct SegmentSettings {
/// Duration of the segments in seconds. The default is `6s`. Note that
/// `segmentDuration` must be greater than or equal to
/// [gop_duration][google.cloud.video.livestream.v1.VideoStream.H264CodecSettings.gop_duration],
/// and `segmentDuration` must be divisible by
/// [gop_duration][google.cloud.video.livestream.v1.VideoStream.H264CodecSettings.gop_duration].
/// Valid range is \[2s, 20s\].
///
/// All [mux_streams][google.cloud.video.livestream.v1.Manifest.mux_streams] in
/// the same manifest must have the same segment duration.
#[prost(message, optional, tag = "1")]
pub segment_duration: ::core::option::Option<::prost_types::Duration>,
}
/// Timecode configuration.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TimecodeConfig {
/// The source of the timecode that will later be used in outputs/manifests.
/// It determines the initial timecode/timestamp (first frame) of output
/// streams.
#[prost(enumeration = "timecode_config::TimecodeSource", tag = "1")]
pub source: i32,
/// For EMBEDDED_TIMECODE source only.
/// Used to interpret the embedded timecode (which contains only the time part
/// and no date). We assume all inputs are live.
#[prost(oneof = "timecode_config::TimeOffset", tags = "2, 3")]
pub time_offset: ::core::option::Option<timecode_config::TimeOffset>,
}
/// Nested message and enum types in `TimecodeConfig`.
pub mod timecode_config {
/// The source of timecode.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum TimecodeSource {
/// The timecode source is not specified.
Unspecified = 0,
/// Use input media timestamp.
MediaTimestamp = 1,
/// Use input embedded timecode e.g. picture timing SEI message.
EmbeddedTimecode = 2,
}
impl TimecodeSource {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
TimecodeSource::Unspecified => "TIMECODE_SOURCE_UNSPECIFIED",
TimecodeSource::MediaTimestamp => "MEDIA_TIMESTAMP",
TimecodeSource::EmbeddedTimecode => "EMBEDDED_TIMECODE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"TIMECODE_SOURCE_UNSPECIFIED" => Some(Self::Unspecified),
"MEDIA_TIMESTAMP" => Some(Self::MediaTimestamp),
"EMBEDDED_TIMECODE" => Some(Self::EmbeddedTimecode),
_ => None,
}
}
}
/// For EMBEDDED_TIMECODE source only.
/// Used to interpret the embedded timecode (which contains only the time part
/// and no date). We assume all inputs are live.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum TimeOffset {
/// UTC offset. Must be whole seconds, between -18 hours and +18 hours.
#[prost(message, tag = "2")]
UtcOffset(::prost_types::Duration),
/// Time zone e.g. "America/Los_Angeles".
#[prost(message, tag = "3")]
TimeZone(super::super::super::super::super::r#type::TimeZone),
}
}
/// Input resource represents the endpoint from which the channel ingests
/// the input stream.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Input {
/// The resource name of the input, in the form of:
/// `projects/{project}/locations/{location}/inputs/{inputId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Output only. The creation time.
#[prost(message, optional, tag = "2")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The update time.
#[prost(message, optional, tag = "3")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// User-defined key/value metadata.
#[prost(btree_map = "string, string", tag = "4")]
pub labels: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Source type.
#[prost(enumeration = "input::Type", tag = "5")]
pub r#type: i32,
/// Tier defines the maximum input specification that is accepted by the
/// video pipeline. The billing is charged based on the tier specified here.
/// See [Pricing](<https://cloud.google.com/livestream/pricing>) for more detail.
/// The default is `HD`.
#[prost(enumeration = "input::Tier", tag = "14")]
pub tier: i32,
/// Output only. URI to push the input stream to.
/// Its format depends on the input
/// [type][google.cloud.video.livestream.v1.Input.type], for example:
///
/// * `RTMP_PUSH`: `rtmp://1.2.3.4/live/{STREAM-ID}`
/// * `SRT_PUSH`: `srt://1.2.3.4:4201?streamid={STREAM-ID}`
#[prost(string, tag = "6")]
pub uri: ::prost::alloc::string::String,
/// Preprocessing configurations.
#[prost(message, optional, tag = "9")]
pub preprocessing_config: ::core::option::Option<PreprocessingConfig>,
/// Security rule for access control.
#[prost(message, optional, tag = "12")]
pub security_rules: ::core::option::Option<input::SecurityRule>,
/// Output only. The information for the input stream. This field will be
/// present only when this input receives the input stream.
#[prost(message, optional, tag = "15")]
pub input_stream_property: ::core::option::Option<InputStreamProperty>,
}
/// Nested message and enum types in `Input`.
pub mod input {
/// Security rules for access control. Each field represents one security rule.
/// Only when the source of the input stream satisfies all the fields, this
/// input stream can be accepted.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityRule {
/// At least one ip range must match unless none specified. The IP range is
/// defined by CIDR block: for example, `192.0.1.0/24` for a range and
/// `192.0.1.0/32` for a single IP address.
#[prost(string, repeated, tag = "1")]
pub ip_ranges: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// The type of the input.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Type {
/// Input type is not specified.
Unspecified = 0,
/// Input will take an rtmp input stream.
RtmpPush = 1,
/// Input will take an srt (Secure Reliable Transport) input stream.
SrtPush = 2,
}
impl Type {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Type::Unspecified => "TYPE_UNSPECIFIED",
Type::RtmpPush => "RTMP_PUSH",
Type::SrtPush => "SRT_PUSH",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"RTMP_PUSH" => Some(Self::RtmpPush),
"SRT_PUSH" => Some(Self::SrtPush),
_ => None,
}
}
}
/// Tier of the input specification.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Tier {
/// Tier is not specified.
Unspecified = 0,
/// Resolution < 1280x720. Bitrate <= 6 Mbps. FPS <= 60.
Sd = 1,
/// Resolution <= 1920x1080. Bitrate <= 25 Mbps. FPS <= 60.
Hd = 2,
/// Resolution <= 4096x2160. Not supported yet.
Uhd = 3,
}
impl Tier {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Tier::Unspecified => "TIER_UNSPECIFIED",
Tier::Sd => "SD",
Tier::Hd => "HD",
Tier::Uhd => "UHD",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"TIER_UNSPECIFIED" => Some(Self::Unspecified),
"SD" => Some(Self::Sd),
"HD" => Some(Self::Hd),
"UHD" => Some(Self::Uhd),
_ => None,
}
}
}
}
/// Channel resource represents the processor that does a user-defined
/// "streaming" operation, which includes getting an input stream through an
/// input, transcoding it to multiple renditions, and publishing output live
/// streams in certain formats (for example, HLS or DASH) to the specified
/// location.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Channel {
/// The resource name of the channel, in the form of:
/// `projects/{project}/locations/{location}/channels/{channelId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Output only. The creation time.
#[prost(message, optional, tag = "2")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The update time.
#[prost(message, optional, tag = "3")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// User-defined key/value metadata.
#[prost(btree_map = "string, string", tag = "4")]
pub labels: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// A list of input attachments that this channel uses.
/// One channel can have multiple inputs as the input sources. Only one
/// input can be selected as the input source at one time.
#[prost(message, repeated, tag = "16")]
pub input_attachments: ::prost::alloc::vec::Vec<InputAttachment>,
/// Output only. The
/// [InputAttachment.key][google.cloud.video.livestream.v1.InputAttachment.key]
/// that serves as the current input source. The first input in the
/// [input_attachments][google.cloud.video.livestream.v1.Channel.input_attachments]
/// is the initial input source.
#[prost(string, tag = "6")]
pub active_input: ::prost::alloc::string::String,
/// Required. Information about the output (that is, the Cloud Storage bucket
/// to store the generated live stream).
#[prost(message, optional, tag = "9")]
pub output: ::core::option::Option<channel::Output>,
/// List of elementary streams.
#[prost(message, repeated, tag = "10")]
pub elementary_streams: ::prost::alloc::vec::Vec<ElementaryStream>,
/// List of multiplexing settings for output streams.
#[prost(message, repeated, tag = "11")]
pub mux_streams: ::prost::alloc::vec::Vec<MuxStream>,
/// List of output manifests.
#[prost(message, repeated, tag = "12")]
pub manifests: ::prost::alloc::vec::Vec<Manifest>,
/// List of output sprite sheets.
#[prost(message, repeated, tag = "13")]
pub sprite_sheets: ::prost::alloc::vec::Vec<SpriteSheet>,
/// Output only. State of the streaming operation.
#[prost(enumeration = "channel::StreamingState", tag = "14")]
pub streaming_state: i32,
/// Output only. A description of the reason for the streaming error. This
/// property is always present when
/// [streaming_state][google.cloud.video.livestream.v1.Channel.streaming_state]
/// is
/// [STREAMING_ERROR][google.cloud.video.livestream.v1.Channel.StreamingState.STREAMING_ERROR].
#[prost(message, optional, tag = "18")]
pub streaming_error: ::core::option::Option<super::super::super::super::rpc::Status>,
/// Configuration of platform logs for this channel.
#[prost(message, optional, tag = "19")]
pub log_config: ::core::option::Option<LogConfig>,
/// Configuration of timecode for this channel.
#[prost(message, optional, tag = "21")]
pub timecode_config: ::core::option::Option<TimecodeConfig>,
/// Encryption configurations for this channel. Each configuration has an ID
/// which is referred to by each MuxStream to indicate which configuration is
/// used for that output.
#[prost(message, repeated, tag = "24")]
pub encryptions: ::prost::alloc::vec::Vec<Encryption>,
/// The configuration for input sources defined in
/// [input_attachments][google.cloud.video.livestream.v1.Channel.input_attachments].
#[prost(message, optional, tag = "25")]
pub input_config: ::core::option::Option<InputConfig>,
/// Optional. Configuration for retention of output files for this channel.
#[prost(message, optional, tag = "26")]
pub retention_config: ::core::option::Option<RetentionConfig>,
/// Optional. List of static overlay images. Those images display over the
/// output content for the whole duration of the live stream.
#[prost(message, repeated, tag = "27")]
pub static_overlays: ::prost::alloc::vec::Vec<StaticOverlay>,
}
/// Nested message and enum types in `Channel`.
pub mod channel {
/// Location of output file(s) in a Google Cloud Storage bucket.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Output {
/// URI for the output file(s). For example, `gs://my-bucket/outputs/`.
#[prost(string, tag = "1")]
pub uri: ::prost::alloc::string::String,
}
/// State of streaming operation that the channel is running.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum StreamingState {
/// Streaming state is not specified.
Unspecified = 0,
/// Channel is getting the input stream, generating the live streams to the
/// specified output location.
Streaming = 1,
/// Channel is waiting for the input stream through the input.
AwaitingInput = 2,
/// Channel is running, but has trouble publishing the live streams onto the
/// specified output location (for example, the specified Cloud Storage
/// bucket is not writable).
StreamingError = 4,
/// Channel is generating live streams with no input stream. Live streams are
/// filled out with black screen, while input stream is missing.
/// Not supported yet.
StreamingNoInput = 5,
/// Channel is stopped, finishing live streams.
Stopped = 6,
/// Channel is starting.
Starting = 7,
/// Channel is stopping.
Stopping = 8,
}
impl StreamingState {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
StreamingState::Unspecified => "STREAMING_STATE_UNSPECIFIED",
StreamingState::Streaming => "STREAMING",
StreamingState::AwaitingInput => "AWAITING_INPUT",
StreamingState::StreamingError => "STREAMING_ERROR",
StreamingState::StreamingNoInput => "STREAMING_NO_INPUT",
StreamingState::Stopped => "STOPPED",
StreamingState::Starting => "STARTING",
StreamingState::Stopping => "STOPPING",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STREAMING_STATE_UNSPECIFIED" => Some(Self::Unspecified),
"STREAMING" => Some(Self::Streaming),
"AWAITING_INPUT" => Some(Self::AwaitingInput),
"STREAMING_ERROR" => Some(Self::StreamingError),
"STREAMING_NO_INPUT" => Some(Self::StreamingNoInput),
"STOPPED" => Some(Self::Stopped),
"STARTING" => Some(Self::Starting),
"STOPPING" => Some(Self::Stopping),
_ => None,
}
}
}
}
/// 2D normalized coordinates.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct NormalizedCoordinate {
/// Optional. Normalized x coordinate. Valid range is \[0.0, 1.0\]. Default is 0.
#[prost(double, tag = "1")]
pub x: f64,
/// Optional. Normalized y coordinate. Valid range is \[0.0, 1.0\]. Default is 0.
#[prost(double, tag = "2")]
pub y: f64,
}
/// Normalized resolution.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct NormalizedResolution {
/// Optional. Normalized width. Valid range is \[0.0, 1.0\]. Default is 0.
#[prost(double, tag = "1")]
pub w: f64,
/// Optional. Normalized height. Valid range is \[0.0, 1.0\]. Default is 0.
#[prost(double, tag = "2")]
pub h: f64,
}
/// Configuration for the static overlay.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StaticOverlay {
/// Required. Asset to use for the overlaid image.
/// The asset must be represented in the form of:
/// `projects/{project}/locations/{location}/assets/{assetId}`.
/// The asset's resource type must be image.
#[prost(string, tag = "1")]
pub asset: ::prost::alloc::string::String,
/// Optional. Normalized image resolution, based on output video resolution.
/// Valid values are \[0.0, 1.0\]. To respect the original image aspect ratio,
/// set either `w` or `h` to 0. To use the original image resolution, set both
/// `w` and `h` to 0. The default is {0, 0}.
#[prost(message, optional, tag = "2")]
pub resolution: ::core::option::Option<NormalizedResolution>,
/// Optional. Position of the image in terms of normalized coordinates of the
/// upper-left corner of the image, based on output video resolution. For
/// example, use the x and y coordinates {0, 0} to position the top-left corner
/// of the overlay animation in the top-left corner of the output video.
#[prost(message, optional, tag = "3")]
pub position: ::core::option::Option<NormalizedCoordinate>,
/// Optional. Target image opacity. Valid values are from `1.0` (solid,
/// default) to `0.0` (transparent), exclusive. Set this to a value greater
/// than `0.0`.
#[prost(double, tag = "4")]
pub opacity: f64,
}
/// Configuration for the input sources of a channel.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct InputConfig {
/// Input switch mode. Default mode is `FAILOVER_PREFER_PRIMARY`.
#[prost(enumeration = "input_config::InputSwitchMode", tag = "1")]
pub input_switch_mode: i32,
}
/// Nested message and enum types in `InputConfig`.
pub mod input_config {
/// Input switch mode.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum InputSwitchMode {
/// The input switch mode is not specified.
Unspecified = 0,
/// Automatic failover is enabled. The primary input stream is always
/// preferred over its backup input streams configured using the
/// [AutomaticFailover][google.cloud.video.livestream.v1.InputAttachment.AutomaticFailover]
/// field.
FailoverPreferPrimary = 1,
/// Automatic failover is disabled. You must use the
/// [inputSwitch][google.cloud.video.livestream.v1.Event.input_switch] event
/// to switch the active input source for the channel to stream from. When
/// this mode is chosen, the
/// [AutomaticFailover][google.cloud.video.livestream.v1.InputAttachment.AutomaticFailover]
/// field is ignored.
Manual = 3,
}
impl InputSwitchMode {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
InputSwitchMode::Unspecified => "INPUT_SWITCH_MODE_UNSPECIFIED",
InputSwitchMode::FailoverPreferPrimary => "FAILOVER_PREFER_PRIMARY",
InputSwitchMode::Manual => "MANUAL",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"INPUT_SWITCH_MODE_UNSPECIFIED" => Some(Self::Unspecified),
"FAILOVER_PREFER_PRIMARY" => Some(Self::FailoverPreferPrimary),
"MANUAL" => Some(Self::Manual),
_ => None,
}
}
}
}
/// Configuration of platform logs.
/// See [Using and managing platform
/// logs](<https://cloud.google.com/logging/docs/api/platform-logs#managing-logs>)
/// for more information about how to view platform logs through Cloud Logging.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct LogConfig {
/// The severity level of platform logging for this resource.
#[prost(enumeration = "log_config::LogSeverity", tag = "1")]
pub log_severity: i32,
}
/// Nested message and enum types in `LogConfig`.
pub mod log_config {
/// The severity level of platform logging for this channel. Logs with a
/// severity level higher than or equal to the chosen severity level will be
/// logged and can be viewed through Cloud Logging.
/// The severity level of a log is ranked as followed from low to high: DEBUG <
/// INFO < NOTICE < WARNING < ERROR < CRITICAL < ALERT < EMERGENCY.
/// See
/// [LogSeverity](<https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry#logseverity>)
/// for more information.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum LogSeverity {
/// Log severity is not specified. This is the same as log severity is OFF.
Unspecified = 0,
/// Log is turned off.
Off = 1,
/// Log with severity higher than or equal to DEBUG are logged.
Debug = 100,
/// Logs with severity higher than or equal to INFO are logged.
Info = 200,
/// Logs with severity higher than or equal to WARNING are logged.
Warning = 400,
/// Logs with severity higher than or equal to ERROR are logged.
Error = 500,
}
impl LogSeverity {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
LogSeverity::Unspecified => "LOG_SEVERITY_UNSPECIFIED",
LogSeverity::Off => "OFF",
LogSeverity::Debug => "DEBUG",
LogSeverity::Info => "INFO",
LogSeverity::Warning => "WARNING",
LogSeverity::Error => "ERROR",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"LOG_SEVERITY_UNSPECIFIED" => Some(Self::Unspecified),
"OFF" => Some(Self::Off),
"DEBUG" => Some(Self::Debug),
"INFO" => Some(Self::Info),
"WARNING" => Some(Self::Warning),
"ERROR" => Some(Self::Error),
_ => None,
}
}
}
}
/// Configuration for retention of output files.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct RetentionConfig {
/// The minimum duration for which the output files from the channel will
/// remain in the output bucket. After this duration, output files are
/// deleted asynchronously.
///
/// When the channel is deleted, all output files are deleted from the output
/// bucket asynchronously.
///
/// If omitted or set to zero, output files will remain in the output bucket
/// based on
/// [Manifest.segment_keep_duration][google.cloud.video.livestream.v1.Manifest.segment_keep_duration],
/// which defaults to 60s.
///
/// If both retention_window_duration and
/// [Manifest.segment_keep_duration][google.cloud.video.livestream.v1.Manifest.segment_keep_duration]
/// are set, retention_window_duration is used and
/// [Manifest.segment_keep_duration][google.cloud.video.livestream.v1.Manifest.segment_keep_duration]
/// is ignored.
#[prost(message, optional, tag = "1")]
pub retention_window_duration: ::core::option::Option<::prost_types::Duration>,
}
/// Properties of the input stream.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct InputStreamProperty {
/// The time that the current input stream is accepted and the connection is
/// established.
#[prost(message, optional, tag = "1")]
pub last_establish_time: ::core::option::Option<::prost_types::Timestamp>,
/// Properties of the video streams.
#[prost(message, repeated, tag = "2")]
pub video_streams: ::prost::alloc::vec::Vec<VideoStreamProperty>,
/// Properties of the audio streams.
#[prost(message, repeated, tag = "3")]
pub audio_streams: ::prost::alloc::vec::Vec<AudioStreamProperty>,
}
/// Properties of the video stream.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct VideoStreamProperty {
/// Index of this video stream.
#[prost(int32, tag = "1")]
pub index: i32,
/// Properties of the video format.
#[prost(message, optional, tag = "2")]
pub video_format: ::core::option::Option<VideoFormat>,
}
/// Properties of the video format.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct VideoFormat {
/// Video codec used in this video stream.
#[prost(string, tag = "1")]
pub codec: ::prost::alloc::string::String,
/// The width of the video stream in pixels.
#[prost(int32, tag = "2")]
pub width_pixels: i32,
/// The height of the video stream in pixels.
#[prost(int32, tag = "3")]
pub height_pixels: i32,
/// The frame rate of the input video stream.
#[prost(double, tag = "4")]
pub frame_rate: f64,
}
/// Properties of the audio stream.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AudioStreamProperty {
/// Index of this audio stream.
#[prost(int32, tag = "1")]
pub index: i32,
/// Properties of the audio format.
#[prost(message, optional, tag = "2")]
pub audio_format: ::core::option::Option<AudioFormat>,
}
/// Properties of the audio format.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AudioFormat {
/// Audio codec used in this audio stream.
#[prost(string, tag = "1")]
pub codec: ::prost::alloc::string::String,
/// The number of audio channels.
#[prost(int32, tag = "2")]
pub channel_count: i32,
/// A list of channel names specifying the layout of the audio channels.
#[prost(string, repeated, tag = "3")]
pub channel_layout: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// A group of information for attaching an input resource to this channel.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct InputAttachment {
/// A unique key for this input attachment. The key must be 1-63
/// characters in length. The key must begin and end with a letter (regardless
/// of case) or a number, but can contain dashes or underscores in between.
#[prost(string, tag = "1")]
pub key: ::prost::alloc::string::String,
/// The resource name of an existing input, in the form of:
/// `projects/{project}/locations/{location}/inputs/{inputId}`.
#[prost(string, tag = "2")]
pub input: ::prost::alloc::string::String,
/// Automatic failover configurations.
#[prost(message, optional, tag = "3")]
pub automatic_failover: ::core::option::Option<input_attachment::AutomaticFailover>,
}
/// Nested message and enum types in `InputAttachment`.
pub mod input_attachment {
/// Configurations to follow when automatic failover happens.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AutomaticFailover {
/// The
/// [InputAttachment.key][google.cloud.video.livestream.v1.InputAttachment.key]s
/// of inputs to failover to when this input is disconnected. Currently, only
/// up to one backup input is supported.
#[prost(string, repeated, tag = "1")]
pub input_keys: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
}
/// Event is a sub-resource of a channel, which can be scheduled by the user to
/// execute operations on a channel resource without having to stop the channel.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Event {
/// The resource name of the event, in the form of:
/// `projects/{project}/locations/{location}/channels/{channelId}/events/{eventId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Output only. The creation time.
#[prost(message, optional, tag = "2")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The update time.
#[prost(message, optional, tag = "3")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// User-defined key/value metadata.
#[prost(btree_map = "string, string", tag = "4")]
pub labels: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// When this field is set to true, the event will be executed at the earliest
/// time that the server can schedule the event and
/// [execution_time][google.cloud.video.livestream.v1.Event.execution_time]
/// will be populated with the time that the server actually schedules the
/// event.
#[prost(bool, tag = "9")]
pub execute_now: bool,
/// The time to execute the event. If you set
/// [execute_now][google.cloud.video.livestream.v1.Event.execute_now] to
/// `true`, then do not set this field in the `CreateEvent` request. In
/// this case, the server schedules the event and populates this field. If you
/// set [execute_now][google.cloud.video.livestream.v1.Event.execute_now] to
/// `false`, then you must set this field to at least 10 seconds in the future
/// or else the event can't be created.
#[prost(message, optional, tag = "10")]
pub execution_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The state of the event.
#[prost(enumeration = "event::State", tag = "11")]
pub state: i32,
/// Output only. An error object that describes the reason for the failure.
/// This property is always present when `state` is `FAILED`.
#[prost(message, optional, tag = "12")]
pub error: ::core::option::Option<super::super::super::super::rpc::Status>,
/// Required. Operation to be executed by this event.
#[prost(oneof = "event::Task", tags = "5, 6, 13, 14, 15, 16")]
pub task: ::core::option::Option<event::Task>,
}
/// Nested message and enum types in `Event`.
pub mod event {
/// Switches to another input stream. Automatic failover is then disabled.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct InputSwitchTask {
/// The
/// [InputAttachment.key][google.cloud.video.livestream.v1.InputAttachment.key]
/// of the input to switch to.
#[prost(string, tag = "1")]
pub input_key: ::prost::alloc::string::String,
}
/// Inserts a new ad opportunity.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct AdBreakTask {
/// Duration of an ad opportunity. Must be greater than 0.
#[prost(message, optional, tag = "1")]
pub duration: ::core::option::Option<::prost_types::Duration>,
}
/// Inserts a slate.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SlateTask {
/// Optional. Duration of the slate. Must be greater than 0 if specified.
/// Omit this field for a long running slate.
#[prost(message, optional, tag = "1")]
pub duration: ::core::option::Option<::prost_types::Duration>,
/// Slate asset to use for the duration. If its duration is less than the
/// duration of the SlateTask, then the slate loops. The slate must be
/// represented in the form of:
/// `projects/{project}/locations/{location}/assets/{assetId}`.
#[prost(string, tag = "2")]
pub asset: ::prost::alloc::string::String,
}
/// Stops any events which are currently running. This only applies to events
/// with a duration.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct ReturnToProgramTask {}
/// Mutes the stream.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct MuteTask {
/// Duration for which the stream should be muted. If omitted, the stream
/// will be muted until an UnmuteTask event is sent.
#[prost(message, optional, tag = "1")]
pub duration: ::core::option::Option<::prost_types::Duration>,
}
/// Unmutes the stream. The task fails if the stream is not currently muted.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct UnmuteTask {}
/// State of the event
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// Event state is not specified.
Unspecified = 0,
/// Event is scheduled but not executed yet.
Scheduled = 1,
/// Event is being executed.
Running = 2,
/// Event has been successfully executed.
Succeeded = 3,
/// Event fails to be executed.
Failed = 4,
/// Event has been created but not scheduled yet.
Pending = 5,
/// Event was stopped before running for its full duration.
Stopped = 6,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
State::Unspecified => "STATE_UNSPECIFIED",
State::Scheduled => "SCHEDULED",
State::Running => "RUNNING",
State::Succeeded => "SUCCEEDED",
State::Failed => "FAILED",
State::Pending => "PENDING",
State::Stopped => "STOPPED",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"SCHEDULED" => Some(Self::Scheduled),
"RUNNING" => Some(Self::Running),
"SUCCEEDED" => Some(Self::Succeeded),
"FAILED" => Some(Self::Failed),
"PENDING" => Some(Self::Pending),
"STOPPED" => Some(Self::Stopped),
_ => None,
}
}
}
/// Required. Operation to be executed by this event.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Task {
/// Switches to another input stream.
#[prost(message, tag = "5")]
InputSwitch(InputSwitchTask),
/// Inserts a new ad opportunity.
#[prost(message, tag = "6")]
AdBreak(AdBreakTask),
/// Stops any running ad break.
#[prost(message, tag = "13")]
ReturnToProgram(ReturnToProgramTask),
/// Inserts a slate.
#[prost(message, tag = "14")]
Slate(SlateTask),
/// Mutes the stream.
#[prost(message, tag = "15")]
Mute(MuteTask),
/// Unmutes the stream.
#[prost(message, tag = "16")]
Unmute(UnmuteTask),
}
}
/// Clip is a sub-resource under channel. Each clip represents a clipping
/// operation that generates a VOD playlist from its channel given a set of
/// timestamp ranges.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Clip {
/// The resource name of the clip, in the following format:
/// `projects/{project}/locations/{location}/channels/{c}/clips/{clipId}`.
/// `{clipId}` is a user-specified resource id that conforms to the following
/// criteria:
///
/// 1. 1 character minimum, 63 characters maximum
/// 2. Only contains letters, digits, underscores, and hyphens
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Output only. The creation timestamp of the clip resource.
#[prost(message, optional, tag = "2")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The timestamp when the clip request starts to be processed.
#[prost(message, optional, tag = "3")]
pub start_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The update timestamp of the clip resource.
#[prost(message, optional, tag = "4")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// The labels associated with this resource. Each label is a key-value pair.
#[prost(btree_map = "string, string", tag = "5")]
pub labels: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Output only. The state of the clip.
#[prost(enumeration = "clip::State", tag = "6")]
pub state: i32,
/// Specify the `output_uri` to determine where to place the clip segments and
/// clip manifest files in Cloud Storage. The manifests specified in
/// `clip_manifests` fields will be placed under this URI. The exact URI of the
/// generated manifests will be provided in `clip_manifests.output_uri` for
/// each manifest.
/// Example:
/// "output_uri": "gs://my-bucket/clip-outputs"
/// "clip_manifests.output_uri": "gs://my-bucket/clip-outputs/main.m3u8"
#[prost(string, tag = "7")]
pub output_uri: ::prost::alloc::string::String,
/// Output only. An error object that describes the reason for the failure.
/// This property only presents when `state` is `FAILED`.
#[prost(message, optional, tag = "9")]
pub error: ::core::option::Option<super::super::super::super::rpc::Status>,
/// The specified ranges of segments to generate a clip.
#[prost(message, repeated, tag = "10")]
pub slices: ::prost::alloc::vec::Vec<clip::Slice>,
/// Required. A list of clip manifests. Currently only one clip manifest is
/// allowed.
#[prost(message, repeated, tag = "12")]
pub clip_manifests: ::prost::alloc::vec::Vec<clip::ClipManifest>,
}
/// Nested message and enum types in `Clip`.
pub mod clip {
/// TimeSlice represents a tuple of Unix epoch timestamps that specifies a time
/// range.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct TimeSlice {
/// The mark-in Unix epoch time in the original live stream manifest.
#[prost(message, optional, tag = "1")]
pub markin_time: ::core::option::Option<::prost_types::Timestamp>,
/// The mark-out Unix epoch time in the original live stream manifest.
#[prost(message, optional, tag = "2")]
pub markout_time: ::core::option::Option<::prost_types::Timestamp>,
}
/// Slice represents a slice of the requested clip.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct Slice {
/// The allowlist forms of a slice.
#[prost(oneof = "slice::Kind", tags = "1")]
pub kind: ::core::option::Option<slice::Kind>,
}
/// Nested message and enum types in `Slice`.
pub mod slice {
/// The allowlist forms of a slice.
#[derive(Clone, Copy, PartialEq, ::prost::Oneof)]
pub enum Kind {
/// A slice in form of a tuple of Unix epoch time.
#[prost(message, tag = "1")]
TimeSlice(super::TimeSlice),
}
}
/// ClipManifest identifies a source manifest for the generated clip manifest.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ClipManifest {
/// Required. A unique key that identifies a manifest config in the parent
/// channel. This key is the same as `channel.manifests.key` for the selected
/// manifest.
#[prost(string, tag = "1")]
pub manifest_key: ::prost::alloc::string::String,
/// Output only. The output URI of the generated clip manifest. This field
/// will be populated when the CreateClip request is accepted. Current output
/// format is provided below but may change in the future. Please read this
/// field to get the uri to the generated clip manifest. Format:
/// {clip.output_uri}/{channel.manifest.fileName} Example:
/// gs://my-bucket/clip-outputs/main.m3u8
#[prost(string, tag = "2")]
pub output_uri: ::prost::alloc::string::String,
}
/// State of clipping operation.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// State is not specified.
Unspecified = 0,
/// The operation is pending to be picked up by the server.
Pending = 1,
/// The server admitted this create clip request, and
/// outputs are under processing.
Creating = 2,
/// Outputs are available in the specified Cloud Storage bucket. For
/// additional information, see the `outputs` field.
Succeeded = 3,
/// The operation has failed. For additional information, see the `error`
/// field.
Failed = 4,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
State::Unspecified => "STATE_UNSPECIFIED",
State::Pending => "PENDING",
State::Creating => "CREATING",
State::Succeeded => "SUCCEEDED",
State::Failed => "FAILED",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"PENDING" => Some(Self::Pending),
"CREATING" => Some(Self::Creating),
"SUCCEEDED" => Some(Self::Succeeded),
"FAILED" => Some(Self::Failed),
_ => None,
}
}
}
}
/// An asset represents a video or an image.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Asset {
/// The resource name of the asset, in the form of:
/// `projects/{project}/locations/{location}/assets/{assetId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Output only. The creation time.
#[prost(message, optional, tag = "2")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The update time.
#[prost(message, optional, tag = "3")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// User-defined key/value metadata.
#[prost(btree_map = "string, string", tag = "4")]
pub labels: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Based64-encoded CRC32c checksum of the asset file. For more information,
/// see the crc32c checksum of the [Cloud Storage Objects
/// resource](<https://cloud.google.com/storage/docs/json_api/v1/objects>).
/// If crc32c is omitted or left empty when the asset is created, this field is
/// filled by the crc32c checksum of the Cloud Storage object indicated by
/// [VideoAsset.uri][google.cloud.video.livestream.v1.Asset.VideoAsset.uri] or
/// [ImageAsset.uri][google.cloud.video.livestream.v1.Asset.ImageAsset.uri]. If
/// crc32c is set, the asset can't be created if the crc32c value does not
/// match with the crc32c checksum of the Cloud Storage object indicated by
/// [VideoAsset.uri][google.cloud.video.livestream.v1.Asset.VideoAsset.uri] or
/// [ImageAsset.uri][google.cloud.video.livestream.v1.Asset.ImageAsset.uri].
#[prost(string, tag = "7")]
pub crc32c: ::prost::alloc::string::String,
/// Output only. The state of the asset resource.
#[prost(enumeration = "asset::State", tag = "8")]
pub state: i32,
/// Output only. Only present when `state` is `ERROR`. The reason for the error
/// state of the asset.
#[prost(message, optional, tag = "9")]
pub error: ::core::option::Option<super::super::super::super::rpc::Status>,
/// The reference to the asset.
/// The maximum size of the resource is 250 MB.
#[prost(oneof = "asset::Resource", tags = "5, 6")]
pub resource: ::core::option::Option<asset::Resource>,
}
/// Nested message and enum types in `Asset`.
pub mod asset {
/// VideoAsset represents a video. The supported formats are MP4, MPEG-TS, and
/// FLV. The supported video codec is H264. The supported audio codecs are
/// AAC, AC3, MP2, and MP3.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct VideoAsset {
/// Cloud Storage URI of the video. The format is `gs://my-bucket/my-object`.
#[prost(string, tag = "1")]
pub uri: ::prost::alloc::string::String,
}
/// Image represents an image. The supported formats are JPEG, PNG.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ImageAsset {
/// Cloud Storage URI of the image. The format is `gs://my-bucket/my-object`.
#[prost(string, tag = "1")]
pub uri: ::prost::alloc::string::String,
}
/// State of the asset resource.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// State is not specified.
Unspecified = 0,
/// The asset is being created.
Creating = 1,
/// The asset is ready for use.
Active = 2,
/// The asset is being deleted.
Deleting = 3,
/// The asset has an error.
Error = 4,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
State::Unspecified => "STATE_UNSPECIFIED",
State::Creating => "CREATING",
State::Active => "ACTIVE",
State::Deleting => "DELETING",
State::Error => "ERROR",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"CREATING" => Some(Self::Creating),
"ACTIVE" => Some(Self::Active),
"DELETING" => Some(Self::Deleting),
"ERROR" => Some(Self::Error),
_ => None,
}
}
}
/// The reference to the asset.
/// The maximum size of the resource is 250 MB.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Resource {
/// VideoAsset represents a video.
#[prost(message, tag = "5")]
Video(VideoAsset),
/// ImageAsset represents an image.
#[prost(message, tag = "6")]
Image(ImageAsset),
}
}
/// Encryption settings.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Encryption {
/// Required. Identifier for this set of encryption options. The ID must be
/// 1-63 characters in length. The ID must begin and end with a letter
/// (regardless of case) or a number, but can contain dashes or underscores in
/// between.
#[prost(string, tag = "1")]
pub id: ::prost::alloc::string::String,
/// Required. Configuration for DRM systems.
#[prost(message, optional, tag = "3")]
pub drm_systems: ::core::option::Option<encryption::DrmSystems>,
/// Defines where content keys are stored.
#[prost(oneof = "encryption::SecretSource", tags = "7")]
pub secret_source: ::core::option::Option<encryption::SecretSource>,
/// Encryption modes for HLS and MPEG-Dash.
#[prost(oneof = "encryption::EncryptionMode", tags = "4, 5, 6")]
pub encryption_mode: ::core::option::Option<encryption::EncryptionMode>,
}
/// Nested message and enum types in `Encryption`.
pub mod encryption {
/// Configuration for secrets stored in Google Secret Manager.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecretManagerSource {
/// Required. The name of the Secret Version containing the encryption key.
/// `projects/{project}/secrets/{secret_id}/versions/{version_number}`
#[prost(string, tag = "1")]
pub secret_version: ::prost::alloc::string::String,
}
/// Widevine configuration.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct Widevine {}
/// Fairplay configuration.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct Fairplay {}
/// Playready configuration.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct Playready {}
/// Clearkey configuration.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct Clearkey {}
/// Defines configuration for DRM systems in use. If a field is omitted,
/// that DRM system will be considered to be disabled.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct DrmSystems {
/// Widevine configuration.
#[prost(message, optional, tag = "1")]
pub widevine: ::core::option::Option<Widevine>,
/// Fairplay configuration.
#[prost(message, optional, tag = "2")]
pub fairplay: ::core::option::Option<Fairplay>,
/// Playready configuration.
#[prost(message, optional, tag = "3")]
pub playready: ::core::option::Option<Playready>,
/// Clearkey configuration.
#[prost(message, optional, tag = "4")]
pub clearkey: ::core::option::Option<Clearkey>,
}
/// Configuration for HLS AES-128 encryption.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct Aes128Encryption {}
/// Configuration for HLS SAMPLE-AES encryption.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct SampleAesEncryption {}
/// Configuration for MPEG-Dash Common Encryption (MPEG-CENC).
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MpegCommonEncryption {
/// Required. Specify the encryption scheme, supported schemes:
/// - `cenc` - AES-CTR subsample
/// - `cbcs`- AES-CBC subsample pattern
#[prost(string, tag = "1")]
pub scheme: ::prost::alloc::string::String,
}
/// Defines where content keys are stored.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum SecretSource {
/// For keys stored in Google Secret Manager.
#[prost(message, tag = "7")]
SecretManagerKeySource(SecretManagerSource),
}
/// Encryption modes for HLS and MPEG-Dash.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum EncryptionMode {
/// Configuration for HLS AES-128 encryption.
#[prost(message, tag = "4")]
Aes128(Aes128Encryption),
/// Configuration for HLS SAMPLE-AES encryption.
#[prost(message, tag = "5")]
SampleAes(SampleAesEncryption),
/// Configuration for MPEG-Dash Common Encryption (MPEG-CENC).
#[prost(message, tag = "6")]
MpegCenc(MpegCommonEncryption),
}
}
/// Pool resource defines the configuration of Live Stream pools for a specific
/// location. Currently we support only one pool resource per project per
/// location. After the creation of the first input, a default pool is created
/// automatically at "projects/{project}/locations/{location}/pools/default".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Pool {
/// The resource name of the pool, in the form of:
/// `projects/{project}/locations/{location}/pools/{poolId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Output only. The creation time.
#[prost(message, optional, tag = "2")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The update time.
#[prost(message, optional, tag = "3")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// User-defined key/value metadata.
#[prost(btree_map = "string, string", tag = "4")]
pub labels: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Network configuration for the pool.
#[prost(message, optional, tag = "5")]
pub network_config: ::core::option::Option<pool::NetworkConfig>,
}
/// Nested message and enum types in `Pool`.
pub mod pool {
/// Defines the network configuration for the pool.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct NetworkConfig {
/// peered_network is the network resource URL of the network that is peered
/// to the service provider network. Must be of the format
/// projects/NETWORK_PROJECT_NUMBER/global/networks/NETWORK_NAME, where
/// NETWORK_PROJECT_NUMBER is the project number of the Cloud project that
/// holds your VPC network and NETWORK_NAME is the name of your VPC network.
/// If peered_network is omitted or empty, the pool will use endpoints that
/// are publicly available.
#[prost(string, tag = "1")]
pub peered_network: ::prost::alloc::string::String,
}
}
/// Request message for "LivestreamService.CreateAsset".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateAssetRequest {
/// Required. The parent location for the resource, in the form of:
/// `projects/{project}/locations/{location}`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. The asset resource to be created.
#[prost(message, optional, tag = "2")]
pub asset: ::core::option::Option<Asset>,
/// Required. The ID of the asset resource to be created.
/// This value must be 1-63 characters, begin and end with `\[a-z0-9\]`,
/// could contain dashes (-) in between.
#[prost(string, tag = "3")]
pub asset_id: ::prost::alloc::string::String,
/// A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "4")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.DeleteAsset".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteAssetRequest {
/// Required. The name of the asset resource, in the form of:
/// `projects/{project}/locations/{location}/assets/{assetId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes after the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "2")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.ListAssets".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAssetsRequest {
/// Required. The parent location for the resource, in the form of:
/// `projects/{project}/locations/{location}`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Requested page size. Server may return fewer items than requested.
/// If unspecified, server will pick an appropriate default.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// A token identifying a page of results the server should return.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
/// Filtering results
#[prost(string, tag = "4")]
pub filter: ::prost::alloc::string::String,
/// Hint for how to order the results
#[prost(string, tag = "5")]
pub order_by: ::prost::alloc::string::String,
}
/// Response message for "LivestreamService.ListAssets".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAssetsResponse {
/// The list of Assets
#[prost(message, repeated, tag = "1")]
pub assets: ::prost::alloc::vec::Vec<Asset>,
/// The next_page_token value returned from a previous List request, if any.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
/// Locations that could not be reached.
#[prost(string, repeated, tag = "3")]
pub unreachable: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// Request message for "LivestreamService.GetAsset".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAssetRequest {
/// Required. Name of the resource, in the following form:
/// `projects/{project}/locations/{location}/assets/{asset}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.CreateChannel".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateChannelRequest {
/// Required. The parent location for the resource, in the form of:
/// `projects/{project}/locations/{location}`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. The channel resource to be created.
#[prost(message, optional, tag = "2")]
pub channel: ::core::option::Option<Channel>,
/// Required. The ID of the channel resource to be created.
/// This value must be 1-63 characters, begin and end with `\[a-z0-9\]`,
/// could contain dashes (-) in between.
#[prost(string, tag = "3")]
pub channel_id: ::prost::alloc::string::String,
/// A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "4")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.ListChannels".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListChannelsRequest {
/// Required. The parent location for the resource, in the form of:
/// `projects/{project}/locations/{location}`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The maximum number of items to return. If unspecified, server
/// will pick an appropriate default. Server may return fewer items than
/// requested. A caller should only rely on response's
/// [next_page_token][google.cloud.video.livestream.v1.ListChannelsResponse.next_page_token]
/// to determine if there are more items left to be queried.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// The next_page_token value returned from a previous List request, if any.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
/// The filter to apply to list results.
#[prost(string, tag = "4")]
pub filter: ::prost::alloc::string::String,
/// Specifies the ordering of results following syntax at
/// <https://cloud.google.com/apis/design/design_patterns#sorting_order.>
#[prost(string, tag = "5")]
pub order_by: ::prost::alloc::string::String,
}
/// Response message for "LivestreamService.ListChannels".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListChannelsResponse {
/// A list of channels.
#[prost(message, repeated, tag = "1")]
pub channels: ::prost::alloc::vec::Vec<Channel>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results in the list.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
/// Locations that could not be reached.
#[prost(string, repeated, tag = "3")]
pub unreachable: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// Request message for "LivestreamService.GetChannel".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetChannelRequest {
/// Required. The name of the channel resource, in the form of:
/// `projects/{project}/locations/{location}/channels/{channelId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.DeleteChannel".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteChannelRequest {
/// Required. The name of the channel resource, in the form of:
/// `projects/{project}/locations/{location}/channels/{channelId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes after the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "2")]
pub request_id: ::prost::alloc::string::String,
/// If the `force` field is set to the default value of `false`, you must
/// delete all of a channel's events before you can delete the channel itself.
/// If the field is set to `true`, requests to delete a channel also delete
/// associated channel events.
#[prost(bool, tag = "3")]
pub force: bool,
}
/// Request message for "LivestreamService.UpdateChannel".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateChannelRequest {
/// Field mask is used to specify the fields to be overwritten in the Channel
/// resource by the update. You can only update the following fields:
///
/// * [`inputAttachments`](<https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#inputattachment>)
/// * [`inputConfig`](<https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#inputconfig>)
/// * [`output`](<https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#output>)
/// * [`elementaryStreams`](<https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#elementarystream>)
/// * [`muxStreams`](<https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#muxstream>)
/// * [`manifests`](<https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#manifest>)
/// * [`spriteSheets`](<https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#spritesheet>)
/// * [`logConfig`](<https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#logconfig>)
/// * [`timecodeConfig`](<https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#timecodeconfig>)
/// * [`encryptions`](<https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#encryption>)
///
/// The fields specified in the update_mask are relative to the resource, not
/// the full request. A field will be overwritten if it is in the mask.
///
/// If the mask is not present, then each field from the list above is updated
/// if the field appears in the request payload. To unset a field, add the
/// field to the update mask and remove it from the request payload.
#[prost(message, optional, tag = "1")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
/// Required. The channel resource to be updated.
#[prost(message, optional, tag = "2")]
pub channel: ::core::option::Option<Channel>,
/// A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "3")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.StartChannel".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StartChannelRequest {
/// Required. The name of the channel resource, in the form of:
/// `projects/{project}/locations/{location}/channels/{channelId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "2")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.StopChannel".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StopChannelRequest {
/// Required. The name of the channel resource, in the form of:
/// `projects/{project}/locations/{location}/channels/{channelId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "2")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.CreateInput".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateInputRequest {
/// Required. The parent location for the resource, in the form of:
/// `projects/{project}/locations/{location}`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. The input resource to be created.
#[prost(message, optional, tag = "2")]
pub input: ::core::option::Option<Input>,
/// Required. The ID of the input resource to be created.
/// This value must be 1-63 characters, begin and end with `\[a-z0-9\]`,
/// could contain dashes (-) in between.
#[prost(string, tag = "3")]
pub input_id: ::prost::alloc::string::String,
/// A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "4")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.ListInputs".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListInputsRequest {
/// Required. The parent location for the resource, in the form of:
/// `projects/{project}/locations/{location}`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The maximum number of items to return. If unspecified, server
/// will pick an appropriate default. Server may return fewer items than
/// requested. A caller should only rely on response's
/// [next_page_token][google.cloud.video.livestream.v1.ListInputsResponse.next_page_token]
/// to determine if there are more items left to be queried.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// The next_page_token value returned from a previous List request, if any.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
/// The filter to apply to list results.
#[prost(string, tag = "4")]
pub filter: ::prost::alloc::string::String,
/// Specifies the ordering of results following syntax at [Sorting
/// Order](<https://cloud.google.com/apis/design/design_patterns#sorting_order>).
#[prost(string, tag = "5")]
pub order_by: ::prost::alloc::string::String,
}
/// Response message for "LivestreamService.ListInputs".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListInputsResponse {
/// A list of inputs.
#[prost(message, repeated, tag = "1")]
pub inputs: ::prost::alloc::vec::Vec<Input>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results in the list.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
/// Locations that could not be reached.
#[prost(string, repeated, tag = "3")]
pub unreachable: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// Request message for "LivestreamService.GetInput".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetInputRequest {
/// Required. The name of the input resource, in the form of:
/// `projects/{project}/locations/{location}/inputs/{inputId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.DeleteInput".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteInputRequest {
/// Required. The name of the input resource, in the form of:
/// `projects/{project}/locations/{location}/inputs/{inputId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "2")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.UpdateInput".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateInputRequest {
/// Field mask is used to specify the fields to be overwritten in the Input
/// resource by the update. You can only update the following fields:
///
/// * [`preprocessingConfig`](<https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.inputs#PreprocessingConfig>)
/// * [`securityRules`](<https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.inputs#SecurityRule>)
///
/// The fields specified in the update_mask are relative to the resource, not
/// the full request. A field will be overwritten if it is in the mask.
///
/// If the mask is not present, then each field from the list above is updated
/// if the field appears in the request payload. To unset a field, add the
/// field to the update mask and remove it from the request payload.
#[prost(message, optional, tag = "1")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
/// Required. The input resource to be updated.
#[prost(message, optional, tag = "2")]
pub input: ::core::option::Option<Input>,
/// A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "3")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.CreateEvent".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateEventRequest {
/// Required. The parent channel for the resource, in the form of:
/// `projects/{project}/locations/{location}/channels/{channelId}`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. The event resource to be created.
#[prost(message, optional, tag = "2")]
pub event: ::core::option::Option<Event>,
/// Required. The ID of the event resource to be created.
/// This value must be 1-63 characters, begin and end with `\[a-z0-9\]`,
/// could contain dashes (-) in between.
#[prost(string, tag = "3")]
pub event_id: ::prost::alloc::string::String,
/// A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "4")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.ListEvents".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListEventsRequest {
/// Required. The parent channel for the resource, in the form of:
/// `projects/{project}/locations/{location}/channels/{channelId}`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The maximum number of items to return. If unspecified, server
/// will pick an appropriate default. Server may return fewer items than
/// requested. A caller should only rely on response's
/// [next_page_token][google.cloud.video.livestream.v1.ListEventsResponse.next_page_token]
/// to determine if there are more items left to be queried.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// The next_page_token value returned from a previous List request, if any.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
/// The filter to apply to list results.
#[prost(string, tag = "4")]
pub filter: ::prost::alloc::string::String,
/// Specifies the ordering of results following syntax at
/// <https://cloud.google.com/apis/design/design_patterns#sorting_order.>
#[prost(string, tag = "5")]
pub order_by: ::prost::alloc::string::String,
}
/// Response message for "LivestreamService.ListEvents".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListEventsResponse {
/// A list of events.
#[prost(message, repeated, tag = "1")]
pub events: ::prost::alloc::vec::Vec<Event>,
/// Token to retrieve the next page of results, or empty if there are no more
/// results in the list.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
/// Locations that could not be reached.
#[prost(string, repeated, tag = "3")]
pub unreachable: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// Request message for "LivestreamService.GetEvent".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetEventRequest {
/// Required. The name of the event resource, in the form of:
/// `projects/{project}/locations/{location}/channels/{channelId}/events/{eventId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.DeleteEvent".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteEventRequest {
/// Required. The name of the event resource, in the form of:
/// `projects/{project}/locations/{location}/channels/{channelId}/events/{eventId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "2")]
pub request_id: ::prost::alloc::string::String,
}
/// Response message for Start/Stop Channel long-running operations.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct ChannelOperationResponse {}
/// Request message for "LivestreamService.ListClips".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListClipsRequest {
/// Required. Parent value for ListClipsRequest
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Requested page size. Server may return fewer items than requested.
/// If unspecified, server will pick an appropriate default.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// A token identifying a page of results the server should return.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
/// Filtering results
#[prost(string, tag = "4")]
pub filter: ::prost::alloc::string::String,
/// Hint for how to order the results
#[prost(string, tag = "5")]
pub order_by: ::prost::alloc::string::String,
}
/// Response message for "LivestreamService.ListClips".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListClipsResponse {
/// The list of Clip
#[prost(message, repeated, tag = "1")]
pub clips: ::prost::alloc::vec::Vec<Clip>,
/// A token identifying a page of results the server should return.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
/// Locations that could not be reached.
#[prost(string, repeated, tag = "3")]
pub unreachable: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// Request message for "LivestreamService.GetClip".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetClipRequest {
/// Required. Name of the resource, in the following form:
/// `projects/{project}/locations/{location}/channels/{channel}/clips/{clip}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.CreateClip".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateClipRequest {
/// Required. The parent resource name, in the following form:
/// `projects/{project}/locations/{location}/channels/{channel}`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. Id of the requesting object in the following form:
///
/// 1. 1 character minimum, 63 characters maximum
/// 2. Only contains letters, digits, underscores, and hyphens
#[prost(string, tag = "2")]
pub clip_id: ::prost::alloc::string::String,
/// Required. The resource being created
#[prost(message, optional, tag = "3")]
pub clip: ::core::option::Option<Clip>,
/// Optional. An optional request ID to identify requests. Specify a unique
/// request ID so that if you must retry your request, the server will know to
/// ignore the request if it has already been completed. The server will
/// guarantee that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and
/// the request times out. If you make the request again with the same request
/// ID, the server can check if original operation with the same request ID
/// was received, and if so, will ignore the second request. This prevents
/// clients from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported (00000000-0000-0000-0000-000000000000).
#[prost(string, tag = "4")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.DeleteClip".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteClipRequest {
/// Required. The name of the clip resource, in the form of:
/// `projects/{project}/locations/{location}/channels/{channelId}/clips/{clipId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Optional. A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "2")]
pub request_id: ::prost::alloc::string::String,
}
/// Represents the metadata of the long-running operation.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OperationMetadata {
/// Output only. The time the operation was created.
#[prost(message, optional, tag = "1")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time the operation finished running.
#[prost(message, optional, tag = "2")]
pub end_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. Server-defined resource path for the target of the operation.
#[prost(string, tag = "3")]
pub target: ::prost::alloc::string::String,
/// Output only. Name of the verb executed by the operation.
#[prost(string, tag = "4")]
pub verb: ::prost::alloc::string::String,
/// Output only. Identifies whether the user has requested cancellation
/// of the operation. Operations that have successfully been cancelled
/// have [Operation.error][] value with a
/// [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to
/// `Code.CANCELLED`.
#[prost(bool, tag = "5")]
pub requested_cancellation: bool,
/// Output only. API version used to start the operation.
#[prost(string, tag = "6")]
pub api_version: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.GetPool".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetPoolRequest {
/// Required. The name of the pool resource, in the form of:
/// `projects/{project}/locations/{location}/pools/{poolId}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for "LivestreamService.UpdatePool".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdatePoolRequest {
/// Field mask is used to specify the fields to be overwritten in the Pool
/// resource by the update. You can only update the following fields:
///
/// * `networkConfig`
///
/// The fields specified in the update_mask are relative to the resource, not
/// the full request. A field will be overwritten if it is in the mask.
#[prost(message, optional, tag = "1")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
/// Required. The pool resource to be updated.
#[prost(message, optional, tag = "2")]
pub pool: ::core::option::Option<Pool>,
/// A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and the
/// request times out. If you make the request again with the same request ID,
/// the server can check if original operation with the same request ID was
/// received, and if so, will ignore the second request. This prevents clients
/// from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported `(00000000-0000-0000-0000-000000000000)`.
#[prost(string, tag = "3")]
pub request_id: ::prost::alloc::string::String,
}
/// Generated client implementations.
pub mod livestream_service_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
/// Using Live Stream API, you can generate live streams in the various
/// renditions and streaming formats. The streaming format include HTTP Live
/// Streaming (HLS) and Dynamic Adaptive Streaming over HTTP (DASH). You can send
/// a source stream in the various ways, including Real-Time Messaging
/// Protocol (RTMP) and Secure Reliable Transport (SRT).
#[derive(Debug, Clone)]
pub struct LivestreamServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl<T> LivestreamServiceClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> LivestreamServiceClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
LivestreamServiceClient::new(InterceptedService::new(inner, interceptor))
}
/// Compress requests with the given encoding.
///
/// This requires the server to support it otherwise it might respond with an
/// error.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
/// Enable decompressing responses.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
/// Limits the maximum size of a decoded message.
///
/// Default: `4MB`
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
/// Limits the maximum size of an encoded message.
///
/// Default: `usize::MAX`
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
/// Creates a channel with the provided unique ID in the specified
/// region.
pub async fn create_channel(
&mut self,
request: impl tonic::IntoRequest<super::CreateChannelRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/CreateChannel",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"CreateChannel",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns a list of all channels in the specified region.
pub async fn list_channels(
&mut self,
request: impl tonic::IntoRequest<super::ListChannelsRequest>,
) -> std::result::Result<
tonic::Response<super::ListChannelsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/ListChannels",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"ListChannels",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns the specified channel.
pub async fn get_channel(
&mut self,
request: impl tonic::IntoRequest<super::GetChannelRequest>,
) -> std::result::Result<tonic::Response<super::Channel>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/GetChannel",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"GetChannel",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes the specified channel.
pub async fn delete_channel(
&mut self,
request: impl tonic::IntoRequest<super::DeleteChannelRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/DeleteChannel",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"DeleteChannel",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates the specified channel.
pub async fn update_channel(
&mut self,
request: impl tonic::IntoRequest<super::UpdateChannelRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/UpdateChannel",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"UpdateChannel",
),
);
self.inner.unary(req, path, codec).await
}
/// Starts the specified channel. Part of the video pipeline will be created
/// only when the StartChannel request is received by the server.
pub async fn start_channel(
&mut self,
request: impl tonic::IntoRequest<super::StartChannelRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/StartChannel",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"StartChannel",
),
);
self.inner.unary(req, path, codec).await
}
/// Stops the specified channel. Part of the video pipeline will be released
/// when the StopChannel request is received by the server.
pub async fn stop_channel(
&mut self,
request: impl tonic::IntoRequest<super::StopChannelRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/StopChannel",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"StopChannel",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates an input with the provided unique ID in the specified region.
pub async fn create_input(
&mut self,
request: impl tonic::IntoRequest<super::CreateInputRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/CreateInput",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"CreateInput",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns a list of all inputs in the specified region.
pub async fn list_inputs(
&mut self,
request: impl tonic::IntoRequest<super::ListInputsRequest>,
) -> std::result::Result<
tonic::Response<super::ListInputsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/ListInputs",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"ListInputs",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns the specified input.
pub async fn get_input(
&mut self,
request: impl tonic::IntoRequest<super::GetInputRequest>,
) -> std::result::Result<tonic::Response<super::Input>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/GetInput",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"GetInput",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes the specified input.
pub async fn delete_input(
&mut self,
request: impl tonic::IntoRequest<super::DeleteInputRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/DeleteInput",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"DeleteInput",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates the specified input.
pub async fn update_input(
&mut self,
request: impl tonic::IntoRequest<super::UpdateInputRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/UpdateInput",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"UpdateInput",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates an event with the provided unique ID in the specified channel.
pub async fn create_event(
&mut self,
request: impl tonic::IntoRequest<super::CreateEventRequest>,
) -> std::result::Result<tonic::Response<super::Event>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/CreateEvent",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"CreateEvent",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns a list of all events in the specified channel.
pub async fn list_events(
&mut self,
request: impl tonic::IntoRequest<super::ListEventsRequest>,
) -> std::result::Result<
tonic::Response<super::ListEventsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/ListEvents",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"ListEvents",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns the specified event.
pub async fn get_event(
&mut self,
request: impl tonic::IntoRequest<super::GetEventRequest>,
) -> std::result::Result<tonic::Response<super::Event>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/GetEvent",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"GetEvent",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes the specified event.
pub async fn delete_event(
&mut self,
request: impl tonic::IntoRequest<super::DeleteEventRequest>,
) -> std::result::Result<tonic::Response<()>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/DeleteEvent",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"DeleteEvent",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns a list of all clips in the specified channel.
pub async fn list_clips(
&mut self,
request: impl tonic::IntoRequest<super::ListClipsRequest>,
) -> std::result::Result<
tonic::Response<super::ListClipsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/ListClips",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"ListClips",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns the specified clip.
pub async fn get_clip(
&mut self,
request: impl tonic::IntoRequest<super::GetClipRequest>,
) -> std::result::Result<tonic::Response<super::Clip>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/GetClip",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"GetClip",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates a clip with the provided clip ID in the specified channel.
pub async fn create_clip(
&mut self,
request: impl tonic::IntoRequest<super::CreateClipRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/CreateClip",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"CreateClip",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes the specified clip job resource. This method only deletes the clip
/// job and does not delete the VOD clip stored in the GCS.
pub async fn delete_clip(
&mut self,
request: impl tonic::IntoRequest<super::DeleteClipRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/DeleteClip",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"DeleteClip",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates a Asset with the provided unique ID in the specified
/// region.
pub async fn create_asset(
&mut self,
request: impl tonic::IntoRequest<super::CreateAssetRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/CreateAsset",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"CreateAsset",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes the specified asset if it is not used.
pub async fn delete_asset(
&mut self,
request: impl tonic::IntoRequest<super::DeleteAssetRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/DeleteAsset",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"DeleteAsset",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns the specified asset.
pub async fn get_asset(
&mut self,
request: impl tonic::IntoRequest<super::GetAssetRequest>,
) -> std::result::Result<tonic::Response<super::Asset>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/GetAsset",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"GetAsset",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns a list of all assets in the specified region.
pub async fn list_assets(
&mut self,
request: impl tonic::IntoRequest<super::ListAssetsRequest>,
) -> std::result::Result<
tonic::Response<super::ListAssetsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/ListAssets",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"ListAssets",
),
);
self.inner.unary(req, path, codec).await
}
/// Returns the specified pool.
pub async fn get_pool(
&mut self,
request: impl tonic::IntoRequest<super::GetPoolRequest>,
) -> std::result::Result<tonic::Response<super::Pool>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/GetPool",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"GetPool",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates the specified pool.
pub async fn update_pool(
&mut self,
request: impl tonic::IntoRequest<super::UpdatePoolRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.video.livestream.v1.LivestreamService/UpdatePool",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.video.livestream.v1.LivestreamService",
"UpdatePool",
),
);
self.inner.unary(req, path, codec).await
}
}
}