Skip to content

Commit 41ff6db

Browse files
committed
Clean up CatBase.ts quotation mark usage
1 parent 5ee9d8f commit 41ff6db

File tree

1 file changed

+39
-39
lines changed

1 file changed

+39
-39
lines changed

specification/cat/_types/CatBase.ts

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ export enum CatNodeColumn {
683683
* The bound HTTP address.
684684
* @aliases http
685685
*/
686-
'http_address',
686+
http_address,
687687
/**
688688
* The identifier for the node.
689689
* @aliases nodeId
@@ -743,17 +743,17 @@ export enum CatNodeColumn {
743743
* The most recent load average. For example: `0.22`.
744744
* @aliases l
745745
*/
746-
'load_1m',
746+
load_1m,
747747
/**
748748
* The load average for the last five minutes. For example: `0.78`.
749749
* @aliases l
750750
*/
751-
'load_5m',
751+
load_5m,
752752
/**
753753
* The load average for the last fifteen minutes. For example: `1.24`.
754754
* @aliases l
755755
*/
756-
'load_15m',
756+
load_15m,
757757
/**
758758
* The number of mappings, including runtime and object fields.
759759
* @aliases mtc, mappingsTotalCount
@@ -1041,27 +1041,27 @@ export enum CatRecoveryColumn {
10411041
* The host address the index is moving from.
10421042
* @aliases shost
10431043
*/
1044-
'source_host',
1044+
source_host,
10451045
/**
10461046
* The node name the index is moving from.
10471047
* @aliases snode
10481048
*/
1049-
'source_node',
1049+
source_node,
10501050
/**
10511051
* The host address the index is moving to.
10521052
* @aliases thost
10531053
*/
1054-
'target_host',
1054+
target_host,
10551055
/**
10561056
* The node name the index is moving to.
10571057
* @aliases tnode
10581058
*/
1059-
'target_node',
1059+
target_node,
10601060
/**
10611061
* The name of the repository being used. if not relevant 'n/a'.
10621062
* @aliases tnode
10631063
*/
1064-
'repository',
1064+
repository,
10651065
/**
10661066
* The name of the snapshot being used. if not relevant 'n/a'.
10671067
* @aliases snap
@@ -1076,17 +1076,17 @@ export enum CatRecoveryColumn {
10761076
* The number of files currently recovered.
10771077
* @aliases fr
10781078
*/
1079-
'files_recovered',
1079+
files_recovered,
10801080
/**
10811081
* The percentage of files currently recovered.
10821082
* @aliases fp
10831083
*/
1084-
'files_percent',
1084+
files_percent,
10851085
/**
10861086
* The total number of files.
10871087
* @aliases tf
10881088
*/
1089-
'files_total',
1089+
files_total,
10901090
/**
10911091
* The total number of bytes to recover.
10921092
* @aliases b
@@ -1096,52 +1096,52 @@ export enum CatRecoveryColumn {
10961096
* Total number of bytes currently recovered.
10971097
* @aliases br
10981098
*/
1099-
'bytes_recovered',
1099+
bytes_recovered,
11001100
/**
11011101
* The percentage of bytes currently recovered.
11021102
* @aliases bp
11031103
*/
1104-
'bytes_percent',
1104+
bytes_percent,
11051105
/**
11061106
* The total number of bytes.
11071107
* @aliases tb
11081108
*/
1109-
'bytes_total',
1109+
bytes_total,
11101110
/**
11111111
* The total number of translog ops to recover.
11121112
* @aliases to
11131113
*/
1114-
'translog_ops',
1114+
translog_ops,
11151115
/**
11161116
* The total number of translog ops currently recovered.
11171117
* @aliases tor
11181118
*/
1119-
'translog_ops_recovered',
1119+
translog_ops_recovered,
11201120
/**
11211121
* The percentage of translog ops currently recovered.
11221122
* @aliases top
11231123
*/
1124-
'translog_ops_percent',
1124+
translog_ops_percent,
11251125
/**
11261126
* The start time of the recovery operation.
11271127
* @aliases start
11281128
*/
1129-
'start_time',
1129+
start_time,
11301130
/**
11311131
* The start time of the recovery operation in eopch milliseconds.
11321132
* @aliases start_millis
11331133
*/
1134-
'start_time_millis',
1134+
start_time_millis,
11351135
/**
11361136
* The end time of the recovery operation. If ongoing '1970-01-01T00:00:00.000Z'
11371137
* @aliases stop
11381138
*/
1139-
'stop_time',
1139+
stop_time,
11401140
/**
11411141
* The end time of the recovery operation in eopch milliseconds. If ongoing '0'
11421142
* @aliases stop_millis
11431143
*/
1144-
'stop_time_millis'
1144+
stop_time_millis
11451145
}
11461146

