Etcd · Schema

AuthRoleRevokePermissionRequest

Request to revoke a permission from a role

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
role string Name of the role to revoke the permission from
key string The key of the permission to revoke in base64-encoded format
range_end string The range end of the permission to revoke in base64-encoded format
View JSON Schema on GitHub

JSON Schema

etcd-authrolerevokepermissionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthRoleRevokePermissionRequest",
  "title": "AuthRoleRevokePermissionRequest",
  "type": "object",
  "description": "Request to revoke a permission from a role",
  "required": [
    "role",
    "key"
  ],
  "properties": {
    "role": {
      "type": "string",
      "description": "Name of the role to revoke the permission from"
    },
    "key": {
      "type": "string",
      "description": "The key of the permission to revoke in base64-encoded format"
    },
    "range_end": {
      "type": "string",
      "description": "The range end of the permission to revoke in base64-encoded format"
    }
  }
}