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
|
{
"kind": "discovery#restDescription",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/g7IZPkFg1ZxsjWWtfDGhyK_8jjA\"",
"discoveryVersion": "v1",
"id": "appengine:v1beta5",
"name": "appengine",
"version": "v1beta5",
"revision": "20161114",
"title": "Google App Engine Admin API",
"description": "Provisions and manages App Engine applications.",
"ownerDomain": "google.com",
"ownerName": "Google",
"icons": {
"x16": "http://www.google.com/images/icons/product/search-16.gif",
"x32": "http://www.google.com/images/icons/product/search-32.gif"
},
"documentationLink": "https://cloud.google.com/appengine/docs/admin-api/",
"protocol": "rest",
"baseUrl": "https://appengine.googleapis.com/",
"basePath": "",
"rootUrl": "https://appengine.googleapis.com/",
"servicePath": "",
"batchPath": "batch",
"parameters": {
"access_token": {
"type": "string",
"description": "OAuth access token.",
"location": "query"
},
"alt": {
"type": "string",
"description": "Data format for response.",
"default": "json",
"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"
},
"bearer_token": {
"type": "string",
"description": "OAuth bearer token.",
"location": "query"
},
"callback": {
"type": "string",
"description": "JSONP",
"location": "query"
},
"fields": {
"type": "string",
"description": "Selector specifying which fields to include in a partial response.",
"location": "query"
},
"key": {
"type": "string",
"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.",
"location": "query"
},
"oauth_token": {
"type": "string",
"description": "OAuth 2.0 token for the current user.",
"location": "query"
},
"pp": {
"type": "boolean",
"description": "Pretty-print response.",
"default": "true",
"location": "query"
},
"prettyPrint": {
"type": "boolean",
"description": "Returns response with indentations and line breaks.",
"default": "true",
"location": "query"
},
"quotaUser": {
"type": "string",
"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.",
"location": "query"
},
"upload_protocol": {
"type": "string",
"description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
"location": "query"
},
"uploadType": {
"type": "string",
"description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").",
"location": "query"
},
"$.xgafv": {
"type": "string",
"description": "V1 error format.",
"enumDescriptions": [
"v1 error format",
"v2 error format"
],
"location": "query"
}
},
"auth": {
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/appengine.admin": {
"description": "View and manage your applications deployed on Google App Engine"
},
"https://www.googleapis.com/auth/cloud-platform": {
"description": "View and manage your data across Google Cloud Platform services"
},
"https://www.googleapis.com/auth/cloud-platform.read-only": {
"description": "View your data across Google Cloud Platform services"
}
}
}
},
"schemas": {
"ListOperationsResponse": {
"id": "ListOperationsResponse",
"type": "object",
"description": "The response message for Operations.ListOperations.",
"properties": {
"operations": {
"type": "array",
"description": "A list of operations that matches the specified filter in the request.",
"items": {
"$ref": "Operation"
}
},
"nextPageToken": {
"type": "string",
"description": "The standard List next-page token."
}
}
},
"Operation": {
"id": "Operation",
"type": "object",
"description": "This resource represents a long-running operation that is the result of a network API call.",
"properties": {
"name": {
"type": "string",
"description": "The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should have the format of `operations/some/unique/name`."
},
"metadata": {
"type": "object",
"description": "Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.",
"additionalProperties": {
"type": "any",
"description": "Properties of the object. Contains field @type with type URL."
}
},
"done": {
"type": "boolean",
"description": "If the value is `false`, it means the operation is still in progress. If true, the operation is completed, and either `error` or `response` is available."
},
"error": {
"$ref": "Status",
"description": "The error result of the operation in case of failure or cancellation."
},
"response": {
"type": "object",
"description": "The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.",
"additionalProperties": {
"type": "any",
"description": "Properties of the object. Contains field @type with type URL."
}
}
}
},
"Status": {
"id": "Status",
"type": "object",
"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: - Simple to use and understand for most users - Flexible enough to meet unexpected needs # Overview The `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` which can be used for common error conditions. # Language mapping The `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 uses The 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: - Partial 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. - Workflow errors. A typical workflow has multiple steps. Each step may have a `Status` message for error reporting purpose. - Batch 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. - Asynchronous 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. - Logging. If some API errors are stored in logs, the message `Status` could be used directly after any stripping needed for security/privacy reasons.",
"properties": {
"code": {
"type": "integer",
"description": "The status code, which should be an enum value of google.rpc.Code.",
"format": "int32"
},
"message": {
"type": "string",
"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."
},
"details": {
"type": "array",
"description": "A list of messages that carry the error details. There will be a common set of message types for APIs to use.",
"items": {
"type": "object",
"additionalProperties": {
"type": "any",
"description": "Properties of the object. Contains field @type with type URL."
}
}
}
}
},
"Application": {
"id": "Application",
"type": "object",
"description": "An Application resource contains the top-level configuration of an App Engine application.",
"properties": {
"name": {
"type": "string",
"description": "Full path to the Application resource in the API. Example: `apps/myapp`. @OutputOnly"
},
"id": {
"type": "string",
"description": "Identifier of the Application resource. This identifier is equivalent to the project ID of the Google Cloud Platform project where you want to deploy your application. Example: `myapp`."
},
"dispatchRules": {
"type": "array",
"description": "HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent. @OutputOnly",
"items": {
"$ref": "UrlDispatchRule"
}
},
"authDomain": {
"type": "string",
"description": "Google Apps authentication domain that controls which users can access this application. Defaults to open access for any Google Account."
},
"location": {
"type": "string",
"description": "Location from which this application will be run. Application instances will run out of data centers in the chosen location, which is also where all of the application's end user content is stored. Defaults to `us-central`. Options are: `us-central` - Central US `europe-west` - Western Europe `us-east1` - Eastern US"
},
"codeBucket": {
"type": "string",
"description": "A Google Cloud Storage bucket that can be used for storing files associated with this application. This bucket is associated with the application and can be used by the gcloud deployment commands. @OutputOnly"
},
"defaultCookieExpiration": {
"type": "string",
"description": "Cookie expiration policy for this application. @OutputOnly"
},
"defaultHostname": {
"type": "string",
"description": "Hostname used to reach the application, as resolved by App Engine. @OutputOnly"
},
"defaultBucket": {
"type": "string",
"description": "A Google Cloud Storage bucket that can be used by the application to store content. @OutputOnly"
}
}
},
"UrlDispatchRule": {
"id": "UrlDispatchRule",
"type": "object",
"description": "Rules to match an HTTP request and dispatch that request to a service.",
"properties": {
"domain": {
"type": "string",
"description": "Domain name to match against. The wildcard \"`*`\" is supported if specified before a period: \"`*.`\". Defaults to matching all domains: \"`*`\"."
},
"path": {
"type": "string",
"description": "Pathname within the host. Must start with a \"`/`\". A single \"`*`\" can be included at the end of the path. The sum of the lengths of the domain and path may not exceed 100 characters."
},
"service": {
"type": "string",
"description": "Resource id of a service in this application that should serve the matched request. The service must already exist. Example: `default`."
}
}
},
"Version": {
"id": "Version",
"type": "object",
"description": "A Version resource is a specific set of source code and configuration files that are deployed into a service.",
"properties": {
"name": {
"type": "string",
"description": "Full path to the Version resource in the API. Example: `apps/myapp/services/default/versions/v1`. @OutputOnly"
},
"id": {
"type": "string",
"description": "Relative name of the version within the module. Example: `v1`. Version names can contain only lowercase letters, numbers, or hyphens. Reserved names: \"default\", \"latest\", and any name with the prefix \"ah-\"."
},
"automaticScaling": {
"$ref": "AutomaticScaling",
"description": "Automatic scaling is based on request rate, response latencies, and other application metrics."
},
"basicScaling": {
"$ref": "BasicScaling",
"description": "A service with basic scaling will create an instance when the application receives a request. The instance will be turned down when the app becomes idle. Basic scaling is ideal for work that is intermittent or driven by user activity."
},
"manualScaling": {
"$ref": "ManualScaling",
"description": "A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time."
},
"inboundServices": {
"type": "array",
"description": "Before an application can receive email or XMPP messages, the application must be configured to enable the service.",
"enumDescriptions": [
"Not specified.",
"Allows an application to receive mail.",
"Allows an application to receive email-bound notifications.",
"Allows an application to receive error stanzas.",
"Allows an application to receive instant messages.",
"Allows an application to receive user subscription POSTs.",
"Allows an application to receive a user's chat presence.",
"Registers an application for notifications when a client connects or disconnects from a channel.",
"Enables warmup requests."
],
"items": {
"type": "string",
"enum": [
"INBOUND_SERVICE_UNSPECIFIED",
"INBOUND_SERVICE_MAIL",
"INBOUND_SERVICE_MAIL_BOUNCE",
"INBOUND_SERVICE_XMPP_ERROR",
"INBOUND_SERVICE_XMPP_MESSAGE",
"INBOUND_SERVICE_XMPP_SUBSCRIBE",
"INBOUND_SERVICE_XMPP_PRESENCE",
"INBOUND_SERVICE_CHANNEL_PRESENCE",
"INBOUND_SERVICE_WARMUP"
]
}
},
"instanceClass": {
"type": "string",
"description": "Instance class that is used to run this version. Valid values are: * AutomaticScaling: `F1`, `F2`, `F4`, `F4_1G` * ManualScaling or BasicScaling: `B1`, `B2`, `B4`, `B8`, `B4_1G` Defaults to `F1` for AutomaticScaling and `B1` for ManualScaling or BasicScaling."
},
"network": {
"$ref": "Network",
"description": "Extra network settings. Only applicable for VM runtimes."
},
"resources": {
"$ref": "Resources",
"description": "Machine resources for this version. Only applicable for VM runtimes."
},
"runtime": {
"type": "string",
"description": "Desired runtime. Example: `python27`."
},
"threadsafe": {
"type": "boolean",
"description": "Whether multiple requests can be dispatched to this version at once."
},
"vm": {
"type": "boolean",
"description": "Whether to deploy this version in a container on a virtual machine."
},
"betaSettings": {
"type": "object",
"description": "Metadata settings that are supplied to this version to enable beta runtime features.",
"additionalProperties": {
"type": "string"
}
},
"env": {
"type": "string",
"description": "App Engine execution environment to use for this version. Defaults to `1`."
},
"servingStatus": {
"type": "string",
"description": "Current serving status of this version. Only the versions with a `SERVING` status create instances and can be billed. `SERVING_STATUS_UNSPECIFIED` is an invalid value. Defaults to `SERVING`.",
"enum": [
"SERVING_STATUS_UNSPECIFIED",
"SERVING",
"STOPPED"
]
},
"deployer": {
"type": "string",
"description": "Email address of the user who created this version. @OutputOnly"
},
"creationTime": {
"type": "string",
"description": "Time that this version was created. @OutputOnly"
},
"diskUsageBytes": {
"type": "string",
"description": "Total size of version files hosted on App Engine disk in bytes. @OutputOnly",
"format": "int64"
},
"handlers": {
"type": "array",
"description": "An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted. Only returned in `GET` requests if `view=FULL` is set.",
"items": {
"$ref": "UrlMap"
}
},
"errorHandlers": {
"type": "array",
"description": "Custom static error pages. Limited to 10KB per page. Only returned in `GET` requests if `view=FULL` is set.",
"items": {
"$ref": "ErrorHandler"
}
},
"libraries": {
"type": "array",
"description": "Configuration for third-party Python runtime libraries required by the application. Only returned in `GET` requests if `view=FULL` is set.",
"items": {
"$ref": "Library"
}
},
"apiConfig": {
"$ref": "ApiConfigHandler",
"description": "Serving configuration for [Google Cloud Endpoints](https://cloud.google.com/appengine/docs/python/endpoints/). Only returned in `GET` requests if `view=FULL` is set."
},
"envVariables": {
"type": "object",
"description": "Environment variables made available to the application. Only returned in `GET` requests if `view=FULL` is set.",
"additionalProperties": {
"type": "string"
}
},
"defaultExpiration": {
"type": "string",
"description": "Duration that static files should be cached by web proxies and browsers. Only applicable if the corresponding [StaticFilesHandler](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#staticfileshandler) does not specify its own expiration time. Only returned in `GET` requests if `view=FULL` is set."
},
"healthCheck": {
"$ref": "HealthCheck",
"description": "Configures health checking for VM instances. Unhealthy instances are be stopped and replaced with new instances. Only applicable for VM runtimes. Only returned in `GET` requests if `view=FULL` is set."
},
"nobuildFilesRegex": {
"type": "string",
"description": "Files that match this pattern will not be built into this version. Only applicable for Go runtimes. Only returned in `GET` requests if `view=FULL` is set."
},
"deployment": {
"$ref": "Deployment",
"description": "Code and application artifacts that make up this version. Only returned in `GET` requests if `view=FULL` is set."
}
}
},
"AutomaticScaling": {
"id": "AutomaticScaling",
"type": "object",
"description": "Automatic scaling is based on request rate, response latencies, and other application metrics.",
"properties": {
"coolDownPeriod": {
"type": "string",
"description": "Amount of time that the [Autoscaler](https://cloud.google.com/compute/docs/autoscaler/) should wait between changes to the number of virtual machines. Only applicable for VM runtimes."
},
"cpuUtilization": {
"$ref": "CpuUtilization",
"description": "Target scaling by CPU usage."
},
"maxConcurrentRequests": {
"type": "integer",
"description": "Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance. Defaults to a runtime-specific value.",
"format": "int32"
},
"maxIdleInstances": {
"type": "integer",
"description": "Maximum number of idle instances that should be maintained for this version.",
"format": "int32"
},
"maxTotalInstances": {
"type": "integer",
"description": "Maximum number of instances that should be started to handle requests.",
"format": "int32"
},
"maxPendingLatency": {
"type": "string",
"description": "Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it."
},
"minIdleInstances": {
"type": "integer",
"description": "Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a module.",
"format": "int32"
},
"minTotalInstances": {
"type": "integer",
"description": "Minimum number of instances that should be maintained for this version.",
"format": "int32"
},
"minPendingLatency": {
"type": "string",
"description": "Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it."
},
"requestUtilization": {
"$ref": "RequestUtilization",
"description": "Target scaling by request utilization."
},
"diskUtilization": {
"$ref": "DiskUtilization",
"description": "Target scaling by disk usage."
},
"networkUtilization": {
"$ref": "NetworkUtilization",
"description": "Target scaling by network usage."
}
}
},
"CpuUtilization": {
"id": "CpuUtilization",
"type": "object",
"description": "Target scaling by CPU usage.",
"properties": {
"aggregationWindowLength": {
"type": "string",
"description": "Period of time over which CPU utilization is calculated."
},
"targetUtilization": {
"type": "number",
"description": "Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.",
"format": "double"
}
}
},
"RequestUtilization": {
"id": "RequestUtilization",
"type": "object",
"description": "Target scaling by request utilization. Only applicable for VM runtimes.",
"properties": {
"targetRequestCountPerSec": {
"type": "integer",
"description": "Target requests per second.",
"format": "int32"
},
"targetConcurrentRequests": {
"type": "integer",
"description": "Target number of concurrent requests.",
"format": "int32"
}
}
},
"DiskUtilization": {
"id": "DiskUtilization",
"type": "object",
"description": "Target scaling by disk usage. Only applicable for VM runtimes.",
"properties": {
"targetWriteBytesPerSec": {
"type": "integer",
"description": "Target bytes written per second.",
"format": "int32"
},
"targetWriteOpsPerSec": {
"type": "integer",
"description": "Target ops written per second.",
"format": "int32"
},
"targetReadBytesPerSec": {
"type": "integer",
"description": "Target bytes read per second.",
"format": "int32"
},
"targetReadOpsPerSec": {
"type": "integer",
"description": "Target ops read per second.",
"format": "int32"
}
}
},
"NetworkUtilization": {
"id": "NetworkUtilization",
"type": "object",
"description": "Target scaling by network usage. Only applicable for VM runtimes.",
"properties": {
"targetSentBytesPerSec": {
"type": "integer",
"description": "Target bytes sent per second.",
"format": "int32"
},
"targetSentPacketsPerSec": {
"type": "integer",
"description": "Target packets sent per second.",
"format": "int32"
},
"targetReceivedBytesPerSec": {
"type": "integer",
"description": "Target bytes received per second.",
"format": "int32"
},
"targetReceivedPacketsPerSec": {
"type": "integer",
"description": "Target packets received per second.",
"format": "int32"
}
}
},
"BasicScaling": {
"id": "BasicScaling",
"type": "object",
"description": "A service with basic scaling will create an instance when the application receives a request. The instance will be turned down when the app becomes idle. Basic scaling is ideal for work that is intermittent or driven by user activity.",
"properties": {
"idleTimeout": {
"type": "string",
"description": "Duration of time after the last request that an instance must wait before the instance is shut down."
},
"maxInstances": {
"type": "integer",
"description": "Maximum number of instances to create for this version.",
"format": "int32"
}
}
},
"ManualScaling": {
"id": "ManualScaling",
"type": "object",
"description": "A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time.",
"properties": {
"instances": {
"type": "integer",
"description": "Number of instances to assign to the service at the start. This number can later be altered by using the [Modules API](https://cloud.google.com/appengine/docs/python/modules/functions) `set_num_instances()` function.",
"format": "int32"
}
}
},
"Network": {
"id": "Network",
"type": "object",
"description": "Extra network settings. Only applicable for VM runtimes.",
"properties": {
"forwardedPorts": {
"type": "array",
"description": "List of ports, or port pairs, to forward from the virtual machine to the application container.",
"items": {
"type": "string"
}
},
"instanceTag": {
"type": "string",
"description": "Tag to apply to the VM instance during creation."
},
"name": {
"type": "string",
"description": "Google Cloud Platform network where the virtual machines are created. Specify the short name, not the resource path. Defaults to `default`."
}
}
},
"Resources": {
"id": "Resources",
"type": "object",
"description": "Machine resources for a version.",
"properties": {
"cpu": {
"type": "number",
"description": "Number of CPU cores needed.",
"format": "double"
},
"diskGb": {
"type": "number",
"description": "Disk size (GB) needed.",
"format": "double"
},
"memoryGb": {
"type": "number",
"description": "Memory (GB) needed.",
"format": "double"
},
"volumes": {
"type": "array",
"description": "Volumes mounted within the app container.",
"items": {
"$ref": "Volume"
}
}
}
},
"Volume": {
"id": "Volume",
"type": "object",
"description": "Volumes mounted within the app container. Only applicable for VM runtimes.",
"properties": {
"name": {
"type": "string",
"description": "Unique name for the volume."
},
"volumeType": {
"type": "string",
"description": "Underlying volume type, e.g. 'tmpfs'."
},
"sizeGb": {
"type": "number",
"description": "Volume size in GB.",
"format": "double"
}
}
},
"UrlMap": {
"id": "UrlMap",
"type": "object",
"description": "URL pattern and description of how the URL should be handled. App Engine can handle URLs by executing application code, or by serving static files uploaded with the version, such as images, CSS, or JavaScript.",
"properties": {
"urlRegex": {
"type": "string",
"description": "A URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path."
},
"staticFiles": {
"$ref": "StaticFilesHandler",
"description": "Returns the contents of a file, such as an image, as the response."
},
"script": {
"$ref": "ScriptHandler",
"description": "Executes a script to handle the request that matches this URL pattern."
},
"apiEndpoint": {
"$ref": "ApiEndpointHandler",
"description": "Uses API Endpoints to handle requests."
},
"securityLevel": {
"type": "string",
"description": "Security (HTTPS) enforcement for this URL.",
"enum": [
"SECURE_UNSPECIFIED",
"SECURE_DEFAULT",
"SECURE_NEVER",
"SECURE_OPTIONAL",
"SECURE_ALWAYS"
]
},
"login": {
"type": "string",
"description": "Level of login required to access this resource.",
"enum": [
"LOGIN_UNSPECIFIED",
"LOGIN_OPTIONAL",
"LOGIN_ADMIN",
"LOGIN_REQUIRED"
]
},
"authFailAction": {
"type": "string",
"description": "Action to take when users access resources that require authentication. Defaults to `redirect`.",
"enum": [
"AUTH_FAIL_ACTION_UNSPECIFIED",
"AUTH_FAIL_ACTION_REDIRECT",
"AUTH_FAIL_ACTION_UNAUTHORIZED"
]
},
"redirectHttpResponseCode": {
"type": "string",
"description": "`30x` code to use when performing redirects for the `secure` field. Defaults to `302`.",
"enum": [
"REDIRECT_HTTP_RESPONSE_CODE_UNSPECIFIED",
"REDIRECT_HTTP_RESPONSE_CODE_301",
"REDIRECT_HTTP_RESPONSE_CODE_302",
"REDIRECT_HTTP_RESPONSE_CODE_303",
"REDIRECT_HTTP_RESPONSE_CODE_307"
]
}
}
},
"StaticFilesHandler": {
"id": "StaticFilesHandler",
"type": "object",
"description": "Files served directly to the user for a given URL, such as images, CSS stylesheets, or JavaScript source files. Static file handlers describe which files in the application directory are static files, and which URLs serve them.",
"properties": {
"path": {
"type": "string",
"description": "Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern."
},
"uploadPathRegex": {
"type": "string",
"description": "Regular expression that matches the file paths for all files that should be referenced by this handler."
},
"httpHeaders": {
"type": "object",
"description": "HTTP headers to use for all responses from these URLs.",
"additionalProperties": {
"type": "string"
}
},
"mimeType": {
"type": "string",
"description": "MIME type used to serve all files served by this handler. Defaults to file-specific MIME types, which are derived from each file's filename extension."
},
"expiration": {
"type": "string",
"description": "Time a static file served by this handler should be cached."
},
"requireMatchingFile": {
"type": "boolean",
"description": "Whether this handler should match the request if the file referenced by the handler does not exist."
},
"applicationReadable": {
"type": "boolean",
"description": "Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas."
}
}
},
"ScriptHandler": {
"id": "ScriptHandler",
"type": "object",
"description": "Executes a script to handle the request that matches the URL pattern.",
"properties": {
"scriptPath": {
"type": "string",
"description": "Path to the script from the application root directory."
}
}
},
"ApiEndpointHandler": {
"id": "ApiEndpointHandler",
"type": "object",
"description": "Uses Google Cloud Endpoints to handle requests.",
"properties": {
"scriptPath": {
"type": "string",
"description": "Path to the script from the application root directory."
}
}
},
"ErrorHandler": {
"id": "ErrorHandler",
"type": "object",
"description": "Custom static error page to be served when an error occurs.",
"properties": {
"errorCode": {
"type": "string",
"description": "Error condition this handler applies to.",
"enum": [
"ERROR_CODE_UNSPECIFIED",
"ERROR_CODE_DEFAULT",
"ERROR_CODE_OVER_QUOTA",
"ERROR_CODE_DOS_API_DENIAL",
"ERROR_CODE_TIMEOUT"
]
},
"staticFile": {
"type": "string",
"description": "Static file content to be served for this error."
},
"mimeType": {
"type": "string",
"description": "MIME type of file. Defaults to `text/html`."
}
}
},
"Library": {
"id": "Library",
"type": "object",
"description": "Third-party Python runtime library that is required by the application.",
"properties": {
"name": {
"type": "string",
"description": "Name of the library. Example: \"django\"."
},
"version": {
"type": "string",
"description": "Version of the library to select, or \"latest\"."
}
}
},
"ApiConfigHandler": {
"id": "ApiConfigHandler",
"type": "object",
"description": "[Google Cloud Endpoints](https://cloud.google.com/appengine/docs/python/endpoints/) configuration for API handlers.",
"properties": {
"authFailAction": {
"type": "string",
"description": "Action to take when users access resources that require authentication. Defaults to `redirect`.",
"enum": [
"AUTH_FAIL_ACTION_UNSPECIFIED",
"AUTH_FAIL_ACTION_REDIRECT",
"AUTH_FAIL_ACTION_UNAUTHORIZED"
]
},
"login": {
"type": "string",
"description": "Level of login required to access this resource. Defaults to `optional`.",
"enum": [
"LOGIN_UNSPECIFIED",
"LOGIN_OPTIONAL",
"LOGIN_ADMIN",
"LOGIN_REQUIRED"
]
},
"script": {
"type": "string",
"description": "Path to the script from the application root directory."
},
"securityLevel": {
"type": "string",
"description": "Security (HTTPS) enforcement for this URL.",
"enum": [
"SECURE_UNSPECIFIED",
"SECURE_DEFAULT",
"SECURE_NEVER",
"SECURE_OPTIONAL",
"SECURE_ALWAYS"
]
},
"url": {
"type": "string",
"description": "URL to serve the endpoint at."
}
}
},
"HealthCheck": {
"id": "HealthCheck",
"type": "object",
"description": "Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. Only applicable for instances in App Engine flexible environment.",
"properties": {
"disableHealthCheck": {
"type": "boolean",
"description": "Whether to explicitly disable health checks for this instance."
},
"host": {
"type": "string",
"description": "Host header to send when performing an HTTP health check. Example: \"myapp.appspot.com\""
},
"healthyThreshold": {
"type": "integer",
"description": "Number of consecutive successful health checks required before receiving traffic.",
"format": "uint32"
},
"unhealthyThreshold": {
"type": "integer",
"description": "Number of consecutive failed health checks required before removing traffic.",
"format": "uint32"
},
"restartThreshold": {
"type": "integer",
"description": "Number of consecutive failed health checks required before an instance is restarted.",
"format": "uint32"
},
"checkInterval": {
"type": "string",
"description": "Interval between health checks."
},
"timeout": {
"type": "string",
"description": "Time before the health check is considered failed."
}
}
},
"Deployment": {
"id": "Deployment",
"type": "object",
"description": "Code and application artifacts used to deploy a version to App Engine.",
"properties": {
"files": {
"type": "object",
"description": "Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.",
"additionalProperties": {
"$ref": "FileInfo"
}
},
"container": {
"$ref": "ContainerInfo",
"description": "A Docker image that App Engine uses the run the version. Only applicable for instances in App Engine flexible environment."
},
"sourceReferences": {
"type": "array",
"description": "Origin of the source code for this deployment. There can be more than one source reference per version if source code is distributed among multiple repositories.",
"items": {
"$ref": "SourceReference"
}
}
}
},
"FileInfo": {
"id": "FileInfo",
"type": "object",
"description": "Single source file that is part of the version to be deployed. Each source file that is deployed must be specified separately.",
"properties": {
"sourceUrl": {
"type": "string",
"description": "URL source to use to fetch this file. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com/\\/\\'."
},
"sha1Sum": {
"type": "string",
"description": "The SHA1 hash of the file, in hex."
},
"mimeType": {
"type": "string",
"description": "The MIME type of the file. Defaults to the value from Google Cloud Storage."
}
}
},
"ContainerInfo": {
"id": "ContainerInfo",
"type": "object",
"description": "Docker image that is used to start a VM container for the version you deploy.",
"properties": {
"image": {
"type": "string",
"description": "URI to the hosted container image in a Docker repository. The URI must be fully qualified and include a tag or digest. Examples: \"gcr.io/my-project/image:tag\" or \"gcr.io/my-project/image@digest\""
}
}
},
"SourceReference": {
"id": "SourceReference",
"type": "object",
"description": "Reference to a particular snapshot of the source tree used to build and deploy the application.",
"properties": {
"repository": {
"type": "string",
"description": "URI string identifying the repository. Example: \"https://source.developers.google.com/p/app-123/r/default\""
},
"revisionId": {
"type": "string",
"description": "The canonical, persistent identifier of the deployed revision. Aliases that include tags or branch names are not allowed. Example (git): \"2198322f89e0bb2e25021667c2ed489d1fd34e6b\""
}
}
},
"ListVersionsResponse": {
"id": "ListVersionsResponse",
"type": "object",
"description": "Response message for `Versions.ListVersions`.",
"properties": {
"versions": {
"type": "array",
"description": "The versions belonging to the requested service.",
"items": {
"$ref": "Version"
}
},
"nextPageToken": {
"type": "string",
"description": "Continuation token for fetching the next page of results."
}
}
},
"Service": {
"id": "Service",
"type": "object",
"description": "A Service resource is a logical component of an application that can share state and communicate in a secure fashion with other services. For example, an application that handles customer requests might include separate services to handle other tasks such as API requests from mobile devices or backend data analysis. Each service has a collection of versions that define a specific set of code used to implement the functionality of that service.",
"properties": {
"name": {
"type": "string",
"description": "Full path to the Service resource in the API. Example: `apps/myapp/services/default`. @OutputOnly"
},
"id": {
"type": "string",
"description": "Relative name of the service within the application. Example: `default`. @OutputOnly"
},
"split": {
"$ref": "TrafficSplit",
"description": "Mapping that defines fractional HTTP traffic diversion to different versions within the service."
}
}
},
"TrafficSplit": {
"id": "TrafficSplit",
"type": "object",
"description": "Traffic routing configuration for versions within a single service. Traffic splits define how traffic directed to the service is assigned to versions.",
"properties": {
"shardBy": {
"type": "string",
"description": "Mechanism used to determine which version a request is sent to. The traffic selection algorithm will be stable for either type until allocations are changed.",
"enum": [
"UNSPECIFIED",
"COOKIE",
"IP"
]
},
"allocations": {
"type": "object",
"description": "Mapping from version IDs within the service to fractional (0.000, 1] allocations of traffic for that version. Each version can be specified only once, but some versions in the service may not have any traffic allocation. Services that have traffic allocated cannot be deleted until either the service is deleted or their traffic allocation is removed. Allocations must sum to 1. Up to two decimal place precision is supported for IP-based splits and up to three decimal places is supported for cookie-based splits.",
"additionalProperties": {
"type": "number",
"format": "double"
}
}
}
},
"ListServicesResponse": {
"id": "ListServicesResponse",
"type": "object",
"description": "Response message for `Services.ListServices`.",
"properties": {
"services": {
"type": "array",
"description": "The services belonging to the requested application.",
"items": {
"$ref": "Service"
}
},
"nextPageToken": {
"type": "string",
"description": "Continuation token for fetching the next page of results."
}
}
},
"Instance": {
"id": "Instance",
"type": "object",
"description": "An Instance resource is the computing unit that App Engine uses to automatically scale an application.",
"properties": {
"name": {
"type": "string",
"description": "Full path to the Instance resource in the API. Example: `apps/myapp/services/default/versions/v1/instances/instance-1`. @OutputOnly"
},
"id": {
"type": "string",
"description": "Relative name of the instance within the version. Example: `instance-1`. @OutputOnly"
},
"appEngineRelease": {
"type": "string",
"description": "App Engine release this instance is running on. @OutputOnly"
},
"availability": {
"type": "string",
"description": "Availability of the instance. @OutputOnly",
"enum": [
"UNSPECIFIED",
"RESIDENT",
"DYNAMIC"
]
},
"vmName": {
"type": "string",
"description": "Name of the virtual machine where this instance lives. Only applicable for instances in App Engine flexible environment. @OutputOnly"
},
"vmZoneName": {
"type": "string",
"description": "Zone where the virtual machine is located. Only applicable for instances in App Engine flexible environment. @OutputOnly"
},
"vmId": {
"type": "string",
"description": "Virtual machine ID of this instance. Only applicable for instances in App Engine flexible environment. @OutputOnly"
},
"startTimestamp": {
"type": "string",
"description": "Time that this instance was started. @OutputOnly"
},
"requests": {
"type": "integer",
"description": "Number of requests since this instance was started. @OutputOnly",
"format": "int32"
},
"errors": {
"type": "integer",
"description": "Number of errors since this instance was started. @OutputOnly",
"format": "uint32"
},
"qps": {
"type": "number",
"description": "Average queries per second (QPS) over the last minute. @OutputOnly",
"format": "float"
},
"averageLatency": {
"type": "integer",
"description": "Average latency (ms) over the last minute. @OutputOnly",
"format": "int32"
},
"memoryUsage": {
"type": "string",
"description": "Total memory in use (bytes). @OutputOnly",
"format": "int64"
},
"vmStatus": {
"type": "string",
"description": "Status of the virtual machine where this instance lives. Only applicable for instances in App Engine flexible environment. @OutputOnly"
},
"vmUnlocked": {
"type": "boolean",
"description": "Whether this instance is in debug mode. Only applicable for instances in App Engine flexible environment. @OutputOnly"
},
"vmIp": {
"type": "string",
"description": "The IP address of this instance. Only applicable for instances in App Engine flexible environment. @OutputOnly"
}
}
},
"ListInstancesResponse": {
"id": "ListInstancesResponse",
"type": "object",
"description": "Response message for `Instances.ListInstances`.",
"properties": {
"instances": {
"type": "array",
"description": "The instances belonging to the requested version.",
"items": {
"$ref": "Instance"
}
},
"nextPageToken": {
"type": "string",
"description": "Continuation token for fetching the next page of results."
}
}
},
"DebugInstanceRequest": {
"id": "DebugInstanceRequest",
"type": "object",
"description": "Request message for `Instances.DebugInstance`.",
"properties": {
"sshKey": {
"type": "string",
"description": "Public SSH key to add to the instance. Example: `[USERNAME]:ssh-rsa KEY_VALUE` or `[USERNAME]:ssh-rsa [KEY_VALUE] google-ssh {\"userName\":\"[USERNAME]\",\"expireOn\":\"[EXPIRE_TIME]\"}` For more information, see [Adding and Removing SSH Keys](https://cloud.google.com/compute/docs/instances/adding-removing-ssh-keys)"
}
}
},
"ListLocationsResponse": {
"id": "ListLocationsResponse",
"type": "object",
"description": "The response message for LocationService.ListLocations.",
"properties": {
"locations": {
"type": "array",
"description": "A list of locations that matches the specified filter in the request.",
"items": {
"$ref": "Location"
}
},
"nextPageToken": {
"type": "string",
"description": "The standard List next-page token."
}
}
},
"Location": {
"id": "Location",
"type": "object",
"description": "A resource that represents Google Cloud Platform location.",
"properties": {
"name": {
"type": "string",
"description": "Resource name for the location, which may vary between implementations. For example: `\"projects/example-project/locations/us-east1\"`"
},
"locationId": {
"type": "string",
"description": "The canonical id for this location. For example: `\"us-east1\"`."
},
"labels": {
"type": "object",
"description": "Cross-service attributes for the location. For example {\"cloud.googleapis.com/region\": \"us-east1\"}",
"additionalProperties": {
"type": "string"
}
},
"metadata": {
"type": "object",
"description": "Service-specific metadata. For example the available capacity at the given location.",
"additionalProperties": {
"type": "any",
"description": "Properties of the object. Contains field @type with type URL."
}
}
}
},
"OperationMetadataExperimental": {
"id": "OperationMetadataExperimental",
"type": "object",
"description": "Metadata for the given google.longrunning.Operation.",
"properties": {
"method": {
"type": "string",
"description": "API method that initiated this operation. Example: `google.appengine.experimental.CustomDomains.CreateCustomDomain`. @OutputOnly"
},
"insertTime": {
"type": "string",
"description": "Time that this operation was created. @OutputOnly"
},
"endTime": {
"type": "string",
"description": "Time that this operation completed. @OutputOnly"
},
"user": {
"type": "string",
"description": "User who requested this operation. @OutputOnly"
},
"target": {
"type": "string",
"description": "Name of the resource that this operation is acting on. Example: `apps/myapp/customDomains/example.com`. @OutputOnly"
}
}
},
"OperationMetadata": {
"id": "OperationMetadata",
"type": "object",
"description": "Metadata for the given google.longrunning.Operation.",
"properties": {
"operationType": {
"type": "string",
"description": "Type of this operation. Deprecated, use method field instead. Example: \"create_version\". @OutputOnly"
},
"insertTime": {
"type": "string",
"description": "Timestamp that this operation was created. @OutputOnly"
},
"endTime": {
"type": "string",
"description": "Timestamp that this operation completed. @OutputOnly"
},
"user": {
"type": "string",
"description": "User who requested this operation. @OutputOnly"
},
"target": {
"type": "string",
"description": "Name of the resource that this operation is acting on. Example: `apps/myapp/modules/default`. @OutputOnly"
},
"method": {
"type": "string",
"description": "API method that initiated this operation. Example: `google.appengine.v1beta4.Version.CreateVersion`. @OutputOnly"
}
}
},
"OperationMetadataV1Beta5": {
"id": "OperationMetadataV1Beta5",
"type": "object",
"description": "Metadata for the given google.longrunning.Operation.",
"properties": {
"method": {
"type": "string",
"description": "API method name that initiated this operation. Example: `google.appengine.v1beta5.Version.CreateVersion`. @OutputOnly"
},
"insertTime": {
"type": "string",
"description": "Timestamp that this operation was created. @OutputOnly"
},
"endTime": {
"type": "string",
"description": "Timestamp that this operation completed. @OutputOnly"
},
"user": {
"type": "string",
"description": "User who requested this operation. @OutputOnly"
},
"target": {
"type": "string",
"description": "Name of the resource that this operation is acting on. Example: `apps/myapp/services/default`. @OutputOnly"
}
}
},
"OperationMetadataV1": {
"id": "OperationMetadataV1",
"type": "object",
"description": "Metadata for the given google.longrunning.Operation.",
"properties": {
"method": {
"type": "string",
"description": "API method that initiated this operation. Example: `google.appengine.v1.Versions.CreateVersion`. @OutputOnly"
},
"insertTime": {
"type": "string",
"description": "Time that this operation was created. @OutputOnly"
},
"endTime": {
"type": "string",
"description": "Time that this operation completed. @OutputOnly"
},
"user": {
"type": "string",
"description": "User who requested this operation. @OutputOnly"
},
"target": {
"type": "string",
"description": "Name of the resource that this operation is acting on. Example: `apps/myapp/services/default`. @OutputOnly"
}
}
},
"LocationMetadata": {
"id": "LocationMetadata",
"type": "object",
"description": "Metadata for the given google.cloud.location.Location.",
"properties": {
"standardEnvironmentAvailable": {
"type": "boolean",
"description": "App Engine Standard Environment is available in the given location. @OutputOnly"
},
"flexibleEnvironmentAvailable": {
"type": "boolean",
"description": "App Engine Flexible Environment is available in the given location. @OutputOnly"
}
}
}
},
"resources": {
"apps": {
"methods": {
"create": {
"id": "appengine.apps.create",
"path": "v1beta5/apps",
"httpMethod": "POST",
"description": "Creates an App Engine application for a Google Cloud Platform project. This requires a project that excludes an App Engine application. For details about creating a project without an application, see the [Google Cloud Resource Manager create project topic](https://cloud.google.com/resource-manager/docs/creating-project).",
"request": {
"$ref": "Application"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"get": {
"id": "appengine.apps.get",
"path": "v1beta5/apps/{appsId}",
"httpMethod": "GET",
"description": "Gets information about an application.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the application to get. Example: `apps/myapp`.",
"required": true,
"location": "path"
},
"ensureResourcesExist": {
"type": "boolean",
"description": "Certain resources associated with an application are created on-demand. Controls whether these resources should be created when performing the `GET` operation. If specified and any resources could not be created, the request will fail with an error code. Additionally, this parameter can cause the request to take longer to complete. Note: This parameter will be deprecated in a future version of the API.",
"location": "query"
}
},
"parameterOrder": [
"appsId"
],
"response": {
"$ref": "Application"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"patch": {
"id": "appengine.apps.patch",
"path": "v1beta5/apps/{appsId}",
"httpMethod": "PATCH",
"description": "Updates the specified Application resource. You can update the following fields: * [`auth_domain`](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta5/apps#Application.FIELDS.auth_domain) * [`default_cookie_expiration`](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta5/apps#Application.FIELDS.default_cookie_expiration)",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the Application resource to update. Example: `apps/myapp`.",
"required": true,
"location": "path"
},
"mask": {
"type": "string",
"description": "Standard field mask for the set of fields to be updated.",
"location": "query"
}
},
"parameterOrder": [
"appsId"
],
"request": {
"$ref": "Application"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
},
"resources": {
"operations": {
"methods": {
"list": {
"id": "appengine.apps.operations.list",
"path": "v1beta5/apps/{appsId}/operations",
"httpMethod": "GET",
"description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name` binding below allows API services to override the binding to use different resource name schemes, such as `users/*/operations`.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. The name of the operation collection.",
"required": true,
"location": "path"
},
"filter": {
"type": "string",
"description": "The standard list filter.",
"location": "query"
},
"pageSize": {
"type": "integer",
"description": "The standard list page size.",
"format": "int32",
"location": "query"
},
"pageToken": {
"type": "string",
"description": "The standard list page token.",
"location": "query"
}
},
"parameterOrder": [
"appsId"
],
"response": {
"$ref": "ListOperationsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"get": {
"id": "appengine.apps.operations.get",
"path": "v1beta5/apps/{appsId}/operations/{operationsId}",
"httpMethod": "GET",
"description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. The name of the operation resource.",
"required": true,
"location": "path"
},
"operationsId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
}
},
"parameterOrder": [
"appsId",
"operationsId"
],
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
}
}
},
"services": {
"methods": {
"delete": {
"id": "appengine.apps.services.delete",
"path": "v1beta5/apps/{appsId}/services/{servicesId}",
"httpMethod": "DELETE",
"description": "Deletes the specified service and all enclosed versions.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the resource requested. Example: `apps/myapp/services/default`.",
"required": true,
"location": "path"
},
"servicesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
}
},
"parameterOrder": [
"appsId",
"servicesId"
],
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"get": {
"id": "appengine.apps.services.get",
"path": "v1beta5/apps/{appsId}/services/{servicesId}",
"httpMethod": "GET",
"description": "Gets the current configuration of the specified service.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the resource requested. Example: `apps/myapp/services/default`.",
"required": true,
"location": "path"
},
"servicesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
}
},
"parameterOrder": [
"appsId",
"servicesId"
],
"response": {
"$ref": "Service"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"list": {
"id": "appengine.apps.services.list",
"path": "v1beta5/apps/{appsId}/services",
"httpMethod": "GET",
"description": "Lists all the services in the application.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the resource requested. Example: `apps/myapp`.",
"required": true,
"location": "path"
},
"pageSize": {
"type": "integer",
"description": "Maximum results to return per page.",
"format": "int32",
"location": "query"
},
"pageToken": {
"type": "string",
"description": "Continuation token for fetching the next page of results.",
"location": "query"
}
},
"parameterOrder": [
"appsId"
],
"response": {
"$ref": "ListServicesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"patch": {
"id": "appengine.apps.services.patch",
"path": "v1beta5/apps/{appsId}/services/{servicesId}",
"httpMethod": "PATCH",
"description": "Updates the configuration of the specified service.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the resource to update. Example: `apps/myapp/services/default`.",
"required": true,
"location": "path"
},
"servicesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"mask": {
"type": "string",
"description": "Standard field mask for the set of fields to be updated.",
"location": "query"
},
"migrateTraffic": {
"type": "boolean",
"description": "Set to `true` to gradually shift traffic from one version to another single version. By default, traffic is shifted immediately. For gradual traffic migration, the target version must be located within instances that are configured for both [warmup requests](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta5/apps.services.versions#inboundservicetype) and [automatic scaling](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta5/apps.services.versions#automaticscaling). You must specify the [`shardBy`](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta5/apps.services#shardby) field in the Service resource. Gradual traffic migration is not supported in the App Engine flexible environment. For examples, see [Migrating and Splitting Traffic](https://cloud.google.com/appengine/docs/admin-api/migrating-splitting-traffic).",
"location": "query"
}
},
"parameterOrder": [
"appsId",
"servicesId"
],
"request": {
"$ref": "Service"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
},
"resources": {
"versions": {
"methods": {
"create": {
"id": "appengine.apps.services.versions.create",
"path": "v1beta5/apps/{appsId}/services/{servicesId}/versions",
"httpMethod": "POST",
"description": "Deploys new code and resource files to a new version.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the resource to update. For example: \"apps/myapp/services/default\".",
"required": true,
"location": "path"
},
"servicesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
}
},
"parameterOrder": [
"appsId",
"servicesId"
],
"request": {
"$ref": "Version"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"delete": {
"id": "appengine.apps.services.versions.delete",
"path": "v1beta5/apps/{appsId}/services/{servicesId}/versions/{versionsId}",
"httpMethod": "DELETE",
"description": "Deletes an existing version.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the resource requested. Example: `apps/myapp/services/default/versions/v1`.",
"required": true,
"location": "path"
},
"servicesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"versionsId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
}
},
"parameterOrder": [
"appsId",
"servicesId",
"versionsId"
],
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"get": {
"id": "appengine.apps.services.versions.get",
"path": "v1beta5/apps/{appsId}/services/{servicesId}/versions/{versionsId}",
"httpMethod": "GET",
"description": "Gets the specified Version resource. By default, only a `BASIC_VIEW` will be returned. Specify the `FULL_VIEW` parameter to get the full resource.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the resource requested. Example: `apps/myapp/services/default/versions/v1`.",
"required": true,
"location": "path"
},
"servicesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"versionsId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"view": {
"type": "string",
"description": "Controls the set of fields returned in the `Get` response.",
"enum": [
"BASIC",
"FULL"
],
"location": "query"
}
},
"parameterOrder": [
"appsId",
"servicesId",
"versionsId"
],
"response": {
"$ref": "Version"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"list": {
"id": "appengine.apps.services.versions.list",
"path": "v1beta5/apps/{appsId}/services/{servicesId}/versions",
"httpMethod": "GET",
"description": "Lists the versions of a service.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the resource requested. Example: `apps/myapp/services/default`.",
"required": true,
"location": "path"
},
"servicesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"view": {
"type": "string",
"description": "Controls the set of fields returned in the `List` response.",
"enum": [
"BASIC",
"FULL"
],
"location": "query"
},
"pageSize": {
"type": "integer",
"description": "Maximum results to return per page.",
"format": "int32",
"location": "query"
},
"pageToken": {
"type": "string",
"description": "Continuation token for fetching the next page of results.",
"location": "query"
}
},
"parameterOrder": [
"appsId",
"servicesId"
],
"response": {
"$ref": "ListVersionsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"patch": {
"id": "appengine.apps.services.versions.patch",
"path": "v1beta5/apps/{appsId}/services/{servicesId}/versions/{versionsId}",
"httpMethod": "PATCH",
"description": "Updates the specified Version resource. You can specify the following fields depending on the App Engine environment and type of scaling that the version resource uses: * [`serving_status`](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta5/apps.services.versions#Version.FIELDS.serving_status): For Version resources that use basic scaling, manual scaling, or run in the App Engine flexible environment. * [`instance_class`](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta5/apps.services.versions#Version.FIELDS.instance_class): For Version resources that run in the App Engine standard environment. * [`automatic_scaling.min_idle_instances`](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta5/apps.services.versions#Version.FIELDS.automatic_scaling): For Version resources that use automatic scaling and run in the App Engine standard environment. * [`automatic_scaling.max_idle_instances`](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta5/apps.services.versions#Version.FIELDS.automatic_scaling): For Version resources that use automatic scaling and run in the App Engine standard environment.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the resource to update. Example: `apps/myapp/services/default/versions/1`.",
"required": true,
"location": "path"
},
"servicesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"versionsId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"mask": {
"type": "string",
"description": "Standard field mask for the set of fields to be updated.",
"location": "query"
}
},
"parameterOrder": [
"appsId",
"servicesId",
"versionsId"
],
"request": {
"$ref": "Version"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
},
"resources": {
"instances": {
"methods": {
"delete": {
"id": "appengine.apps.services.versions.instances.delete",
"path": "v1beta5/apps/{appsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}",
"httpMethod": "DELETE",
"description": "Stops a running instance.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the resource requested. For example: \"apps/myapp/services/default/versions/v1/instances/instance-1\".",
"required": true,
"location": "path"
},
"servicesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"versionsId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"instancesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
}
},
"parameterOrder": [
"appsId",
"servicesId",
"versionsId",
"instancesId"
],
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"get": {
"id": "appengine.apps.services.versions.instances.get",
"path": "v1beta5/apps/{appsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}",
"httpMethod": "GET",
"description": "Gets instance information.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the resource requested. Example: `apps/myapp/services/default/versions/v1/instances/instance-1`.",
"required": true,
"location": "path"
},
"servicesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"versionsId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"instancesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
}
},
"parameterOrder": [
"appsId",
"servicesId",
"versionsId",
"instancesId"
],
"response": {
"$ref": "Instance"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"list": {
"id": "appengine.apps.services.versions.instances.list",
"path": "v1beta5/apps/{appsId}/services/{servicesId}/versions/{versionsId}/instances",
"httpMethod": "GET",
"description": "Lists the instances of a version.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the resource requested. Example: `apps/myapp/services/default/versions/v1`.",
"required": true,
"location": "path"
},
"servicesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"versionsId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"pageSize": {
"type": "integer",
"description": "Maximum results to return per page.",
"format": "int32",
"location": "query"
},
"pageToken": {
"type": "string",
"description": "Continuation token for fetching the next page of results.",
"location": "query"
}
},
"parameterOrder": [
"appsId",
"servicesId",
"versionsId"
],
"response": {
"$ref": "ListInstancesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"debug": {
"id": "appengine.apps.services.versions.instances.debug",
"path": "v1beta5/apps/{appsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}:debug",
"httpMethod": "POST",
"description": "Enables debugging on a VM instance. This allows you to use the SSH command to connect to the virtual machine where the instance lives. While in \"debug mode\", the instance continues to serve live traffic. You should delete the instance when you are done debugging and then allow the system to take over and determine if another instance should be started. Only applicable for instances in App Engine flexible environment.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the resource requested. Example: `apps/myapp/services/default/versions/v1/instances/instance-1`.",
"required": true,
"location": "path"
},
"servicesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"versionsId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
},
"instancesId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
}
},
"parameterOrder": [
"appsId",
"servicesId",
"versionsId",
"instancesId"
],
"request": {
"$ref": "DebugInstanceRequest"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
}
}
}
}
},
"locations": {
"methods": {
"list": {
"id": "appengine.apps.locations.list",
"path": "v1beta5/apps/{appsId}/locations",
"httpMethod": "GET",
"description": "Lists information about the supported locations for this service.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. The resource that owns the locations collection, if applicable.",
"required": true,
"location": "path"
},
"filter": {
"type": "string",
"description": "The standard list filter.",
"location": "query"
},
"pageSize": {
"type": "integer",
"description": "The standard list page size.",
"format": "int32",
"location": "query"
},
"pageToken": {
"type": "string",
"description": "The standard list page token.",
"location": "query"
}
},
"parameterOrder": [
"appsId"
],
"response": {
"$ref": "ListLocationsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"get": {
"id": "appengine.apps.locations.get",
"path": "v1beta5/apps/{appsId}/locations/{locationsId}",
"httpMethod": "GET",
"description": "Get information about a location.",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Resource name for the location.",
"required": true,
"location": "path"
},
"locationsId": {
"type": "string",
"description": "Part of `name`. See documentation of `appsId`.",
"required": true,
"location": "path"
}
},
"parameterOrder": [
"appsId",
"locationsId"
],
"response": {
"$ref": "Location"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
}
}
}
}
}
}
}
|