SnapshotStatusInfoedit

Information about the snapshot status for the Elasticsearch cluster. For example, the health status.

Propertiesedit

count (integer as int32, required)
Number of snapshots stored for this cluster
healthy (boolean, required)
Health status of snapshots for this cluster
latest_end_time (string as date-time)
The end time of the most recently attempted snapshot
latest_status (string)
Status of the latest snapshot attempt, if any exist.
latest_successful (boolean)
Latest snapshot status
latest_successful_end_time (string as date-time)
The end time of the most recently successful snapshot
recent_success (boolean, required)
Indicates whether the cluster has a relatively recent successful snapshot.
scheduled_time (string as date-time)
Scheduled time of next snapshot attempt

Exampleedit

{
   "count" : 0,
   "healthy" : true,
   "latest_end_time" : "2019-01-01T00:00:00Z",
   "latest_status" : "string",
   "latest_successful" : true,
   "latest_successful_end_time" : "2019-01-01T00:00:00Z",
   "recent_success" : true,
   "scheduled_time" : "2019-01-01T00:00:00Z"
}