11471147
/** @non_exhaustive */
@@ -1232,22 +1232,22 @@ export enum CatSnapshotsColumn {
12321232
* The [unix epoch time](https://en.wikipedia.org/wiki/Unix_time) at which the snapshot process started.
12331233
* @aliases ste, startEpoch
12341234
*/
1235-
'start_epoch',
1235+
start_epoch,
12361236
/**
12371237
* 'HH:MM:SS' time at which the snapshot process started.
12381238
* @aliases sti, startTime
12391239
*/
1240-
'start_time',
1240+
start_time,
12411241
/**
12421242
* The [unix epoch time](https://en.wikipedia.org/wiki/Unix_time) at which the snapshot process ended.
12431243
* @aliases ete, endEpoch
12441244
*/
1245-
'end_epoch',
1245+
end_epoch,
12461246
/**
12471247
* 'HH:MM:SS' time at which the snapshot process ended.
12481248
* @aliases eti, endTime
12491249
*/
1250-
'end_time',
1250+
end_time,
12511251
/**
12521252
* The time it took the snapshot process to complete in [time units](https://www.elastic.co/docs/reference/elasticsearch/rest-apis/api-conventions#time-units).
12531253
* @aliases dur
@@ -1262,17 +1262,17 @@ export enum CatSnapshotsColumn {
12621262
* The number of successful shards in the snapshot.
12631263
* @aliases ss
12641264
*/
1265-
'successful_shards',
1265+
successful_shards,
12661266
/**
12671267
* The number of failed shards in the snapshot.
12681268
* @aliases fs
12691269
*/
1270-
'failed_shards',
1270+
failed_shards,
12711271
/**
12721272
* The total number of shards in the snapshot.
12731273
* @aliases ts
12741274
*/
1275-
'total_shards',
1275+
total_shards,
12761276
/**
12771277
* The reason for any snapshot failures.
12781278
* @aliases r
@@ -1311,7 +1311,7 @@ export enum CatAliasesColumn {
13111311
* Indicates if the index is the write index for the alias.
13121312
* @aliases w, isWriteIndex
13131313
*/
1314-
'is_write_index'
1314+
is_write_index
13151315
}
13161316

13171317
/** @non_exhaustive */
@@ -1397,27 +1397,27 @@ export enum CatComponentColumn {
13971397
* The number of aliases in the component template.
13981398
* @aliases a
13991399
*/
1400-
'alias_count',
1400+
alias_count,
14011401
/**
14021402
* The number of mappings in the component template.
14031403
* @aliases m
14041404
*/
1405-
'mapping_count',
1405+
mapping_count,
14061406
/**
14071407
* The number of settings in the component template.
14081408
* @aliases s
14091409
*/
1410-
'settings_count',
1410+
settings_count,
14111411
/**
14121412
* The number of metadata entries in the component template.
14131413
* @aliases me
14141414
*/
1415-
'metadata_count',
1415+
metadata_count,
14161416
/**
14171417
* The index templates that include this component template.
14181418
* @aliases i
14191419
*/
1420-
'included_in'
1420+
included_in
14211421
}
14221422

14231423
/** @non_exhaustive */
@@ -1790,7 +1790,7 @@ export enum CatShardColumn {
17901790
* Number of documents in shard, for example: `25`.
17911791
* @aliases d, dc
17921792
*/
1793-
'docs',
1793+
docs,
17941794
/**
17951795
* Fielddata cache evictions, for example: `0`.
17961796
* @aliases fe, fielddataEvictions
@@ -2063,7 +2063,7 @@ export enum CatShardColumn {
20632063
* Name of the shard.
20642064
* @aliases s, sh
20652065
*/
2066-
'shard',
2066+
shard,
20672067
/**
20682068
* Number of indexed [sparse vectors](https://www.elastic.co/docs/reference/elasticsearch/mapping-reference/sparse-vector).
20692069
* @aliases svc, sparseVectorCount
@@ -2077,12 +2077,12 @@ export enum CatShardColumn {
20772077
* * `UNASSIGNED`: The shard is not assigned to any node.
20782078
* @aliases st
20792079
*/
2080-
'state',
2080+
state,
20812081
/**
20822082
* Disk space used by the shard, for example: `5kb`.
20832083
* @aliases sto
20842084
*/
2085-
'store',
2085+
store,
20862086
/**
20872087
* Number of current suggest operations, for example: `0`.
20882088
* @aliases suc, suggestCurrent

0 commit comments

Comments
 (0)