2015-08-18 05:57:27 +05:30
|
|
|
package workerschema
|
2016-06-16 00:11:57 +05:30
|
|
|
|
2015-08-18 05:57:27 +05:30
|
|
|
//
|
|
|
|
// This file is automatically generated by schema/generator
|
|
|
|
//
|
|
|
|
// **** DO NOT EDIT ****
|
|
|
|
//
|
|
|
|
const DiscoveryJSON = `{
|
|
|
|
"kind": "discovery#restDescription",
|
|
|
|
"discoveryVersion": "v1",
|
|
|
|
"id": "dex:v1",
|
|
|
|
"name": "workerschema",
|
|
|
|
"version": "v1",
|
|
|
|
"title": "Dex API",
|
|
|
|
"description": "The Dex REST 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": {
|
|
|
|
"Error": {
|
|
|
|
"id": "Error",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"error": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"error_description": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2016-05-26 23:11:33 +05:30
|
|
|
"RefreshClient": {
|
2016-04-06 23:57:41 +05:30
|
|
|
"id": "Client",
|
|
|
|
"type": "object",
|
2016-05-26 23:11:33 +05:30
|
|
|
"description": "A client with associated public metadata.",
|
2016-04-06 23:57:41 +05:30
|
|
|
"properties": {
|
2016-05-26 23:11:33 +05:30
|
|
|
"clientID": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"clientName": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"logoURI": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"clientURI": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
2016-04-06 23:57:41 +05:30
|
|
|
}
|
2016-05-26 23:11:33 +05:30
|
|
|
},
|
|
|
|
"RefreshClientList": {
|
2016-04-06 23:57:41 +05:30
|
|
|
"id": "RefreshClientList",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"clients": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "RefreshClient"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-26 23:11:33 +05:30
|
|
|
},
|
2015-08-18 05:57:27 +05:30
|
|
|
"User": {
|
|
|
|
"id": "User",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"email": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"displayName": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"emailVerified": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"admin": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
2015-09-29 02:21:48 +05:30
|
|
|
"disabled": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
2015-08-18 05:57:27 +05:30
|
|
|
"createdAt": {
|
|
|
|
"type": "string",
|
|
|
|
"format": "date-time"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"UserResponse": {
|
|
|
|
"id": "UserResponse",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"user": {
|
2016-05-26 23:11:33 +05:30
|
|
|
"$ref": "User"
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"UsersResponse": {
|
|
|
|
"id": "UsersResponse",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"users": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "User"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"nextPageToken": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"UserCreateRequest": {
|
|
|
|
"id": "UserCreateRequest",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"user": {
|
|
|
|
"$ref": "User"
|
|
|
|
},
|
|
|
|
"redirectURL": {
|
|
|
|
"type": "string",
|
|
|
|
"format": "url"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"UserCreateResponse": {
|
|
|
|
"id": "UserCreateResponse",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"user": {
|
|
|
|
"type": "object",
|
|
|
|
"$ref": "User"
|
|
|
|
},
|
|
|
|
"resetPasswordLink": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"emailSent": {
|
|
|
|
"type": "boolean"
|
|
|
|
}
|
|
|
|
}
|
2015-09-28 22:45:14 +05:30
|
|
|
},
|
|
|
|
"UserDisableRequest": {
|
|
|
|
"id": "UserDisableRequest",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"disable": {
|
|
|
|
"type": "boolean",
|
2016-02-02 05:39:39 +05:30
|
|
|
"description": "If true, disable this user, if false, enable them. No error is signaled if the user state doesn't change."
|
2015-09-28 22:45:14 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"UserDisableResponse": {
|
|
|
|
"id": "UserDisableResponse",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"ok": {
|
|
|
|
"type": "boolean"
|
|
|
|
}
|
|
|
|
}
|
2016-02-23 17:10:00 +05:30
|
|
|
},
|
|
|
|
"ResendEmailInvitationRequest": {
|
|
|
|
"id": "UserDisableRequest",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"redirectURL": {
|
|
|
|
"type": "string",
|
|
|
|
"format": "url"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"ResendEmailInvitationResponse": {
|
|
|
|
"id": "UserDisableResponse",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"resetPasswordLink": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"emailSent": {
|
|
|
|
"type": "boolean"
|
|
|
|
}
|
|
|
|
}
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
},
|
|
|
|
"resources": {
|
|
|
|
"Users": {
|
|
|
|
"methods": {
|
|
|
|
"List": {
|
|
|
|
"id": "dex.User.List",
|
|
|
|
"description": "Retrieve a page of User objects.",
|
|
|
|
"httpMethod": "GET",
|
|
|
|
"path": "users",
|
|
|
|
"parameters": {
|
|
|
|
"nextPageToken": {
|
|
|
|
"type": "string",
|
|
|
|
"location": "query"
|
|
|
|
},
|
|
|
|
"maxResults": {
|
|
|
|
"type": "integer",
|
|
|
|
"location": "query"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"response": {
|
|
|
|
"$ref": "UsersResponse"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"Get": {
|
|
|
|
"id": "dex.User.Get",
|
2015-09-28 22:45:14 +05:30
|
|
|
"description": "Get a single User object by id.",
|
2015-08-18 05:57:27 +05:30
|
|
|
"httpMethod": "GET",
|
|
|
|
"path": "users/{id}",
|
|
|
|
"parameters": {
|
|
|
|
"id": {
|
|
|
|
"type": "string",
|
|
|
|
"required": true,
|
|
|
|
"location": "path"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"parameterOrder": [
|
|
|
|
"id"
|
|
|
|
],
|
|
|
|
"response": {
|
|
|
|
"$ref": "UserResponse"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"Create": {
|
|
|
|
"id": "dex.User.Create",
|
|
|
|
"description": "Create a new User.",
|
|
|
|
"httpMethod": "POST",
|
|
|
|
"path": "users",
|
|
|
|
"request": {
|
|
|
|
"$ref": "UserCreateRequest"
|
|
|
|
},
|
|
|
|
"response": {
|
|
|
|
"$ref": "UserCreateResponse"
|
|
|
|
}
|
2015-09-28 22:45:14 +05:30
|
|
|
},
|
|
|
|
"Disable": {
|
|
|
|
"id": "dex.User.Disable",
|
|
|
|
"description": "Enable or disable a user.",
|
|
|
|
"httpMethod": "POST",
|
|
|
|
"path": "users/{id}/disable",
|
|
|
|
"parameters": {
|
|
|
|
"id": {
|
|
|
|
"type": "string",
|
|
|
|
"required": true,
|
|
|
|
"location": "path"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"parameterOrder": [
|
|
|
|
"id"
|
|
|
|
],
|
|
|
|
"request": {
|
|
|
|
"$ref": "UserDisableRequest"
|
|
|
|
},
|
|
|
|
"response": {
|
|
|
|
"$ref": "UserDisableResponse"
|
|
|
|
}
|
2016-02-23 17:10:00 +05:30
|
|
|
},
|
|
|
|
"ResendEmailInvitation": {
|
|
|
|
"id": "dex.User.ResendEmailInvitation",
|
|
|
|
"description": "Resend invitation email to an existing user with unverified email.",
|
|
|
|
"httpMethod": "POST",
|
|
|
|
"path": "users/{id}/resend-invitation",
|
|
|
|
"parameters": {
|
|
|
|
"id": {
|
|
|
|
"type": "string",
|
|
|
|
"required": true,
|
|
|
|
"location": "path"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"parameterOrder": [
|
|
|
|
"id"
|
|
|
|
],
|
|
|
|
"request": {
|
|
|
|
"$ref": "ResendEmailInvitationRequest"
|
|
|
|
},
|
|
|
|
"response": {
|
|
|
|
"$ref": "ResendEmailInvitationResponse"
|
|
|
|
}
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
}
|
2016-04-06 23:57:41 +05:30
|
|
|
},
|
|
|
|
"RefreshClient": {
|
|
|
|
"methods": {
|
|
|
|
"List": {
|
2016-04-27 00:35:41 +05:30
|
|
|
"id": "dex.RefreshClient.List",
|
|
|
|
"description": "List all clients that hold refresh tokens for the specified user.",
|
2016-04-06 23:57:41 +05:30
|
|
|
"httpMethod": "GET",
|
|
|
|
"path": "account/{userid}/refresh",
|
|
|
|
"parameters": {
|
|
|
|
"userid": {
|
|
|
|
"type": "string",
|
|
|
|
"required": true,
|
|
|
|
"location": "path"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"parameterOrder": [
|
|
|
|
"userid"
|
|
|
|
],
|
|
|
|
"response": {
|
|
|
|
"$ref": "RefreshClientList"
|
|
|
|
}
|
2016-04-27 00:35:41 +05:30
|
|
|
},
|
|
|
|
"Revoke": {
|
|
|
|
"id": "dex.RefreshClient.Revoke",
|
|
|
|
"description": "Revoke all refresh tokens issues to the client for the specified user.",
|
|
|
|
"httpMethod": "DELETE",
|
|
|
|
"path": "account/{userid}/refresh/{clientid}",
|
|
|
|
"parameterOrder": [
|
|
|
|
"userid",
|
|
|
|
"clientid"
|
|
|
|
],
|
|
|
|
"parameters": {
|
|
|
|
"clientid": {
|
|
|
|
"type": "string",
|
|
|
|
"required": true,
|
|
|
|
"location": "path"
|
|
|
|
},
|
|
|
|
"userid": {
|
|
|
|
"type": "string",
|
|
|
|
"required": true,
|
|
|
|
"location": "path"
|
|
|
|
}
|
|
|
|
}
|
2016-04-06 23:57:41 +05:30
|
|
|
}
|
|
|
|
}
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-06-16 00:11:57 +05:30
|
|
|
`
|