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
|
{
"revision": "20170523",
"documentationLink": "https://cloud.google.com/dataproc/",
"id": "dataproc:v1alpha1",
"title": "Google Cloud Dataproc API",
"ownerName": "Google",
"discoveryVersion": "v1",
"resources": {
"operations": {
"methods": {
"cancel": {
"path": "v1alpha1/{+name}:cancel",
"id": "dataproc.operations.cancel",
"request": {
"$ref": "CancelOperationRequest"
},
"description": "Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED. Clients may use Operations.GetOperation or other methods to check whether the cancellation succeeded or the operation completed despite cancellation.",
"response": {
"$ref": "Empty"
},
"parameterOrder": [
"name"
],
"httpMethod": "POST",
"parameters": {
"name": {
"location": "path",
"description": "The name of the operation resource to be cancelled.",
"required": true,
"type": "string",
"pattern": "^operations/.+$"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"flatPath": "v1alpha1/operations/{operationsId}:cancel"
},
"delete": {
"flatPath": "v1alpha1/operations/{operationsId}",
"path": "v1alpha1/{+name}",
"id": "dataproc.operations.delete",
"description": "Deletes a long-running operation. It indicates the client is no longer interested in the operation result. It does not cancel the operation.",
"response": {
"$ref": "Empty"
},
"parameterOrder": [
"name"
],
"httpMethod": "DELETE",
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"parameters": {
"name": {
"location": "path",
"description": "The name of the operation resource to be deleted.",
"required": true,
"type": "string",
"pattern": "^operations/.+$"
}
}
},
"get": {
"description": "Gets the latest state of a long-running operation. Clients may use this method to poll the operation result at intervals as recommended by the API service.",
"response": {
"$ref": "Operation"
},
"parameterOrder": [
"name"
],
"httpMethod": "GET",
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"parameters": {
"name": {
"location": "path",
"description": "The operation resource name.",
"required": true,
"type": "string",
"pattern": "^operations/.+$"
}
},
"flatPath": "v1alpha1/operations/{operationsId}",
"path": "v1alpha1/{+name}",
"id": "dataproc.operations.get"
},
"list": {
"description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED.",
"parameterOrder": [
"name"
],
"httpMethod": "GET",
"response": {
"$ref": "ListOperationsResponse"
},
"parameters": {
"name": {
"pattern": "^operations$",
"location": "path",
"description": "The operation collection name.",
"required": true,
"type": "string"
},
"pageToken": {
"location": "query",
"description": "The standard List page token.",
"type": "string"
},
"pageSize": {
"description": "The standard List page size.",
"format": "int32",
"type": "integer",
"location": "query"
},
"filter": {
"location": "query",
"description": "Required A JSON object that contains filters for the list operation, in the format {\"key1\":\"value1\",\"key2\":\"value2\", ..., }. Possible keys include project_id, cluster_name, and operation_state_matcher.If project_id is set, requests the list of operations that belong to the specified Google Cloud Platform project ID. This key is required.If cluster_name is set, requests the list of operations that were submitted to the specified cluster name. This key is optional.If operation_state_matcher is set, requests the list of operations that match one of the following status options: ALL, ACTIVE, or NON_ACTIVE.",
"type": "string"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"flatPath": "v1alpha1/operations",
"path": "v1alpha1/{+name}",
"id": "dataproc.operations.list"
}
}
},
"projects": {
"resources": {
"regions": {
"resources": {
"jobs": {
"methods": {
"submit": {
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"parameters": {
"region": {
"location": "path",
"description": "Required The Dataproc region in which to handle the request.",
"required": true,
"type": "string"
},
"projectId": {
"description": "Required The ID of the Google Cloud Platform project that the job belongs to.",
"required": true,
"type": "string",
"location": "path"
}
},
"flatPath": "v1alpha1/projects/{projectId}/regions/{region}/jobs:submit",
"path": "v1alpha1/projects/{projectId}/regions/{region}/jobs:submit",
"id": "dataproc.projects.regions.jobs.submit",
"description": "Submits a job to a cluster.",
"request": {
"$ref": "SubmitJobRequest"
},
"response": {
"$ref": "Job"
},
"parameterOrder": [
"projectId",
"region"
],
"httpMethod": "POST"
},
"delete": {
"httpMethod": "DELETE",
"response": {
"$ref": "Job"
},
"parameterOrder": [
"projectId",
"region",
"jobId"
],
"parameters": {
"region": {
"location": "path",
"description": "Required The Dataproc region in which to handle the request.",
"required": true,
"type": "string"
},
"projectId": {
"location": "path",
"description": "Required The ID of the Google Cloud Platform project that the job belongs to.",
"required": true,
"type": "string"
},
"jobId": {
"description": "Required The job ID.",
"required": true,
"type": "string",
"location": "path"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"flatPath": "v1alpha1/projects/{projectId}/regions/{region}/jobs/{jobId}",
"id": "dataproc.projects.regions.jobs.delete",
"path": "v1alpha1/projects/{projectId}/regions/{region}/jobs/{jobId}",
"description": "Deletes the job from the project. If the job is active, the delete fails, and the response returns FAILED_PRECONDITION."
},
"list": {
"id": "dataproc.projects.regions.jobs.list",
"path": "v1alpha1/projects/{projectId}/regions/{region}/jobs:list",
"description": "Lists regions/{region}/jobs in a project.",
"request": {
"$ref": "ListJobsRequest"
},
"httpMethod": "POST",
"parameterOrder": [
"projectId",
"region"
],
"response": {
"$ref": "ListJobsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"parameters": {
"projectId": {
"location": "path",
"description": "Required The ID of the Google Cloud Platform project that the job belongs to.",
"required": true,
"type": "string"
},
"region": {
"required": true,
"type": "string",
"location": "path",
"description": "Required The Dataproc region in which to handle the request."
}
},
"flatPath": "v1alpha1/projects/{projectId}/regions/{region}/jobs:list"
},
"cancel": {
"request": {
"$ref": "CancelJobRequest"
},
"description": "Starts a job cancellation request. To access the job resource after cancellation, call regions/{region}/jobs:list or regions/{region}/jobs:get.",
"httpMethod": "POST",
"parameterOrder": [
"projectId",
"region",
"jobId"
],
"response": {
"$ref": "Job"
},
"parameters": {
"projectId": {
"description": "Required The ID of the Google Cloud Platform project that the job belongs to.",
"required": true,
"type": "string",
"location": "path"
},
"jobId": {
"description": "Required The job ID.",
"required": true,
"type": "string",
"location": "path"
},
"region": {
"location": "path",
"description": "Required The Dataproc region in which to handle the request.",
"required": true,
"type": "string"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"flatPath": "v1alpha1/projects/{projectId}/regions/{region}/jobs/{jobId}:cancel",
"id": "dataproc.projects.regions.jobs.cancel",
"path": "v1alpha1/projects/{projectId}/regions/{region}/jobs/{jobId}:cancel"
},
"patch": {
"request": {
"$ref": "Job"
},
"description": "Updates a job in a project.",
"response": {
"$ref": "Job"
},
"parameterOrder": [
"projectId",
"region",
"jobId"
],
"httpMethod": "PATCH",
"parameters": {
"projectId": {
"description": "Required The ID of the Google Cloud Platform project that the job belongs to.",
"required": true,
"type": "string",
"location": "path"
},
"jobId": {
"description": "Required The job ID.",
"required": true,
"type": "string",
"location": "path"
},
"region": {
"location": "path",
"description": "Required The Dataproc region in which to handle the request.",
"required": true,
"type": "string"
},
"updateMask": {
"type": "string",
"location": "query",
"description": "Required Specifies the path, relative to \u003ccode\u003eJob\u003c/code\u003e, of the field to update. For example, to update the labels of a Job the \u003ccode\u003eupdate_mask\u003c/code\u003e parameter would be specified as \u003ccode\u003elabels\u003c/code\u003e, and the PATCH request body would specify the new value. \u003cstrong\u003eNote:\u003c/strong\u003e Currently, \u003ccode\u003elabels\u003c/code\u003e is the only field that can be updated.",
"format": "google-fieldmask"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"flatPath": "v1alpha1/projects/{projectId}/regions/{region}/jobs/{jobId}",
"path": "v1alpha1/projects/{projectId}/regions/{region}/jobs/{jobId}",
"id": "dataproc.projects.regions.jobs.patch"
},
"get": {
"flatPath": "v1alpha1/projects/{projectId}/regions/{region}/jobs/{jobId}",
"path": "v1alpha1/projects/{projectId}/regions/{region}/jobs/{jobId}",
"id": "dataproc.projects.regions.jobs.get",
"description": "Gets the resource representation for a job in a project.",
"response": {
"$ref": "Job"
},
"httpMethod": "GET",
"parameterOrder": [
"projectId",
"region",
"jobId"
],
"parameters": {
"region": {
"description": "Required The Dataproc region in which to handle the request.",
"required": true,
"type": "string",
"location": "path"
},
"projectId": {
"required": true,
"type": "string",
"location": "path",
"description": "Required The ID of the Google Cloud Platform project that the job belongs to."
},
"jobId": {
"description": "Required The job ID.",
"required": true,
"type": "string",
"location": "path"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
},
"clusters": {
"methods": {
"create": {
"flatPath": "v1alpha1/projects/{projectId}/regions/{region}/clusters",
"id": "dataproc.projects.regions.clusters.create",
"path": "v1alpha1/projects/{projectId}/regions/{region}/clusters",
"request": {
"$ref": "Cluster"
},
"description": "Request to create a cluster in a project.",
"httpMethod": "POST",
"parameterOrder": [
"projectId",
"region"
],
"response": {
"$ref": "Operation"
},
"parameters": {
"projectId": {
"location": "path",
"description": "Required The ID of the Google Cloud Platform project that the cluster belongs to.",
"required": true,
"type": "string"
},
"region": {
"description": "Required The Dataproc region in which to handle the request.",
"required": true,
"type": "string",
"location": "path"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"delete": {
"flatPath": "v1alpha1/projects/{projectId}/regions/{region}/clusters/{clusterName}",
"id": "dataproc.projects.regions.clusters.delete",
"path": "v1alpha1/projects/{projectId}/regions/{region}/clusters/{clusterName}",
"description": "Request to delete a cluster in a project.",
"httpMethod": "DELETE",
"response": {
"$ref": "Operation"
},
"parameterOrder": [
"projectId",
"region",
"clusterName"
],
"parameters": {
"clusterName": {
"location": "path",
"description": "Required The cluster name.",
"required": true,
"type": "string"
},
"projectId": {
"location": "path",
"description": "Required The ID of the Google Cloud Platform project that the cluster belongs to.",
"required": true,
"type": "string"
},
"region": {
"location": "path",
"description": "Required The Dataproc region in which to handle the request.",
"required": true,
"type": "string"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"patch": {
"request": {
"$ref": "Cluster"
},
"description": "Request to update a cluster in a project.",
"httpMethod": "PATCH",
"parameterOrder": [
"projectId",
"region",
"clusterName"
],
"response": {
"$ref": "Operation"
},
"parameters": {
"region": {
"required": true,
"type": "string",
"location": "path",
"description": "Required The Dataproc region in which to handle the request."
},
"updateMask": {
"location": "query",
"description": "Required Specifies the path, relative to \u003ccode\u003eCluster\u003c/code\u003e, of the field to update. For example, to change the number of workers in a cluster to 5, the \u003ccode\u003eupdate_mask\u003c/code\u003e parameter would be specified as \u003ccode\u003e\"configuration.worker_configuration.num_instances,\"\u003c/code\u003e and the PATCH request body would specify the new value, as follows:\n{\n \"configuration\":{\n \"workerConfiguration\":{\n \"numInstances\":\"5\"\n }\n }\n}\n\u003cstrong\u003eNote:\u003c/strong\u003e Currently, \u003ccode\u003econfiguration.worker_configuration.num_instances\u003c/code\u003e is the only field that can be updated.",
"format": "google-fieldmask",
"type": "string"
},
"clusterName": {
"location": "path",
"description": "Required The cluster name.",
"required": true,
"type": "string"
},
"projectId": {
"required": true,
"type": "string",
"location": "path",
"description": "Required The ID of the Google Cloud Platform project the cluster belongs to."
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"flatPath": "v1alpha1/projects/{projectId}/regions/{region}/clusters/{clusterName}",
"id": "dataproc.projects.regions.clusters.patch",
"path": "v1alpha1/projects/{projectId}/regions/{region}/clusters/{clusterName}"
},
"get": {
"flatPath": "v1alpha1/projects/{projectId}/regions/{region}/clusters/{clusterName}",
"path": "v1alpha1/projects/{projectId}/regions/{region}/clusters/{clusterName}",
"id": "dataproc.projects.regions.clusters.get",
"description": "Request to get the resource representation for a cluster in a project.",
"response": {
"$ref": "Cluster"
},
"parameterOrder": [
"projectId",
"region",
"clusterName"
],
"httpMethod": "GET",
"parameters": {
"clusterName": {
"description": "Required The cluster name.",
"required": true,
"type": "string",
"location": "path"
},
"projectId": {
"description": "Required The ID of the Google Cloud Platform project that the cluster belongs to.",
"required": true,
"type": "string",
"location": "path"
},
"region": {
"location": "path",
"description": "Required The Dataproc region in which to handle the request.",
"required": true,
"type": "string"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"list": {
"description": "Request a list of all regions/{region}/clusters in a project.",
"response": {
"$ref": "ListClustersResponse"
},
"parameterOrder": [
"projectId",
"region"
],
"httpMethod": "GET",
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
],
"parameters": {
"pageToken": {
"description": "The standard List page token.",
"type": "string",
"location": "query"
},
"pageSize": {
"description": "The standard List page size.",
"format": "int32",
"type": "integer",
"location": "query"
},
"projectId": {
"location": "path",
"description": "Required The ID of the Google Cloud Platform project that the cluster belongs to.",
"required": true,
"type": "string"
},
"region": {
"location": "path",
"description": "Required The Dataproc region in which to handle the request.",
"required": true,
"type": "string"
},
"filter": {
"type": "string",
"location": "query",
"description": "Optional A filter constraining which clusters to list. Valid filters contain label terms such as: labels.key1 = val1 AND (-labels.k2 = val2 OR labels.k3 = val3)"
}
},
"flatPath": "v1alpha1/projects/{projectId}/regions/{region}/clusters",
"path": "v1alpha1/projects/{projectId}/regions/{region}/clusters",
"id": "dataproc.projects.regions.clusters.list"
}
}
}
}
}
}
}
},
"parameters": {
"key": {
"description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
"type": "string",
"location": "query"
},
"access_token": {
"description": "OAuth access token.",
"type": "string",
"location": "query"
},
"quotaUser": {
"type": "string",
"location": "query",
"description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters."
},
"pp": {
"location": "query",
"description": "Pretty-print response.",
"type": "boolean",
"default": "true"
},
"oauth_token": {
"description": "OAuth 2.0 token for the current user.",
"type": "string",
"location": "query"
},
"bearer_token": {
"location": "query",
"description": "OAuth bearer token.",
"type": "string"
},
"upload_protocol": {
"description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
"type": "string",
"location": "query"
},
"prettyPrint": {
"location": "query",
"description": "Returns response with indentations and line breaks.",
"type": "boolean",
"default": "true"
},
"uploadType": {
"location": "query",
"description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").",
"type": "string"
},
"fields": {
"location": "query",
"description": "Selector specifying which fields to include in a partial response.",
"type": "string"
},
"$.xgafv": {
"type": "string",
"enumDescriptions": [
"v1 error format",
"v2 error format"
],
"location": "query",
"enum": [
"1",
"2"
],
"description": "V1 error format."
},
"callback": {
"description": "JSONP",
"type": "string",
"location": "query"
},
"alt": {
"type": "string",
"enumDescriptions": [
"Responses with Content-Type of application/json",
"Media download with context-dependent Content-Type",
"Responses with Content-Type of application/x-protobuf"
],
"location": "query",
"description": "Data format for response.",
"default": "json",
"enum": [
"json",
"media",
"proto"
]
}
},
"schemas": {
"OperationStatus": {
"description": "The status of the operation.",
"type": "object",
"properties": {
"state": {
"enumDescriptions": [
"Unused.",
"The operation has been created.",
"The operation is running.",
"The operation is done; either cancelled or completed."
],
"enum": [
"UNKNOWN",
"PENDING",
"RUNNING",
"DONE"
],
"description": "A message containing the operation state.",
"type": "string"
},
"details": {
"description": "A message containing any operation metadata details.",
"type": "string"
},
"innerState": {
"description": "A message containing the detailed operation state.",
"type": "string"
},
"stateStartTime": {
"description": "The time this state was entered.",
"format": "google-datetime",
"type": "string"
}
},
"id": "OperationStatus"
},
"JobReference": {
"description": "Encapsulates the full scoping used to reference a job.",
"type": "object",
"properties": {
"projectId": {
"description": "Required The ID of the Google Cloud Platform project that the job belongs to.",
"type": "string"
},
"jobId": {
"description": "Required The job ID, which must be unique within the project. The job ID is generated by the server upon job submission or provided by the user as a means to perform retries without creating duplicate jobs. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-). The maximum length is 100 characters.",
"type": "string"
}
},
"id": "JobReference"
},
"SubmitJobRequest": {
"type": "object",
"properties": {
"job": {
"description": "Required The job resource.",
"$ref": "Job"
}
},
"id": "SubmitJobRequest",
"description": "A job submission request."
},
"Status": {
"description": "The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC (https://github.com/grpc). The error model is designed to be:\nSimple to use and understand for most users\nFlexible enough to meet unexpected needsOverviewThe Status message contains three pieces of data: error code, error message, and error details. The error code should be an enum value of google.rpc.Code, but it may accept additional error codes if needed. The error message should be a developer-facing English message that helps developers understand and resolve the error. If a localized user-facing error message is needed, put the localized message in the error details or localize it in the client. The optional error details may contain arbitrary information about the error. There is a predefined set of error detail types in the package google.rpc that can be used for common error conditions.Language mappingThe Status message is the logical representation of the error model, but it is not necessarily the actual wire format. When the Status message is exposed in different client libraries and different wire protocols, it can be mapped differently. For example, it will likely be mapped to some exceptions in Java, but more likely mapped to some error codes in C.Other usesThe error model and the Status message can be used in a variety of environments, either with or without APIs, to provide a consistent developer experience across different environments.Example uses of this error model include:\nPartial errors. If a service needs to return partial errors to the client, it may embed the Status in the normal response to indicate the partial errors.\nWorkflow errors. A typical workflow has multiple steps. Each step may have a Status message for error reporting.\nBatch operations. If a client uses batch request and batch response, the Status message should be used directly inside batch response, one for each error sub-response.\nAsynchronous operations. If an API call embeds asynchronous operation results in its response, the status of those operations should be represented directly using the Status message.\nLogging. If some API errors are stored in logs, the message Status could be used directly after any stripping needed for security/privacy reasons.",
"type": "object",
"properties": {
"code": {
"type": "integer",
"description": "The status code, which should be an enum value of google.rpc.Code.",
"format": "int32"
},
"message": {
"description": "A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.",
"type": "string"
},
"details": {
"type": "array",
"items": {
"additionalProperties": {
"description": "Properties of the object. Contains field @type with type URL.",
"type": "any"
},
"type": "object"
},
"description": "A list of messages that carry the error details. There will be a common set of message types for APIs to use."
}
},
"id": "Status"
},
"JobScheduling": {
"properties": {
"maxFailuresPerHour": {
"description": "Optional Maximum number of times per hour a driver may be restarted as a result of driver terminating with non-zero code before job is reported failed.A job may be reported as thrashing if driver exits with non-zero code 4 times within 10 minute window.Maximum value is 10.",
"format": "int32",
"type": "integer"
}
},
"id": "JobScheduling",
"description": "Job scheduling options.Beta Feature: These options are available for testing purposes only. They may be changed before final release.",
"type": "object"
},
"NodeInitializationAction": {
"description": "Specifies an executable to run on a fully configured node and a timeout period for executable completion.",
"type": "object",
"properties": {
"executableFile": {
"description": "Required Google Cloud Storage URI of executable file.",
"type": "string"
},
"executionTimeout": {
"type": "string",
"description": "Optional Amount of time executable has to complete. Default is 10 minutes. Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.",
"format": "google-duration"
}
},
"id": "NodeInitializationAction"
},
"ListJobsResponse": {
"description": "A response to a request to list jobs in a project.",
"type": "object",
"properties": {
"jobs": {
"description": "Output-only Jobs list.",
"type": "array",
"items": {
"$ref": "Job"
}
},
"nextPageToken": {
"description": "Optional This token is included in the response if there are more results to fetch. To fetch additional results, provide this value as the page_token in a subsequent \u003ccode\u003eListJobsRequest\u003c/code\u003e.",
"type": "string"
}
},
"id": "ListJobsResponse"
},
"CancelJobRequest": {
"description": "A request to cancel a job.",
"type": "object",
"properties": {},
"id": "CancelJobRequest"
},
"SparkSqlJob": {
"type": "object",
"properties": {
"queryFileUri": {
"description": "The HCFS URI of the script that contains SQL queries.",
"type": "string"
},
"queryList": {
"description": "A list of queries.",
"$ref": "QueryList"
},
"jarFileUris": {
"type": "array",
"items": {
"type": "string"
},
"description": "Optional HCFS URIs of jar files to be added to the Spark CLASSPATH."
},
"scriptVariables": {
"description": "Optional Mapping of query variable names to values (equivalent to the Spark SQL command: SET name=\"value\";).",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"loggingConfiguration": {
"$ref": "LoggingConfiguration",
"description": "Optional The runtime log configuration for job execution."
},
"properties": {
"additionalProperties": {
"type": "string"
},
"description": "Optional A mapping of property names to values, used to configure Spark SQL's SparkConf. Properties that conflict with values set by the Cloud Dataproc API may be overwritten.",
"type": "object"
}
},
"id": "SparkSqlJob",
"description": "A Cloud Dataproc job for running Spark SQL queries."
},
"Cluster": {
"description": "Describes the identifying information, configuration, and status of a cluster of Google Compute Engine instances.",
"type": "object",
"properties": {
"configuration": {
"description": "Required The cluster configuration. It may differ from a user's initial configuration due to Cloud Dataproc setting of default values and updating clusters.",
"$ref": "ClusterConfiguration"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Optional The labels to associate with this cluster.Label keys must be between 1 and 63 characters long, and must conform to the following PCRE regular expression: \\p{Ll}\\p{Lo}{0,62}Label values must be between 1 and 63 characters long, and must conform to the following PCRE regular expression: \\p{Ll}\\p{Lo}\\p{N}_-{0,63}No more than 64 labels can be associated with a given cluster.",
"type": "object"
},
"createTime": {
"description": "Output-only The timestamp of cluster creation.",
"format": "google-datetime",
"type": "string"
},
"status": {
"$ref": "ClusterStatus",
"description": "Output-only Cluster status."
},
"metrics": {
"$ref": "ClusterMetrics",
"description": "Contains cluster daemon metrics such as HDFS and YARN stats."
},
"statusHistory": {
"description": "Output-only Previous cluster statuses.",
"type": "array",
"items": {
"$ref": "ClusterStatus"
}
},
"clusterUuid": {
"description": "Output-only A cluster UUID (Unique Universal Identifier). Cloud Dataproc generates this value when it creates the cluster.",
"type": "string"
},
"clusterName": {
"description": "Required The cluster name. Cluster names within a project must be unique. Names from deleted clusters can be reused.",
"type": "string"
},
"projectId": {
"description": "Required The Google Cloud Platform project ID that the cluster belongs to.",
"type": "string"
}
},
"id": "Cluster"
},
"ListOperationsResponse": {
"id": "ListOperationsResponse",
"description": "The response message for Operations.ListOperations.",
"type": "object",
"properties": {
"nextPageToken": {
"description": "The standard List next-page token.",
"type": "string"
},
"operations": {
"description": "A list of operations that match the specified filter in the request.",
"type": "array",
"items": {
"$ref": "Operation"
}
}
}
},
"OperationMetadata": {
"description": "Metadata describing the operation.",
"type": "object",
"properties": {
"warnings": {
"description": "Output-only Errors encountered during operation execution.",
"type": "array",
"items": {
"type": "string"
}
},
"insertTime": {
"description": "The time that the operation was requested.",
"format": "google-datetime",
"type": "string"
},
"statusHistory": {
"description": "Output-only Previous operation status.",
"type": "array",
"items": {
"$ref": "OperationStatus"
}
},
"operationType": {
"description": "Output-only The operation type.",
"type": "string"
},
"description": {
"type": "string",
"description": "Output-only Short description of operation."
},
"status": {
"$ref": "OperationStatus",
"description": "Output-only Current operation status."
},
"state": {
"enum": [
"UNKNOWN",
"PENDING",
"RUNNING",
"DONE"
],
"description": "A message containing the operation state.",
"type": "string",
"enumDescriptions": [
"Unused.",
"The operation has been created.",
"The operation is currently running.",
"The operation is done, either cancelled or completed."
]
},
"details": {
"description": "A message containing any operation metadata details.",
"type": "string"
},
"clusterUuid": {
"description": "Cluster UUId for the operation.",
"type": "string"
},
"clusterName": {
"description": "Name of the cluster for the operation.",
"type": "string"
},
"innerState": {
"description": "A message containing the detailed operation state.",
"type": "string"
},
"endTime": {
"description": "The time that the operation completed.",
"format": "google-datetime",
"type": "string"
},
"startTime": {
"type": "string",
"description": "The time that the operation was started by the server.",
"format": "google-datetime"
}
},
"id": "OperationMetadata"
},
"JobPlacement": {
"type": "object",
"properties": {
"clusterName": {
"description": "Required The name of the cluster where the job will be submitted.",
"type": "string"
},
"clusterUuid": {
"description": "Output-only A cluster UUID generated by the Dataproc service when the job is submitted.",
"type": "string"
}
},
"id": "JobPlacement",
"description": "Cloud Dataproc job configuration."
},
"ClusterStatus": {
"description": "The status of a cluster and its instances.",
"type": "object",
"properties": {
"detail": {
"type": "string",
"description": "Optional details of cluster's state."
},
"state": {
"type": "string",
"enumDescriptions": [
"The cluster state is unknown.",
"The cluster is being created and set up. It is not ready for use.",
"The cluster is currently running and healthy. It is ready for use.",
"The cluster encountered an error. It is not ready for use.",
"The cluster is being deleted. It cannot be used.",
"The cluster is being updated. It continues to accept and process jobs."
],
"enum": [
"UNKNOWN",
"CREATING",
"RUNNING",
"ERROR",
"DELETING",
"UPDATING"
],
"description": "The cluster's state."
},
"stateStartTime": {
"description": "Time when this state was entered.",
"format": "google-datetime",
"type": "string"
},
"substate": {
"enumDescriptions": [
"",
"The cluster is known to be in an unhealthy state (for example, critical daemons are not running or HDFS capacity is exhausted).Applies to RUNNING state.",
"The agent-reported status is out of date (may occur if Cloud Dataproc loses communication with Agent).Applies to RUNNING state."
],
"enum": [
"UNSPECIFIED",
"UNHEALTHY",
"STALE_STATUS"
],
"description": "Output-only Additional state information that includes status reported by the agent.",
"type": "string"
}
},
"id": "ClusterStatus"
},
"PigJob": {
"description": "A Cloud Dataproc job for running Pig queries on YARN.",
"type": "object",
"properties": {
"loggingConfiguration": {
"$ref": "LoggingConfiguration",
"description": "Optional The runtime log configuration for job execution."
},
"properties": {
"additionalProperties": {
"type": "string"
},
"description": "Optional A mapping of property names to values, used to configure Pig. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/pig/conf/pig.properties, and classes in user code.",
"type": "object"
},
"continueOnFailure": {
"description": "Optional Whether to continue executing queries if a query fails. The default value is false. Setting to true can be useful when executing independent parallel queries.",
"type": "boolean"
},
"queryList": {
"$ref": "QueryList",
"description": "A list of queries."
},
"queryFileUri": {
"type": "string",
"description": "The HCFS URI of the script that contains the Pig queries."
},
"jarFileUris": {
"description": "Optional HCFS URIs of jar files to add to the CLASSPATH of the Pig Client and Hadoop MapReduce (MR) tasks. Can contain Pig UDFs.",
"type": "array",
"items": {
"type": "string"
}
},
"scriptVariables": {
"description": "Optional Mapping of query variable names to values (equivalent to the Pig command: \"name=value\").",
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"id": "PigJob"
},
"AcceleratorConfiguration": {
"description": "Specifies the type and number of accelerator cards attached to the instances of an instance group (see GPUs on Compute Engine).",
"type": "object",
"properties": {
"acceleratorCount": {
"description": "The number of the accelerator cards of this type exposed to this instance.",
"format": "int32",
"type": "integer"
},
"acceleratorTypeUri": {
"description": "Full or partial URI of the accelerator type resource to expose to this instance. See Google Compute Engine AcceleratorTypes( /compute/docs/reference/beta/acceleratorTypes)",
"type": "string"
}
},
"id": "AcceleratorConfiguration"
},
"ManagedGroupConfiguration": {
"description": "Specifies the resources used to actively manage an instance group.",
"type": "object",
"properties": {
"instanceGroupManagerName": {
"description": "Output-only The name of Instance Group Manager managing this group.",
"type": "string"
},
"instanceTemplateName": {
"type": "string",
"description": "Output-only The name of Instance Template used for Managed Instance Group."
}
},
"id": "ManagedGroupConfiguration"
},
"ListClustersResponse": {
"type": "object",
"properties": {
"clusters": {
"type": "array",
"items": {
"$ref": "Cluster"
},
"description": "Output-only The clusters in the project."
},
"nextPageToken": {
"description": "The standard List next-page token.",
"type": "string"
}
},
"id": "ListClustersResponse",
"description": "The list of all clusters in a project."
},
"SparkJob": {
"properties": {
"args": {
"description": "Optional The arguments to pass to the driver. Do not include arguments, such as --conf, that can be set as job properties, since a collision may occur that causes an incorrect job submission.",
"type": "array",
"items": {
"type": "string"
}
},
"fileUris": {
"description": "Optional HCFS URIs of files to be copied to the working directory of Spark drivers and distributed tasks. Useful for naively parallel tasks.",
"type": "array",
"items": {
"type": "string"
}
},
"mainClass": {
"description": "The name of the driver's main class. The jar file that contains the class must be in the default CLASSPATH or specified in jar_file_uris.",
"type": "string"
},
"archiveUris": {
"description": "Optional HCFS URIs of archives to be extracted in the working directory of Spark drivers and tasks. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.",
"type": "array",
"items": {
"type": "string"
}
},
"mainJarFileUri": {
"description": "The Hadoop Compatible Filesystem (HCFS) URI of the jar file that contains the main class.",
"type": "string"
},
"jarFileUris": {
"description": "Optional HCFS URIs of jar files to add to the CLASSPATHs of the Spark driver and tasks.",
"type": "array",
"items": {
"type": "string"
}
},
"loggingConfiguration": {
"description": "Optional The runtime log configuration for job execution.",
"$ref": "LoggingConfiguration"
},
"properties": {
"additionalProperties": {
"type": "string"
},
"description": "Optional A mapping of property names to values, used to configure Spark. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf and classes in user code.",
"type": "object"
}
},
"id": "SparkJob",
"description": "A Cloud Dataproc job for running Spark applications on YARN.",
"type": "object"
},
"Job": {
"description": "A Cloud Dataproc job resource.",
"type": "object",
"properties": {
"status": {
"description": "Output-only The job status. Additional application-specific status information may be contained in the \u003ccode\u003etype_job\u003c/code\u003e and \u003ccode\u003eyarn_applications\u003c/code\u003e fields.",
"$ref": "JobStatus"
},
"placement": {
"$ref": "JobPlacement",
"description": "Required Job information, including how, when, and where to run the job."
},
"driverControlFilesUri": {
"description": "Output-only If present, the location of miscellaneous control files which may be used as part of job setup and handling. If not present, control files may be placed in the same location as driver_output_uri.",
"type": "string"
},
"submittedBy": {
"description": "Output-only The email address of the user submitting the job. For jobs submitted on the cluster, the address is \u003ccode\u003eusername@hostname\u003c/code\u003e.",
"type": "string"
},
"scheduling": {
"description": "Optional Job scheduling configuration.",
"$ref": "JobScheduling"
},
"pigJob": {
"$ref": "PigJob",
"description": "Job is a Pig job."
},
"driverOutputUri": {
"description": "Output-only A URI pointing to the location of the mixed stdout/stderr of the job's driver program—for example, \u003ccode\u003egs://sysbucket123/foo-cluster/jobid-123/driver/output\u003c/code\u003e.",
"type": "string"
},
"hiveJob": {
"$ref": "HiveJob",
"description": "Job is a Hive job."
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Optional The labels to associate with this job.Label keys must be between 1 and 63 characters long, and must conform to the following regular expression: \\p{Ll}\\p{Lo}{0,62}Label values must be between 1 and 63 characters long, and must conform to the following regular expression: \\p{Ll}\\p{Lo}\\p{N}_-{0,63}No more than 64 labels can be associated with a given job.",
"type": "object"
},
"driverOutputResourceUri": {
"type": "string",
"description": "Output-only A URI pointing to the location of the stdout of the job's driver program."
},
"statusHistory": {
"description": "Output-only The previous job status.",
"type": "array",
"items": {
"$ref": "JobStatus"
}
},
"sparkSqlJob": {
"$ref": "SparkSqlJob",
"description": "Job is a SparkSql job."
},
"sparkJob": {
"$ref": "SparkJob",
"description": "Job is a Spark job."
},
"yarnApplications": {
"description": "Output-only The collection of Yarn applications spun up by this job.",
"type": "array",
"items": {
"$ref": "YarnApplication"
}
},
"pysparkJob": {
"description": "Job is a Pyspark job.",
"$ref": "PySparkJob"
},
"reference": {
"$ref": "JobReference",
"description": "Optional The fully-qualified reference to the job, which can be used to obtain the equivalent REST path of the job resource. If this property is not specified when a job is created, the server generates a \u003ccode\u003ejob_id\u003c/code\u003e."
},
"interactive": {
"description": "Optional If set to true, then the driver's stdin will be kept open and driver_input_uri will be set to provide a path at which additional input can be sent to the driver.",
"type": "boolean"
},
"driverInputResourceUri": {
"type": "string",
"description": "Output-only A URI pointing to the location of the stdin of the job's driver program, only set if the job is interactive."
},
"hadoopJob": {
"$ref": "HadoopJob",
"description": "Job is a Hadoop job."
}
},
"id": "Job"
},
"JobStatus": {
"description": "Cloud Dataproc job status.",
"type": "object",
"properties": {
"substate": {
"enum": [
"UNSPECIFIED",
"SUBMITTED",
"QUEUED",
"STALE_STATUS"
],
"description": "Output-only Additional state information, which includes status reported by the agent.",
"type": "string",
"enumDescriptions": [
"",
"The Job is submitted to the agent.Applies to RUNNING state.",
"The Job has been received and is awaiting execution (it may be waiting for a condition to be met). See the \"details\" field for the reason for the delay.Applies to RUNNING state.",
"The agent-reported status is out of date, which may be caused by a loss of communication between the agent and Cloud Dataproc. If the agent does not send a timely update, the job will fail.Applies to RUNNING state."
]
},
"insertTime": {
"description": "The time of the job request.",
"format": "google-datetime",
"type": "string"
},
"state": {
"type": "string",
"enumDescriptions": [
"The job state is unknown.",
"The job is pending; it has been submitted, but is not yet running.",
"Job has been received by the service and completed initial setup; it will shortly be submitted to the cluster.",
"The job is running on the cluster.",
"A CancelJob request has been received, but is pending.",
"Transient in-flight resources have been canceled, and the request to cancel the running job has been issued to the cluster.",
"The job cancelation was successful.",
"The job has completed successfully.",
"The job has completed, but encountered an error.",
"Job attempt has failed. The detail field contains failure details for this attempt.Applies to restartable jobs only."
],
"enum": [
"STATE_UNSPECIFIED",
"PENDING",
"SETUP_DONE",
"RUNNING",
"CANCEL_PENDING",
"CANCEL_STARTED",
"CANCELLED",
"DONE",
"ERROR",
"ATTEMPT_FAILURE"
],
"description": "Required A state message specifying the overall job state."
},
"details": {
"description": "Optional Job state details, such as an error description if the state is \u003ccode\u003eERROR\u003c/code\u003e.",
"type": "string"
},
"stateStartTime": {
"description": "Output-only The time when this state was entered.",
"format": "google-datetime",
"type": "string"
},
"endTime": {
"description": "The time when the job completed.",
"format": "google-datetime",
"type": "string"
},
"startTime": {
"description": "The time when the server started the job.",
"format": "google-datetime",
"type": "string"
}
},
"id": "JobStatus"
},
"DiskConfiguration": {
"description": "Specifies the configuration of disk options for a group of VM instances.",
"type": "object",
"properties": {
"bootDiskSizeGb": {
"description": "Optional Size in GB of the boot disk (default is 500GB).",
"format": "int32",
"type": "integer"
},
"numLocalSsds": {
"description": "Optional Number of attached SSDs, from 0 to 4 (default is 0). If SSDs are not attached, the boot disk is used to store runtime logs, and HDFS data. If one or more SSDs are attached, this runtime bulk data is spread across them, and the boot disk contains only basic configuration and installed binaries.",
"format": "int32",
"type": "integer"
}
},
"id": "DiskConfiguration"
},
"ClusterOperationStatus": {
"properties": {
"state": {
"enumDescriptions": [
"Unused.",
"The operation has been created.",
"The operation is running.",
"The operation is done; either cancelled or completed."
],
"enum": [
"UNKNOWN",
"PENDING",
"RUNNING",
"DONE"
],
"description": "Output-only. A message containing the operation state.",
"type": "string"
},
"details": {
"description": "Output-only.A message containing any operation metadata details.",
"type": "string"
},
"innerState": {
"description": "Output-only. A message containing the detailed operation state.",
"type": "string"
},
"stateStartTime": {
"description": "Output-only. The time this state was entered.",
"format": "google-datetime",
"type": "string"
}
},
"id": "ClusterOperationStatus",
"description": "The status of the operation.",
"type": "object"
},
"HadoopJob": {
"description": "A Cloud Dataproc job for running Hadoop MapReduce jobs on YARN.",
"type": "object",
"properties": {
"properties": {
"additionalProperties": {
"type": "string"
},
"description": "Optional A mapping of property names to values, used to configure Hadoop. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site and classes in user code.",
"type": "object"
},
"args": {
"description": "Optional The arguments to pass to the driver. Do not include arguments, such as -libjars or -Dfoo=bar, that can be set as job properties, since a collision may occur that causes an incorrect job submission.",
"type": "array",
"items": {
"type": "string"
}
},
"fileUris": {
"description": "Optional HCFS URIs of files to be copied to the working directory of Hadoop drivers and distributed tasks. Useful for naively parallel tasks.",
"type": "array",
"items": {
"type": "string"
}
},
"mainClass": {
"description": "The name of the driver's main class. The jar file containing the class must be in the default CLASSPATH or specified in jar_file_uris.",
"type": "string"
},
"archiveUris": {
"description": "Optional HCFS URIs of archives to be extracted in the working directory of Hadoop drivers and tasks. Supported file types: .jar, .tar, .tar.gz, .tgz, or .zip.",
"type": "array",
"items": {
"type": "string"
}
},
"mainJarFileUri": {
"description": "The Hadoop Compatible Filesystem (HCFS) URI of the jar file containing the main class. Examples: gs://foo-bucket/analytics-binaries/extract-useful-metrics-mr.jar hdfs:/tmp/test-samples/custom-wordcount.jar file:///home/usr/lib/hadoop-mapreduce/hadoop-mapreduce-examples.jar",
"type": "string"
},
"jarFileUris": {
"description": "Optional Jar file URIs to add to the CLASSPATHs of the Hadoop driver and tasks.",
"type": "array",
"items": {
"type": "string"
}
},
"loggingConfiguration": {
"description": "Optional The runtime log configuration for job execution.",
"$ref": "LoggingConfiguration"
}
},
"id": "HadoopJob"
},
"QueryList": {
"id": "QueryList",
"description": "A list of queries to run on a cluster.",
"type": "object",
"properties": {
"queries": {
"description": "Required The queries to execute. You do not need to terminate a query with a semicolon. Multiple queries can be specified in one string by separating each with a semicolon. Here is an example of an Cloud Dataproc API snippet that uses a QueryList to specify a HiveJob:\n\"hiveJob\": {\n \"queryList\": {\n \"queries\": [\n \"query1\",\n \"query2\",\n \"query3;query4\",\n ]\n }\n}\n",
"type": "array",
"items": {
"type": "string"
}
}
}
},
"YarnApplication": {
"type": "object",
"properties": {
"state": {
"type": "string",
"enumDescriptions": [
"Status is unspecified.",
"Status is NEW.",
"Status is NEW_SAVING.",
"Status is SUBMITTED.",
"Status is ACCEPTED.",
"Status is RUNNING.",
"Status is FINISHED.",
"Status is FAILED.",
"Status is KILLED."
],
"enum": [
"STATE_UNSPECIFIED",
"NEW",
"NEW_SAVING",
"SUBMITTED",
"ACCEPTED",
"RUNNING",
"FINISHED",
"FAILED",
"KILLED"
],
"description": "Required The application state."
},
"name": {
"type": "string",
"description": "Required The application name."
},
"trackingUrl": {
"description": "Optional The HTTP URL of the ApplicationMaster, HistoryServer, or TimelineServer that provides application-specific information. The URL uses the internal hostname, and requires a proxy server for resolution and, possibly, access.",
"type": "string"
},
"progress": {
"description": "Required The numerical progress of the application, from 1 to 100.",
"format": "float",
"type": "number"
}
},
"id": "YarnApplication",
"description": "A YARN application created by a job. Application information is a subset of \u003ccode\u003eorg.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto\u003c/code\u003e."
},
"ClusterOperationMetadata": {
"description": "Metadata describing the operation.",
"type": "object",
"properties": {
"operationType": {
"description": "Output-only. The operation type.",
"type": "string"
},
"description": {
"description": "Output-only. Short description of operation.",
"type": "string"
},
"warnings": {
"description": "Output-only. Errors encountered during operation execution.",
"type": "array",
"items": {
"type": "string"
}
},
"labels": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Output-only. Labels associated with the operation"
},
"status": {
"description": "Output-only. Current operation status.",
"$ref": "ClusterOperationStatus"
},
"statusHistory": {
"description": "Output-only. The previous operation status.",
"type": "array",
"items": {
"$ref": "ClusterOperationStatus"
}
},
"clusterUuid": {
"description": "Output-only. Cluster UUID for the operation.",
"type": "string"
},
"clusterName": {
"description": "Output-only. Name of the cluster for the operation.",
"type": "string"
}
},
"id": "ClusterOperationMetadata"
},
"Empty": {
"type": "object",
"properties": {},
"id": "Empty",
"description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance:\nservice Foo {\n rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);\n}\nThe JSON representation for Empty is empty JSON object {}."
},
"HiveJob": {
"description": "A Cloud Dataproc job for running Hive queries on YARN.",
"type": "object",
"properties": {
"jarFileUris": {
"description": "Optional HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes and UDFs.",
"type": "array",
"items": {
"type": "string"
}
},
"scriptVariables": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Optional Mapping of query variable names to values (equivalent to the Hive command: 'SET name=\"value\";')."
},
"properties": {
"additionalProperties": {
"type": "string"
},
"description": "Optional A mapping of property names and values, used to configure Hive. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/hive/conf/hive-site.xml, and classes in user code.",
"type": "object"
},
"continueOnFailure": {
"description": "Optional Whether to continue executing queries if a query fails. The default value is false. Setting to true can be useful when executing independent parallel queries.",
"type": "boolean"
},
"queryFileUri": {
"description": "The HCFS URI of the script that contains Hive queries.",
"type": "string"
},
"queryList": {
"$ref": "QueryList",
"description": "A list of queries."
}
},
"id": "HiveJob"
},
"ListJobsRequest": {
"properties": {
"pageToken": {
"description": "Optional The page token, returned by a previous call, to request the next page of results.",
"type": "string"
},
"clusterName": {
"description": "Optional If set, the returned jobs list includes only jobs that were submitted to the named cluster.",
"type": "string"
},
"pageSize": {
"type": "integer",
"description": "Optional The number of results to return in each response.",
"format": "int32"
},
"filter": {
"description": "Optional A filter constraining which jobs to list. Valid filters contain job state and label terms such as: labels.key1 = val1 AND (labels.k2 = val2 OR labels.k3 = val3)",
"type": "string"
},
"jobStateMatcher": {
"enum": [
"ALL",
"ACTIVE",
"NON_ACTIVE"
],
"description": "Optional Specifies enumerated categories of jobs to list.",
"type": "string",
"enumDescriptions": [
"Match all jobs, regardless of state.",
"Only match jobs in non-terminal states: PENDING, RUNNING, CANCEL_PENDING",
"Only match jobs in terminal states: CANCELLED, DONE, ERROR"
]
}
},
"id": "ListJobsRequest",
"description": "A request to list jobs in a project.",
"type": "object"
},
"DiagnoseClusterResults": {
"properties": {
"outputUri": {
"type": "string",
"description": "Output-only. The Google Cloud Storage URI of the diagnostic output. The output report is a plain text file with a summary of collected diagnostics."
}
},
"id": "DiagnoseClusterResults",
"description": "The location of diagnostic output.",
"type": "object"
},
"GceConfiguration": {
"description": "Deprecated Common configuration settings for resources of Google Compute Engine cluster instances, applicable to all instances in the cluster.",
"type": "object",
"properties": {
"networkUri": {
"description": "Deprecated The Google Compute Engine network to be used for machine communications. Inbound SSH connections are necessary to complete cluster configuration. Example \"compute.googleapis.com/projects/project_id /zones/us-east1-a/default\".",
"type": "string"
},
"serviceAccountScopes": {
"description": "Deprecated The service account scopes included in Google Compute Engine instances. Must include devstorage.full_control to enable the Google Cloud Storage connector. Example \"auth.googleapis.com/compute\" and \"auth.googleapis.com/devstorage.full_control\".",
"type": "array",
"items": {
"type": "string"
}
},
"zoneUri": {
"type": "string",
"description": "Deprecated The zone where the Google Compute Engine cluster will be located. Example: \"compute.googleapis.com/projects/project_id /zones/us-east1-a\"."
},
"imageUri": {
"description": "Deprecated The Google Compute Engine image resource used for cluster instances. Example: \"compute.googleapis.com/projects/debian-cloud /global/images/backports-debian-7-wheezy-v20140904\".",
"type": "string"
},
"machineTypeUri": {
"description": "Deprecated The Google Compute Engine machine type used for cluster instances. Example: \"compute.googleapis.com/projects/project_id /zones/us-east1-a/machineTypes/n1-standard-2\".",
"type": "string"
}
},
"id": "GceConfiguration"
},
"SoftwareConfiguration": {
"description": "Specifies the selection and configuration of software inside the cluster.",
"type": "object",
"properties": {
"properties": {
"additionalProperties": {
"type": "string"
},
"description": "Optional The properties to set on daemon configuration files.Property keys are specified in \"prefix:property\" format, such as \"core:fs.defaultFS\". The following are supported prefixes and their mappings: core - core-site.xml hdfs - hdfs-site.xml mapred - mapred-site.xml yarn - yarn-site.xml hive - hive-site.xml pig - pig.properties spark - spark-defaults.conf",
"type": "object"
},
"imageVersion": {
"description": "Optional The version of software inside the cluster. It must match the regular expression 0-9+.0-9+. If unspecified it will default to latest version.",
"type": "string"
}
},
"id": "SoftwareConfiguration"
},
"PySparkJob": {
"description": "A Cloud Dataproc job for running PySpark applications on YARN.",
"type": "object",
"properties": {
"jarFileUris": {
"description": "Optional HCFS URIs of jar files to add to the CLASSPATHs of the Python driver and tasks.",
"type": "array",
"items": {
"type": "string"
}
},
"loggingConfiguration": {
"$ref": "LoggingConfiguration",
"description": "Optional The runtime log configuration for job execution."
},
"properties": {
"additionalProperties": {
"type": "string"
},
"description": "Optional A mapping of property names to values, used to configure PySpark. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf and classes in user code.",
"type": "object"
},
"args": {
"description": "Optional The arguments to pass to the driver. Do not include arguments, such as --conf, that can be set as job properties, since a collision may occur that causes an incorrect job submission.",
"type": "array",
"items": {
"type": "string"
}
},
"fileUris": {
"description": "Optional HCFS URIs of files to be copied to the working directory of Python drivers and distributed tasks. Useful for naively parallel tasks.",
"type": "array",
"items": {
"type": "string"
}
},
"pythonFileUris": {
"description": "Optional HCFS file URIs of Python files to pass to the PySpark framework. Supported file types: .py, .egg, and .zip.",
"type": "array",
"items": {
"type": "string"
}
},
"mainPythonFileUri": {
"description": "Required The Hadoop Compatible Filesystem (HCFS) URI of the main Python file to use as the driver. Must be a .py file.",
"type": "string"
},
"archiveUris": {
"description": "Optional HCFS URIs of archives to be extracted in the working directory of .jar, .tar, .tar.gz, .tgz, and .zip.",
"type": "array",
"items": {
"type": "string"
}
}
},
"id": "PySparkJob"
},
"ClusterMetrics": {
"description": "Contains cluster daemon metrics, such as HDFS and YARN stats.",
"type": "object",
"properties": {
"yarnMetrics": {
"additionalProperties": {
"format": "int64",
"type": "string"
},
"description": "The YARN metrics.",
"type": "object"
},
"hdfsMetrics": {
"additionalProperties": {
"format": "int64",
"type": "string"
},
"description": "The HDFS metrics.",
"type": "object"
}
},
"id": "ClusterMetrics"
},
"ClusterConfiguration": {
"description": "The cluster configuration.",
"type": "object",
"properties": {
"secondaryWorkerConfiguration": {
"$ref": "InstanceGroupConfiguration",
"description": "Optional The Google Compute Engine configuration settings for additional worker instances in a cluster."
},
"masterName": {
"description": "Deprecated The Master's hostname. Dataproc derives the name from cluster_name if not set by user (recommended practice is to let Dataproc derive the name). Derived master name example: hadoop-m.",
"type": "string"
},
"workers": {
"description": "Deprecated The list of worker node names. Dataproc derives the names from cluster_name and num_workers if not set by user (recommended practice is to let Dataproc derive the name). Derived worker node name example: hadoop-w-0.",
"type": "array",
"items": {
"type": "string"
}
},
"workerConfiguration": {
"description": "Optional The Google Compute Engine configuration settings for worker instances in a cluster.",
"$ref": "InstanceGroupConfiguration"
},
"initializationActions": {
"description": "Optional Commands to execute on each node after configuration is completed. By default, executables are run on master and all worker nodes. You can test a node's \u003ccode\u003erole\u003c/code\u003e metadata to run an executable on a master or worker node, as shown below:\nROLE=$(/usr/share/google/get_metadata_value attributes/role)\nif [[ \"${ROLE}\" == 'Master' ]]; then\n ... master specific actions ...\nelse\n ... worker specific actions ...\nfi\n",
"type": "array",
"items": {
"$ref": "NodeInitializationAction"
}
},
"gceClusterConfiguration": {
"$ref": "GceClusterConfiguration",
"description": "Optional The shared Google Compute Engine configuration settings for all instances in a cluster."
},
"softwareConfiguration": {
"$ref": "SoftwareConfiguration",
"description": "Optional The configuration settings for software inside the cluster."
},
"configurationBucket": {
"description": "Optional A Google Cloud Storage staging bucket used for sharing generated SSH keys and configuration. If you do not specify a staging bucket, Cloud Dataproc will determine an appropriate Cloud Storage location (US, ASIA, or EU) for your cluster's staging bucket according to the Google Compute Engine zone where your cluster is deployed, then it will create and manage this project-level, per-location bucket for you.",
"type": "string"
},
"numWorkers": {
"description": "Deprecated The number of worker nodes in the cluster.",
"format": "int32",
"type": "integer"
},
"masterDiskConfiguration": {
"description": "Deprecated The configuration settings of master node disk options.",
"$ref": "DiskConfiguration"
},
"gceConfiguration": {
"description": "Deprecated The Google Compute Engine configuration settings for cluster resources.",
"$ref": "GceConfiguration"
},
"workerDiskConfiguration": {
"description": "Deprecated The configuration settings of worker node disk options.",
"$ref": "DiskConfiguration"
},
"masterConfiguration": {
"$ref": "InstanceGroupConfiguration",
"description": "Optional The Google Compute Engine configuration settings for the master instance in a cluster."
}
},
"id": "ClusterConfiguration"
},
"LoggingConfiguration": {
"type": "object",
"properties": {
"driverLogLevels": {
"additionalProperties": {
"type": "string",
"enum": [
"LEVEL_UNSPECIFIED",
"ALL",
"TRACE",
"DEBUG",
"INFO",
"WARN",
"ERROR",
"FATAL",
"OFF"
]
},
"description": "The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: com.google = FATAL, root = INFO, org.apache = DEBUG",
"type": "object"
}
},
"id": "LoggingConfiguration",
"description": "The runtime logging configuration of the job."
},
"InstanceGroupConfiguration": {
"id": "InstanceGroupConfiguration",
"description": "The configuration settings for Google Compute Engine resources in an instance group, such as a master or worker group.",
"type": "object",
"properties": {
"machineTypeUri": {
"type": "string",
"description": "The Google Compute Engine machine type used for cluster instances. Example: \"compute.googleapis.com/projects/project_id /zones/us-east1-a/machineTypes/n1-standard-2\"."
},
"imageUri": {
"description": "Output-only The Google Compute Engine image resource used for cluster instances. Inferred from SoftwareConfiguration.image_version. Example: \"compute.googleapis.com/projects/debian-cloud /global/images/backports-debian-7-wheezy-v20140904\".",
"type": "string"
},
"isPreemptible": {
"description": "Specifies that this instance group contains Preemptible Instances.",
"type": "boolean"
},
"managedGroupConfiguration": {
"description": "Output-only The configuration for Google Compute Engine Instance Group Manager that manages this group. This is only used for preemptible instance groups.",
"$ref": "ManagedGroupConfiguration"
},
"instanceNames": {
"description": "The list of instance names. Dataproc derives the names from cluster_name, num_instances, and the instance group if not set by user (recommended practice is to let Dataproc derive the name).",
"type": "array",
"items": {
"type": "string"
}
},
"accelerators": {
"description": "Optional The Google Compute Engine accelerator configuration for these instances.",
"type": "array",
"items": {
"$ref": "AcceleratorConfiguration"
}
},
"numInstances": {
"description": "The number of VM instances in the instance group. For master instance groups, must be set to 1.",
"format": "int32",
"type": "integer"
},
"diskConfiguration": {
"$ref": "DiskConfiguration",
"description": "Disk option configuration settings."
}
}
},
"GceClusterConfiguration": {
"description": "Common configuration settings for resources of Google Compute Engine cluster instances, applicable to all instances in the cluster.",
"type": "object",
"properties": {
"metadata": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "The Google Compute Engine metadata entries to add to all instances."
},
"internalIpOnly": {
"description": "If true, all instances in the cluser will only have internal IP addresses. By default, clusters are not restricted to internal IP addresses, and will have ephemeral external IP addresses assigned to each instance. This restriction can only be enabled for subnetwork enabled networks, and all off-cluster dependencies must be configured to be accessible without external IP addresses.",
"type": "boolean"
},
"serviceAccountScopes": {
"description": "The service account scopes included in Google Compute Engine instances. Must include devstorage.full_control to enable the Google Cloud Storage connector. Example \"auth.googleapis.com/compute\" and \"auth.googleapis.com/devstorage.full_control\".",
"type": "array",
"items": {
"type": "string"
}
},
"tags": {
"description": "The Google Compute Engine tags to add to all instances.",
"type": "array",
"items": {
"type": "string"
}
},
"serviceAccount": {
"description": "Optional The service account of the instances. Defaults to the default Google Compute Engine service account. Custom service accounts need permissions equivalent to the folloing IAM roles:\nroles/logging.logWriter\nroles/storage.objectAdmin(see https://cloud.google.com/compute/docs/access/service-accounts#custom_service_accounts for more information). Example: [account_id]@[project_id].iam.gserviceaccount.com",
"type": "string"
},
"subnetworkUri": {
"description": "The Google Compute Engine subnetwork to be used for machine communications. Cannot be specified with network_uri. Example: compute.googleapis.com/projects/[project_id]/regions/us-east1/sub0.",
"type": "string"
},
"networkUri": {
"description": "The Google Compute Engine network to be used for machine communications. Cannot be specified with subnetwork_uri. If neither network_uri nor subnetwork_uri is specified, the \"default\" network of the project is used, if it exists. Cannot be a \"Custom Subnet Network\" (see https://cloud.google.com/compute/docs/subnetworks for more information). Example: compute.googleapis.com/projects/[project_id]/regions/global/default.",
"type": "string"
},
"zoneUri": {
"type": "string",
"description": "Required The zone where the Google Compute Engine cluster will be located. Example: \"compute.googleapis.com/projects/project_id /zones/us-east1-a\"."
}
},
"id": "GceClusterConfiguration"
},
"CancelOperationRequest": {
"description": "The request message for Operations.CancelOperation.",
"type": "object",
"properties": {},
"id": "CancelOperationRequest"
},
"DiagnoseClusterOutputLocation": {
"description": "The location where output from diagnostic command can be found.",
"type": "object",
"properties": {
"outputUri": {
"description": "Output-only The Google Cloud Storage URI of the diagnostic output. This will be a plain text file with summary of collected diagnostics.",
"type": "string"
}
},
"id": "DiagnoseClusterOutputLocation"
},
"Operation": {
"id": "Operation",
"description": "An asynchronous operation in a project that runs over a given cluster. Used to track the progress of a user request that is running asynchronously. Examples include creating a cluster, updating a cluster, and deleting a cluster.",
"type": "object",
"properties": {
"response": {
"description": "The operation response. If the called method returns no data on success, the response is google.protobuf.Empty. If the called method is Get,Create or Update, the response is the resource. For all other methods, the response type is a concatenation of the method name and \"Response\". For example, if the called method is TakeSnapshot(), the response type is TakeSnapshotResponse.",
"type": "object",
"additionalProperties": {
"description": "Properties of the object. Contains field @type with type URL.",
"type": "any"
}
},
"name": {
"description": "The name of the operation resource, in the format projects/project_id/operations/operation_id",
"type": "string"
},
"error": {
"$ref": "Status",
"description": "The error result of the operation in case of failure."
},
"metadata": {
"type": "object",
"additionalProperties": {
"description": "Properties of the object. Contains field @type with type URL.",
"type": "any"
},
"description": "Service-specific metadata associated with the operation."
},
"done": {
"description": "Indicates if the operation is done. If true, the operation is complete and the result is available. If false, the operation is still in progress.",
"type": "boolean"
}
}
}
},
"icons": {
"x16": "http://www.google.com/images/icons/product/search-16.gif",
"x32": "http://www.google.com/images/icons/product/search-32.gif"
},
"protocol": "rest",
"version": "v1alpha1",
"baseUrl": "https://dataproc.googleapis.com/",
"auth": {
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/cloud-platform": {
"description": "View and manage your data across Google Cloud Platform services"
}
}
}
},
"kind": "discovery#restDescription",
"description": "Manages Hadoop-based clusters and jobs on Google Cloud Platform.",
"servicePath": "",
"rootUrl": "https://dataproc.googleapis.com/",
"basePath": "",
"ownerDomain": "google.com",
"name": "dataproc",
"batchPath": "batch"
}
|