Etcd · Schema

AuthRoleDeleteRequest

Request to delete a role

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
role string Name of the role to delete
View JSON Schema on GitHub

JSON Schema

etcd-authroledeleterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthRoleDeleteRequest",
  "title": "AuthRoleDeleteRequest",
  "type": "object",
  "description": "Request to delete a role",
  "required": [
    "role"
  ],
  "properties": {
    "role": {
      "type": "string",
      "description": "Name of the role to delete"
    }
  }
}