Etcd · Schema

AuthUserChangePasswordRequest

Request to change a user's password

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
name string Username whose password to change
password string New plaintext password
hashedPassword string New pre-hashed bcrypt password
View JSON Schema on GitHub

JSON Schema

etcd-authuserchangepasswordrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthUserChangePasswordRequest",
  "title": "AuthUserChangePasswordRequest",
  "type": "object",
  "description": "Request to change a user's password",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Username whose password to change"
    },
    "password": {
      "type": "string",
      "description": "New plaintext password",
      "format": "password"
    },
    "hashedPassword": {
      "type": "string",
      "description": "New pre-hashed bcrypt password"
    }
  }
}