Etcd · Schema

LeaseRevokeRequest

Request to revoke an existing lease

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
ID string ID of the lease to revoke
View JSON Schema on GitHub

JSON Schema

etcd-leaserevokerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LeaseRevokeRequest",
  "title": "LeaseRevokeRequest",
  "type": "object",
  "description": "Request to revoke an existing lease",
  "required": [
    "ID"
  ],
  "properties": {
    "ID": {
      "type": "string",
      "description": "ID of the lease to revoke"
    }
  }
}