Etcd · Schema

MemberUpdateRequest

Request to update a cluster member's peer URLs

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
ID string ID of the member to update
peerURLs array New peer URLs for the member
View JSON Schema on GitHub

JSON Schema

etcd-memberupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MemberUpdateRequest",
  "title": "MemberUpdateRequest",
  "type": "object",
  "description": "Request to update a cluster member's peer URLs",
  "required": [
    "ID",
    "peerURLs"
  ],
  "properties": {
    "ID": {
      "type": "string",
      "description": "ID of the member to update"
    },
    "peerURLs": {
      "type": "array",
      "description": "New peer URLs for the member",
      "items": {
        "type": "string"
      }
    }
  }
}