Etcd · Schema

LeaseKeepAliveRequest

Request to renew a lease

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

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

JSON Schema

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