2015-08-18 05:57:27 +05:30
|
|
|
package adminschema
|
|
|
|
//
|
|
|
|
// This file is automatically generated by schema/generator
|
|
|
|
//
|
|
|
|
// **** DO NOT EDIT ****
|
|
|
|
//
|
|
|
|
const DiscoveryJSON = `{
|
|
|
|
"kind": "discovery#restDescription",
|
|
|
|
"discoveryVersion": "v1",
|
|
|
|
"id": "dex:v1",
|
|
|
|
"name": "adminschema",
|
|
|
|
"version": "v1",
|
|
|
|
"title": "Dex Admin API",
|
|
|
|
"description": "The Dex Admin API.",
|
|
|
|
"documentationLink": "http://github.com/coreos/dex",
|
|
|
|
"protocol": "rest",
|
|
|
|
"icons": {
|
|
|
|
"x16": "",
|
|
|
|
"x32": ""
|
|
|
|
},
|
|
|
|
"labels": [],
|
|
|
|
"baseUrl": "$ENDPOINT/api/v1/",
|
|
|
|
"basePath": "/api/v1/",
|
|
|
|
"rootUrl": "$ENDPOINT/",
|
|
|
|
"servicePath": "api/v1/",
|
|
|
|
"batchPath": "batch",
|
|
|
|
"parameters": {},
|
|
|
|
"auth": {},
|
|
|
|
"schemas": {
|
|
|
|
"Admin": {
|
|
|
|
"id": "Admin",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"email": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"password": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"State": {
|
|
|
|
"id": "State",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"AdminUserCreated": {
|
|
|
|
"type": "boolean"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"resources": {
|
|
|
|
"Admin": {
|
|
|
|
"methods": {
|
|
|
|
"Get": {
|
|
|
|
"id": "dex.admin.Admin.Get",
|
|
|
|
"description": "Retrieve information about an admin user.",
|
|
|
|
"httpMethod": "GET",
|
|
|
|
"path": "admin/{id}",
|
|
|
|
"parameters": {
|
|
|
|
"id": {
|
|
|
|
"type": "string",
|
|
|
|
"required": true,
|
|
|
|
"location": "path"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"parameterOrder": [
|
|
|
|
"id"
|
|
|
|
],
|
|
|
|
"response": {
|
|
|
|
"$ref": "Admin"
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
"Create": {
|
|
|
|
"id": "dex.admin.Admin.Create",
|
|
|
|
"description": "Create a new admin user.",
|
|
|
|
"httpMethod": "POST",
|
|
|
|
"path": "admin",
|
|
|
|
"request": {
|
|
|
|
"$ref": "Admin"
|
|
|
|
},
|
|
|
|
"response": {
|
|
|
|
"$ref": "Admin"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"State": {
|
|
|
|
"methods": {
|
|
|
|
"Get": {
|
|
|
|
"id": "dex.admin.State.Get",
|
|
|
|
"description": "Get the state of the Dex DB",
|
|
|
|
"httpMethod": "GET",
|
|
|
|
"path": "state",
|
|
|
|
"response": {
|
|
|
|
"$ref": "State"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-02 05:39:39 +05:30
|
|
|
`
|