mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +01:00
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:
@@ -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}",
|
||||
|
||||
Reference in New Issue
Block a user