chore(json-update): latest json files

This also adds a usable version of the genomics API, which was empty
previously (and if I recall correctly).
This commit is contained in:
Sebastian Thiel
2015-07-21 18:36:44 +02:00
parent 152cdd848a
commit 62b63b251a
75 changed files with 23363 additions and 542 deletions

View File

@@ -1,11 +1,11 @@
{
"kind": "discovery#restDescription",
"etag": "\"ye6orv2F-1npMW3u9suM3a7C5Bo/yBXWUg3_16xGrw-wakFJ4iOdZt0\"",
"etag": "\"ye6orv2F-1npMW3u9suM3a7C5Bo/E7VrRWc2416Btp9uIQ42rmbOltA\"",
"discoveryVersion": "v1",
"id": "oauth2:v1",
"name": "oauth2",
"version": "v1",
"revision": "20150526",
"revision": "20150714",
"title": "Google OAuth2 API",
"description": "Lets you access OAuth2 protocol related APIs.",
"ownerDomain": "google.com",
@@ -85,6 +85,41 @@
}
},
"schemas": {
"Jwk": {
"id": "Jwk",
"type": "object",
"properties": {
"keys": {
"type": "array",
"items": {
"type": "object",
"properties": {
"alg": {
"type": "string",
"default": "RS256"
},
"e": {
"type": "string"
},
"kid": {
"type": "string"
},
"kty": {
"type": "string",
"default": "RSA"
},
"n": {
"type": "string"
},
"use": {
"type": "string",
"default": "sig"
}
}
}
}
}
},
"Raw": {
"id": "Raw",
"type": "object",
@@ -244,6 +279,25 @@
"$ref": "Raw"
}
},
"getRobotJwk": {
"id": "oauth2.getRobotJwk",
"path": "service_accounts/v1/jwk/{robotEmail}",
"httpMethod": "GET",
"parameters": {
"robotEmail": {
"type": "string",
"description": "The email of robot account.",
"required": true,
"location": "path"
}
},
"parameterOrder": [
"robotEmail"
],
"response": {
"$ref": "Jwk"
}
},
"getRobotMetadataRaw": {
"id": "oauth2.getRobotMetadataRaw",
"path": "service_accounts/v1/metadata/raw/{robotEmail}",