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
|
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
# Generated file, DO NOT EDIT
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------------------------
from msrest.serialization import Model
class AgentPoolQueue(Model):
"""AgentPoolQueue.
:param _links:
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.build.models.ReferenceLinks>`
:param id: The ID of the queue.
:type id: int
:param name: The name of the queue.
:type name: str
:param pool: The pool used by this queue.
:type pool: :class:`TaskAgentPoolReference <azure.devops.v5_0.build.models.TaskAgentPoolReference>`
:param url: The full http link to the resource.
:type url: str
"""
_attribute_map = {
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'id': {'key': 'id', 'type': 'int'},
'name': {'key': 'name', 'type': 'str'},
'pool': {'key': 'pool', 'type': 'TaskAgentPoolReference'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, _links=None, id=None, name=None, pool=None, url=None):
super(AgentPoolQueue, self).__init__()
self._links = _links
self.id = id
self.name = name
self.pool = pool
self.url = url
class AggregatedResultsAnalysis(Model):
"""AggregatedResultsAnalysis.
:param duration:
:type duration: object
:param not_reported_results_by_outcome:
:type not_reported_results_by_outcome: dict
:param previous_context:
:type previous_context: :class:`TestResultsContext <azure.devops.v5_0.microsoft._team_foundation._test_management._web_api.models.TestResultsContext>`
:param results_by_outcome:
:type results_by_outcome: dict
:param results_difference:
:type results_difference: :class:`AggregatedResultsDifference <azure.devops.v5_0.microsoft._team_foundation._test_management._web_api.models.AggregatedResultsDifference>`
:param run_summary_by_outcome:
:type run_summary_by_outcome: dict
:param run_summary_by_state:
:type run_summary_by_state: dict
:param total_tests:
:type total_tests: int
"""
_attribute_map = {
'duration': {'key': 'duration', 'type': 'object'},
'not_reported_results_by_outcome': {'key': 'notReportedResultsByOutcome', 'type': '{AggregatedResultsByOutcome}'},
'previous_context': {'key': 'previousContext', 'type': 'TestResultsContext'},
'results_by_outcome': {'key': 'resultsByOutcome', 'type': '{AggregatedResultsByOutcome}'},
'results_difference': {'key': 'resultsDifference', 'type': 'AggregatedResultsDifference'},
'run_summary_by_outcome': {'key': 'runSummaryByOutcome', 'type': '{AggregatedRunsByOutcome}'},
'run_summary_by_state': {'key': 'runSummaryByState', 'type': '{AggregatedRunsByState}'},
'total_tests': {'key': 'totalTests', 'type': 'int'}
}
def __init__(self, duration=None, not_reported_results_by_outcome=None, previous_context=None, results_by_outcome=None, results_difference=None, run_summary_by_outcome=None, run_summary_by_state=None, total_tests=None):
super(AggregatedResultsAnalysis, self).__init__()
self.duration = duration
self.not_reported_results_by_outcome = not_reported_results_by_outcome
self.previous_context = previous_context
self.results_by_outcome = results_by_outcome
self.results_difference = results_difference
self.run_summary_by_outcome = run_summary_by_outcome
self.run_summary_by_state = run_summary_by_state
self.total_tests = total_tests
class AggregatedResultsByOutcome(Model):
"""AggregatedResultsByOutcome.
:param count:
:type count: int
:param duration:
:type duration: object
:param group_by_field:
:type group_by_field: str
:param group_by_value:
:type group_by_value: object
:param outcome:
:type outcome: object
:param rerun_result_count:
:type rerun_result_count: int
"""
_attribute_map = {
'count': {'key': 'count', 'type': 'int'},
'duration': {'key': 'duration', 'type': 'object'},
'group_by_field': {'key': 'groupByField', 'type': 'str'},
'group_by_value': {'key': 'groupByValue', 'type': 'object'},
'outcome': {'key': 'outcome', 'type': 'object'},
'rerun_result_count': {'key': 'rerunResultCount', 'type': 'int'}
}
def __init__(self, count=None, duration=None, group_by_field=None, group_by_value=None, outcome=None, rerun_result_count=None):
super(AggregatedResultsByOutcome, self).__init__()
self.count = count
self.duration = duration
self.group_by_field = group_by_field
self.group_by_value = group_by_value
self.outcome = outcome
self.rerun_result_count = rerun_result_count
class AggregatedResultsDifference(Model):
"""AggregatedResultsDifference.
:param increase_in_duration:
:type increase_in_duration: object
:param increase_in_failures:
:type increase_in_failures: int
:param increase_in_other_tests:
:type increase_in_other_tests: int
:param increase_in_passed_tests:
:type increase_in_passed_tests: int
:param increase_in_total_tests:
:type increase_in_total_tests: int
"""
_attribute_map = {
'increase_in_duration': {'key': 'increaseInDuration', 'type': 'object'},
'increase_in_failures': {'key': 'increaseInFailures', 'type': 'int'},
'increase_in_other_tests': {'key': 'increaseInOtherTests', 'type': 'int'},
'increase_in_passed_tests': {'key': 'increaseInPassedTests', 'type': 'int'},
'increase_in_total_tests': {'key': 'increaseInTotalTests', 'type': 'int'}
}
def __init__(self, increase_in_duration=None, increase_in_failures=None, increase_in_other_tests=None, increase_in_passed_tests=None, increase_in_total_tests=None):
super(AggregatedResultsDifference, self).__init__()
self.increase_in_duration = increase_in_duration
self.increase_in_failures = increase_in_failures
self.increase_in_other_tests = increase_in_other_tests
self.increase_in_passed_tests = increase_in_passed_tests
self.increase_in_total_tests = increase_in_total_tests
class AggregatedRunsByOutcome(Model):
"""AggregatedRunsByOutcome.
:param outcome:
:type outcome: object
:param runs_count:
:type runs_count: int
"""
_attribute_map = {
'outcome': {'key': 'outcome', 'type': 'object'},
'runs_count': {'key': 'runsCount', 'type': 'int'}
}
def __init__(self, outcome=None, runs_count=None):
super(AggregatedRunsByOutcome, self).__init__()
self.outcome = outcome
self.runs_count = runs_count
class AggregatedRunsByState(Model):
"""AggregatedRunsByState.
:param results_by_outcome:
:type results_by_outcome: dict
:param runs_count:
:type runs_count: int
:param state:
:type state: object
"""
_attribute_map = {
'results_by_outcome': {'key': 'resultsByOutcome', 'type': '{AggregatedResultsByOutcome}'},
'runs_count': {'key': 'runsCount', 'type': 'int'},
'state': {'key': 'state', 'type': 'object'}
}
def __init__(self, results_by_outcome=None, runs_count=None, state=None):
super(AggregatedRunsByState, self).__init__()
self.results_by_outcome = results_by_outcome
self.runs_count = runs_count
self.state = state
class ArtifactResource(Model):
"""ArtifactResource.
:param _links:
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.build.models.ReferenceLinks>`
:param data: Type-specific data about the artifact.
:type data: str
:param download_url: A link to download the resource.
:type download_url: str
:param properties: Type-specific properties of the artifact.
:type properties: dict
:param type: The type of the resource: File container, version control folder, UNC path, etc.
:type type: str
:param url: The full http link to the resource.
:type url: str
"""
_attribute_map = {
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'data': {'key': 'data', 'type': 'str'},
'download_url': {'key': 'downloadUrl', 'type': 'str'},
'properties': {'key': 'properties', 'type': '{str}'},
'type': {'key': 'type', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, _links=None, data=None, download_url=None, properties=None, type=None, url=None):
super(ArtifactResource, self).__init__()
self._links = _links
self.data = data
self.download_url = download_url
self.properties = properties
self.type = type
self.url = url
class AssociatedWorkItem(Model):
"""AssociatedWorkItem.
:param assigned_to:
:type assigned_to: str
:param id: Id of associated the work item.
:type id: int
:param state:
:type state: str
:param title:
:type title: str
:param url: REST Url of the work item.
:type url: str
:param web_url:
:type web_url: str
:param work_item_type:
:type work_item_type: str
"""
_attribute_map = {
'assigned_to': {'key': 'assignedTo', 'type': 'str'},
'id': {'key': 'id', 'type': 'int'},
'state': {'key': 'state', 'type': 'str'},
'title': {'key': 'title', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'},
'web_url': {'key': 'webUrl', 'type': 'str'},
'work_item_type': {'key': 'workItemType', 'type': 'str'}
}
def __init__(self, assigned_to=None, id=None, state=None, title=None, url=None, web_url=None, work_item_type=None):
super(AssociatedWorkItem, self).__init__()
self.assigned_to = assigned_to
self.id = id
self.state = state
self.title = title
self.url = url
self.web_url = web_url
self.work_item_type = work_item_type
class Attachment(Model):
"""Attachment.
:param _links:
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.build.models.ReferenceLinks>`
:param name: The name of the attachment.
:type name: str
"""
_attribute_map = {
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'name': {'key': 'name', 'type': 'str'}
}
def __init__(self, _links=None, name=None):
super(Attachment, self).__init__()
self._links = _links
self.name = name
class AuthorizationHeader(Model):
"""AuthorizationHeader.
:param name:
:type name: str
:param value:
:type value: str
"""
_attribute_map = {
'name': {'key': 'name', 'type': 'str'},
'value': {'key': 'value', 'type': 'str'}
}
def __init__(self, name=None, value=None):
super(AuthorizationHeader, self).__init__()
self.name = name
self.value = value
class Build(Model):
"""Build.
:param _links:
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.build.models.ReferenceLinks>`
:param build_number: The build number/name of the build.
:type build_number: str
:param build_number_revision: The build number revision.
:type build_number_revision: int
:param controller: The build controller. This is only set if the definition type is Xaml.
:type controller: :class:`BuildController <azure.devops.v5_0.build.models.BuildController>`
:param definition: The definition associated with the build.
:type definition: :class:`DefinitionReference <azure.devops.v5_0.build.models.DefinitionReference>`
:param deleted: Indicates whether the build has been deleted.
:type deleted: bool
:param deleted_by: The identity of the process or person that deleted the build.
:type deleted_by: :class:`IdentityRef <azure.devops.v5_0.build.models.IdentityRef>`
:param deleted_date: The date the build was deleted.
:type deleted_date: datetime
:param deleted_reason: The description of how the build was deleted.
:type deleted_reason: str
:param demands: A list of demands that represents the agent capabilities required by this build.
:type demands: list of :class:`object <azure.devops.v5_0.build.models.object>`
:param finish_time: The time that the build was completed.
:type finish_time: datetime
:param id: The ID of the build.
:type id: int
:param keep_forever: Indicates whether the build should be skipped by retention policies.
:type keep_forever: bool
:param last_changed_by: The identity representing the process or person that last changed the build.
:type last_changed_by: :class:`IdentityRef <azure.devops.v5_0.build.models.IdentityRef>`
:param last_changed_date: The date the build was last changed.
:type last_changed_date: datetime
:param logs: Information about the build logs.
:type logs: :class:`BuildLogReference <azure.devops.v5_0.build.models.BuildLogReference>`
:param orchestration_plan: The orchestration plan for the build.
:type orchestration_plan: :class:`TaskOrchestrationPlanReference <azure.devops.v5_0.build.models.TaskOrchestrationPlanReference>`
:param parameters: The parameters for the build.
:type parameters: str
:param plans: Orchestration plans associated with the build (build, cleanup)
:type plans: list of :class:`TaskOrchestrationPlanReference <azure.devops.v5_0.build.models.TaskOrchestrationPlanReference>`
:param priority: The build's priority.
:type priority: object
:param project: The team project.
:type project: :class:`TeamProjectReference <azure.devops.v5_0.build.models.TeamProjectReference>`
:param properties:
:type properties: :class:`object <azure.devops.v5_0.build.models.object>`
:param quality: The quality of the xaml build (good, bad, etc.)
:type quality: str
:param queue: The queue. This is only set if the definition type is Build.
:type queue: :class:`AgentPoolQueue <azure.devops.v5_0.build.models.AgentPoolQueue>`
:param queue_options: Additional options for queueing the build.
:type queue_options: object
:param queue_position: The current position of the build in the queue.
:type queue_position: int
:param queue_time: The time that the build was queued.
:type queue_time: datetime
:param reason: The reason that the build was created.
:type reason: object
:param repository: The repository.
:type repository: :class:`BuildRepository <azure.devops.v5_0.build.models.BuildRepository>`
:param requested_by: The identity that queued the build.
:type requested_by: :class:`IdentityRef <azure.devops.v5_0.build.models.IdentityRef>`
:param requested_for: The identity on whose behalf the build was queued.
:type requested_for: :class:`IdentityRef <azure.devops.v5_0.build.models.IdentityRef>`
:param result: The build result.
:type result: object
:param retained_by_release: Indicates whether the build is retained by a release.
:type retained_by_release: bool
:param source_branch: The source branch.
:type source_branch: str
:param source_version: The source version.
:type source_version: str
:param start_time: The time that the build was started.
:type start_time: datetime
:param status: The status of the build.
:type status: object
:param tags:
:type tags: list of str
:param triggered_by_build: The build that triggered this build via a Build completion trigger.
:type triggered_by_build: :class:`Build <azure.devops.v5_0.build.models.Build>`
:param trigger_info: Sourceprovider-specific information about what triggered the build
:type trigger_info: dict
:param uri: The URI of the build.
:type uri: str
:param url: The REST URL of the build.
:type url: str
:param validation_results:
:type validation_results: list of :class:`BuildRequestValidationResult <azure.devops.v5_0.build.models.BuildRequestValidationResult>`
"""
_attribute_map = {
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'build_number': {'key': 'buildNumber', 'type': 'str'},
'build_number_revision': {'key': 'buildNumberRevision', 'type': 'int'},
'controller': {'key': 'controller', 'type': 'BuildController'},
'definition': {'key': 'definition', 'type': 'DefinitionReference'},
'deleted': {'key': 'deleted', 'type': 'bool'},
'deleted_by': {'key': 'deletedBy', 'type': 'IdentityRef'},
'deleted_date': {'key': 'deletedDate', 'type': 'iso-8601'},
'deleted_reason': {'key': 'deletedReason', 'type': 'str'},
'demands': {'key': 'demands', 'type': '[object]'},
'finish_time': {'key': 'finishTime', 'type': 'iso-8601'},
'id': {'key': 'id', 'type': 'int'},
'keep_forever': {'key': 'keepForever', 'type': 'bool'},
'last_changed_by': {'key': 'lastChangedBy', 'type': 'IdentityRef'},
'last_changed_date': {'key': 'lastChangedDate', 'type': 'iso-8601'},
'logs': {'key': 'logs', 'type': 'BuildLogReference'},
'orchestration_plan': {'key': 'orchestrationPlan', 'type': 'TaskOrchestrationPlanReference'},
'parameters': {'key': 'parameters', 'type': 'str'},
'plans': {'key': 'plans', 'type': '[TaskOrchestrationPlanReference]'},
'priority': {'key': 'priority', 'type': 'object'},
'project': {'key': 'project', 'type': 'TeamProjectReference'},
'properties': {'key': 'properties', 'type': 'object'},
'quality': {'key': 'quality', 'type': 'str'},
'queue': {'key': 'queue', 'type': 'AgentPoolQueue'},
'queue_options': {'key': 'queueOptions', 'type': 'object'},
'queue_position': {'key': 'queuePosition', 'type': 'int'},
'queue_time': {'key': 'queueTime', 'type': 'iso-8601'},
'reason': {'key': 'reason', 'type': 'object'},
'repository': {'key': 'repository', 'type': 'BuildRepository'},
'requested_by': {'key': 'requestedBy', 'type': 'IdentityRef'},
'requested_for': {'key': 'requestedFor', 'type': 'IdentityRef'},
'result': {'key': 'result', 'type': 'object'},
'retained_by_release': {'key': 'retainedByRelease', 'type': 'bool'},
'source_branch': {'key': 'sourceBranch', 'type': 'str'},
'source_version': {'key': 'sourceVersion', 'type': 'str'},
'start_time': {'key': 'startTime', 'type': 'iso-8601'},
'status': {'key': 'status', 'type': 'object'},
'tags': {'key': 'tags', 'type': '[str]'},
'triggered_by_build': {'key': 'triggeredByBuild', 'type': 'Build'},
'trigger_info': {'key': 'triggerInfo', 'type': '{str}'},
'uri': {'key': 'uri', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'},
'validation_results': {'key': 'validationResults', 'type': '[BuildRequestValidationResult]'}
}
def __init__(self, _links=None, build_number=None, build_number_revision=None, controller=None, definition=None, deleted=None, deleted_by=None, deleted_date=None, deleted_reason=None, demands=None, finish_time=None, id=None, keep_forever=None, last_changed_by=None, last_changed_date=None, logs=None, orchestration_plan=None, parameters=None, plans=None, priority=None, project=None, properties=None, quality=None, queue=None, queue_options=None, queue_position=None, queue_time=None, reason=None, repository=None, requested_by=None, requested_for=None, result=None, retained_by_release=None, source_branch=None, source_version=None, start_time=None, status=None, tags=None, triggered_by_build=None, trigger_info=None, uri=None, url=None, validation_results=None):
super(Build, self).__init__()
self._links = _links
self.build_number = build_number
self.build_number_revision = build_number_revision
self.controller = controller
self.definition = definition
self.deleted = deleted
self.deleted_by = deleted_by
self.deleted_date = deleted_date
self.deleted_reason = deleted_reason
self.demands = demands
self.finish_time = finish_time
self.id = id
self.keep_forever = keep_forever
self.last_changed_by = last_changed_by
self.last_changed_date = last_changed_date
self.logs = logs
self.orchestration_plan = orchestration_plan
self.parameters = parameters
self.plans = plans
self.priority = priority
self.project = project
self.properties = properties
self.quality = quality
self.queue = queue
self.queue_options = queue_options
self.queue_position = queue_position
self.queue_time = queue_time
self.reason = reason
self.repository = repository
self.requested_by = requested_by
self.requested_for = requested_for
self.result = result
self.retained_by_release = retained_by_release
self.source_branch = source_branch
self.source_version = source_version
self.start_time = start_time
self.status = status
self.tags = tags
self.triggered_by_build = triggered_by_build
self.trigger_info = trigger_info
self.uri = uri
self.url = url
self.validation_results = validation_results
class BuildArtifact(Model):
"""BuildArtifact.
:param id: The artifact ID.
:type id: int
:param name: The name of the artifact.
:type name: str
:param resource: The actual resource.
:type resource: :class:`ArtifactResource <azure.devops.v5_0.build.models.ArtifactResource>`
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'int'},
'name': {'key': 'name', 'type': 'str'},
'resource': {'key': 'resource', 'type': 'ArtifactResource'}
}
def __init__(self, id=None, name=None, resource=None):
super(BuildArtifact, self).__init__()
self.id = id
self.name = name
self.resource = resource
class BuildBadge(Model):
"""BuildBadge.
:param build_id: The ID of the build represented by this badge.
:type build_id: int
:param image_url: A link to the SVG resource.
:type image_url: str
"""
_attribute_map = {
'build_id': {'key': 'buildId', 'type': 'int'},
'image_url': {'key': 'imageUrl', 'type': 'str'}
}
def __init__(self, build_id=None, image_url=None):
super(BuildBadge, self).__init__()
self.build_id = build_id
self.image_url = image_url
class BuildDefinitionRevision(Model):
"""BuildDefinitionRevision.
:param changed_by: The identity of the person or process that changed the definition.
:type changed_by: :class:`IdentityRef <azure.devops.v5_0.build.models.IdentityRef>`
:param changed_date: The date and time that the definition was changed.
:type changed_date: datetime
:param change_type: The change type (add, edit, delete).
:type change_type: object
:param comment: The comment associated with the change.
:type comment: str
:param definition_url: A link to the definition at this revision.
:type definition_url: str
:param name: The name of the definition.
:type name: str
:param revision: The revision number.
:type revision: int
"""
_attribute_map = {
'changed_by': {'key': 'changedBy', 'type': 'IdentityRef'},
'changed_date': {'key': 'changedDate', 'type': 'iso-8601'},
'change_type': {'key': 'changeType', 'type': 'object'},
'comment': {'key': 'comment', 'type': 'str'},
'definition_url': {'key': 'definitionUrl', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'revision': {'key': 'revision', 'type': 'int'}
}
def __init__(self, changed_by=None, changed_date=None, change_type=None, comment=None, definition_url=None, name=None, revision=None):
super(BuildDefinitionRevision, self).__init__()
self.changed_by = changed_by
self.changed_date = changed_date
self.change_type = change_type
self.comment = comment
self.definition_url = definition_url
self.name = name
self.revision = revision
class BuildDefinitionStep(Model):
"""BuildDefinitionStep.
:param always_run: Indicates whether this step should run even if a previous step fails.
:type always_run: bool
:param condition: A condition that determines whether this step should run.
:type condition: str
:param continue_on_error: Indicates whether the phase should continue even if this step fails.
:type continue_on_error: bool
:param display_name: The display name for this step.
:type display_name: str
:param enabled: Indicates whether the step is enabled.
:type enabled: bool
:param environment:
:type environment: dict
:param inputs:
:type inputs: dict
:param ref_name: The reference name for this step.
:type ref_name: str
:param task: The task associated with this step.
:type task: :class:`TaskDefinitionReference <azure.devops.v5_0.build.models.TaskDefinitionReference>`
:param timeout_in_minutes: The time, in minutes, that this step is allowed to run.
:type timeout_in_minutes: int
"""
_attribute_map = {
'always_run': {'key': 'alwaysRun', 'type': 'bool'},
'condition': {'key': 'condition', 'type': 'str'},
'continue_on_error': {'key': 'continueOnError', 'type': 'bool'},
'display_name': {'key': 'displayName', 'type': 'str'},
'enabled': {'key': 'enabled', 'type': 'bool'},
'environment': {'key': 'environment', 'type': '{str}'},
'inputs': {'key': 'inputs', 'type': '{str}'},
'ref_name': {'key': 'refName', 'type': 'str'},
'task': {'key': 'task', 'type': 'TaskDefinitionReference'},
'timeout_in_minutes': {'key': 'timeoutInMinutes', 'type': 'int'}
}
def __init__(self, always_run=None, condition=None, continue_on_error=None, display_name=None, enabled=None, environment=None, inputs=None, ref_name=None, task=None, timeout_in_minutes=None):
super(BuildDefinitionStep, self).__init__()
self.always_run = always_run
self.condition = condition
self.continue_on_error = continue_on_error
self.display_name = display_name
self.enabled = enabled
self.environment = environment
self.inputs = inputs
self.ref_name = ref_name
self.task = task
self.timeout_in_minutes = timeout_in_minutes
class BuildDefinitionTemplate(Model):
"""BuildDefinitionTemplate.
:param can_delete: Indicates whether the template can be deleted.
:type can_delete: bool
:param category: The template category.
:type category: str
:param default_hosted_queue: An optional hosted agent queue for the template to use by default.
:type default_hosted_queue: str
:param description: A description of the template.
:type description: str
:param icons:
:type icons: dict
:param icon_task_id: The ID of the task whose icon is used when showing this template in the UI.
:type icon_task_id: str
:param id: The ID of the template.
:type id: str
:param name: The name of the template.
:type name: str
:param template: The actual template.
:type template: :class:`BuildDefinition <azure.devops.v5_0.build.models.BuildDefinition>`
"""
_attribute_map = {
'can_delete': {'key': 'canDelete', 'type': 'bool'},
'category': {'key': 'category', 'type': 'str'},
'default_hosted_queue': {'key': 'defaultHostedQueue', 'type': 'str'},
'description': {'key': 'description', 'type': 'str'},
'icons': {'key': 'icons', 'type': '{str}'},
'icon_task_id': {'key': 'iconTaskId', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'template': {'key': 'template', 'type': 'BuildDefinition'}
}
def __init__(self, can_delete=None, category=None, default_hosted_queue=None, description=None, icons=None, icon_task_id=None, id=None, name=None, template=None):
super(BuildDefinitionTemplate, self).__init__()
self.can_delete = can_delete
self.category = category
self.default_hosted_queue = default_hosted_queue
self.description = description
self.icons = icons
self.icon_task_id = icon_task_id
self.id = id
self.name = name
self.template = template
class BuildDefinitionTemplate3_2(Model):
"""BuildDefinitionTemplate3_2.
:param can_delete:
:type can_delete: bool
:param category:
:type category: str
:param default_hosted_queue:
:type default_hosted_queue: str
:param description:
:type description: str
:param icons:
:type icons: dict
:param icon_task_id:
:type icon_task_id: str
:param id:
:type id: str
:param name:
:type name: str
:param template:
:type template: :class:`BuildDefinition3_2 <azure.devops.v5_0.build.models.BuildDefinition3_2>`
"""
_attribute_map = {
'can_delete': {'key': 'canDelete', 'type': 'bool'},
'category': {'key': 'category', 'type': 'str'},
'default_hosted_queue': {'key': 'defaultHostedQueue', 'type': 'str'},
'description': {'key': 'description', 'type': 'str'},
'icons': {'key': 'icons', 'type': '{str}'},
'icon_task_id': {'key': 'iconTaskId', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'template': {'key': 'template', 'type': 'BuildDefinition3_2'}
}
def __init__(self, can_delete=None, category=None, default_hosted_queue=None, description=None, icons=None, icon_task_id=None, id=None, name=None, template=None):
super(BuildDefinitionTemplate3_2, self).__init__()
self.can_delete = can_delete
self.category = category
self.default_hosted_queue = default_hosted_queue
self.description = description
self.icons = icons
self.icon_task_id = icon_task_id
self.id = id
self.name = name
self.template = template
class BuildDefinitionVariable(Model):
"""BuildDefinitionVariable.
:param allow_override: Indicates whether the value can be set at queue time.
:type allow_override: bool
:param is_secret: Indicates whether the variable's value is a secret.
:type is_secret: bool
:param value: The value of the variable.
:type value: str
"""
_attribute_map = {
'allow_override': {'key': 'allowOverride', 'type': 'bool'},
'is_secret': {'key': 'isSecret', 'type': 'bool'},
'value': {'key': 'value', 'type': 'str'}
}
def __init__(self, allow_override=None, is_secret=None, value=None):
super(BuildDefinitionVariable, self).__init__()
self.allow_override = allow_override
self.is_secret = is_secret
self.value = value
class BuildLogReference(Model):
"""BuildLogReference.
:param id: The ID of the log.
:type id: int
:param type: The type of the log location.
:type type: str
:param url: A full link to the log resource.
:type url: str
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'int'},
'type': {'key': 'type', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, id=None, type=None, url=None):
super(BuildLogReference, self).__init__()
self.id = id
self.type = type
self.url = url
class BuildMetric(Model):
"""BuildMetric.
:param date: The date for the scope.
:type date: datetime
:param int_value: The value.
:type int_value: int
:param name: The name of the metric.
:type name: str
:param scope: The scope.
:type scope: str
"""
_attribute_map = {
'date': {'key': 'date', 'type': 'iso-8601'},
'int_value': {'key': 'intValue', 'type': 'int'},
'name': {'key': 'name', 'type': 'str'},
'scope': {'key': 'scope', 'type': 'str'}
}
def __init__(self, date=None, int_value=None, name=None, scope=None):
super(BuildMetric, self).__init__()
self.date = date
self.int_value = int_value
self.name = name
self.scope = scope
class BuildOption(Model):
"""BuildOption.
:param definition: A reference to the build option.
:type definition: :class:`BuildOptionDefinitionReference <azure.devops.v5_0.build.models.BuildOptionDefinitionReference>`
:param enabled: Indicates whether the behavior is enabled.
:type enabled: bool
:param inputs:
:type inputs: dict
"""
_attribute_map = {
'definition': {'key': 'definition', 'type': 'BuildOptionDefinitionReference'},
'enabled': {'key': 'enabled', 'type': 'bool'},
'inputs': {'key': 'inputs', 'type': '{str}'}
}
def __init__(self, definition=None, enabled=None, inputs=None):
super(BuildOption, self).__init__()
self.definition = definition
self.enabled = enabled
self.inputs = inputs
class BuildOptionDefinitionReference(Model):
"""BuildOptionDefinitionReference.
:param id: The ID of the referenced build option.
:type id: str
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'str'}
}
def __init__(self, id=None):
super(BuildOptionDefinitionReference, self).__init__()
self.id = id
class BuildOptionGroupDefinition(Model):
"""BuildOptionGroupDefinition.
:param display_name: The name of the group to display in the UI.
:type display_name: str
:param is_expanded: Indicates whether the group is initially displayed as expanded in the UI.
:type is_expanded: bool
:param name: The internal name of the group.
:type name: str
"""
_attribute_map = {
'display_name': {'key': 'displayName', 'type': 'str'},
'is_expanded': {'key': 'isExpanded', 'type': 'bool'},
'name': {'key': 'name', 'type': 'str'}
}
def __init__(self, display_name=None, is_expanded=None, name=None):
super(BuildOptionGroupDefinition, self).__init__()
self.display_name = display_name
self.is_expanded = is_expanded
self.name = name
class BuildOptionInputDefinition(Model):
"""BuildOptionInputDefinition.
:param default_value: The default value.
:type default_value: str
:param group_name: The name of the input group that this input belongs to.
:type group_name: str
:param help:
:type help: dict
:param label: The label for the input.
:type label: str
:param name: The name of the input.
:type name: str
:param options:
:type options: dict
:param required: Indicates whether the input is required to have a value.
:type required: bool
:param type: Indicates the type of the input value.
:type type: object
:param visible_rule: The rule that is applied to determine whether the input is visible in the UI.
:type visible_rule: str
"""
_attribute_map = {
'default_value': {'key': 'defaultValue', 'type': 'str'},
'group_name': {'key': 'groupName', 'type': 'str'},
'help': {'key': 'help', 'type': '{str}'},
'label': {'key': 'label', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'options': {'key': 'options', 'type': '{str}'},
'required': {'key': 'required', 'type': 'bool'},
'type': {'key': 'type', 'type': 'object'},
'visible_rule': {'key': 'visibleRule', 'type': 'str'}
}
def __init__(self, default_value=None, group_name=None, help=None, label=None, name=None, options=None, required=None, type=None, visible_rule=None):
super(BuildOptionInputDefinition, self).__init__()
self.default_value = default_value
self.group_name = group_name
self.help = help
self.label = label
self.name = name
self.options = options
self.required = required
self.type = type
self.visible_rule = visible_rule
class BuildReportMetadata(Model):
"""BuildReportMetadata.
:param build_id: The Id of the build.
:type build_id: int
:param content: The content of the report.
:type content: str
:param type: The type of the report.
:type type: str
"""
_attribute_map = {
'build_id': {'key': 'buildId', 'type': 'int'},
'content': {'key': 'content', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'}
}
def __init__(self, build_id=None, content=None, type=None):
super(BuildReportMetadata, self).__init__()
self.build_id = build_id
self.content = content
self.type = type
class BuildRepository(Model):
"""BuildRepository.
:param checkout_submodules: Indicates whether to checkout submodules.
:type checkout_submodules: bool
:param clean: Indicates whether to clean the target folder when getting code from the repository.
:type clean: str
:param default_branch: The name of the default branch.
:type default_branch: str
:param id: The ID of the repository.
:type id: str
:param name: The friendly name of the repository.
:type name: str
:param properties:
:type properties: dict
:param root_folder: The root folder.
:type root_folder: str
:param type: The type of the repository.
:type type: str
:param url: The URL of the repository.
:type url: str
"""
_attribute_map = {
'checkout_submodules': {'key': 'checkoutSubmodules', 'type': 'bool'},
'clean': {'key': 'clean', 'type': 'str'},
'default_branch': {'key': 'defaultBranch', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'properties': {'key': 'properties', 'type': '{str}'},
'root_folder': {'key': 'rootFolder', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, checkout_submodules=None, clean=None, default_branch=None, id=None, name=None, properties=None, root_folder=None, type=None, url=None):
super(BuildRepository, self).__init__()
self.checkout_submodules = checkout_submodules
self.clean = clean
self.default_branch = default_branch
self.id = id
self.name = name
self.properties = properties
self.root_folder = root_folder
self.type = type
self.url = url
class BuildRequestValidationResult(Model):
"""BuildRequestValidationResult.
:param message: The message associated with the result.
:type message: str
:param result: The result.
:type result: object
"""
_attribute_map = {
'message': {'key': 'message', 'type': 'str'},
'result': {'key': 'result', 'type': 'object'}
}
def __init__(self, message=None, result=None):
super(BuildRequestValidationResult, self).__init__()
self.message = message
self.result = result
class BuildResourceUsage(Model):
"""BuildResourceUsage.
:param distributed_task_agents: The number of build agents.
:type distributed_task_agents: int
:param paid_private_agent_slots: The number of paid private agent slots.
:type paid_private_agent_slots: int
:param total_usage: The total usage.
:type total_usage: int
:param xaml_controllers: The number of XAML controllers.
:type xaml_controllers: int
"""
_attribute_map = {
'distributed_task_agents': {'key': 'distributedTaskAgents', 'type': 'int'},
'paid_private_agent_slots': {'key': 'paidPrivateAgentSlots', 'type': 'int'},
'total_usage': {'key': 'totalUsage', 'type': 'int'},
'xaml_controllers': {'key': 'xamlControllers', 'type': 'int'}
}
def __init__(self, distributed_task_agents=None, paid_private_agent_slots=None, total_usage=None, xaml_controllers=None):
super(BuildResourceUsage, self).__init__()
self.distributed_task_agents = distributed_task_agents
self.paid_private_agent_slots = paid_private_agent_slots
self.total_usage = total_usage
self.xaml_controllers = xaml_controllers
class BuildSettings(Model):
"""BuildSettings.
:param days_to_keep_deleted_builds_before_destroy: The number of days to keep records of deleted builds.
:type days_to_keep_deleted_builds_before_destroy: int
:param default_retention_policy: The default retention policy.
:type default_retention_policy: :class:`RetentionPolicy <azure.devops.v5_0.build.models.RetentionPolicy>`
:param maximum_retention_policy: The maximum retention policy.
:type maximum_retention_policy: :class:`RetentionPolicy <azure.devops.v5_0.build.models.RetentionPolicy>`
"""
_attribute_map = {
'days_to_keep_deleted_builds_before_destroy': {'key': 'daysToKeepDeletedBuildsBeforeDestroy', 'type': 'int'},
'default_retention_policy': {'key': 'defaultRetentionPolicy', 'type': 'RetentionPolicy'},
'maximum_retention_policy': {'key': 'maximumRetentionPolicy', 'type': 'RetentionPolicy'}
}
def __init__(self, days_to_keep_deleted_builds_before_destroy=None, default_retention_policy=None, maximum_retention_policy=None):
super(BuildSettings, self).__init__()
self.days_to_keep_deleted_builds_before_destroy = days_to_keep_deleted_builds_before_destroy
self.default_retention_policy = default_retention_policy
self.maximum_retention_policy = maximum_retention_policy
class Change(Model):
"""Change.
:param author: The author of the change.
:type author: :class:`IdentityRef <azure.devops.v5_0.build.models.IdentityRef>`
:param display_uri: The location of a user-friendly representation of the resource.
:type display_uri: str
:param id: The identifier for the change. For a commit, this would be the SHA1. For a TFVC changeset, this would be the changeset ID.
:type id: str
:param location: The location of the full representation of the resource.
:type location: str
:param message: The description of the change. This might be a commit message or changeset description.
:type message: str
:param message_truncated: Indicates whether the message was truncated.
:type message_truncated: bool
:param pusher: The person or process that pushed the change.
:type pusher: str
:param timestamp: The timestamp for the change.
:type timestamp: datetime
:param type: The type of change. "commit", "changeset", etc.
:type type: str
"""
_attribute_map = {
'author': {'key': 'author', 'type': 'IdentityRef'},
'display_uri': {'key': 'displayUri', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'},
'location': {'key': 'location', 'type': 'str'},
'message': {'key': 'message', 'type': 'str'},
'message_truncated': {'key': 'messageTruncated', 'type': 'bool'},
'pusher': {'key': 'pusher', 'type': 'str'},
'timestamp': {'key': 'timestamp', 'type': 'iso-8601'},
'type': {'key': 'type', 'type': 'str'}
}
def __init__(self, author=None, display_uri=None, id=None, location=None, message=None, message_truncated=None, pusher=None, timestamp=None, type=None):
super(Change, self).__init__()
self.author = author
self.display_uri = display_uri
self.id = id
self.location = location
self.message = message
self.message_truncated = message_truncated
self.pusher = pusher
self.timestamp = timestamp
self.type = type
class DataSourceBindingBase(Model):
"""DataSourceBindingBase.
:param callback_context_template: Pagination format supported by this data source(ContinuationToken/SkipTop).
:type callback_context_template: str
:param callback_required_template: Subsequent calls needed?
:type callback_required_template: str
:param data_source_name: Gets or sets the name of the data source.
:type data_source_name: str
:param endpoint_id: Gets or sets the endpoint Id.
:type endpoint_id: str
:param endpoint_url: Gets or sets the url of the service endpoint.
:type endpoint_url: str
:param headers: Gets or sets the authorization headers.
:type headers: list of :class:`AuthorizationHeader <azure.devops.v5_0.microsoft._team_foundation._distributed_task._common._contracts.models.AuthorizationHeader>`
:param initial_context_template: Defines the initial value of the query params
:type initial_context_template: str
:param parameters: Gets or sets the parameters for the data source.
:type parameters: dict
:param result_selector: Gets or sets the result selector.
:type result_selector: str
:param result_template: Gets or sets the result template.
:type result_template: str
:param target: Gets or sets the target of the data source.
:type target: str
"""
_attribute_map = {
'callback_context_template': {'key': 'callbackContextTemplate', 'type': 'str'},
'callback_required_template': {'key': 'callbackRequiredTemplate', 'type': 'str'},
'data_source_name': {'key': 'dataSourceName', 'type': 'str'},
'endpoint_id': {'key': 'endpointId', 'type': 'str'},
'endpoint_url': {'key': 'endpointUrl', 'type': 'str'},
'headers': {'key': 'headers', 'type': '[AuthorizationHeader]'},
'initial_context_template': {'key': 'initialContextTemplate', 'type': 'str'},
'parameters': {'key': 'parameters', 'type': '{str}'},
'result_selector': {'key': 'resultSelector', 'type': 'str'},
'result_template': {'key': 'resultTemplate', 'type': 'str'},
'target': {'key': 'target', 'type': 'str'}
}
def __init__(self, callback_context_template=None, callback_required_template=None, data_source_name=None, endpoint_id=None, endpoint_url=None, headers=None, initial_context_template=None, parameters=None, result_selector=None, result_template=None, target=None):
super(DataSourceBindingBase, self).__init__()
self.callback_context_template = callback_context_template
self.callback_required_template = callback_required_template
self.data_source_name = data_source_name
self.endpoint_id = endpoint_id
self.endpoint_url = endpoint_url
self.headers = headers
self.initial_context_template = initial_context_template
self.parameters = parameters
self.result_selector = result_selector
self.result_template = result_template
self.target = target
class DefinitionReference(Model):
"""DefinitionReference.
:param created_date: The date the definition was created.
:type created_date: datetime
:param id: The ID of the referenced definition.
:type id: int
:param name: The name of the referenced definition.
:type name: str
:param path: The folder path of the definition.
:type path: str
:param project: A reference to the project.
:type project: :class:`TeamProjectReference <azure.devops.v5_0.build.models.TeamProjectReference>`
:param queue_status: A value that indicates whether builds can be queued against this definition.
:type queue_status: object
:param revision: The definition revision number.
:type revision: int
:param type: The type of the definition.
:type type: object
:param uri: The definition's URI.
:type uri: str
:param url: The REST URL of the definition.
:type url: str
"""
_attribute_map = {
'created_date': {'key': 'createdDate', 'type': 'iso-8601'},
'id': {'key': 'id', 'type': 'int'},
'name': {'key': 'name', 'type': 'str'},
'path': {'key': 'path', 'type': 'str'},
'project': {'key': 'project', 'type': 'TeamProjectReference'},
'queue_status': {'key': 'queueStatus', 'type': 'object'},
'revision': {'key': 'revision', 'type': 'int'},
'type': {'key': 'type', 'type': 'object'},
'uri': {'key': 'uri', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, created_date=None, id=None, name=None, path=None, project=None, queue_status=None, revision=None, type=None, uri=None, url=None):
super(DefinitionReference, self).__init__()
self.created_date = created_date
self.id = id
self.name = name
self.path = path
self.project = project
self.queue_status = queue_status
self.revision = revision
self.type = type
self.uri = uri
self.url = url
class DefinitionResourceReference(Model):
"""DefinitionResourceReference.
:param authorized: Indicates whether the resource is authorized for use.
:type authorized: bool
:param id: The id of the resource.
:type id: str
:param name: A friendly name for the resource.
:type name: str
:param type: The type of the resource.
:type type: str
"""
_attribute_map = {
'authorized': {'key': 'authorized', 'type': 'bool'},
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'}
}
def __init__(self, authorized=None, id=None, name=None, type=None):
super(DefinitionResourceReference, self).__init__()
self.authorized = authorized
self.id = id
self.name = name
self.type = type
class Deployment(Model):
"""Deployment.
:param type:
:type type: str
"""
_attribute_map = {
'type': {'key': 'type', 'type': 'str'}
}
def __init__(self, type=None):
super(Deployment, self).__init__()
self.type = type
class Folder(Model):
"""Folder.
:param created_by: The process or person who created the folder.
:type created_by: :class:`IdentityRef <azure.devops.v5_0.build.models.IdentityRef>`
:param created_on: The date the folder was created.
:type created_on: datetime
:param description: The description.
:type description: str
:param last_changed_by: The process or person that last changed the folder.
:type last_changed_by: :class:`IdentityRef <azure.devops.v5_0.build.models.IdentityRef>`
:param last_changed_date: The date the folder was last changed.
:type last_changed_date: datetime
:param path: The full path.
:type path: str
:param project: The project.
:type project: :class:`TeamProjectReference <azure.devops.v5_0.build.models.TeamProjectReference>`
"""
_attribute_map = {
'created_by': {'key': 'createdBy', 'type': 'IdentityRef'},
'created_on': {'key': 'createdOn', 'type': 'iso-8601'},
'description': {'key': 'description', 'type': 'str'},
'last_changed_by': {'key': 'lastChangedBy', 'type': 'IdentityRef'},
'last_changed_date': {'key': 'lastChangedDate', 'type': 'iso-8601'},
'path': {'key': 'path', 'type': 'str'},
'project': {'key': 'project', 'type': 'TeamProjectReference'}
}
def __init__(self, created_by=None, created_on=None, description=None, last_changed_by=None, last_changed_date=None, path=None, project=None):
super(Folder, self).__init__()
self.created_by = created_by
self.created_on = created_on
self.description = description
self.last_changed_by = last_changed_by
self.last_changed_date = last_changed_date
self.path = path
self.project = project
class GraphSubjectBase(Model):
"""GraphSubjectBase.
:param _links: This field contains zero or more interesting links about the graph subject. These links may be invoked to obtain additional relationships or more detailed information about this graph subject.
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.microsoft._visual_studio._services._web_api.models.ReferenceLinks>`
:param descriptor: The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the same graph subject across both Accounts and Organizations.
:type descriptor: str
:param display_name: This is the non-unique display name of the graph subject. To change this field, you must alter its value in the source provider.
:type display_name: str
:param url: This url is the full route to the source resource of this graph subject.
:type url: str
"""
_attribute_map = {
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'descriptor': {'key': 'descriptor', 'type': 'str'},
'display_name': {'key': 'displayName', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, _links=None, descriptor=None, display_name=None, url=None):
super(GraphSubjectBase, self).__init__()
self._links = _links
self.descriptor = descriptor
self.display_name = display_name
self.url = url
class IdentityRef(GraphSubjectBase):
"""IdentityRef.
:param _links: This field contains zero or more interesting links about the graph subject. These links may be invoked to obtain additional relationships or more detailed information about this graph subject.
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.microsoft._visual_studio._services._web_api.models.ReferenceLinks>`
:param descriptor: The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the same graph subject across both Accounts and Organizations.
:type descriptor: str
:param display_name: This is the non-unique display name of the graph subject. To change this field, you must alter its value in the source provider.
:type display_name: str
:param url: This url is the full route to the source resource of this graph subject.
:type url: str
:param directory_alias:
:type directory_alias: str
:param id:
:type id: str
:param image_url:
:type image_url: str
:param inactive:
:type inactive: bool
:param is_aad_identity:
:type is_aad_identity: bool
:param is_container:
:type is_container: bool
:param is_deleted_in_origin:
:type is_deleted_in_origin: bool
:param profile_url:
:type profile_url: str
:param unique_name:
:type unique_name: str
"""
_attribute_map = {
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'descriptor': {'key': 'descriptor', 'type': 'str'},
'display_name': {'key': 'displayName', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'},
'directory_alias': {'key': 'directoryAlias', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'},
'image_url': {'key': 'imageUrl', 'type': 'str'},
'inactive': {'key': 'inactive', 'type': 'bool'},
'is_aad_identity': {'key': 'isAadIdentity', 'type': 'bool'},
'is_container': {'key': 'isContainer', 'type': 'bool'},
'is_deleted_in_origin': {'key': 'isDeletedInOrigin', 'type': 'bool'},
'profile_url': {'key': 'profileUrl', 'type': 'str'},
'unique_name': {'key': 'uniqueName', 'type': 'str'}
}
def __init__(self, _links=None, descriptor=None, display_name=None, url=None, directory_alias=None, id=None, image_url=None, inactive=None, is_aad_identity=None, is_container=None, is_deleted_in_origin=None, profile_url=None, unique_name=None):
super(IdentityRef, self).__init__(_links=_links, descriptor=descriptor, display_name=display_name, url=url)
self.directory_alias = directory_alias
self.id = id
self.image_url = image_url
self.inactive = inactive
self.is_aad_identity = is_aad_identity
self.is_container = is_container
self.is_deleted_in_origin = is_deleted_in_origin
self.profile_url = profile_url
self.unique_name = unique_name
class Issue(Model):
"""Issue.
:param category: The category.
:type category: str
:param data:
:type data: dict
:param message: A description of the issue.
:type message: str
:param type: The type (error, warning) of the issue.
:type type: object
"""
_attribute_map = {
'category': {'key': 'category', 'type': 'str'},
'data': {'key': 'data', 'type': '{str}'},
'message': {'key': 'message', 'type': 'str'},
'type': {'key': 'type', 'type': 'object'}
}
def __init__(self, category=None, data=None, message=None, type=None):
super(Issue, self).__init__()
self.category = category
self.data = data
self.message = message
self.type = type
class JsonPatchOperation(Model):
"""JsonPatchOperation.
:param from_: The path to copy from for the Move/Copy operation.
:type from_: str
:param op: The patch operation
:type op: object
:param path: The path for the operation
:type path: str
:param value: The value for the operation. This is either a primitive or a JToken.
:type value: object
"""
_attribute_map = {
'from_': {'key': 'from', 'type': 'str'},
'op': {'key': 'op', 'type': 'object'},
'path': {'key': 'path', 'type': 'str'},
'value': {'key': 'value', 'type': 'object'}
}
def __init__(self, from_=None, op=None, path=None, value=None):
super(JsonPatchOperation, self).__init__()
self.from_ = from_
self.op = op
self.path = path
self.value = value
class ProcessParameters(Model):
"""ProcessParameters.
:param data_source_bindings:
:type data_source_bindings: list of :class:`DataSourceBindingBase <azure.devops.v5_0.microsoft._team_foundation._distributed_task._common._contracts.models.DataSourceBindingBase>`
:param inputs:
:type inputs: list of :class:`TaskInputDefinitionBase <azure.devops.v5_0.microsoft._team_foundation._distributed_task._common._contracts.models.TaskInputDefinitionBase>`
:param source_definitions:
:type source_definitions: list of :class:`TaskSourceDefinitionBase <azure.devops.v5_0.microsoft._team_foundation._distributed_task._common._contracts.models.TaskSourceDefinitionBase>`
"""
_attribute_map = {
'data_source_bindings': {'key': 'dataSourceBindings', 'type': '[DataSourceBindingBase]'},
'inputs': {'key': 'inputs', 'type': '[TaskInputDefinitionBase]'},
'source_definitions': {'key': 'sourceDefinitions', 'type': '[TaskSourceDefinitionBase]'}
}
def __init__(self, data_source_bindings=None, inputs=None, source_definitions=None):
super(ProcessParameters, self).__init__()
self.data_source_bindings = data_source_bindings
self.inputs = inputs
self.source_definitions = source_definitions
class PullRequest(Model):
"""PullRequest.
:param _links: The links to other objects related to this object.
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.build.models.ReferenceLinks>`
:param author: Author of the pull request.
:type author: :class:`IdentityRef <azure.devops.v5_0.build.models.IdentityRef>`
:param current_state: Current state of the pull request, e.g. open, merged, closed, conflicts, etc.
:type current_state: str
:param description: Description for the pull request.
:type description: str
:param id: Unique identifier for the pull request
:type id: str
:param provider_name: The name of the provider this pull request is associated with.
:type provider_name: str
:param source_branch_ref: Source branch ref of this pull request
:type source_branch_ref: str
:param source_repository_owner: Owner of the source repository of this pull request
:type source_repository_owner: str
:param target_branch_ref: Target branch ref of this pull request
:type target_branch_ref: str
:param target_repository_owner: Owner of the target repository of this pull request
:type target_repository_owner: str
:param title: Title of the pull request.
:type title: str
"""
_attribute_map = {
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'author': {'key': 'author', 'type': 'IdentityRef'},
'current_state': {'key': 'currentState', 'type': 'str'},
'description': {'key': 'description', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'},
'provider_name': {'key': 'providerName', 'type': 'str'},
'source_branch_ref': {'key': 'sourceBranchRef', 'type': 'str'},
'source_repository_owner': {'key': 'sourceRepositoryOwner', 'type': 'str'},
'target_branch_ref': {'key': 'targetBranchRef', 'type': 'str'},
'target_repository_owner': {'key': 'targetRepositoryOwner', 'type': 'str'},
'title': {'key': 'title', 'type': 'str'}
}
def __init__(self, _links=None, author=None, current_state=None, description=None, id=None, provider_name=None, source_branch_ref=None, source_repository_owner=None, target_branch_ref=None, target_repository_owner=None, title=None):
super(PullRequest, self).__init__()
self._links = _links
self.author = author
self.current_state = current_state
self.description = description
self.id = id
self.provider_name = provider_name
self.source_branch_ref = source_branch_ref
self.source_repository_owner = source_repository_owner
self.target_branch_ref = target_branch_ref
self.target_repository_owner = target_repository_owner
self.title = title
class ReferenceLinks(Model):
"""ReferenceLinks.
:param links: The readonly view of the links. Because Reference links are readonly, we only want to expose them as read only.
:type links: dict
"""
_attribute_map = {
'links': {'key': 'links', 'type': '{object}'}
}
def __init__(self, links=None):
super(ReferenceLinks, self).__init__()
self.links = links
class ReleaseReference(Model):
"""ReleaseReference.
:param attempt:
:type attempt: int
:param creation_date:
:type creation_date: datetime
:param definition_id: Release definition ID.
:type definition_id: int
:param environment_creation_date:
:type environment_creation_date: datetime
:param environment_definition_id: Release environment definition ID.
:type environment_definition_id: int
:param environment_definition_name: Release environment definition name.
:type environment_definition_name: str
:param environment_id: Release environment ID.
:type environment_id: int
:param environment_name: Release environment name.
:type environment_name: str
:param id: Release ID.
:type id: int
:param name: Release name.
:type name: str
"""
_attribute_map = {
'attempt': {'key': 'attempt', 'type': 'int'},
'creation_date': {'key': 'creationDate', 'type': 'iso-8601'},
'definition_id': {'key': 'definitionId', 'type': 'int'},
'environment_creation_date': {'key': 'environmentCreationDate', 'type': 'iso-8601'},
'environment_definition_id': {'key': 'environmentDefinitionId', 'type': 'int'},
'environment_definition_name': {'key': 'environmentDefinitionName', 'type': 'str'},
'environment_id': {'key': 'environmentId', 'type': 'int'},
'environment_name': {'key': 'environmentName', 'type': 'str'},
'id': {'key': 'id', 'type': 'int'},
'name': {'key': 'name', 'type': 'str'}
}
def __init__(self, attempt=None, creation_date=None, definition_id=None, environment_creation_date=None, environment_definition_id=None, environment_definition_name=None, environment_id=None, environment_name=None, id=None, name=None):
super(ReleaseReference, self).__init__()
self.attempt = attempt
self.creation_date = creation_date
self.definition_id = definition_id
self.environment_creation_date = environment_creation_date
self.environment_definition_id = environment_definition_id
self.environment_definition_name = environment_definition_name
self.environment_id = environment_id
self.environment_name = environment_name
self.id = id
self.name = name
class RepositoryWebhook(Model):
"""RepositoryWebhook.
:param name: The friendly name of the repository.
:type name: str
:param types:
:type types: list of DefinitionTriggerType
:param url: The URL of the repository.
:type url: str
"""
_attribute_map = {
'name': {'key': 'name', 'type': 'str'},
'types': {'key': 'types', 'type': '[object]'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, name=None, types=None, url=None):
super(RepositoryWebhook, self).__init__()
self.name = name
self.types = types
self.url = url
class ResourceRef(Model):
"""ResourceRef.
:param id:
:type id: str
:param url:
:type url: str
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, id=None, url=None):
super(ResourceRef, self).__init__()
self.id = id
self.url = url
class RetentionPolicy(Model):
"""RetentionPolicy.
:param artifacts:
:type artifacts: list of str
:param artifact_types_to_delete:
:type artifact_types_to_delete: list of str
:param branches:
:type branches: list of str
:param days_to_keep: The number of days to keep builds.
:type days_to_keep: int
:param delete_build_record: Indicates whether the build record itself should be deleted.
:type delete_build_record: bool
:param delete_test_results: Indicates whether to delete test results associated with the build.
:type delete_test_results: bool
:param minimum_to_keep: The minimum number of builds to keep.
:type minimum_to_keep: int
"""
_attribute_map = {
'artifacts': {'key': 'artifacts', 'type': '[str]'},
'artifact_types_to_delete': {'key': 'artifactTypesToDelete', 'type': '[str]'},
'branches': {'key': 'branches', 'type': '[str]'},
'days_to_keep': {'key': 'daysToKeep', 'type': 'int'},
'delete_build_record': {'key': 'deleteBuildRecord', 'type': 'bool'},
'delete_test_results': {'key': 'deleteTestResults', 'type': 'bool'},
'minimum_to_keep': {'key': 'minimumToKeep', 'type': 'int'}
}
def __init__(self, artifacts=None, artifact_types_to_delete=None, branches=None, days_to_keep=None, delete_build_record=None, delete_test_results=None, minimum_to_keep=None):
super(RetentionPolicy, self).__init__()
self.artifacts = artifacts
self.artifact_types_to_delete = artifact_types_to_delete
self.branches = branches
self.days_to_keep = days_to_keep
self.delete_build_record = delete_build_record
self.delete_test_results = delete_test_results
self.minimum_to_keep = minimum_to_keep
class SourceProviderAttributes(Model):
"""SourceProviderAttributes.
:param name: The name of the source provider.
:type name: str
:param supported_capabilities: The capabilities supported by this source provider.
:type supported_capabilities: dict
:param supported_triggers: The types of triggers supported by this source provider.
:type supported_triggers: list of :class:`SupportedTrigger <azure.devops.v5_0.build.models.SupportedTrigger>`
"""
_attribute_map = {
'name': {'key': 'name', 'type': 'str'},
'supported_capabilities': {'key': 'supportedCapabilities', 'type': '{bool}'},
'supported_triggers': {'key': 'supportedTriggers', 'type': '[SupportedTrigger]'}
}
def __init__(self, name=None, supported_capabilities=None, supported_triggers=None):
super(SourceProviderAttributes, self).__init__()
self.name = name
self.supported_capabilities = supported_capabilities
self.supported_triggers = supported_triggers
class SourceRepositories(Model):
"""SourceRepositories.
:param continuation_token: A token used to continue this paged request; 'null' if the request is complete
:type continuation_token: str
:param page_length: The number of repositories requested for each page
:type page_length: int
:param repositories: A list of repositories
:type repositories: list of :class:`SourceRepository <azure.devops.v5_0.build.models.SourceRepository>`
:param total_page_count: The total number of pages, or '-1' if unknown
:type total_page_count: int
"""
_attribute_map = {
'continuation_token': {'key': 'continuationToken', 'type': 'str'},
'page_length': {'key': 'pageLength', 'type': 'int'},
'repositories': {'key': 'repositories', 'type': '[SourceRepository]'},
'total_page_count': {'key': 'totalPageCount', 'type': 'int'}
}
def __init__(self, continuation_token=None, page_length=None, repositories=None, total_page_count=None):
super(SourceRepositories, self).__init__()
self.continuation_token = continuation_token
self.page_length = page_length
self.repositories = repositories
self.total_page_count = total_page_count
class SourceRepository(Model):
"""SourceRepository.
:param default_branch: The name of the default branch.
:type default_branch: str
:param full_name: The full name of the repository.
:type full_name: str
:param id: The ID of the repository.
:type id: str
:param name: The friendly name of the repository.
:type name: str
:param properties:
:type properties: dict
:param source_provider_name: The name of the source provider the repository is from.
:type source_provider_name: str
:param url: The URL of the repository.
:type url: str
"""
_attribute_map = {
'default_branch': {'key': 'defaultBranch', 'type': 'str'},
'full_name': {'key': 'fullName', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'properties': {'key': 'properties', 'type': '{str}'},
'source_provider_name': {'key': 'sourceProviderName', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, default_branch=None, full_name=None, id=None, name=None, properties=None, source_provider_name=None, url=None):
super(SourceRepository, self).__init__()
self.default_branch = default_branch
self.full_name = full_name
self.id = id
self.name = name
self.properties = properties
self.source_provider_name = source_provider_name
self.url = url
class SourceRepositoryItem(Model):
"""SourceRepositoryItem.
:param is_container: Whether the item is able to have sub-items (e.g., is a folder).
:type is_container: bool
:param path: The full path of the item, relative to the root of the repository.
:type path: str
:param type: The type of the item (folder, file, etc).
:type type: str
:param url: The URL of the item.
:type url: str
"""
_attribute_map = {
'is_container': {'key': 'isContainer', 'type': 'bool'},
'path': {'key': 'path', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, is_container=None, path=None, type=None, url=None):
super(SourceRepositoryItem, self).__init__()
self.is_container = is_container
self.path = path
self.type = type
self.url = url
class SupportedTrigger(Model):
"""SupportedTrigger.
:param default_polling_interval: The default interval to wait between polls (only relevant when NotificationType is Polling).
:type default_polling_interval: int
:param notification_type: How the trigger is notified of changes.
:type notification_type: str
:param supported_capabilities: The capabilities supported by this trigger.
:type supported_capabilities: dict
:param type: The type of trigger.
:type type: object
"""
_attribute_map = {
'default_polling_interval': {'key': 'defaultPollingInterval', 'type': 'int'},
'notification_type': {'key': 'notificationType', 'type': 'str'},
'supported_capabilities': {'key': 'supportedCapabilities', 'type': '{object}'},
'type': {'key': 'type', 'type': 'object'}
}
def __init__(self, default_polling_interval=None, notification_type=None, supported_capabilities=None, type=None):
super(SupportedTrigger, self).__init__()
self.default_polling_interval = default_polling_interval
self.notification_type = notification_type
self.supported_capabilities = supported_capabilities
self.type = type
class TaskAgentPoolReference(Model):
"""TaskAgentPoolReference.
:param id: The pool ID.
:type id: int
:param is_hosted: A value indicating whether or not this pool is managed by the service.
:type is_hosted: bool
:param name: The pool name.
:type name: str
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'int'},
'is_hosted': {'key': 'isHosted', 'type': 'bool'},
'name': {'key': 'name', 'type': 'str'}
}
def __init__(self, id=None, is_hosted=None, name=None):
super(TaskAgentPoolReference, self).__init__()
self.id = id
self.is_hosted = is_hosted
self.name = name
class TaskDefinitionReference(Model):
"""TaskDefinitionReference.
:param definition_type: The type of task (task or task group).
:type definition_type: str
:param id: The ID of the task.
:type id: str
:param version_spec: The version of the task.
:type version_spec: str
"""
_attribute_map = {
'definition_type': {'key': 'definitionType', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'},
'version_spec': {'key': 'versionSpec', 'type': 'str'}
}
def __init__(self, definition_type=None, id=None, version_spec=None):
super(TaskDefinitionReference, self).__init__()
self.definition_type = definition_type
self.id = id
self.version_spec = version_spec
class TaskInputDefinitionBase(Model):
"""TaskInputDefinitionBase.
:param aliases:
:type aliases: list of str
:param default_value:
:type default_value: str
:param group_name:
:type group_name: str
:param help_mark_down:
:type help_mark_down: str
:param label:
:type label: str
:param name:
:type name: str
:param options:
:type options: dict
:param properties:
:type properties: dict
:param required:
:type required: bool
:param type:
:type type: str
:param validation:
:type validation: :class:`TaskInputValidation <azure.devops.v5_0.microsoft._team_foundation._distributed_task._common._contracts.models.TaskInputValidation>`
:param visible_rule:
:type visible_rule: str
"""
_attribute_map = {
'aliases': {'key': 'aliases', 'type': '[str]'},
'default_value': {'key': 'defaultValue', 'type': 'str'},
'group_name': {'key': 'groupName', 'type': 'str'},
'help_mark_down': {'key': 'helpMarkDown', 'type': 'str'},
'label': {'key': 'label', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'options': {'key': 'options', 'type': '{str}'},
'properties': {'key': 'properties', 'type': '{str}'},
'required': {'key': 'required', 'type': 'bool'},
'type': {'key': 'type', 'type': 'str'},
'validation': {'key': 'validation', 'type': 'TaskInputValidation'},
'visible_rule': {'key': 'visibleRule', 'type': 'str'}
}
def __init__(self, aliases=None, default_value=None, group_name=None, help_mark_down=None, label=None, name=None, options=None, properties=None, required=None, type=None, validation=None, visible_rule=None):
super(TaskInputDefinitionBase, self).__init__()
self.aliases = aliases
self.default_value = default_value
self.group_name = group_name
self.help_mark_down = help_mark_down
self.label = label
self.name = name
self.options = options
self.properties = properties
self.required = required
self.type = type
self.validation = validation
self.visible_rule = visible_rule
class TaskInputValidation(Model):
"""TaskInputValidation.
:param expression: Conditional expression
:type expression: str
:param message: Message explaining how user can correct if validation fails
:type message: str
"""
_attribute_map = {
'expression': {'key': 'expression', 'type': 'str'},
'message': {'key': 'message', 'type': 'str'}
}
def __init__(self, expression=None, message=None):
super(TaskInputValidation, self).__init__()
self.expression = expression
self.message = message
class TaskOrchestrationPlanReference(Model):
"""TaskOrchestrationPlanReference.
:param orchestration_type: The type of the plan.
:type orchestration_type: int
:param plan_id: The ID of the plan.
:type plan_id: str
"""
_attribute_map = {
'orchestration_type': {'key': 'orchestrationType', 'type': 'int'},
'plan_id': {'key': 'planId', 'type': 'str'}
}
def __init__(self, orchestration_type=None, plan_id=None):
super(TaskOrchestrationPlanReference, self).__init__()
self.orchestration_type = orchestration_type
self.plan_id = plan_id
class TaskReference(Model):
"""TaskReference.
:param id: The ID of the task definition.
:type id: str
:param name: The name of the task definition.
:type name: str
:param version: The version of the task definition.
:type version: str
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'version': {'key': 'version', 'type': 'str'}
}
def __init__(self, id=None, name=None, version=None):
super(TaskReference, self).__init__()
self.id = id
self.name = name
self.version = version
class TaskSourceDefinitionBase(Model):
"""TaskSourceDefinitionBase.
:param auth_key:
:type auth_key: str
:param endpoint:
:type endpoint: str
:param key_selector:
:type key_selector: str
:param selector:
:type selector: str
:param target:
:type target: str
"""
_attribute_map = {
'auth_key': {'key': 'authKey', 'type': 'str'},
'endpoint': {'key': 'endpoint', 'type': 'str'},
'key_selector': {'key': 'keySelector', 'type': 'str'},
'selector': {'key': 'selector', 'type': 'str'},
'target': {'key': 'target', 'type': 'str'}
}
def __init__(self, auth_key=None, endpoint=None, key_selector=None, selector=None, target=None):
super(TaskSourceDefinitionBase, self).__init__()
self.auth_key = auth_key
self.endpoint = endpoint
self.key_selector = key_selector
self.selector = selector
self.target = target
class TeamProjectReference(Model):
"""TeamProjectReference.
:param abbreviation: Project abbreviation.
:type abbreviation: str
:param default_team_image_url: Url to default team identity image.
:type default_team_image_url: str
:param description: The project's description (if any).
:type description: str
:param id: Project identifier.
:type id: str
:param name: Project name.
:type name: str
:param revision: Project revision.
:type revision: long
:param state: Project state.
:type state: object
:param url: Url to the full version of the object.
:type url: str
:param visibility: Project visibility.
:type visibility: object
"""
_attribute_map = {
'abbreviation': {'key': 'abbreviation', 'type': 'str'},
'default_team_image_url': {'key': 'defaultTeamImageUrl', 'type': 'str'},
'description': {'key': 'description', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'revision': {'key': 'revision', 'type': 'long'},
'state': {'key': 'state', 'type': 'object'},
'url': {'key': 'url', 'type': 'str'},
'visibility': {'key': 'visibility', 'type': 'object'}
}
def __init__(self, abbreviation=None, default_team_image_url=None, description=None, id=None, name=None, revision=None, state=None, url=None, visibility=None):
super(TeamProjectReference, self).__init__()
self.abbreviation = abbreviation
self.default_team_image_url = default_team_image_url
self.description = description
self.id = id
self.name = name
self.revision = revision
self.state = state
self.url = url
self.visibility = visibility
class TestResultsContext(Model):
"""TestResultsContext.
:param build:
:type build: :class:`BuildReference <azure.devops.v5_0.microsoft._team_foundation._test_management._web_api.models.BuildReference>`
:param context_type:
:type context_type: object
:param release:
:type release: :class:`ReleaseReference <azure.devops.v5_0.microsoft._team_foundation._test_management._web_api.models.ReleaseReference>`
"""
_attribute_map = {
'build': {'key': 'build', 'type': 'BuildReference'},
'context_type': {'key': 'contextType', 'type': 'object'},
'release': {'key': 'release', 'type': 'ReleaseReference'}
}
def __init__(self, build=None, context_type=None, release=None):
super(TestResultsContext, self).__init__()
self.build = build
self.context_type = context_type
self.release = release
class TimelineAttempt(Model):
"""TimelineAttempt.
:param attempt: Gets or sets the attempt of the record.
:type attempt: int
:param record_id: Gets or sets the record identifier located within the specified timeline.
:type record_id: str
:param timeline_id: Gets or sets the timeline identifier which owns the record representing this attempt.
:type timeline_id: str
"""
_attribute_map = {
'attempt': {'key': 'attempt', 'type': 'int'},
'record_id': {'key': 'recordId', 'type': 'str'},
'timeline_id': {'key': 'timelineId', 'type': 'str'}
}
def __init__(self, attempt=None, record_id=None, timeline_id=None):
super(TimelineAttempt, self).__init__()
self.attempt = attempt
self.record_id = record_id
self.timeline_id = timeline_id
class TimelineRecord(Model):
"""TimelineRecord.
:param _links:
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.build.models.ReferenceLinks>`
:param attempt:
:type attempt: int
:param change_id: The change ID.
:type change_id: int
:param current_operation: A string that indicates the current operation.
:type current_operation: str
:param details: A reference to a sub-timeline.
:type details: :class:`TimelineReference <azure.devops.v5_0.build.models.TimelineReference>`
:param error_count: The number of errors produced by this operation.
:type error_count: int
:param finish_time: The finish time.
:type finish_time: datetime
:param id: The ID of the record.
:type id: str
:param issues:
:type issues: list of :class:`Issue <azure.devops.v5_0.build.models.Issue>`
:param last_modified: The time the record was last modified.
:type last_modified: datetime
:param log: A reference to the log produced by this operation.
:type log: :class:`BuildLogReference <azure.devops.v5_0.build.models.BuildLogReference>`
:param name: The name.
:type name: str
:param order: An ordinal value relative to other records.
:type order: int
:param parent_id: The ID of the record's parent.
:type parent_id: str
:param percent_complete: The current completion percentage.
:type percent_complete: int
:param previous_attempts:
:type previous_attempts: list of :class:`TimelineAttempt <azure.devops.v5_0.build.models.TimelineAttempt>`
:param result: The result.
:type result: object
:param result_code: The result code.
:type result_code: str
:param start_time: The start time.
:type start_time: datetime
:param state: The state of the record.
:type state: object
:param task: A reference to the task represented by this timeline record.
:type task: :class:`TaskReference <azure.devops.v5_0.build.models.TaskReference>`
:param type: The type of the record.
:type type: str
:param url: The REST URL of the timeline record.
:type url: str
:param warning_count: The number of warnings produced by this operation.
:type warning_count: int
:param worker_name: The name of the agent running the operation.
:type worker_name: str
"""
_attribute_map = {
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'attempt': {'key': 'attempt', 'type': 'int'},
'change_id': {'key': 'changeId', 'type': 'int'},
'current_operation': {'key': 'currentOperation', 'type': 'str'},
'details': {'key': 'details', 'type': 'TimelineReference'},
'error_count': {'key': 'errorCount', 'type': 'int'},
'finish_time': {'key': 'finishTime', 'type': 'iso-8601'},
'id': {'key': 'id', 'type': 'str'},
'issues': {'key': 'issues', 'type': '[Issue]'},
'last_modified': {'key': 'lastModified', 'type': 'iso-8601'},
'log': {'key': 'log', 'type': 'BuildLogReference'},
'name': {'key': 'name', 'type': 'str'},
'order': {'key': 'order', 'type': 'int'},
'parent_id': {'key': 'parentId', 'type': 'str'},
'percent_complete': {'key': 'percentComplete', 'type': 'int'},
'previous_attempts': {'key': 'previousAttempts', 'type': '[TimelineAttempt]'},
'result': {'key': 'result', 'type': 'object'},
'result_code': {'key': 'resultCode', 'type': 'str'},
'start_time': {'key': 'startTime', 'type': 'iso-8601'},
'state': {'key': 'state', 'type': 'object'},
'task': {'key': 'task', 'type': 'TaskReference'},
'type': {'key': 'type', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'},
'warning_count': {'key': 'warningCount', 'type': 'int'},
'worker_name': {'key': 'workerName', 'type': 'str'}
}
def __init__(self, _links=None, attempt=None, change_id=None, current_operation=None, details=None, error_count=None, finish_time=None, id=None, issues=None, last_modified=None, log=None, name=None, order=None, parent_id=None, percent_complete=None, previous_attempts=None, result=None, result_code=None, start_time=None, state=None, task=None, type=None, url=None, warning_count=None, worker_name=None):
super(TimelineRecord, self).__init__()
self._links = _links
self.attempt = attempt
self.change_id = change_id
self.current_operation = current_operation
self.details = details
self.error_count = error_count
self.finish_time = finish_time
self.id = id
self.issues = issues
self.last_modified = last_modified
self.log = log
self.name = name
self.order = order
self.parent_id = parent_id
self.percent_complete = percent_complete
self.previous_attempts = previous_attempts
self.result = result
self.result_code = result_code
self.start_time = start_time
self.state = state
self.task = task
self.type = type
self.url = url
self.warning_count = warning_count
self.worker_name = worker_name
class TimelineReference(Model):
"""TimelineReference.
:param change_id: The change ID.
:type change_id: int
:param id: The ID of the timeline.
:type id: str
:param url: The REST URL of the timeline.
:type url: str
"""
_attribute_map = {
'change_id': {'key': 'changeId', 'type': 'int'},
'id': {'key': 'id', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, change_id=None, id=None, url=None):
super(TimelineReference, self).__init__()
self.change_id = change_id
self.id = id
self.url = url
class VariableGroupReference(Model):
"""VariableGroupReference.
:param alias: The Name of the variable group.
:type alias: str
:param id: The ID of the variable group.
:type id: int
"""
_attribute_map = {
'alias': {'key': 'alias', 'type': 'str'},
'id': {'key': 'id', 'type': 'int'}
}
def __init__(self, alias=None, id=None):
super(VariableGroupReference, self).__init__()
self.alias = alias
self.id = id
class WebApiConnectedServiceRef(Model):
"""WebApiConnectedServiceRef.
:param id:
:type id: str
:param url:
:type url: str
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, id=None, url=None):
super(WebApiConnectedServiceRef, self).__init__()
self.id = id
self.url = url
class XamlBuildControllerReference(Model):
"""XamlBuildControllerReference.
:param id: Id of the resource
:type id: int
:param name: Name of the linked resource (definition name, controller name, etc.)
:type name: str
:param url: Full http link to the resource
:type url: str
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'int'},
'name': {'key': 'name', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, id=None, name=None, url=None):
super(XamlBuildControllerReference, self).__init__()
self.id = id
self.name = name
self.url = url
class BuildController(XamlBuildControllerReference):
"""BuildController.
:param id: Id of the resource
:type id: int
:param name: Name of the linked resource (definition name, controller name, etc.)
:type name: str
:param url: Full http link to the resource
:type url: str
:param _links:
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.build.models.ReferenceLinks>`
:param created_date: The date the controller was created.
:type created_date: datetime
:param description: The description of the controller.
:type description: str
:param enabled: Indicates whether the controller is enabled.
:type enabled: bool
:param status: The status of the controller.
:type status: object
:param updated_date: The date the controller was last updated.
:type updated_date: datetime
:param uri: The controller's URI.
:type uri: str
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'int'},
'name': {'key': 'name', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'},
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'created_date': {'key': 'createdDate', 'type': 'iso-8601'},
'description': {'key': 'description', 'type': 'str'},
'enabled': {'key': 'enabled', 'type': 'bool'},
'status': {'key': 'status', 'type': 'object'},
'updated_date': {'key': 'updatedDate', 'type': 'iso-8601'},
'uri': {'key': 'uri', 'type': 'str'}
}
def __init__(self, id=None, name=None, url=None, _links=None, created_date=None, description=None, enabled=None, status=None, updated_date=None, uri=None):
super(BuildController, self).__init__(id=id, name=name, url=url)
self._links = _links
self.created_date = created_date
self.description = description
self.enabled = enabled
self.status = status
self.updated_date = updated_date
self.uri = uri
class BuildDefinitionReference(DefinitionReference):
"""BuildDefinitionReference.
:param created_date: The date the definition was created.
:type created_date: datetime
:param id: The ID of the referenced definition.
:type id: int
:param name: The name of the referenced definition.
:type name: str
:param path: The folder path of the definition.
:type path: str
:param project: A reference to the project.
:type project: :class:`TeamProjectReference <azure.devops.v5_0.build.models.TeamProjectReference>`
:param queue_status: A value that indicates whether builds can be queued against this definition.
:type queue_status: object
:param revision: The definition revision number.
:type revision: int
:param type: The type of the definition.
:type type: object
:param uri: The definition's URI.
:type uri: str
:param url: The REST URL of the definition.
:type url: str
:param _links:
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.build.models.ReferenceLinks>`
:param authored_by: The author of the definition.
:type authored_by: :class:`IdentityRef <azure.devops.v5_0.build.models.IdentityRef>`
:param draft_of: A reference to the definition that this definition is a draft of, if this is a draft definition.
:type draft_of: :class:`DefinitionReference <azure.devops.v5_0.build.models.DefinitionReference>`
:param drafts: The list of drafts associated with this definition, if this is not a draft definition.
:type drafts: list of :class:`DefinitionReference <azure.devops.v5_0.build.models.DefinitionReference>`
:param latest_build:
:type latest_build: :class:`Build <azure.devops.v5_0.build.models.Build>`
:param latest_completed_build:
:type latest_completed_build: :class:`Build <azure.devops.v5_0.build.models.Build>`
:param metrics:
:type metrics: list of :class:`BuildMetric <azure.devops.v5_0.build.models.BuildMetric>`
:param quality: The quality of the definition document (draft, etc.)
:type quality: object
:param queue: The default queue for builds run against this definition.
:type queue: :class:`AgentPoolQueue <azure.devops.v5_0.build.models.AgentPoolQueue>`
"""
_attribute_map = {
'created_date': {'key': 'createdDate', 'type': 'iso-8601'},
'id': {'key': 'id', 'type': 'int'},
'name': {'key': 'name', 'type': 'str'},
'path': {'key': 'path', 'type': 'str'},
'project': {'key': 'project', 'type': 'TeamProjectReference'},
'queue_status': {'key': 'queueStatus', 'type': 'object'},
'revision': {'key': 'revision', 'type': 'int'},
'type': {'key': 'type', 'type': 'object'},
'uri': {'key': 'uri', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'},
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'authored_by': {'key': 'authoredBy', 'type': 'IdentityRef'},
'draft_of': {'key': 'draftOf', 'type': 'DefinitionReference'},
'drafts': {'key': 'drafts', 'type': '[DefinitionReference]'},
'latest_build': {'key': 'latestBuild', 'type': 'Build'},
'latest_completed_build': {'key': 'latestCompletedBuild', 'type': 'Build'},
'metrics': {'key': 'metrics', 'type': '[BuildMetric]'},
'quality': {'key': 'quality', 'type': 'object'},
'queue': {'key': 'queue', 'type': 'AgentPoolQueue'}
}
def __init__(self, created_date=None, id=None, name=None, path=None, project=None, queue_status=None, revision=None, type=None, uri=None, url=None, _links=None, authored_by=None, draft_of=None, drafts=None, latest_build=None, latest_completed_build=None, metrics=None, quality=None, queue=None):
super(BuildDefinitionReference, self).__init__(created_date=created_date, id=id, name=name, path=path, project=project, queue_status=queue_status, revision=revision, type=type, uri=uri, url=url)
self._links = _links
self.authored_by = authored_by
self.draft_of = draft_of
self.drafts = drafts
self.latest_build = latest_build
self.latest_completed_build = latest_completed_build
self.metrics = metrics
self.quality = quality
self.queue = queue
class BuildDefinitionReference3_2(DefinitionReference):
"""BuildDefinitionReference3_2.
:param created_date: The date the definition was created.
:type created_date: datetime
:param id: The ID of the referenced definition.
:type id: int
:param name: The name of the referenced definition.
:type name: str
:param path: The folder path of the definition.
:type path: str
:param project: A reference to the project.
:type project: :class:`TeamProjectReference <azure.devops.v5_0.build.models.TeamProjectReference>`
:param queue_status: A value that indicates whether builds can be queued against this definition.
:type queue_status: object
:param revision: The definition revision number.
:type revision: int
:param type: The type of the definition.
:type type: object
:param uri: The definition's URI.
:type uri: str
:param url: The REST URL of the definition.
:type url: str
:param _links:
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.build.models.ReferenceLinks>`
:param authored_by: The author of the definition.
:type authored_by: :class:`IdentityRef <azure.devops.v5_0.build.models.IdentityRef>`
:param draft_of: A reference to the definition that this definition is a draft of, if this is a draft definition.
:type draft_of: :class:`DefinitionReference <azure.devops.v5_0.build.models.DefinitionReference>`
:param drafts: The list of drafts associated with this definition, if this is not a draft definition.
:type drafts: list of :class:`DefinitionReference <azure.devops.v5_0.build.models.DefinitionReference>`
:param metrics:
:type metrics: list of :class:`BuildMetric <azure.devops.v5_0.build.models.BuildMetric>`
:param quality: The quality of the definition document (draft, etc.)
:type quality: object
:param queue: The default queue for builds run against this definition.
:type queue: :class:`AgentPoolQueue <azure.devops.v5_0.build.models.AgentPoolQueue>`
"""
_attribute_map = {
'created_date': {'key': 'createdDate', 'type': 'iso-8601'},
'id': {'key': 'id', 'type': 'int'},
'name': {'key': 'name', 'type': 'str'},
'path': {'key': 'path', 'type': 'str'},
'project': {'key': 'project', 'type': 'TeamProjectReference'},
'queue_status': {'key': 'queueStatus', 'type': 'object'},
'revision': {'key': 'revision', 'type': 'int'},
'type': {'key': 'type', 'type': 'object'},
'uri': {'key': 'uri', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'},
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'authored_by': {'key': 'authoredBy', 'type': 'IdentityRef'},
'draft_of': {'key': 'draftOf', 'type': 'DefinitionReference'},
'drafts': {'key': 'drafts', 'type': '[DefinitionReference]'},
'metrics': {'key': 'metrics', 'type': '[BuildMetric]'},
'quality': {'key': 'quality', 'type': 'object'},
'queue': {'key': 'queue', 'type': 'AgentPoolQueue'}
}
def __init__(self, created_date=None, id=None, name=None, path=None, project=None, queue_status=None, revision=None, type=None, uri=None, url=None, _links=None, authored_by=None, draft_of=None, drafts=None, metrics=None, quality=None, queue=None):
super(BuildDefinitionReference3_2, self).__init__(created_date=created_date, id=id, name=name, path=path, project=project, queue_status=queue_status, revision=revision, type=type, uri=uri, url=url)
self._links = _links
self.authored_by = authored_by
self.draft_of = draft_of
self.drafts = drafts
self.metrics = metrics
self.quality = quality
self.queue = queue
class BuildLog(BuildLogReference):
"""BuildLog.
:param id: The ID of the log.
:type id: int
:param type: The type of the log location.
:type type: str
:param url: A full link to the log resource.
:type url: str
:param created_on: The date and time the log was created.
:type created_on: datetime
:param last_changed_on: The date and time the log was last changed.
:type last_changed_on: datetime
:param line_count: The number of lines in the log.
:type line_count: long
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'int'},
'type': {'key': 'type', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'},
'created_on': {'key': 'createdOn', 'type': 'iso-8601'},
'last_changed_on': {'key': 'lastChangedOn', 'type': 'iso-8601'},
'line_count': {'key': 'lineCount', 'type': 'long'}
}
def __init__(self, id=None, type=None, url=None, created_on=None, last_changed_on=None, line_count=None):
super(BuildLog, self).__init__(id=id, type=type, url=url)
self.created_on = created_on
self.last_changed_on = last_changed_on
self.line_count = line_count
class BuildOptionDefinition(BuildOptionDefinitionReference):
"""BuildOptionDefinition.
:param id: The ID of the referenced build option.
:type id: str
:param description: The description.
:type description: str
:param groups: The list of input groups defined for the build option.
:type groups: list of :class:`BuildOptionGroupDefinition <azure.devops.v5_0.build.models.BuildOptionGroupDefinition>`
:param inputs: The list of inputs defined for the build option.
:type inputs: list of :class:`BuildOptionInputDefinition <azure.devops.v5_0.build.models.BuildOptionInputDefinition>`
:param name: The name of the build option.
:type name: str
:param ordinal: A value that indicates the relative order in which the behavior should be applied.
:type ordinal: int
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'description': {'key': 'description', 'type': 'str'},
'groups': {'key': 'groups', 'type': '[BuildOptionGroupDefinition]'},
'inputs': {'key': 'inputs', 'type': '[BuildOptionInputDefinition]'},
'name': {'key': 'name', 'type': 'str'},
'ordinal': {'key': 'ordinal', 'type': 'int'}
}
def __init__(self, id=None, description=None, groups=None, inputs=None, name=None, ordinal=None):
super(BuildOptionDefinition, self).__init__(id=id)
self.description = description
self.groups = groups
self.inputs = inputs
self.name = name
self.ordinal = ordinal
class Timeline(TimelineReference):
"""Timeline.
:param change_id: The change ID.
:type change_id: int
:param id: The ID of the timeline.
:type id: str
:param url: The REST URL of the timeline.
:type url: str
:param last_changed_by: The process or person that last changed the timeline.
:type last_changed_by: str
:param last_changed_on: The time the timeline was last changed.
:type last_changed_on: datetime
:param records:
:type records: list of :class:`TimelineRecord <azure.devops.v5_0.build.models.TimelineRecord>`
"""
_attribute_map = {
'change_id': {'key': 'changeId', 'type': 'int'},
'id': {'key': 'id', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'},
'last_changed_by': {'key': 'lastChangedBy', 'type': 'str'},
'last_changed_on': {'key': 'lastChangedOn', 'type': 'iso-8601'},
'records': {'key': 'records', 'type': '[TimelineRecord]'}
}
def __init__(self, change_id=None, id=None, url=None, last_changed_by=None, last_changed_on=None, records=None):
super(Timeline, self).__init__(change_id=change_id, id=id, url=url)
self.last_changed_by = last_changed_by
self.last_changed_on = last_changed_on
self.records = records
class VariableGroup(VariableGroupReference):
"""VariableGroup.
:param alias: The Name of the variable group.
:type alias: str
:param id: The ID of the variable group.
:type id: int
:param description: The description.
:type description: str
:param name: The name of the variable group.
:type name: str
:param type: The type of the variable group.
:type type: str
:param variables:
:type variables: dict
"""
_attribute_map = {
'alias': {'key': 'alias', 'type': 'str'},
'id': {'key': 'id', 'type': 'int'},
'description': {'key': 'description', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'variables': {'key': 'variables', 'type': '{BuildDefinitionVariable}'}
}
def __init__(self, alias=None, id=None, description=None, name=None, type=None, variables=None):
super(VariableGroup, self).__init__(alias=alias, id=id)
self.description = description
self.name = name
self.type = type
self.variables = variables
class BuildDefinition(BuildDefinitionReference):
"""BuildDefinition.
:param created_date: The date the definition was created.
:type created_date: datetime
:param id: The ID of the referenced definition.
:type id: int
:param name: The name of the referenced definition.
:type name: str
:param path: The folder path of the definition.
:type path: str
:param project: A reference to the project.
:type project: :class:`TeamProjectReference <azure.devops.v5_0.build.models.TeamProjectReference>`
:param queue_status: A value that indicates whether builds can be queued against this definition.
:type queue_status: object
:param revision: The definition revision number.
:type revision: int
:param type: The type of the definition.
:type type: object
:param uri: The definition's URI.
:type uri: str
:param url: The REST URL of the definition.
:type url: str
:param _links:
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.build.models.ReferenceLinks>`
:param authored_by: The author of the definition.
:type authored_by: :class:`IdentityRef <azure.devops.v5_0.build.models.IdentityRef>`
:param draft_of: A reference to the definition that this definition is a draft of, if this is a draft definition.
:type draft_of: :class:`DefinitionReference <azure.devops.v5_0.build.models.DefinitionReference>`
:param drafts: The list of drafts associated with this definition, if this is not a draft definition.
:type drafts: list of :class:`DefinitionReference <azure.devops.v5_0.build.models.DefinitionReference>`
:param latest_build:
:type latest_build: :class:`Build <azure.devops.v5_0.build.models.Build>`
:param latest_completed_build:
:type latest_completed_build: :class:`Build <azure.devops.v5_0.build.models.Build>`
:param metrics:
:type metrics: list of :class:`BuildMetric <azure.devops.v5_0.build.models.BuildMetric>`
:param quality: The quality of the definition document (draft, etc.)
:type quality: object
:param queue: The default queue for builds run against this definition.
:type queue: :class:`AgentPoolQueue <azure.devops.v5_0.build.models.AgentPoolQueue>`
:param badge_enabled: Indicates whether badges are enabled for this definition.
:type badge_enabled: bool
:param build_number_format: The build number format.
:type build_number_format: str
:param comment: A save-time comment for the definition.
:type comment: str
:param demands:
:type demands: list of :class:`object <azure.devops.v5_0.build.models.object>`
:param description: The description.
:type description: str
:param drop_location: The drop location for the definition.
:type drop_location: str
:param job_authorization_scope: The job authorization scope for builds queued against this definition.
:type job_authorization_scope: object
:param job_cancel_timeout_in_minutes: The job cancel timeout (in minutes) for builds cancelled by user for this definition.
:type job_cancel_timeout_in_minutes: int
:param job_timeout_in_minutes: The job execution timeout (in minutes) for builds queued against this definition.
:type job_timeout_in_minutes: int
:param options:
:type options: list of :class:`BuildOption <azure.devops.v5_0.build.models.BuildOption>`
:param process: The build process.
:type process: :class:`object <azure.devops.v5_0.build.models.object>`
:param process_parameters: The process parameters for this definition.
:type process_parameters: :class:`ProcessParameters <azure.devops.v5_0.build.models.ProcessParameters>`
:param properties:
:type properties: :class:`object <azure.devops.v5_0.build.models.object>`
:param repository: The repository.
:type repository: :class:`BuildRepository <azure.devops.v5_0.build.models.BuildRepository>`
:param retention_rules:
:type retention_rules: list of :class:`RetentionPolicy <azure.devops.v5_0.build.models.RetentionPolicy>`
:param tags:
:type tags: list of str
:param triggers:
:type triggers: list of :class:`object <azure.devops.v5_0.build.models.object>`
:param variable_groups:
:type variable_groups: list of :class:`VariableGroup <azure.devops.v5_0.build.models.VariableGroup>`
:param variables:
:type variables: dict
"""
_attribute_map = {
'created_date': {'key': 'createdDate', 'type': 'iso-8601'},
'id': {'key': 'id', 'type': 'int'},
'name': {'key': 'name', 'type': 'str'},
'path': {'key': 'path', 'type': 'str'},
'project': {'key': 'project', 'type': 'TeamProjectReference'},
'queue_status': {'key': 'queueStatus', 'type': 'object'},
'revision': {'key': 'revision', 'type': 'int'},
'type': {'key': 'type', 'type': 'object'},
'uri': {'key': 'uri', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'},
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'authored_by': {'key': 'authoredBy', 'type': 'IdentityRef'},
'draft_of': {'key': 'draftOf', 'type': 'DefinitionReference'},
'drafts': {'key': 'drafts', 'type': '[DefinitionReference]'},
'latest_build': {'key': 'latestBuild', 'type': 'Build'},
'latest_completed_build': {'key': 'latestCompletedBuild', 'type': 'Build'},
'metrics': {'key': 'metrics', 'type': '[BuildMetric]'},
'quality': {'key': 'quality', 'type': 'object'},
'queue': {'key': 'queue', 'type': 'AgentPoolQueue'},
'badge_enabled': {'key': 'badgeEnabled', 'type': 'bool'},
'build_number_format': {'key': 'buildNumberFormat', 'type': 'str'},
'comment': {'key': 'comment', 'type': 'str'},
'demands': {'key': 'demands', 'type': '[object]'},
'description': {'key': 'description', 'type': 'str'},
'drop_location': {'key': 'dropLocation', 'type': 'str'},
'job_authorization_scope': {'key': 'jobAuthorizationScope', 'type': 'object'},
'job_cancel_timeout_in_minutes': {'key': 'jobCancelTimeoutInMinutes', 'type': 'int'},
'job_timeout_in_minutes': {'key': 'jobTimeoutInMinutes', 'type': 'int'},
'options': {'key': 'options', 'type': '[BuildOption]'},
'process': {'key': 'process', 'type': 'object'},
'process_parameters': {'key': 'processParameters', 'type': 'ProcessParameters'},
'properties': {'key': 'properties', 'type': 'object'},
'repository': {'key': 'repository', 'type': 'BuildRepository'},
'retention_rules': {'key': 'retentionRules', 'type': '[RetentionPolicy]'},
'tags': {'key': 'tags', 'type': '[str]'},
'triggers': {'key': 'triggers', 'type': '[object]'},
'variable_groups': {'key': 'variableGroups', 'type': '[VariableGroup]'},
'variables': {'key': 'variables', 'type': '{BuildDefinitionVariable}'}
}
def __init__(self, created_date=None, id=None, name=None, path=None, project=None, queue_status=None, revision=None, type=None, uri=None, url=None, _links=None, authored_by=None, draft_of=None, drafts=None, latest_build=None, latest_completed_build=None, metrics=None, quality=None, queue=None, badge_enabled=None, build_number_format=None, comment=None, demands=None, description=None, drop_location=None, job_authorization_scope=None, job_cancel_timeout_in_minutes=None, job_timeout_in_minutes=None, options=None, process=None, process_parameters=None, properties=None, repository=None, retention_rules=None, tags=None, triggers=None, variable_groups=None, variables=None):
super(BuildDefinition, self).__init__(created_date=created_date, id=id, name=name, path=path, project=project, queue_status=queue_status, revision=revision, type=type, uri=uri, url=url, _links=_links, authored_by=authored_by, draft_of=draft_of, drafts=drafts, latest_build=latest_build, latest_completed_build=latest_completed_build, metrics=metrics, quality=quality, queue=queue)
self.badge_enabled = badge_enabled
self.build_number_format = build_number_format
self.comment = comment
self.demands = demands
self.description = description
self.drop_location = drop_location
self.job_authorization_scope = job_authorization_scope
self.job_cancel_timeout_in_minutes = job_cancel_timeout_in_minutes
self.job_timeout_in_minutes = job_timeout_in_minutes
self.options = options
self.process = process
self.process_parameters = process_parameters
self.properties = properties
self.repository = repository
self.retention_rules = retention_rules
self.tags = tags
self.triggers = triggers
self.variable_groups = variable_groups
self.variables = variables
class BuildDefinition3_2(BuildDefinitionReference3_2):
"""BuildDefinition3_2.
:param created_date: The date the definition was created.
:type created_date: datetime
:param id: The ID of the referenced definition.
:type id: int
:param name: The name of the referenced definition.
:type name: str
:param path: The folder path of the definition.
:type path: str
:param project: A reference to the project.
:type project: :class:`TeamProjectReference <azure.devops.v5_0.build.models.TeamProjectReference>`
:param queue_status: A value that indicates whether builds can be queued against this definition.
:type queue_status: object
:param revision: The definition revision number.
:type revision: int
:param type: The type of the definition.
:type type: object
:param uri: The definition's URI.
:type uri: str
:param url: The REST URL of the definition.
:type url: str
:param _links:
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.build.models.ReferenceLinks>`
:param authored_by: The author of the definition.
:type authored_by: :class:`IdentityRef <azure.devops.v5_0.build.models.IdentityRef>`
:param draft_of: A reference to the definition that this definition is a draft of, if this is a draft definition.
:type draft_of: :class:`DefinitionReference <azure.devops.v5_0.build.models.DefinitionReference>`
:param drafts: The list of drafts associated with this definition, if this is not a draft definition.
:type drafts: list of :class:`DefinitionReference <azure.devops.v5_0.build.models.DefinitionReference>`
:param metrics:
:type metrics: list of :class:`BuildMetric <azure.devops.v5_0.build.models.BuildMetric>`
:param quality: The quality of the definition document (draft, etc.)
:type quality: object
:param queue: The default queue for builds run against this definition.
:type queue: :class:`AgentPoolQueue <azure.devops.v5_0.build.models.AgentPoolQueue>`
:param badge_enabled: Indicates whether badges are enabled for this definition
:type badge_enabled: bool
:param build:
:type build: list of :class:`BuildDefinitionStep <azure.devops.v5_0.build.models.BuildDefinitionStep>`
:param build_number_format: The build number format
:type build_number_format: str
:param comment: The comment entered when saving the definition
:type comment: str
:param demands:
:type demands: list of :class:`object <azure.devops.v5_0.build.models.object>`
:param description: The description
:type description: str
:param drop_location: The drop location for the definition
:type drop_location: str
:param job_authorization_scope: The job authorization scope for builds which are queued against this definition
:type job_authorization_scope: object
:param job_cancel_timeout_in_minutes: The job cancel timeout in minutes for builds which are cancelled by user for this definition
:type job_cancel_timeout_in_minutes: int
:param job_timeout_in_minutes: The job execution timeout in minutes for builds which are queued against this definition
:type job_timeout_in_minutes: int
:param latest_build:
:type latest_build: :class:`Build <azure.devops.v5_0.build.models.Build>`
:param latest_completed_build:
:type latest_completed_build: :class:`Build <azure.devops.v5_0.build.models.Build>`
:param options:
:type options: list of :class:`BuildOption <azure.devops.v5_0.build.models.BuildOption>`
:param process_parameters: Process Parameters
:type process_parameters: :class:`ProcessParameters <azure.devops.v5_0.build.models.ProcessParameters>`
:param properties:
:type properties: :class:`object <azure.devops.v5_0.build.models.object>`
:param repository: The repository
:type repository: :class:`BuildRepository <azure.devops.v5_0.build.models.BuildRepository>`
:param retention_rules:
:type retention_rules: list of :class:`RetentionPolicy <azure.devops.v5_0.build.models.RetentionPolicy>`
:param tags:
:type tags: list of str
:param triggers:
:type triggers: list of :class:`object <azure.devops.v5_0.build.models.object>`
:param variables:
:type variables: dict
"""
_attribute_map = {
'created_date': {'key': 'createdDate', 'type': 'iso-8601'},
'id': {'key': 'id', 'type': 'int'},
'name': {'key': 'name', 'type': 'str'},
'path': {'key': 'path', 'type': 'str'},
'project': {'key': 'project', 'type': 'TeamProjectReference'},
'queue_status': {'key': 'queueStatus', 'type': 'object'},
'revision': {'key': 'revision', 'type': 'int'},
'type': {'key': 'type', 'type': 'object'},
'uri': {'key': 'uri', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'},
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'authored_by': {'key': 'authoredBy', 'type': 'IdentityRef'},
'draft_of': {'key': 'draftOf', 'type': 'DefinitionReference'},
'drafts': {'key': 'drafts', 'type': '[DefinitionReference]'},
'metrics': {'key': 'metrics', 'type': '[BuildMetric]'},
'quality': {'key': 'quality', 'type': 'object'},
'queue': {'key': 'queue', 'type': 'AgentPoolQueue'},
'badge_enabled': {'key': 'badgeEnabled', 'type': 'bool'},
'build': {'key': 'build', 'type': '[BuildDefinitionStep]'},
'build_number_format': {'key': 'buildNumberFormat', 'type': 'str'},
'comment': {'key': 'comment', 'type': 'str'},
'demands': {'key': 'demands', 'type': '[object]'},
'description': {'key': 'description', 'type': 'str'},
'drop_location': {'key': 'dropLocation', 'type': 'str'},
'job_authorization_scope': {'key': 'jobAuthorizationScope', 'type': 'object'},
'job_cancel_timeout_in_minutes': {'key': 'jobCancelTimeoutInMinutes', 'type': 'int'},
'job_timeout_in_minutes': {'key': 'jobTimeoutInMinutes', 'type': 'int'},
'latest_build': {'key': 'latestBuild', 'type': 'Build'},
'latest_completed_build': {'key': 'latestCompletedBuild', 'type': 'Build'},
'options': {'key': 'options', 'type': '[BuildOption]'},
'process_parameters': {'key': 'processParameters', 'type': 'ProcessParameters'},
'properties': {'key': 'properties', 'type': 'object'},
'repository': {'key': 'repository', 'type': 'BuildRepository'},
'retention_rules': {'key': 'retentionRules', 'type': '[RetentionPolicy]'},
'tags': {'key': 'tags', 'type': '[str]'},
'triggers': {'key': 'triggers', 'type': '[object]'},
'variables': {'key': 'variables', 'type': '{BuildDefinitionVariable}'}
}
def __init__(self, created_date=None, id=None, name=None, path=None, project=None, queue_status=None, revision=None, type=None, uri=None, url=None, _links=None, authored_by=None, draft_of=None, drafts=None, metrics=None, quality=None, queue=None, badge_enabled=None, build=None, build_number_format=None, comment=None, demands=None, description=None, drop_location=None, job_authorization_scope=None, job_cancel_timeout_in_minutes=None, job_timeout_in_minutes=None, latest_build=None, latest_completed_build=None, options=None, process_parameters=None, properties=None, repository=None, retention_rules=None, tags=None, triggers=None, variables=None):
super(BuildDefinition3_2, self).__init__(created_date=created_date, id=id, name=name, path=path, project=project, queue_status=queue_status, revision=revision, type=type, uri=uri, url=url, _links=_links, authored_by=authored_by, draft_of=draft_of, drafts=drafts, metrics=metrics, quality=quality, queue=queue)
self.badge_enabled = badge_enabled
self.build = build
self.build_number_format = build_number_format
self.comment = comment
self.demands = demands
self.description = description
self.drop_location = drop_location
self.job_authorization_scope = job_authorization_scope
self.job_cancel_timeout_in_minutes = job_cancel_timeout_in_minutes
self.job_timeout_in_minutes = job_timeout_in_minutes
self.latest_build = latest_build
self.latest_completed_build = latest_completed_build
self.options = options
self.process_parameters = process_parameters
self.properties = properties
self.repository = repository
self.retention_rules = retention_rules
self.tags = tags
self.triggers = triggers
self.variables = variables
__all__ = [
'AgentPoolQueue',
'AggregatedResultsAnalysis',
'AggregatedResultsByOutcome',
'AggregatedResultsDifference',
'AggregatedRunsByOutcome',
'AggregatedRunsByState',
'ArtifactResource',
'AssociatedWorkItem',
'Attachment',
'AuthorizationHeader',
'Build',
'BuildArtifact',
'BuildBadge',
'BuildDefinitionRevision',
'BuildDefinitionStep',
'BuildDefinitionTemplate',
'BuildDefinitionTemplate3_2',
'BuildDefinitionVariable',
'BuildLogReference',
'BuildMetric',
'BuildOption',
'BuildOptionDefinitionReference',
'BuildOptionGroupDefinition',
'BuildOptionInputDefinition',
'BuildReportMetadata',
'BuildRepository',
'BuildRequestValidationResult',
'BuildResourceUsage',
'BuildSettings',
'Change',
'DataSourceBindingBase',
'DefinitionReference',
'DefinitionResourceReference',
'Deployment',
'Folder',
'GraphSubjectBase',
'IdentityRef',
'Issue',
'JsonPatchOperation',
'ProcessParameters',
'PullRequest',
'ReferenceLinks',
'ReleaseReference',
'RepositoryWebhook',
'ResourceRef',
'RetentionPolicy',
'SourceProviderAttributes',
'SourceRepositories',
'SourceRepository',
'SourceRepositoryItem',
'SupportedTrigger',
'TaskAgentPoolReference',
'TaskDefinitionReference',
'TaskInputDefinitionBase',
'TaskInputValidation',
'TaskOrchestrationPlanReference',
'TaskReference',
'TaskSourceDefinitionBase',
'TeamProjectReference',
'TestResultsContext',
'TimelineAttempt',
'TimelineRecord',
'TimelineReference',
'VariableGroupReference',
'WebApiConnectedServiceRef',
'XamlBuildControllerReference',
'BuildController',
'BuildDefinitionReference',
'BuildDefinitionReference3_2',
'BuildLog',
'BuildOptionDefinition',
'Timeline',
'VariableGroup',
'BuildDefinition',
'BuildDefinition3_2',
]
|