Etcd · Schema

AuthUserRevokeRoleRequest

Request to revoke a role from a user

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
name string Username to revoke the role from
role string Name of the role to revoke
View JSON Schema on GitHub

JSON Schema

etcd-authuserrevokerolerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthUserRevokeRoleRequest",
  "title": "AuthUserRevokeRoleRequest",
  "type": "object",
  "description": "Request to revoke a role from a user",
  "required": [
    "name",
    "role"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Username to revoke the role from"
    },
    "role": {
      "type": "string",
      "description": "Name of the role to revoke"
    }
  }
}