Etcd · Schema

MemberRemoveRequest

Request to remove a member from the cluster

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
ID string ID of the member to remove
View JSON Schema on GitHub

JSON Schema

etcd-memberremoverequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MemberRemoveRequest",
  "title": "MemberRemoveRequest",
  "type": "object",
  "description": "Request to remove a member from the cluster",
  "required": [
    "ID"
  ],
  "properties": {
    "ID": {
      "type": "string",
      "description": "ID of the member to remove"
    }
  }
}