api-list.json 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256
  1. {
  2. "kind": "discovery#directoryList",
  3. "discoveryVersion": "v1",
  4. "items": [
  5. {
  6. "kind": "discovery#directoryItem",
  7. "id": "adexchangebuyer:v1.2",
  8. "name": "adexchangebuyer",
  9. "version": "v1.2",
  10. "title": "Ad Exchange Buyer API",
  11. "description": "Accesses your bidding-account information, submits creatives for validation, finds available direct deals, and retrieves performance reports.",
  12. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/adexchangebuyer/v1.2/rest",
  13. "icons": {
  14. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  15. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  16. },
  17. "documentationLink": "https://developers.google.com/ad-exchange/buyer-rest",
  18. "preferred": false
  19. },
  20. {
  21. "kind": "discovery#directoryItem",
  22. "id": "adexchangebuyer:v1.3",
  23. "name": "adexchangebuyer",
  24. "version": "v1.3",
  25. "title": "Ad Exchange Buyer API",
  26. "description": "Accesses your bidding-account information, submits creatives for validation, finds available direct deals, and retrieves performance reports.",
  27. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/adexchangebuyer/v1.3/rest",
  28. "icons": {
  29. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  30. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  31. },
  32. "documentationLink": "https://developers.google.com/ad-exchange/buyer-rest",
  33. "preferred": false
  34. },
  35. {
  36. "kind": "discovery#directoryItem",
  37. "id": "adexchangebuyer:v1.4",
  38. "name": "adexchangebuyer",
  39. "version": "v1.4",
  40. "title": "Ad Exchange Buyer API",
  41. "description": "Accesses your bidding-account information, submits creatives for validation, finds available direct deals, and retrieves performance reports.",
  42. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/adexchangebuyer/v1.4/rest",
  43. "icons": {
  44. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  45. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  46. },
  47. "documentationLink": "https://developers.google.com/ad-exchange/buyer-rest",
  48. "preferred": true
  49. },
  50. {
  51. "kind": "discovery#directoryItem",
  52. "id": "adexchangeseller:v1",
  53. "name": "adexchangeseller",
  54. "version": "v1",
  55. "title": "Ad Exchange Seller API",
  56. "description": "Gives Ad Exchange seller users access to their inventory and the ability to generate reports",
  57. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/adexchangeseller/v1/rest",
  58. "icons": {
  59. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  60. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  61. },
  62. "documentationLink": "https://developers.google.com/ad-exchange/seller-rest/",
  63. "preferred": false
  64. },
  65. {
  66. "kind": "discovery#directoryItem",
  67. "id": "adexchangeseller:v1.1",
  68. "name": "adexchangeseller",
  69. "version": "v1.1",
  70. "title": "Ad Exchange Seller API",
  71. "description": "Gives Ad Exchange seller users access to their inventory and the ability to generate reports",
  72. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/adexchangeseller/v1.1/rest",
  73. "icons": {
  74. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  75. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  76. },
  77. "documentationLink": "https://developers.google.com/ad-exchange/seller-rest/",
  78. "preferred": false
  79. },
  80. {
  81. "kind": "discovery#directoryItem",
  82. "id": "adexchangeseller:v2.0",
  83. "name": "adexchangeseller",
  84. "version": "v2.0",
  85. "title": "Ad Exchange Seller API",
  86. "description": "Gives Ad Exchange seller users access to their inventory and the ability to generate reports",
  87. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/adexchangeseller/v2.0/rest",
  88. "icons": {
  89. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  90. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  91. },
  92. "documentationLink": "https://developers.google.com/ad-exchange/seller-rest/",
  93. "preferred": true
  94. },
  95. {
  96. "kind": "discovery#directoryItem",
  97. "id": "admin:datatransfer_v1",
  98. "name": "admin",
  99. "version": "datatransfer_v1",
  100. "title": "Admin Data Transfer API",
  101. "description": "Admin Data Transfer API lets you transfer user data from one user to another.",
  102. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/admin/datatransfer_v1/rest",
  103. "icons": {
  104. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  105. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  106. },
  107. "documentationLink": "https://developers.google.com/admin-sdk/data-transfer/",
  108. "preferred": false
  109. },
  110. {
  111. "kind": "discovery#directoryItem",
  112. "id": "admin:directory_v1",
  113. "name": "admin",
  114. "version": "directory_v1",
  115. "title": "Admin Directory API",
  116. "description": "The Admin SDK Directory API lets you view and manage enterprise resources such as users and groups, administrative notifications, security features, and more.",
  117. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/admin/directory_v1/rest",
  118. "icons": {
  119. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  120. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  121. },
  122. "documentationLink": "https://developers.google.com/admin-sdk/directory/",
  123. "preferred": false
  124. },
  125. {
  126. "kind": "discovery#directoryItem",
  127. "id": "admin:reports_v1",
  128. "name": "admin",
  129. "version": "reports_v1",
  130. "title": "Admin Reports API",
  131. "description": "Allows the administrators of Google Apps customers to fetch reports about the usage, collaboration, security and risk for their users.",
  132. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/admin/reports_v1/rest",
  133. "icons": {
  134. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  135. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  136. },
  137. "documentationLink": "https://developers.google.com/admin-sdk/reports/",
  138. "preferred": true
  139. },
  140. {
  141. "kind": "discovery#directoryItem",
  142. "id": "adsense:v1.2",
  143. "name": "adsense",
  144. "version": "v1.2",
  145. "title": "AdSense Management API",
  146. "description": "Gives AdSense publishers access to their inventory and the ability to generate reports",
  147. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/adsense/v1.2/rest",
  148. "icons": {
  149. "x16": "https://www.google.com/images/icons/product/adsense-16.png",
  150. "x32": "https://www.google.com/images/icons/product/adsense-32.png"
  151. },
  152. "documentationLink": "https://developers.google.com/adsense/management/",
  153. "preferred": false
  154. },
  155. {
  156. "kind": "discovery#directoryItem",
  157. "id": "adsense:v1.3",
  158. "name": "adsense",
  159. "version": "v1.3",
  160. "title": "AdSense Management API",
  161. "description": "Gives AdSense publishers access to their inventory and the ability to generate reports",
  162. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/adsense/v1.3/rest",
  163. "icons": {
  164. "x16": "https://www.google.com/images/icons/product/adsense-16.png",
  165. "x32": "https://www.google.com/images/icons/product/adsense-32.png"
  166. },
  167. "documentationLink": "https://developers.google.com/adsense/management/",
  168. "preferred": false
  169. },
  170. {
  171. "kind": "discovery#directoryItem",
  172. "id": "adsense:v1.4",
  173. "name": "adsense",
  174. "version": "v1.4",
  175. "title": "AdSense Management API",
  176. "description": "Gives AdSense publishers access to their inventory and the ability to generate reports",
  177. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/adsense/v1.4/rest",
  178. "icons": {
  179. "x16": "https://www.google.com/images/icons/product/adsense-16.png",
  180. "x32": "https://www.google.com/images/icons/product/adsense-32.png"
  181. },
  182. "documentationLink": "https://developers.google.com/adsense/management/",
  183. "preferred": true
  184. },
  185. {
  186. "kind": "discovery#directoryItem",
  187. "id": "adsensehost:v4.1",
  188. "name": "adsensehost",
  189. "version": "v4.1",
  190. "title": "AdSense Host API",
  191. "description": "Gives AdSense Hosts access to report generation, ad code generation, and publisher management capabilities.",
  192. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/adsensehost/v4.1/rest",
  193. "icons": {
  194. "x16": "https://www.google.com/images/icons/product/adsense-16.png",
  195. "x32": "https://www.google.com/images/icons/product/adsense-32.png"
  196. },
  197. "documentationLink": "https://developers.google.com/adsense/host/",
  198. "labels": [
  199. "limited_availability"
  200. ],
  201. "preferred": true
  202. },
  203. {
  204. "kind": "discovery#directoryItem",
  205. "id": "analytics:v2.4",
  206. "name": "analytics",
  207. "version": "v2.4",
  208. "title": "Google Analytics API",
  209. "description": "View and manage your Google Analytics data",
  210. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/analytics/v2.4/rest",
  211. "icons": {
  212. "x16": "https://www.google.com/images/icons/product/analytics-16.png",
  213. "x32": "https://www.google.com/images/icons/product/analytics-32.png"
  214. },
  215. "documentationLink": "https://developers.google.com/analytics/",
  216. "preferred": false
  217. },
  218. {
  219. "kind": "discovery#directoryItem",
  220. "id": "analytics:v3",
  221. "name": "analytics",
  222. "version": "v3",
  223. "title": "Google Analytics API",
  224. "description": "View and manage your Google Analytics data",
  225. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest",
  226. "icons": {
  227. "x16": "https://www.google.com/images/icons/product/analytics-16.png",
  228. "x32": "https://www.google.com/images/icons/product/analytics-32.png"
  229. },
  230. "documentationLink": "https://developers.google.com/analytics/",
  231. "preferred": true
  232. },
  233. {
  234. "kind": "discovery#directoryItem",
  235. "id": "androidenterprise:v1",
  236. "name": "androidenterprise",
  237. "version": "v1",
  238. "title": "Google Play EMM API",
  239. "description": "Allows MDMs/EMMs and enterprises to manage the deployment of apps to Android for Work users.",
  240. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/androidenterprise/v1/rest",
  241. "icons": {
  242. "x16": "https://www.google.com/images/icons/product/android-16.png",
  243. "x32": "https://www.google.com/images/icons/product/android-32.png"
  244. },
  245. "documentationLink": "https://developers.google.com/android/work/play/emm-api",
  246. "preferred": true
  247. },
  248. {
  249. "kind": "discovery#directoryItem",
  250. "id": "androidpublisher:v1",
  251. "name": "androidpublisher",
  252. "version": "v1",
  253. "title": "Google Play Developer API",
  254. "description": "Lets Android application developers access their Google Play accounts.",
  255. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/androidpublisher/v1/rest",
  256. "icons": {
  257. "x16": "https://www.google.com/images/icons/product/android-16.png",
  258. "x32": "https://www.google.com/images/icons/product/android-32.png"
  259. },
  260. "documentationLink": "https://developers.google.com/android-publisher",
  261. "preferred": false
  262. },
  263. {
  264. "kind": "discovery#directoryItem",
  265. "id": "androidpublisher:v1.1",
  266. "name": "androidpublisher",
  267. "version": "v1.1",
  268. "title": "Google Play Developer API",
  269. "description": "Lets Android application developers access their Google Play accounts.",
  270. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/androidpublisher/v1.1/rest",
  271. "icons": {
  272. "x16": "https://www.google.com/images/icons/product/android-16.png",
  273. "x32": "https://www.google.com/images/icons/product/android-32.png"
  274. },
  275. "documentationLink": "https://developers.google.com/android-publisher",
  276. "preferred": false
  277. },
  278. {
  279. "kind": "discovery#directoryItem",
  280. "id": "androidpublisher:v2",
  281. "name": "androidpublisher",
  282. "version": "v2",
  283. "title": "Google Play Developer API",
  284. "description": "Lets Android application developers access their Google Play accounts.",
  285. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/androidpublisher/v2/rest",
  286. "icons": {
  287. "x16": "https://www.google.com/images/icons/product/android-16.png",
  288. "x32": "https://www.google.com/images/icons/product/android-32.png"
  289. },
  290. "documentationLink": "https://developers.google.com/android-publisher",
  291. "preferred": true
  292. },
  293. {
  294. "kind": "discovery#directoryItem",
  295. "id": "appsactivity:v1",
  296. "name": "appsactivity",
  297. "version": "v1",
  298. "title": "Google Apps Activity API",
  299. "description": "Provides a historical view of activity.",
  300. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/appsactivity/v1/rest",
  301. "icons": {
  302. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  303. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  304. },
  305. "documentationLink": "https://developers.google.com/google-apps/activity/",
  306. "preferred": true
  307. },
  308. {
  309. "kind": "discovery#directoryItem",
  310. "id": "appstate:v1",
  311. "name": "appstate",
  312. "version": "v1",
  313. "title": "Google App State API",
  314. "description": "The Google App State API.",
  315. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/appstate/v1/rest",
  316. "icons": {
  317. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  318. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  319. },
  320. "documentationLink": "https://developers.google.com/games/services/web/api/states",
  321. "preferred": true
  322. },
  323. {
  324. "kind": "discovery#directoryItem",
  325. "id": "autoscaler:v1beta2",
  326. "name": "autoscaler",
  327. "version": "v1beta2",
  328. "title": "Google Compute Engine Autoscaler API",
  329. "description": "The Google Compute Engine Autoscaler API provides autoscaling for groups of Cloud VMs.",
  330. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/autoscaler/v1beta2/rest",
  331. "icons": {
  332. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  333. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  334. },
  335. "documentationLink": "http://developers.google.com/compute/docs/autoscaler",
  336. "labels": [
  337. "limited_availability"
  338. ],
  339. "preferred": true
  340. },
  341. {
  342. "kind": "discovery#directoryItem",
  343. "id": "bigquery:v2",
  344. "name": "bigquery",
  345. "version": "v2",
  346. "title": "BigQuery API",
  347. "description": "A data platform for customers to create, manage, share and query data.",
  348. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/bigquery/v2/rest",
  349. "icons": {
  350. "x16": "https://www.google.com/images/icons/product/search-16.gif",
  351. "x32": "https://www.google.com/images/icons/product/search-32.gif"
  352. },
  353. "documentationLink": "https://cloud.google.com/bigquery/",
  354. "preferred": true
  355. },
  356. {
  357. "kind": "discovery#directoryItem",
  358. "id": "blogger:v2",
  359. "name": "blogger",
  360. "version": "v2",
  361. "title": "Blogger API",
  362. "description": "API for access to the data within Blogger.",
  363. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/blogger/v2/rest",
  364. "icons": {
  365. "x16": "https://www.google.com/images/icons/product/blogger-16.png",
  366. "x32": "https://www.google.com/images/icons/product/blogger-32.png"
  367. },
  368. "documentationLink": "https://developers.google.com/blogger/docs/2.0/json/getting_started",
  369. "labels": [
  370. "limited_availability"
  371. ],
  372. "preferred": false
  373. },
  374. {
  375. "kind": "discovery#directoryItem",
  376. "id": "blogger:v3",
  377. "name": "blogger",
  378. "version": "v3",
  379. "title": "Blogger API",
  380. "description": "API for access to the data within Blogger.",
  381. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/blogger/v3/rest",
  382. "icons": {
  383. "x16": "https://www.google.com/images/icons/product/blogger-16.png",
  384. "x32": "https://www.google.com/images/icons/product/blogger-32.png"
  385. },
  386. "documentationLink": "https://developers.google.com/blogger/docs/3.0/getting_started",
  387. "labels": [
  388. "limited_availability"
  389. ],
  390. "preferred": true
  391. },
  392. {
  393. "kind": "discovery#directoryItem",
  394. "id": "books:v1",
  395. "name": "books",
  396. "version": "v1",
  397. "title": "Books API",
  398. "description": "Lets you search for books and manage your Google Books library.",
  399. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/books/v1/rest",
  400. "icons": {
  401. "x16": "https://www.google.com/images/icons/product/ebooks-16.png",
  402. "x32": "https://www.google.com/images/icons/product/ebooks-32.png"
  403. },
  404. "documentationLink": "https://developers.google.com/books/docs/v1/getting_started",
  405. "preferred": true
  406. },
  407. {
  408. "kind": "discovery#directoryItem",
  409. "id": "calendar:v3",
  410. "name": "calendar",
  411. "version": "v3",
  412. "title": "Calendar API",
  413. "description": "Lets you manipulate events and other calendar data.",
  414. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/calendar/v3/rest",
  415. "icons": {
  416. "x16": "http://www.google.com/images/icons/product/calendar-16.png",
  417. "x32": "http://www.google.com/images/icons/product/calendar-32.png"
  418. },
  419. "documentationLink": "https://developers.google.com/google-apps/calendar/firstapp",
  420. "preferred": true
  421. },
  422. {
  423. "kind": "discovery#directoryItem",
  424. "id": "civicinfo:v2",
  425. "name": "civicinfo",
  426. "version": "v2",
  427. "title": "Google Civic Information API",
  428. "description": "An API for accessing civic information.",
  429. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/civicinfo/v2/rest",
  430. "icons": {
  431. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  432. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  433. },
  434. "documentationLink": "https://developers.google.com/civic-information",
  435. "preferred": true
  436. },
  437. {
  438. "kind": "discovery#directoryItem",
  439. "id": "cloudbuild:v1",
  440. "name": "cloudbuild",
  441. "version": "v1",
  442. "title": "Google Cloud Container Builder API",
  443. "description": "The Google Cloud Container Builder API lets you build container images in the cloud.",
  444. "discoveryRestUrl": "https://cloudbuild.googleapis.com/$discovery/rest",
  445. "icons": {
  446. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  447. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  448. },
  449. "documentationLink": "",
  450. "preferred": true
  451. },
  452. {
  453. "kind": "discovery#directoryItem",
  454. "id": "cloudlatencytest:v2",
  455. "name": "cloudlatencytest",
  456. "version": "v2",
  457. "title": "Google Cloud Network Performance Monitoring API",
  458. "description": "A Test API to report latency data.",
  459. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/cloudlatencytest/v2/rest",
  460. "icons": {
  461. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  462. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  463. },
  464. "documentationLink": "",
  465. "preferred": true
  466. },
  467. {
  468. "kind": "discovery#directoryItem",
  469. "id": "cloudmonitoring:v2beta2",
  470. "name": "cloudmonitoring",
  471. "version": "v2beta2",
  472. "title": "Cloud Monitoring API",
  473. "description": "API for accessing Google Cloud and API monitoring data.",
  474. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/cloudmonitoring/v2beta2/rest",
  475. "icons": {
  476. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  477. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  478. },
  479. "documentationLink": "https://cloud.google.com/monitoring/v2beta2/",
  480. "preferred": true
  481. },
  482. {
  483. "kind": "discovery#directoryItem",
  484. "id": "clouduseraccounts:alpha",
  485. "name": "clouduseraccounts",
  486. "version": "alpha",
  487. "title": "Cloud User Accounts API",
  488. "description": "API for the Google Cloud User Accounts service.",
  489. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/clouduseraccounts/alpha/rest",
  490. "icons": {
  491. "x16": "https://www.google.com/images/icons/product/compute_engine-16.png",
  492. "x32": "https://www.google.com/images/icons/product/compute_engine-32.png"
  493. },
  494. "documentationLink": "https://cloud.google.com/compute/docs/access/user-accounts/api/latest/",
  495. "preferred": false
  496. },
  497. {
  498. "kind": "discovery#directoryItem",
  499. "id": "clouduseraccounts:beta",
  500. "name": "clouduseraccounts",
  501. "version": "beta",
  502. "title": "Cloud User Accounts API",
  503. "description": "API for the Google Cloud User Accounts service.",
  504. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/clouduseraccounts/beta/rest",
  505. "icons": {
  506. "x16": "https://www.google.com/images/icons/product/compute_engine-16.png",
  507. "x32": "https://www.google.com/images/icons/product/compute_engine-32.png"
  508. },
  509. "documentationLink": "https://cloud.google.com/compute/docs/access/user-accounts/api/latest/",
  510. "preferred": false
  511. },
  512. {
  513. "kind": "discovery#directoryItem",
  514. "id": "clouduseraccounts:vm_alpha",
  515. "name": "clouduseraccounts",
  516. "version": "vm_alpha",
  517. "title": "Cloud User Accounts API",
  518. "description": "API for the Google Cloud User Accounts service.",
  519. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/clouduseraccounts/vm_alpha/rest",
  520. "icons": {
  521. "x16": "https://www.google.com/images/icons/product/compute_engine-16.png",
  522. "x32": "https://www.google.com/images/icons/product/compute_engine-32.png"
  523. },
  524. "documentationLink": "https://cloud.google.com/compute/docs/access/user-accounts/api/latest/",
  525. "preferred": true
  526. },
  527. {
  528. "kind": "discovery#directoryItem",
  529. "id": "clouduseraccounts:vm_beta",
  530. "name": "clouduseraccounts",
  531. "version": "vm_beta",
  532. "title": "Cloud User Accounts API",
  533. "description": "API for the Google Cloud User Accounts service.",
  534. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/clouduseraccounts/vm_beta/rest",
  535. "icons": {
  536. "x16": "https://www.google.com/images/icons/product/compute_engine-16.png",
  537. "x32": "https://www.google.com/images/icons/product/compute_engine-32.png"
  538. },
  539. "documentationLink": "https://cloud.google.com/compute/docs/access/user-accounts/api/latest/",
  540. "preferred": false
  541. },
  542. {
  543. "kind": "discovery#directoryItem",
  544. "id": "compute:beta",
  545. "name": "compute",
  546. "version": "beta",
  547. "title": "Compute Engine API",
  548. "description": "API for the Google Compute Engine service.",
  549. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/compute/beta/rest",
  550. "icons": {
  551. "x16": "https://www.google.com/images/icons/product/compute_engine-16.png",
  552. "x32": "https://www.google.com/images/icons/product/compute_engine-32.png"
  553. },
  554. "documentationLink": "https://developers.google.com/compute/docs/reference/latest/",
  555. "preferred": false
  556. },
  557. {
  558. "kind": "discovery#directoryItem",
  559. "id": "compute:v1",
  560. "name": "compute",
  561. "version": "v1",
  562. "title": "Compute Engine API",
  563. "description": "API for the Google Compute Engine service.",
  564. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/compute/v1/rest",
  565. "icons": {
  566. "x16": "https://www.google.com/images/icons/product/compute_engine-16.png",
  567. "x32": "https://www.google.com/images/icons/product/compute_engine-32.png"
  568. },
  569. "documentationLink": "https://developers.google.com/compute/docs/reference/latest/",
  570. "preferred": true
  571. },
  572. {
  573. "kind": "discovery#directoryItem",
  574. "id": "content:v2sandbox",
  575. "name": "content",
  576. "version": "v2sandbox",
  577. "title": "Content API for Shopping",
  578. "description": "Manage product items, inventory, and Merchant Center accounts for Google Shopping.",
  579. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/content/v2sandbox/rest",
  580. "icons": {
  581. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  582. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  583. },
  584. "documentationLink": "https://developers.google.com/shopping-content",
  585. "preferred": false
  586. },
  587. {
  588. "kind": "discovery#directoryItem",
  589. "id": "content:v2",
  590. "name": "content",
  591. "version": "v2",
  592. "title": "Content API for Shopping",
  593. "description": "Manage product items, inventory, and Merchant Center accounts for Google Shopping.",
  594. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/content/v2/rest",
  595. "icons": {
  596. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  597. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  598. },
  599. "documentationLink": "https://developers.google.com/shopping-content",
  600. "preferred": true
  601. },
  602. {
  603. "kind": "discovery#directoryItem",
  604. "id": "coordinate:v1",
  605. "name": "coordinate",
  606. "version": "v1",
  607. "title": "Google Maps Coordinate API",
  608. "description": "Lets you view and manage jobs in a Coordinate team.",
  609. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/coordinate/v1/rest",
  610. "icons": {
  611. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  612. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  613. },
  614. "documentationLink": "https://developers.google.com/coordinate/",
  615. "preferred": true
  616. },
  617. {
  618. "kind": "discovery#directoryItem",
  619. "id": "customsearch:v1",
  620. "name": "customsearch",
  621. "version": "v1",
  622. "title": "CustomSearch API",
  623. "description": "Lets you search over a website or collection of websites",
  624. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/customsearch/v1/rest",
  625. "icons": {
  626. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  627. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  628. },
  629. "documentationLink": "https://developers.google.com/custom-search/v1/using_rest",
  630. "preferred": true
  631. },
  632. {
  633. "kind": "discovery#directoryItem",
  634. "id": "datastore:v1beta1",
  635. "name": "datastore",
  636. "version": "v1beta1",
  637. "title": "Google Cloud Datastore API",
  638. "description": "API for accessing Google Cloud Datastore.",
  639. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/datastore/v1beta1/rest",
  640. "icons": {
  641. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  642. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  643. },
  644. "documentationLink": "https://developers.google.com/datastore/",
  645. "preferred": false
  646. },
  647. {
  648. "kind": "discovery#directoryItem",
  649. "id": "datastore:v1beta2",
  650. "name": "datastore",
  651. "version": "v1beta2",
  652. "title": "Google Cloud Datastore API",
  653. "description": "API for accessing Google Cloud Datastore.",
  654. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/datastore/v1beta2/rest",
  655. "icons": {
  656. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  657. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  658. },
  659. "documentationLink": "https://developers.google.com/datastore/",
  660. "preferred": true
  661. },
  662. {
  663. "kind": "discovery#directoryItem",
  664. "id": "deploymentmanager:v2",
  665. "name": "deploymentmanager",
  666. "version": "v2",
  667. "title": "Google Cloud Deployment Manager API",
  668. "description": "The Deployment Manager API allows users to declaratively configure, deploy and run complex solutions on the Google Cloud Platform.",
  669. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/deploymentmanager/v2/rest",
  670. "icons": {
  671. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  672. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  673. },
  674. "documentationLink": "https://cloud.google.com/deployment-manager/",
  675. "preferred": true
  676. },
  677. {
  678. "kind": "discovery#directoryItem",
  679. "id": "deploymentmanager:v2beta1",
  680. "name": "deploymentmanager",
  681. "version": "v2beta1",
  682. "title": "Google Cloud Deployment Manager API",
  683. "description": "The Deployment Manager API allows users to declaratively configure, deploy and run complex solutions on the Google Cloud Platform.",
  684. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/deploymentmanager/v2beta1/rest",
  685. "icons": {
  686. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  687. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  688. },
  689. "documentationLink": "https://developers.google.com/deployment-manager/",
  690. "labels": [
  691. "limited_availability"
  692. ],
  693. "preferred": false
  694. },
  695. {
  696. "kind": "discovery#directoryItem",
  697. "id": "deploymentmanager:v2beta2",
  698. "name": "deploymentmanager",
  699. "version": "v2beta2",
  700. "title": "Google Cloud Deployment Manager API",
  701. "description": "The Deployment Manager API allows users to declaratively configure, deploy and run complex solutions on the Google Cloud Platform.",
  702. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/deploymentmanager/v2beta2/rest",
  703. "icons": {
  704. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  705. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  706. },
  707. "documentationLink": "https://developers.google.com/deployment-manager/",
  708. "preferred": false
  709. },
  710. {
  711. "kind": "discovery#directoryItem",
  712. "id": "dfareporting:v1",
  713. "name": "dfareporting",
  714. "version": "v1",
  715. "title": "DFA Reporting API",
  716. "description": "Lets you create, run and download reports.",
  717. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dfareporting/v1/rest",
  718. "icons": {
  719. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  720. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  721. },
  722. "documentationLink": "https://developers.google.com/doubleclick-advertisers/reporting/",
  723. "preferred": false
  724. },
  725. {
  726. "kind": "discovery#directoryItem",
  727. "id": "dfareporting:v1.1",
  728. "name": "dfareporting",
  729. "version": "v1.1",
  730. "title": "DFA Reporting API",
  731. "description": "Lets you create, run and download reports.",
  732. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dfareporting/v1.1/rest",
  733. "icons": {
  734. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  735. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  736. },
  737. "documentationLink": "https://developers.google.com/doubleclick-advertisers/reporting/",
  738. "preferred": false
  739. },
  740. {
  741. "kind": "discovery#directoryItem",
  742. "id": "dfareporting:v1.2",
  743. "name": "dfareporting",
  744. "version": "v1.2",
  745. "title": "DFA Reporting API",
  746. "description": "Lets you create, run and download reports.",
  747. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dfareporting/v1.2/rest",
  748. "icons": {
  749. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  750. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  751. },
  752. "documentationLink": "https://developers.google.com/doubleclick-advertisers/reporting/",
  753. "preferred": false
  754. },
  755. {
  756. "kind": "discovery#directoryItem",
  757. "id": "dfareporting:v1.3",
  758. "name": "dfareporting",
  759. "version": "v1.3",
  760. "title": "DFA Reporting API",
  761. "description": "Lets you create, run and download reports.",
  762. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dfareporting/v1.3/rest",
  763. "icons": {
  764. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  765. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  766. },
  767. "documentationLink": "https://developers.google.com/doubleclick-advertisers/reporting/",
  768. "preferred": false
  769. },
  770. {
  771. "kind": "discovery#directoryItem",
  772. "id": "dfareporting:v2.0",
  773. "name": "dfareporting",
  774. "version": "v2.0",
  775. "title": "DCM/DFA Reporting And Trafficking API",
  776. "description": "Manage your DoubleClick Campaign Manager ad campaigns and reports.",
  777. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dfareporting/v2.0/rest",
  778. "icons": {
  779. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  780. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  781. },
  782. "documentationLink": "https://developers.google.com/doubleclick-advertisers/reporting/",
  783. "preferred": false
  784. },
  785. {
  786. "kind": "discovery#directoryItem",
  787. "id": "dfareporting:v2.1",
  788. "name": "dfareporting",
  789. "version": "v2.1",
  790. "title": "DCM/DFA Reporting And Trafficking API",
  791. "description": "Manage your DoubleClick Campaign Manager ad campaigns and reports.",
  792. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dfareporting/v2.1/rest",
  793. "icons": {
  794. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  795. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  796. },
  797. "documentationLink": "https://developers.google.com/doubleclick-advertisers/reporting/",
  798. "preferred": false
  799. },
  800. {
  801. "kind": "discovery#directoryItem",
  802. "id": "dfareporting:v2.2",
  803. "name": "dfareporting",
  804. "version": "v2.2",
  805. "title": "DCM/DFA Reporting And Trafficking API",
  806. "description": "Manage your DoubleClick Campaign Manager ad campaigns and reports.",
  807. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dfareporting/v2.2/rest",
  808. "icons": {
  809. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  810. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  811. },
  812. "documentationLink": "https://developers.google.com/doubleclick-advertisers/reporting/",
  813. "preferred": false
  814. },
  815. {
  816. "kind": "discovery#directoryItem",
  817. "id": "dfareporting:v2.3",
  818. "name": "dfareporting",
  819. "version": "v2.3",
  820. "title": "DCM/DFA Reporting And Trafficking API",
  821. "description": "Manage your DoubleClick Campaign Manager ad campaigns and reports.",
  822. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dfareporting/v2.3/rest",
  823. "icons": {
  824. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  825. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  826. },
  827. "documentationLink": "https://developers.google.com/doubleclick-advertisers/reporting/",
  828. "preferred": false
  829. },
  830. {
  831. "kind": "discovery#directoryItem",
  832. "id": "dfareporting:v2.4",
  833. "name": "dfareporting",
  834. "version": "v2.4",
  835. "title": "DCM/DFA Reporting And Trafficking API",
  836. "description": "Manage your DoubleClick Campaign Manager ad campaigns and reports.",
  837. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dfareporting/v2.4/rest",
  838. "icons": {
  839. "x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
  840. "x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
  841. },
  842. "documentationLink": "https://developers.google.com/doubleclick-advertisers/reporting/",
  843. "preferred": true
  844. },
  845. {
  846. "kind": "discovery#directoryItem",
  847. "id": "discovery:v1",
  848. "name": "discovery",
  849. "version": "v1",
  850. "title": "APIs Discovery Service",
  851. "description": "Lets you discover information about other Google APIs, such as what APIs are available, the resource and method details for each API.",
  852. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/discovery/v1/rest",
  853. "icons": {
  854. "x16": "http://www.google.com/images/icons/feature/filing_cabinet_search-g16.png",
  855. "x32": "http://www.google.com/images/icons/feature/filing_cabinet_search-g32.png"
  856. },
  857. "documentationLink": "https://developers.google.com/discovery/",
  858. "preferred": true
  859. },
  860. {
  861. "kind": "discovery#directoryItem",
  862. "id": "dns:v1",
  863. "name": "dns",
  864. "version": "v1",
  865. "title": "Google Cloud DNS API",
  866. "description": "The Google Cloud DNS API provides services for configuring and serving authoritative DNS records.",
  867. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dns/v1/rest",
  868. "icons": {
  869. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  870. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  871. },
  872. "documentationLink": "https://developers.google.com/cloud-dns",
  873. "preferred": true
  874. },
  875. {
  876. "kind": "discovery#directoryItem",
  877. "id": "doubleclickbidmanager:v1",
  878. "name": "doubleclickbidmanager",
  879. "version": "v1",
  880. "title": "DoubleClick Bid Manager API",
  881. "description": "API for viewing and managing your reports in DoubleClick Bid Manager.",
  882. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/doubleclickbidmanager/v1/rest",
  883. "icons": {
  884. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  885. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  886. },
  887. "documentationLink": "https://developers.google.com/bid-manager/",
  888. "labels": [
  889. "limited_availability"
  890. ],
  891. "preferred": true
  892. },
  893. {
  894. "kind": "discovery#directoryItem",
  895. "id": "doubleclicksearch:v2",
  896. "name": "doubleclicksearch",
  897. "version": "v2",
  898. "title": "DoubleClick Search API",
  899. "description": "Report and modify your advertising data in DoubleClick Search (for example, campaigns, ad groups, keywords, and conversions).",
  900. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/doubleclicksearch/v2/rest",
  901. "icons": {
  902. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  903. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  904. },
  905. "documentationLink": "https://developers.google.com/doubleclick-search/",
  906. "preferred": true
  907. },
  908. {
  909. "kind": "discovery#directoryItem",
  910. "id": "drive:v1",
  911. "name": "drive",
  912. "version": "v1",
  913. "title": "Drive API",
  914. "description": "The API to interact with Drive.",
  915. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/drive/v1/rest",
  916. "icons": {
  917. "x16": "https://ssl.gstatic.com/docs/doclist/images/drive_icon_16.png",
  918. "x32": "https://ssl.gstatic.com/docs/doclist/images/drive_icon_32.png"
  919. },
  920. "documentationLink": "https://developers.google.com/drive/",
  921. "preferred": false
  922. },
  923. {
  924. "kind": "discovery#directoryItem",
  925. "id": "drive:v2",
  926. "name": "drive",
  927. "version": "v2",
  928. "title": "Drive API",
  929. "description": "The API to interact with Drive.",
  930. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/drive/v2/rest",
  931. "icons": {
  932. "x16": "https://ssl.gstatic.com/docs/doclist/images/drive_icon_16.png",
  933. "x32": "https://ssl.gstatic.com/docs/doclist/images/drive_icon_32.png"
  934. },
  935. "documentationLink": "https://developers.google.com/drive/",
  936. "preferred": false
  937. },
  938. {
  939. "kind": "discovery#directoryItem",
  940. "id": "drive:v3",
  941. "name": "drive",
  942. "version": "v3",
  943. "title": "Drive API",
  944. "description": "The API to interact with Drive.",
  945. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/drive/v3/rest",
  946. "icons": {
  947. "x16": "https://ssl.gstatic.com/docs/doclist/images/drive_icon_16.png",
  948. "x32": "https://ssl.gstatic.com/docs/doclist/images/drive_icon_32.png"
  949. },
  950. "documentationLink": "https://developers.google.com/drive/",
  951. "preferred": true
  952. },
  953. {
  954. "kind": "discovery#directoryItem",
  955. "id": "fitness:v1",
  956. "name": "fitness",
  957. "version": "v1",
  958. "title": "Fitness",
  959. "description": "Google Fit API",
  960. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/fitness/v1/rest",
  961. "icons": {
  962. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  963. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  964. },
  965. "documentationLink": "https://developers.google.com/fit/rest/",
  966. "preferred": true
  967. },
  968. {
  969. "kind": "discovery#directoryItem",
  970. "id": "freebase:v1",
  971. "name": "freebase",
  972. "version": "v1",
  973. "title": "Freebase Search",
  974. "description": "Find Freebase entities using textual queries and other constraints.",
  975. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/freebase/v1/rest",
  976. "icons": {
  977. "x16": "https://www.google.com/images/icons/product/freebase-16.png",
  978. "x32": "https://www.google.com/images/icons/product/freebase-32.png"
  979. },
  980. "documentationLink": "https://developers.google.com/freebase/",
  981. "preferred": true
  982. },
  983. {
  984. "kind": "discovery#directoryItem",
  985. "id": "fusiontables:v1",
  986. "name": "fusiontables",
  987. "version": "v1",
  988. "title": "Fusion Tables API",
  989. "description": "API for working with Fusion Tables data.",
  990. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/fusiontables/v1/rest",
  991. "icons": {
  992. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  993. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  994. },
  995. "documentationLink": "https://developers.google.com/fusiontables",
  996. "preferred": false
  997. },
  998. {
  999. "kind": "discovery#directoryItem",
  1000. "id": "fusiontables:v2",
  1001. "name": "fusiontables",
  1002. "version": "v2",
  1003. "title": "Fusion Tables API",
  1004. "description": "API for working with Fusion Tables data.",
  1005. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/fusiontables/v2/rest",
  1006. "icons": {
  1007. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1008. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1009. },
  1010. "documentationLink": "https://developers.google.com/fusiontables",
  1011. "preferred": true
  1012. },
  1013. {
  1014. "kind": "discovery#directoryItem",
  1015. "id": "games:v1",
  1016. "name": "games",
  1017. "version": "v1",
  1018. "title": "Google Play Game Services API",
  1019. "description": "The API for Google Play Game Services.",
  1020. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/games/v1/rest",
  1021. "icons": {
  1022. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1023. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1024. },
  1025. "documentationLink": "https://developers.google.com/games/services/",
  1026. "preferred": true
  1027. },
  1028. {
  1029. "kind": "discovery#directoryItem",
  1030. "id": "gamesConfiguration:v1configuration",
  1031. "name": "gamesConfiguration",
  1032. "version": "v1configuration",
  1033. "title": "Google Play Game Services Publishing API",
  1034. "description": "The Publishing API for Google Play Game Services.",
  1035. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/gamesConfiguration/v1configuration/rest",
  1036. "icons": {
  1037. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1038. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1039. },
  1040. "documentationLink": "https://developers.google.com/games/services",
  1041. "preferred": true
  1042. },
  1043. {
  1044. "kind": "discovery#directoryItem",
  1045. "id": "gamesManagement:v1management",
  1046. "name": "gamesManagement",
  1047. "version": "v1management",
  1048. "title": "Google Play Game Services Management API",
  1049. "description": "The Management API for Google Play Game Services.",
  1050. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/gamesManagement/v1management/rest",
  1051. "icons": {
  1052. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1053. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1054. },
  1055. "documentationLink": "https://developers.google.com/games/services",
  1056. "preferred": true
  1057. },
  1058. {
  1059. "kind": "discovery#directoryItem",
  1060. "id": "gan:v1beta1",
  1061. "name": "gan",
  1062. "version": "v1beta1",
  1063. "title": "Google Affiliate Network API",
  1064. "description": "Lets you have programmatic access to your Google Affiliate Network data.",
  1065. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/gan/v1beta1/rest",
  1066. "icons": {
  1067. "x16": "http://www.google.com/images/icons/product/affiliatenetwork-16.png",
  1068. "x32": "http://www.google.com/images/icons/product/affiliatenetwork-32.png"
  1069. },
  1070. "documentationLink": "https://developers.google.com/affiliate-network/",
  1071. "preferred": true
  1072. },
  1073. {
  1074. "kind": "discovery#directoryItem",
  1075. "id": "genomics:v1beta2",
  1076. "name": "genomics",
  1077. "version": "v1beta2",
  1078. "title": "Genomics API",
  1079. "description": "Provides access to Genomics data.",
  1080. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/genomics/v1beta2/rest",
  1081. "icons": {
  1082. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1083. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1084. },
  1085. "documentationLink": "https://developers.google.com/genomics/v1beta2/reference",
  1086. "preferred": true
  1087. },
  1088. {
  1089. "kind": "discovery#directoryItem",
  1090. "id": "gmail:v1",
  1091. "name": "gmail",
  1092. "version": "v1",
  1093. "title": "Gmail API",
  1094. "description": "The Gmail REST API.",
  1095. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/gmail/v1/rest",
  1096. "icons": {
  1097. "x16": "https://www.google.com/images/icons/product/googlemail-16.png",
  1098. "x32": "https://www.google.com/images/icons/product/googlemail-32.png"
  1099. },
  1100. "documentationLink": "https://developers.google.com/gmail/api/",
  1101. "preferred": true
  1102. },
  1103. {
  1104. "kind": "discovery#directoryItem",
  1105. "id": "groupsmigration:v1",
  1106. "name": "groupsmigration",
  1107. "version": "v1",
  1108. "title": "Groups Migration API",
  1109. "description": "Groups Migration Api.",
  1110. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/groupsmigration/v1/rest",
  1111. "icons": {
  1112. "x16": "http://www.google.com/images/icons/product/discussions-16.gif",
  1113. "x32": "http://www.google.com/images/icons/product/discussions-32.gif"
  1114. },
  1115. "documentationLink": "https://developers.google.com/google-apps/groups-migration/",
  1116. "preferred": true
  1117. },
  1118. {
  1119. "kind": "discovery#directoryItem",
  1120. "id": "groupssettings:v1",
  1121. "name": "groupssettings",
  1122. "version": "v1",
  1123. "title": "Groups Settings API",
  1124. "description": "Lets you manage permission levels and related settings of a group.",
  1125. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/groupssettings/v1/rest",
  1126. "icons": {
  1127. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1128. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1129. },
  1130. "documentationLink": "https://developers.google.com/google-apps/groups-settings/get_started",
  1131. "preferred": true
  1132. },
  1133. {
  1134. "kind": "discovery#directoryItem",
  1135. "id": "appengine:v1beta4",
  1136. "name": "appengine",
  1137. "version": "v1beta4",
  1138. "title": "Google App Engine Admin API",
  1139. "description": "The Google App Engine Admin API enables developers to provision and manage their App Engine applications.",
  1140. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/appengine/v1beta4/rest",
  1141. "icons": {
  1142. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1143. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1144. },
  1145. "documentationLink": "https://cloud.google.com/appengine/docs/admin-api/",
  1146. "preferred": false
  1147. },
  1148. {
  1149. "kind": "discovery#directoryItem",
  1150. "id": "appengine:v1beta5",
  1151. "name": "appengine",
  1152. "version": "v1beta5",
  1153. "title": "Google App Engine Admin API",
  1154. "description": "The Google App Engine Admin API enables developers to provision and manage their App Engine applications.",
  1155. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/appengine/v1beta5/rest",
  1156. "icons": {
  1157. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1158. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1159. },
  1160. "documentationLink": "https://cloud.google.com/appengine/docs/admin-api/",
  1161. "preferred": true
  1162. },
  1163. {
  1164. "kind": "discovery#directoryItem",
  1165. "id": "classroom:v1",
  1166. "name": "classroom",
  1167. "version": "v1",
  1168. "title": "Google Classroom API",
  1169. "description": "Google Classroom API",
  1170. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/classroom/v1/rest",
  1171. "icons": {
  1172. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1173. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1174. },
  1175. "documentationLink": "https://developers.google.com/classroom/",
  1176. "preferred": true
  1177. },
  1178. {
  1179. "kind": "discovery#directoryItem",
  1180. "id": "cloudbilling:v1",
  1181. "name": "cloudbilling",
  1182. "version": "v1",
  1183. "title": "Google Cloud Billing API",
  1184. "description": "Retrieves Google Developers Console billing accounts and associates them with projects.",
  1185. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/cloudbilling/v1/rest",
  1186. "icons": {
  1187. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1188. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1189. },
  1190. "documentationLink": "https://cloud.google.com/billing/",
  1191. "preferred": true
  1192. },
  1193. {
  1194. "kind": "discovery#directoryItem",
  1195. "id": "clouddebugger:v2",
  1196. "name": "clouddebugger",
  1197. "version": "v2",
  1198. "title": "Google Cloud Debugger API",
  1199. "description": "Lets you examine the stack and variables of your running application without stopping or slowing it down.",
  1200. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/clouddebugger/v2/rest",
  1201. "icons": {
  1202. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1203. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1204. },
  1205. "documentationLink": "https://cloud.google.com/tools/cloud-debugger",
  1206. "preferred": true
  1207. },
  1208. {
  1209. "kind": "discovery#directoryItem",
  1210. "id": "cloudresourcemanager:v1beta1",
  1211. "name": "cloudresourcemanager",
  1212. "version": "v1beta1",
  1213. "title": "Google Cloud Resource Manager API",
  1214. "description": "The Google Cloud Resource Manager API provides methods for creating, reading, and updating project metadata.",
  1215. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/cloudresourcemanager/v1beta1/rest",
  1216. "icons": {
  1217. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1218. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1219. },
  1220. "documentationLink": "https://cloud.google.com/resource-manager",
  1221. "preferred": true
  1222. },
  1223. {
  1224. "kind": "discovery#directoryItem",
  1225. "id": "cloudtrace:v1",
  1226. "name": "cloudtrace",
  1227. "version": "v1",
  1228. "title": "Google Cloud Trace API",
  1229. "description": "The Cloud Trace API allows you to send traces to and retrieve traces from Google Cloud Trace.",
  1230. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/cloudtrace/v1/rest",
  1231. "icons": {
  1232. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1233. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1234. },
  1235. "documentationLink": "https://cloud.google.com/tools/cloud-trace",
  1236. "preferred": true
  1237. },
  1238. {
  1239. "kind": "discovery#directoryItem",
  1240. "id": "container:v1",
  1241. "name": "container",
  1242. "version": "v1",
  1243. "title": "Google Container Engine API",
  1244. "description": "The Google Container Engine API is used for building and managing container based applications, powered by the open source Kubernetes technology.",
  1245. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/container/v1/rest",
  1246. "icons": {
  1247. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1248. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1249. },
  1250. "documentationLink": "https://cloud.google.com/container-engine/",
  1251. "preferred": true
  1252. },
  1253. {
  1254. "kind": "discovery#directoryItem",
  1255. "id": "dataflow:v1b3",
  1256. "name": "dataflow",
  1257. "version": "v1b3",
  1258. "title": "Google Dataflow API",
  1259. "description": "Google Dataflow API.",
  1260. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dataflow/v1b3/rest",
  1261. "icons": {
  1262. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1263. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1264. },
  1265. "documentationLink": "https://cloud.google.com/dataflow",
  1266. "preferred": true
  1267. },
  1268. {
  1269. "kind": "discovery#directoryItem",
  1270. "id": "dataproc:v1alpha1",
  1271. "name": "dataproc",
  1272. "version": "v1alpha1",
  1273. "title": "Google Cloud Dataproc API",
  1274. "description": "An API for managing Hadoop-based clusters and jobs on Google Cloud Platform.",
  1275. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dataproc/v1alpha1/rest",
  1276. "icons": {
  1277. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1278. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1279. },
  1280. "documentationLink": "https://cloud.google.com/dataproc/",
  1281. "preferred": false
  1282. },
  1283. {
  1284. "kind": "discovery#directoryItem",
  1285. "id": "dataproc:v1",
  1286. "name": "dataproc",
  1287. "version": "v1",
  1288. "title": "Google Cloud Dataproc API",
  1289. "description": "An API for managing Hadoop-based clusters and jobs on Google Cloud Platform.",
  1290. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dataproc/v1/rest",
  1291. "icons": {
  1292. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1293. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1294. },
  1295. "documentationLink": "https://cloud.google.com/dataproc/",
  1296. "preferred": true
  1297. },
  1298. {
  1299. "kind": "discovery#directoryItem",
  1300. "id": "dataproc:v1beta1",
  1301. "name": "dataproc",
  1302. "version": "v1beta1",
  1303. "title": "Google Cloud Dataproc API",
  1304. "description": "An API for managing Hadoop-based clusters and jobs on Google Cloud Platform.",
  1305. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/dataproc/v1beta1/rest",
  1306. "icons": {
  1307. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1308. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1309. },
  1310. "documentationLink": "https://cloud.google.com/dataproc/",
  1311. "preferred": false
  1312. },
  1313. {
  1314. "kind": "discovery#directoryItem",
  1315. "id": "genomics:v1alpha2",
  1316. "name": "genomics",
  1317. "version": "v1alpha2",
  1318. "title": "Genomics API",
  1319. "description": "An API to store, process, explore, and share genomic data. It supports reference-based alignments, genetic variants, and reference genomes. This API provides an implementation of the Global Alliance for Genomics and Health (GA4GH) v0.5.1 API as well as several extensions.",
  1320. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/genomics/v1alpha2/rest",
  1321. "icons": {
  1322. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1323. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1324. },
  1325. "documentationLink": "",
  1326. "preferred": false
  1327. },
  1328. {
  1329. "kind": "discovery#directoryItem",
  1330. "id": "genomics:v1",
  1331. "name": "genomics",
  1332. "version": "v1",
  1333. "title": "Genomics API",
  1334. "description": "An API to store, process, explore, and share genomic data. It supports reference-based alignments, genetic variants, and reference genomes. This API provides an implementation of the Global Alliance for Genomics and Health (GA4GH) v0.5.1 API as well as several extensions.",
  1335. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/genomics/v1/rest",
  1336. "icons": {
  1337. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1338. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1339. },
  1340. "documentationLink": "",
  1341. "preferred": true
  1342. },
  1343. {
  1344. "kind": "discovery#directoryItem",
  1345. "id": "iam:v1alpha1",
  1346. "name": "iam",
  1347. "version": "v1alpha1",
  1348. "title": "Google Identity and Access Management API",
  1349. "description": "Manages identity and access control for Google Cloud Platform resources, including the creation of service accounts, which you can use to authenticate to Google and make API calls.",
  1350. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/iam/v1alpha1/rest",
  1351. "icons": {
  1352. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1353. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1354. },
  1355. "documentationLink": "https://cloud.google.com/iam/",
  1356. "preferred": false
  1357. },
  1358. {
  1359. "kind": "discovery#directoryItem",
  1360. "id": "iam:v1",
  1361. "name": "iam",
  1362. "version": "v1",
  1363. "title": "Google Identity and Access Management API",
  1364. "description": "Manages identity and access control for Google Cloud Platform resources, including the creation of service accounts, which you can use to authenticate to Google and make API calls.",
  1365. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/iam/v1/rest",
  1366. "icons": {
  1367. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1368. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1369. },
  1370. "documentationLink": "https://cloud.google.com/iam/",
  1371. "preferred": true
  1372. },
  1373. {
  1374. "kind": "discovery#directoryItem",
  1375. "id": "kgsearch:v1",
  1376. "name": "kgsearch",
  1377. "version": "v1",
  1378. "title": "Knowledge Graph Search API",
  1379. "description": "Knowledge Graph Search API allows developers to search the Google Knowledge Graph for entities.",
  1380. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/kgsearch/v1/rest",
  1381. "icons": {
  1382. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1383. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1384. },
  1385. "documentationLink": "https://developers.google.com/knowledge-graph/",
  1386. "preferred": true
  1387. },
  1388. {
  1389. "kind": "discovery#directoryItem",
  1390. "id": "logging:v2beta1",
  1391. "name": "logging",
  1392. "version": "v2beta1",
  1393. "title": "Google Cloud Logging API",
  1394. "description": "The Google Cloud Logging API lets you write log entries and manage your logs, log sinks and logs-based metrics.",
  1395. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/logging/v2beta1/rest",
  1396. "icons": {
  1397. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1398. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1399. },
  1400. "documentationLink": "https://cloud.google.com/logging/docs/",
  1401. "preferred": true
  1402. },
  1403. {
  1404. "kind": "discovery#directoryItem",
  1405. "id": "partners:v2",
  1406. "name": "partners",
  1407. "version": "v2",
  1408. "title": "Google Partners API",
  1409. "description": "Lets advertisers search certified companies and create contact leads with them, and also audits the usage of clients.",
  1410. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/partners/v2/rest",
  1411. "icons": {
  1412. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1413. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1414. },
  1415. "documentationLink": "https://developers.google.com/partners/",
  1416. "preferred": true
  1417. },
  1418. {
  1419. "kind": "discovery#directoryItem",
  1420. "id": "playmoviespartner:v1",
  1421. "name": "playmoviespartner",
  1422. "version": "v1",
  1423. "title": "Google Play Movies Partner API",
  1424. "description": "Lets Google Play Movies Partners get the delivery status of their titles.",
  1425. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/playmoviespartner/v1/rest",
  1426. "icons": {
  1427. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1428. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1429. },
  1430. "documentationLink": "https://developers.google.com/playmoviespartner/",
  1431. "preferred": true
  1432. },
  1433. {
  1434. "kind": "discovery#directoryItem",
  1435. "id": "proximitybeacon:v1beta1",
  1436. "name": "proximitybeacon",
  1437. "version": "v1beta1",
  1438. "title": "Google Proximity Beacon API",
  1439. "description": "This API provides services to register, manage, index, and search beacons.",
  1440. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/proximitybeacon/v1beta1/rest",
  1441. "icons": {
  1442. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1443. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1444. },
  1445. "documentationLink": "https://developers.google.com/beacons/proximity/",
  1446. "preferred": true
  1447. },
  1448. {
  1449. "kind": "discovery#directoryItem",
  1450. "id": "pubsub:v1beta1a",
  1451. "name": "pubsub",
  1452. "version": "v1beta1a",
  1453. "title": "Google Cloud Pub/Sub API",
  1454. "description": "Provides reliable, many-to-many, asynchronous messaging between applications.",
  1455. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/pubsub/v1beta1a/rest",
  1456. "icons": {
  1457. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1458. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1459. },
  1460. "documentationLink": "https://cloud.google.com/pubsub/docs",
  1461. "preferred": false
  1462. },
  1463. {
  1464. "kind": "discovery#directoryItem",
  1465. "id": "pubsub:v1",
  1466. "name": "pubsub",
  1467. "version": "v1",
  1468. "title": "Google Cloud Pub/Sub API",
  1469. "description": "Provides reliable, many-to-many, asynchronous messaging between applications.",
  1470. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/pubsub/v1/rest",
  1471. "icons": {
  1472. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1473. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1474. },
  1475. "documentationLink": "https://cloud.google.com/pubsub/docs",
  1476. "preferred": true
  1477. },
  1478. {
  1479. "kind": "discovery#directoryItem",
  1480. "id": "pubsub:v1beta2",
  1481. "name": "pubsub",
  1482. "version": "v1beta2",
  1483. "title": "Google Cloud Pub/Sub API",
  1484. "description": "Provides reliable, many-to-many, asynchronous messaging between applications.",
  1485. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/pubsub/v1beta2/rest",
  1486. "icons": {
  1487. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1488. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1489. },
  1490. "documentationLink": "https://cloud.google.com/pubsub/docs",
  1491. "preferred": false
  1492. },
  1493. {
  1494. "kind": "discovery#directoryItem",
  1495. "id": "script:v1",
  1496. "name": "script",
  1497. "version": "v1",
  1498. "title": "Google Apps Script Execution API",
  1499. "description": "An API for executing Google Apps Script projects.",
  1500. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/script/v1/rest",
  1501. "icons": {
  1502. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1503. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1504. },
  1505. "documentationLink": "https://developers.google.com/apps-script/execution/rest/v1/run",
  1506. "preferred": true
  1507. },
  1508. {
  1509. "kind": "discovery#directoryItem",
  1510. "id": "storagetransfer:v1",
  1511. "name": "storagetransfer",
  1512. "version": "v1",
  1513. "title": "Google Storage Transfer API",
  1514. "description": "Transfers data from external data sources to a Google Cloud Storage bucket or between Google Cloud Storage buckets.",
  1515. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/storagetransfer/v1/rest",
  1516. "icons": {
  1517. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1518. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1519. },
  1520. "documentationLink": "https://cloud.google.com/storage/transfer",
  1521. "preferred": true
  1522. },
  1523. {
  1524. "kind": "discovery#directoryItem",
  1525. "id": "youtubereporting:v1",
  1526. "name": "youtubereporting",
  1527. "version": "v1",
  1528. "title": "YouTube Reporting API",
  1529. "description": "An API to schedule reporting jobs and download the resulting bulk data reports about YouTube channels, videos etc. in the form of CSV files.",
  1530. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/youtubereporting/v1/rest",
  1531. "icons": {
  1532. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1533. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1534. },
  1535. "documentationLink": "https://developers.google.com/youtube/reporting/v1/reports/",
  1536. "preferred": true
  1537. },
  1538. {
  1539. "kind": "discovery#directoryItem",
  1540. "id": "identitytoolkit:v3",
  1541. "name": "identitytoolkit",
  1542. "version": "v3",
  1543. "title": "Google Identity Toolkit API",
  1544. "description": "Help the third party sites to implement federated login.",
  1545. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/identitytoolkit/v3/rest",
  1546. "icons": {
  1547. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1548. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1549. },
  1550. "documentationLink": "https://developers.google.com/identity-toolkit/v3/",
  1551. "preferred": true
  1552. },
  1553. {
  1554. "kind": "discovery#directoryItem",
  1555. "id": "licensing:v1",
  1556. "name": "licensing",
  1557. "version": "v1",
  1558. "title": "Enterprise License Manager API",
  1559. "description": "Licensing API to view and manage license for your domain.",
  1560. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/licensing/v1/rest",
  1561. "icons": {
  1562. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1563. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1564. },
  1565. "documentationLink": "https://developers.google.com/google-apps/licensing/",
  1566. "preferred": true
  1567. },
  1568. {
  1569. "kind": "discovery#directoryItem",
  1570. "id": "manager:v1beta2",
  1571. "name": "manager",
  1572. "version": "v1beta2",
  1573. "title": "Deployment Manager API",
  1574. "description": "The Deployment Manager API allows users to declaratively configure, deploy and run complex solutions on the Google Cloud Platform.",
  1575. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/manager/v1beta2/rest",
  1576. "icons": {
  1577. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1578. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1579. },
  1580. "documentationLink": "https://developers.google.com/deployment-manager/",
  1581. "labels": [
  1582. "limited_availability"
  1583. ],
  1584. "preferred": true
  1585. },
  1586. {
  1587. "kind": "discovery#directoryItem",
  1588. "id": "mapsengine:exp2",
  1589. "name": "mapsengine",
  1590. "version": "exp2",
  1591. "title": "Google Maps Engine API",
  1592. "description": "The Google Maps Engine API allows developers to store and query geospatial vector and raster data.",
  1593. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/mapsengine/exp2/rest",
  1594. "icons": {
  1595. "x16": "https://www.google.com/images/icons/product/maps_engine-16.png",
  1596. "x32": "https://www.google.com/images/icons/product/maps_engine-32.png"
  1597. },
  1598. "documentationLink": "https://developers.google.com/maps-engine/",
  1599. "preferred": false
  1600. },
  1601. {
  1602. "kind": "discovery#directoryItem",
  1603. "id": "mapsengine:v1",
  1604. "name": "mapsengine",
  1605. "version": "v1",
  1606. "title": "Google Maps Engine API",
  1607. "description": "The Google Maps Engine API allows developers to store and query geospatial vector and raster data.",
  1608. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/mapsengine/v1/rest",
  1609. "icons": {
  1610. "x16": "https://www.google.com/images/icons/product/maps_engine-16.png",
  1611. "x32": "https://www.google.com/images/icons/product/maps_engine-32.png"
  1612. },
  1613. "documentationLink": "https://developers.google.com/maps-engine/",
  1614. "preferred": true
  1615. },
  1616. {
  1617. "kind": "discovery#directoryItem",
  1618. "id": "mirror:v1",
  1619. "name": "mirror",
  1620. "version": "v1",
  1621. "title": "Google Mirror API",
  1622. "description": "API for interacting with Glass users via the timeline.",
  1623. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/mirror/v1/rest",
  1624. "icons": {
  1625. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1626. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1627. },
  1628. "documentationLink": "https://developers.google.com/glass",
  1629. "labels": [
  1630. "limited_availability"
  1631. ],
  1632. "preferred": true
  1633. },
  1634. {
  1635. "kind": "discovery#directoryItem",
  1636. "id": "oauth2:v1",
  1637. "name": "oauth2",
  1638. "version": "v1",
  1639. "title": "Google OAuth2 API",
  1640. "description": "Lets you access OAuth2 protocol related APIs.",
  1641. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/oauth2/v1/rest",
  1642. "icons": {
  1643. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1644. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1645. },
  1646. "documentationLink": "https://developers.google.com/accounts/docs/OAuth2",
  1647. "preferred": false
  1648. },
  1649. {
  1650. "kind": "discovery#directoryItem",
  1651. "id": "oauth2:v2",
  1652. "name": "oauth2",
  1653. "version": "v2",
  1654. "title": "Google OAuth2 API",
  1655. "description": "Lets you access OAuth2 protocol related APIs.",
  1656. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/oauth2/v2/rest",
  1657. "icons": {
  1658. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1659. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1660. },
  1661. "documentationLink": "https://developers.google.com/accounts/docs/OAuth2",
  1662. "preferred": true
  1663. },
  1664. {
  1665. "kind": "discovery#directoryItem",
  1666. "id": "pagespeedonline:v1",
  1667. "name": "pagespeedonline",
  1668. "version": "v1",
  1669. "title": "PageSpeed Insights API",
  1670. "description": "Lets you analyze the performance of a web page and get tailored suggestions to make that page faster.",
  1671. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/pagespeedonline/v1/rest",
  1672. "icons": {
  1673. "x16": "https://www.google.com/images/icons/product/pagespeed-16.png",
  1674. "x32": "https://www.google.com/images/icons/product/pagespeed-32.png"
  1675. },
  1676. "documentationLink": "https://developers.google.com/speed/docs/insights/v1/getting_started",
  1677. "preferred": false
  1678. },
  1679. {
  1680. "kind": "discovery#directoryItem",
  1681. "id": "pagespeedonline:v2",
  1682. "name": "pagespeedonline",
  1683. "version": "v2",
  1684. "title": "PageSpeed Insights API",
  1685. "description": "Lets you analyze the performance of a web page and get tailored suggestions to make that page faster.",
  1686. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/pagespeedonline/v2/rest",
  1687. "icons": {
  1688. "x16": "https://www.google.com/images/icons/product/pagespeed-16.png",
  1689. "x32": "https://www.google.com/images/icons/product/pagespeed-32.png"
  1690. },
  1691. "documentationLink": "https://developers.google.com/speed/docs/insights/v2/getting-started",
  1692. "preferred": true
  1693. },
  1694. {
  1695. "kind": "discovery#directoryItem",
  1696. "id": "plus:v1",
  1697. "name": "plus",
  1698. "version": "v1",
  1699. "title": "Google+ API",
  1700. "description": "The Google+ API enables developers to build on top of the Google+ platform.",
  1701. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/plus/v1/rest",
  1702. "icons": {
  1703. "x16": "http://www.google.com/images/icons/product/gplus-16.png",
  1704. "x32": "http://www.google.com/images/icons/product/gplus-32.png"
  1705. },
  1706. "documentationLink": "https://developers.google.com/+/api/",
  1707. "preferred": true
  1708. },
  1709. {
  1710. "kind": "discovery#directoryItem",
  1711. "id": "plusDomains:v1",
  1712. "name": "plusDomains",
  1713. "version": "v1",
  1714. "title": "Google+ Domains API",
  1715. "description": "The Google+ API enables developers to build on top of the Google+ platform.",
  1716. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/plusDomains/v1/rest",
  1717. "icons": {
  1718. "x16": "http://www.google.com/images/icons/product/gplus-16.png",
  1719. "x32": "http://www.google.com/images/icons/product/gplus-32.png"
  1720. },
  1721. "documentationLink": "https://developers.google.com/+/domains/",
  1722. "preferred": true
  1723. },
  1724. {
  1725. "kind": "discovery#directoryItem",
  1726. "id": "prediction:v1.2",
  1727. "name": "prediction",
  1728. "version": "v1.2",
  1729. "title": "Prediction API",
  1730. "description": "Lets you access a cloud hosted machine learning service that makes it easy to build smart apps",
  1731. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/prediction/v1.2/rest",
  1732. "icons": {
  1733. "x16": "https://www.google.com/images/icons/feature/predictionapi-16.png",
  1734. "x32": "https://www.google.com/images/icons/feature/predictionapi-32.png"
  1735. },
  1736. "documentationLink": "https://developers.google.com/prediction/docs/developer-guide",
  1737. "preferred": false
  1738. },
  1739. {
  1740. "kind": "discovery#directoryItem",
  1741. "id": "prediction:v1.3",
  1742. "name": "prediction",
  1743. "version": "v1.3",
  1744. "title": "Prediction API",
  1745. "description": "Lets you access a cloud hosted machine learning service that makes it easy to build smart apps",
  1746. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/prediction/v1.3/rest",
  1747. "icons": {
  1748. "x16": "https://www.google.com/images/icons/feature/predictionapi-16.png",
  1749. "x32": "https://www.google.com/images/icons/feature/predictionapi-32.png"
  1750. },
  1751. "documentationLink": "https://developers.google.com/prediction/docs/developer-guide",
  1752. "preferred": false
  1753. },
  1754. {
  1755. "kind": "discovery#directoryItem",
  1756. "id": "prediction:v1.4",
  1757. "name": "prediction",
  1758. "version": "v1.4",
  1759. "title": "Prediction API",
  1760. "description": "Lets you access a cloud hosted machine learning service that makes it easy to build smart apps",
  1761. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/prediction/v1.4/rest",
  1762. "icons": {
  1763. "x16": "https://www.google.com/images/icons/feature/predictionapi-16.png",
  1764. "x32": "https://www.google.com/images/icons/feature/predictionapi-32.png"
  1765. },
  1766. "documentationLink": "https://developers.google.com/prediction/docs/developer-guide",
  1767. "preferred": false
  1768. },
  1769. {
  1770. "kind": "discovery#directoryItem",
  1771. "id": "prediction:v1.5",
  1772. "name": "prediction",
  1773. "version": "v1.5",
  1774. "title": "Prediction API",
  1775. "description": "Lets you access a cloud hosted machine learning service that makes it easy to build smart apps",
  1776. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/prediction/v1.5/rest",
  1777. "icons": {
  1778. "x16": "https://www.google.com/images/icons/feature/predictionapi-16.png",
  1779. "x32": "https://www.google.com/images/icons/feature/predictionapi-32.png"
  1780. },
  1781. "documentationLink": "https://developers.google.com/prediction/docs/developer-guide",
  1782. "preferred": false
  1783. },
  1784. {
  1785. "kind": "discovery#directoryItem",
  1786. "id": "prediction:v1.6",
  1787. "name": "prediction",
  1788. "version": "v1.6",
  1789. "title": "Prediction API",
  1790. "description": "Lets you access a cloud hosted machine learning service that makes it easy to build smart apps",
  1791. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/prediction/v1.6/rest",
  1792. "icons": {
  1793. "x16": "https://www.google.com/images/icons/feature/predictionapi-16.png",
  1794. "x32": "https://www.google.com/images/icons/feature/predictionapi-32.png"
  1795. },
  1796. "documentationLink": "https://developers.google.com/prediction/docs/developer-guide",
  1797. "preferred": true
  1798. },
  1799. {
  1800. "kind": "discovery#directoryItem",
  1801. "id": "qpxExpress:v1",
  1802. "name": "qpxExpress",
  1803. "version": "v1",
  1804. "title": "QPX Express API",
  1805. "description": "Lets you find the least expensive flights between an origin and a destination.",
  1806. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/qpxExpress/v1/rest",
  1807. "icons": {
  1808. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1809. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1810. },
  1811. "documentationLink": "http://developers.google.com/qpx-express",
  1812. "preferred": true
  1813. },
  1814. {
  1815. "kind": "discovery#directoryItem",
  1816. "id": "replicapool:v1beta1",
  1817. "name": "replicapool",
  1818. "version": "v1beta1",
  1819. "title": "Replica Pool API",
  1820. "description": "The Replica Pool API allows users to declaratively provision and manage groups of Google Compute Engine instances based on a common template.",
  1821. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/replicapool/v1beta1/rest",
  1822. "icons": {
  1823. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1824. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1825. },
  1826. "documentationLink": "https://developers.google.com/compute/docs/replica-pool/",
  1827. "labels": [
  1828. "limited_availability"
  1829. ],
  1830. "preferred": false
  1831. },
  1832. {
  1833. "kind": "discovery#directoryItem",
  1834. "id": "replicapool:v1beta2",
  1835. "name": "replicapool",
  1836. "version": "v1beta2",
  1837. "title": "Google Compute Engine Instance Group Manager API",
  1838. "description": "The Google Compute Engine Instance Group Manager API provides groups of homogenous Compute Engine Instances.",
  1839. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/replicapool/v1beta2/rest",
  1840. "icons": {
  1841. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1842. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1843. },
  1844. "documentationLink": "https://developers.google.com/compute/docs/instance-groups/manager/v1beta2",
  1845. "labels": [
  1846. "limited_availability"
  1847. ],
  1848. "preferred": true
  1849. },
  1850. {
  1851. "kind": "discovery#directoryItem",
  1852. "id": "replicapoolupdater:v1beta1",
  1853. "name": "replicapoolupdater",
  1854. "version": "v1beta1",
  1855. "title": "Google Compute Engine Instance Group Updater API",
  1856. "description": "The Google Compute Engine Instance Group Updater API provides services for updating groups of Compute Engine Instances.",
  1857. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/replicapoolupdater/v1beta1/rest",
  1858. "icons": {
  1859. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1860. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1861. },
  1862. "documentationLink": "https://cloud.google.com/compute/docs/instance-groups/manager/#applying_rolling_updates_using_the_updater_service",
  1863. "labels": [
  1864. "limited_availability"
  1865. ],
  1866. "preferred": true
  1867. },
  1868. {
  1869. "kind": "discovery#directoryItem",
  1870. "id": "reseller:v1sandbox",
  1871. "name": "reseller",
  1872. "version": "v1sandbox",
  1873. "title": "Enterprise Apps Reseller API",
  1874. "description": "Lets you create and manage your customers and their subscriptions.",
  1875. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/reseller/v1sandbox/rest",
  1876. "icons": {
  1877. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1878. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1879. },
  1880. "documentationLink": "https://developers.google.com/google-apps/reseller/",
  1881. "labels": [
  1882. "limited_availability"
  1883. ],
  1884. "preferred": false
  1885. },
  1886. {
  1887. "kind": "discovery#directoryItem",
  1888. "id": "reseller:v1",
  1889. "name": "reseller",
  1890. "version": "v1",
  1891. "title": "Enterprise Apps Reseller API",
  1892. "description": "Lets you create and manage your customers and their subscriptions.",
  1893. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/reseller/v1/rest",
  1894. "icons": {
  1895. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1896. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1897. },
  1898. "documentationLink": "https://developers.google.com/google-apps/reseller/",
  1899. "labels": [
  1900. "limited_availability"
  1901. ],
  1902. "preferred": true
  1903. },
  1904. {
  1905. "kind": "discovery#directoryItem",
  1906. "id": "resourceviews:v1beta1",
  1907. "name": "resourceviews",
  1908. "version": "v1beta1",
  1909. "title": "Resource Views API",
  1910. "description": "The Resource View API allows users to create and manage logical sets of Google Compute Engine instances.",
  1911. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/resourceviews/v1beta1/rest",
  1912. "icons": {
  1913. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1914. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1915. },
  1916. "documentationLink": "https://developers.google.com/compute/",
  1917. "labels": [
  1918. "limited_availability"
  1919. ],
  1920. "preferred": false
  1921. },
  1922. {
  1923. "kind": "discovery#directoryItem",
  1924. "id": "resourceviews:v1beta2",
  1925. "name": "resourceviews",
  1926. "version": "v1beta2",
  1927. "title": "Google Compute Engine Instance Groups API",
  1928. "description": "The Resource View API allows users to create and manage logical sets of Google Compute Engine instances.",
  1929. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/resourceviews/v1beta2/rest",
  1930. "icons": {
  1931. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1932. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1933. },
  1934. "documentationLink": "https://developers.google.com/compute/",
  1935. "labels": [
  1936. "limited_availability"
  1937. ],
  1938. "preferred": true
  1939. },
  1940. {
  1941. "kind": "discovery#directoryItem",
  1942. "id": "serviceregistry:alpha",
  1943. "name": "serviceregistry",
  1944. "version": "alpha",
  1945. "title": "Google Cloud Service Registry API V1",
  1946. "description": "The Service Registry API allows users to manage service endpoints in Service Registry and use DNS-based service discovery / name resolution.",
  1947. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/serviceregistry/alpha/rest",
  1948. "icons": {
  1949. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1950. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1951. },
  1952. "documentationLink": "https://developers.google.com/cloud-serviceregistry/",
  1953. "labels": [
  1954. "limited_availability"
  1955. ],
  1956. "preferred": true
  1957. },
  1958. {
  1959. "kind": "discovery#directoryItem",
  1960. "id": "siteVerification:v1",
  1961. "name": "siteVerification",
  1962. "version": "v1",
  1963. "title": "Google Site Verification API",
  1964. "description": "Lets you programatically verify ownership of websites or domains with Google.",
  1965. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/siteVerification/v1/rest",
  1966. "icons": {
  1967. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1968. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1969. },
  1970. "documentationLink": "https://developers.google.com/site-verification/",
  1971. "preferred": true
  1972. },
  1973. {
  1974. "kind": "discovery#directoryItem",
  1975. "id": "spectrum:v1explorer",
  1976. "name": "spectrum",
  1977. "version": "v1explorer",
  1978. "title": "Google Spectrum Database API",
  1979. "description": "API for spectrum-management functions.",
  1980. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/spectrum/v1explorer/rest",
  1981. "icons": {
  1982. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1983. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1984. },
  1985. "documentationLink": "http://developers.google.com/spectrum",
  1986. "preferred": true
  1987. },
  1988. {
  1989. "kind": "discovery#directoryItem",
  1990. "id": "sqladmin:v1beta3",
  1991. "name": "sqladmin",
  1992. "version": "v1beta3",
  1993. "title": "Cloud SQL Administration API",
  1994. "description": "API for Cloud SQL database instance management.",
  1995. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/sqladmin/v1beta3/rest",
  1996. "icons": {
  1997. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  1998. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  1999. },
  2000. "documentationLink": "https://cloud.google.com/sql/docs/reference/latest",
  2001. "preferred": false
  2002. },
  2003. {
  2004. "kind": "discovery#directoryItem",
  2005. "id": "sqladmin:v1beta4",
  2006. "name": "sqladmin",
  2007. "version": "v1beta4",
  2008. "title": "Cloud SQL Administration API",
  2009. "description": "API for Cloud SQL database instance management.",
  2010. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/sqladmin/v1beta4/rest",
  2011. "icons": {
  2012. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  2013. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  2014. },
  2015. "documentationLink": "https://cloud.google.com/sql/docs/reference/latest",
  2016. "preferred": true
  2017. },
  2018. {
  2019. "kind": "discovery#directoryItem",
  2020. "id": "storage:v1",
  2021. "name": "storage",
  2022. "version": "v1",
  2023. "title": "Cloud Storage JSON API",
  2024. "description": "Lets you store and retrieve potentially-large, immutable data objects.",
  2025. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/storage/v1/rest",
  2026. "icons": {
  2027. "x16": "https://www.google.com/images/icons/product/cloud_storage-16.png",
  2028. "x32": "https://www.google.com/images/icons/product/cloud_storage-32.png"
  2029. },
  2030. "documentationLink": "https://developers.google.com/storage/docs/json_api/",
  2031. "labels": [
  2032. "labs"
  2033. ],
  2034. "preferred": true
  2035. },
  2036. {
  2037. "kind": "discovery#directoryItem",
  2038. "id": "storage:v1beta1",
  2039. "name": "storage",
  2040. "version": "v1beta1",
  2041. "title": "Cloud Storage JSON API",
  2042. "description": "Lets you store and retrieve potentially-large, immutable data objects.",
  2043. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/storage/v1beta1/rest",
  2044. "icons": {
  2045. "x16": "https://www.google.com/images/icons/product/cloud_storage-16.png",
  2046. "x32": "https://www.google.com/images/icons/product/cloud_storage-32.png"
  2047. },
  2048. "documentationLink": "https://developers.google.com/storage/docs/json_api/",
  2049. "labels": [
  2050. "labs"
  2051. ],
  2052. "preferred": false
  2053. },
  2054. {
  2055. "kind": "discovery#directoryItem",
  2056. "id": "storage:v1beta2",
  2057. "name": "storage",
  2058. "version": "v1beta2",
  2059. "title": "Cloud Storage JSON API",
  2060. "description": "Lets you store and retrieve potentially-large, immutable data objects.",
  2061. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/storage/v1beta2/rest",
  2062. "icons": {
  2063. "x16": "https://www.google.com/images/icons/product/cloud_storage-16.png",
  2064. "x32": "https://www.google.com/images/icons/product/cloud_storage-32.png"
  2065. },
  2066. "documentationLink": "https://developers.google.com/storage/docs/json_api/",
  2067. "labels": [
  2068. "labs"
  2069. ],
  2070. "preferred": false
  2071. },
  2072. {
  2073. "kind": "discovery#directoryItem",
  2074. "id": "tagmanager:v1",
  2075. "name": "tagmanager",
  2076. "version": "v1",
  2077. "title": "Tag Manager API",
  2078. "description": "API for accessing Tag Manager accounts and containers.",
  2079. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/tagmanager/v1/rest",
  2080. "icons": {
  2081. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  2082. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  2083. },
  2084. "documentationLink": "https://developers.google.com/tag-manager/api/v1/",
  2085. "preferred": true
  2086. },
  2087. {
  2088. "kind": "discovery#directoryItem",
  2089. "id": "taskqueue:v1beta1",
  2090. "name": "taskqueue",
  2091. "version": "v1beta1",
  2092. "title": "TaskQueue API",
  2093. "description": "Lets you access a Google App Engine Pull Task Queue over REST.",
  2094. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/taskqueue/v1beta1/rest",
  2095. "icons": {
  2096. "x16": "https://www.google.com/images/icons/product/app_engine-16.png",
  2097. "x32": "https://www.google.com/images/icons/product/app_engine-32.png"
  2098. },
  2099. "documentationLink": "https://developers.google.com/appengine/docs/python/taskqueue/rest",
  2100. "preferred": false
  2101. },
  2102. {
  2103. "kind": "discovery#directoryItem",
  2104. "id": "taskqueue:v1beta2",
  2105. "name": "taskqueue",
  2106. "version": "v1beta2",
  2107. "title": "TaskQueue API",
  2108. "description": "Lets you access a Google App Engine Pull Task Queue over REST.",
  2109. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/taskqueue/v1beta2/rest",
  2110. "icons": {
  2111. "x16": "https://www.google.com/images/icons/product/app_engine-16.png",
  2112. "x32": "https://www.google.com/images/icons/product/app_engine-32.png"
  2113. },
  2114. "documentationLink": "https://developers.google.com/appengine/docs/python/taskqueue/rest",
  2115. "preferred": true
  2116. },
  2117. {
  2118. "kind": "discovery#directoryItem",
  2119. "id": "tasks:v1",
  2120. "name": "tasks",
  2121. "version": "v1",
  2122. "title": "Tasks API",
  2123. "description": "Lets you manage your tasks and task lists.",
  2124. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/tasks/v1/rest",
  2125. "icons": {
  2126. "x16": "https://www.google.com/images/icons/product/tasks-16.png",
  2127. "x32": "https://www.google.com/images/icons/product/tasks-32.png"
  2128. },
  2129. "documentationLink": "https://developers.google.com/google-apps/tasks/firstapp",
  2130. "preferred": true
  2131. },
  2132. {
  2133. "kind": "discovery#directoryItem",
  2134. "id": "translate:v2",
  2135. "name": "translate",
  2136. "version": "v2",
  2137. "title": "Translate API",
  2138. "description": "Lets you translate text from one language to another",
  2139. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/translate/v2/rest",
  2140. "icons": {
  2141. "x16": "https://www.google.com/images/icons/product/translate-16.png",
  2142. "x32": "https://www.google.com/images/icons/product/translate-32.png"
  2143. },
  2144. "documentationLink": "https://developers.google.com/translate/v2/using_rest",
  2145. "preferred": true
  2146. },
  2147. {
  2148. "kind": "discovery#directoryItem",
  2149. "id": "urlshortener:v1",
  2150. "name": "urlshortener",
  2151. "version": "v1",
  2152. "title": "URL Shortener API",
  2153. "description": "Lets you create, inspect, and manage goo.gl short URLs",
  2154. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/urlshortener/v1/rest",
  2155. "icons": {
  2156. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  2157. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  2158. },
  2159. "documentationLink": "https://developers.google.com/url-shortener/v1/getting_started",
  2160. "preferred": true
  2161. },
  2162. {
  2163. "kind": "discovery#directoryItem",
  2164. "id": "vision:v1",
  2165. "name": "vision",
  2166. "version": "v1",
  2167. "title": "Cloud Vision API",
  2168. "description": "The Google Cloud Vision API allows developers to easily integrate Google vision features, including image labeling, face, logo, and landmark detection, optical character recognition (OCR), and detection of explicit content, into applications.",
  2169. "discoveryRestUrl": "https://vision.googleapis.com/$discovery/rest",
  2170. "icons": {
  2171. "x16": "http://www.google.com/images/icons/product/search-16.gif",
  2172. "x32": "http://www.google.com/images/icons/product/search-32.gif"
  2173. },
  2174. "documentationLink": "",
  2175. "preferred": true
  2176. },
  2177. {
  2178. "kind": "discovery#directoryItem",
  2179. "id": "webfonts:v1",
  2180. "name": "webfonts",
  2181. "version": "v1",
  2182. "title": "Google Fonts Developer API",
  2183. "description": "The Google Fonts Developer API.",
  2184. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/webfonts/v1/rest",
  2185. "icons": {
  2186. "x16": "http://www.google.com/images/icons/feature/font_api-16.png",
  2187. "x32": "http://www.google.com/images/icons/feature/font_api-32.gif"
  2188. },
  2189. "documentationLink": "https://developers.google.com/fonts/docs/developer_api",
  2190. "preferred": true
  2191. },
  2192. {
  2193. "kind": "discovery#directoryItem",
  2194. "id": "webmasters:v3",
  2195. "name": "webmasters",
  2196. "version": "v3",
  2197. "title": "Search Console API",
  2198. "description": "Lets you view Google Search Console data for your verified sites.",
  2199. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/webmasters/v3/rest",
  2200. "icons": {
  2201. "x16": "https://www.google.com/images/icons/product/webmaster_tools-16.png",
  2202. "x32": "https://www.google.com/images/icons/product/webmaster_tools-32.png"
  2203. },
  2204. "documentationLink": "https://developers.google.com/webmaster-tools/",
  2205. "preferred": true
  2206. },
  2207. {
  2208. "kind": "discovery#directoryItem",
  2209. "id": "youtube:v3",
  2210. "name": "youtube",
  2211. "version": "v3",
  2212. "title": "YouTube Data API",
  2213. "description": "Programmatic access to YouTube features.",
  2214. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/youtube/v3/rest",
  2215. "icons": {
  2216. "x16": "https://www.google.com/images/icons/product/youtube-16.png",
  2217. "x32": "https://www.google.com/images/icons/product/youtube-32.png"
  2218. },
  2219. "documentationLink": "https://developers.google.com/youtube/v3",
  2220. "preferred": true
  2221. },
  2222. {
  2223. "kind": "discovery#directoryItem",
  2224. "id": "youtubeAnalytics:v1",
  2225. "name": "youtubeAnalytics",
  2226. "version": "v1",
  2227. "title": "YouTube Analytics API",
  2228. "description": "Retrieve your YouTube Analytics reports.",
  2229. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/youtubeAnalytics/v1/rest",
  2230. "icons": {
  2231. "x16": "https://www.google.com/images/icons/product/youtube-16.png",
  2232. "x32": "https://www.google.com/images/icons/product/youtube-32.png"
  2233. },
  2234. "documentationLink": "http://developers.google.com/youtube/analytics/",
  2235. "preferred": true
  2236. },
  2237. {
  2238. "kind": "discovery#directoryItem",
  2239. "id": "youtubeAnalytics:v1beta1",
  2240. "name": "youtubeAnalytics",
  2241. "version": "v1beta1",
  2242. "title": "YouTube Analytics API",
  2243. "description": "Retrieve your YouTube Analytics reports.",
  2244. "discoveryRestUrl": "https://www.googleapis.com/discovery/v1/apis/youtubeAnalytics/v1beta1/rest",
  2245. "icons": {
  2246. "x16": "https://www.google.com/images/icons/product/youtube-16.png",
  2247. "x32": "https://www.google.com/images/icons/product/youtube-32.png"
  2248. },
  2249. "documentationLink": "http://developers.google.com/youtube/analytics/",
  2250. "labels": [
  2251. "deprecated"
  2252. ],
  2253. "preferred": false
  2254. }
  2255. ]
  2256. }