Etcd · Schema

AuthRoleGetResponse

Response from a role get operation

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
header object
perm array List of permissions assigned to the role
View JSON Schema on GitHub

JSON Schema

etcd-authrolegetresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthRoleGetResponse",
  "title": "AuthRoleGetResponse",
  "type": "object",
  "description": "Response from a role get operation",
  "properties": {
    "header": {
      "$ref": "#/components/schemas/ResponseHeader"
    },
    "perm": {
      "type": "array",
      "description": "List of permissions assigned to the role",
      "items": {
        "$ref": "#/components/schemas/Permission"
      }
    }
  }
}