forked from opensearch-project/opensearch-api-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcat.recovery.yaml
80 lines (80 loc) · 2.46 KB
/
cat.recovery.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
openapi: 3.1.0
info:
title: Schemas of cat.recovery category
description: Schemas of cat.recovery category
version: 1.0.0
paths: {}
components:
schemas:
RecoveryRecord:
type: object
properties:
index:
$ref: '_common.yaml#/components/schemas/IndexName'
shard:
description: The shard name.
type: string
start_time:
$ref: '_common.yaml#/components/schemas/DateTime'
start_time_millis:
$ref: '_common.yaml#/components/schemas/EpochTimeUnitMillis'
stop_time:
$ref: '_common.yaml#/components/schemas/DateTime'
stop_time_millis:
$ref: '_common.yaml#/components/schemas/EpochTimeUnitMillis'
time:
$ref: '_common.yaml#/components/schemas/Duration'
type:
description: The recovery type.
type: string
stage:
description: The recovery stage.
type: string
source_host:
description: The source host.
type: string
source_node:
description: The source node name.
type: string
target_host:
description: The target host.
type: string
target_node:
description: The target node name.
type: string
repository:
description: The repository name.
type: string
snapshot:
description: The snapshot name.
type: string
files:
description: The number of files to recover.
type: string
files_recovered:
description: The files recovered.
type: string
files_percent:
$ref: '_common.yaml#/components/schemas/Percentage'
files_total:
description: The total number of files.
type: string
bytes:
description: The number of bytes to recover.
type: string
bytes_recovered:
description: The bytes recovered.
type: string
bytes_percent:
$ref: '_common.yaml#/components/schemas/Percentage'
bytes_total:
description: The total number of bytes.
type: string
translog_ops:
description: The number of translog operations to recover.
type: string
translog_ops_recovered:
description: The translog operations recovered.
type: string
translog_ops_percent:
$ref: '_common.yaml#/components/schemas/Percentage'