Etcd · Schema

AuthUserAddRequest

Request to add a new user

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
name string Username for the new user
password string Plaintext password for the new user
hashedPassword string Pre-hashed bcrypt password for the new user
options object User creation options
View JSON Schema on GitHub

JSON Schema

etcd-authuseraddrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthUserAddRequest",
  "title": "AuthUserAddRequest",
  "type": "object",
  "description": "Request to add a new user",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Username for the new user"
    },
    "password": {
      "type": "string",
      "description": "Plaintext password for the new user",
      "format": "password"
    },
    "hashedPassword": {
      "type": "string",
      "description": "Pre-hashed bcrypt password for the new user"
    },
    "options": {
      "type": "object",
      "description": "User creation options"
    }
  }
}