File tree Expand file tree Collapse file tree 2 files changed +31
-6
lines changed
tests/default/_core/search Expand file tree Collapse file tree 2 files changed +31
-6
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ components:
145
145
admission_control :
146
146
$ref : ' #/components/schemas/ShardAdmissionControlStats'
147
147
caches :
148
- $ref : ' #/components/schemas/ShardCachesStats '
148
+ $ref : ' #/components/schemas/CachesStats '
149
149
Http :
150
150
type : object
151
151
properties :
@@ -470,11 +470,11 @@ components:
470
470
additionalProperties :
471
471
type : integer
472
472
format : int64
473
- ShardCachesStats :
473
+ CachesStats :
474
474
type : object
475
475
additionalProperties :
476
- $ref : ' #/components/schemas/ShardCacheStats '
477
- ShardCacheStats :
476
+ $ref : ' #/components/schemas/CacheStats '
477
+ CacheStatsBase :
478
478
type : object
479
479
properties :
480
480
size :
@@ -493,8 +493,31 @@ components:
493
493
item_count :
494
494
type : integer
495
495
format : int64
496
- store_name :
497
- type : string
496
+ CacheStats :
497
+ allOf :
498
+ - $ref : ' #/components/schemas/CacheStatsBase'
499
+ - type : object
500
+ properties :
501
+ store_name :
502
+ type : string
503
+ indices :
504
+ type : object
505
+ additionalProperties :
506
+ $ref : ' #/components/schemas/CacheIndicesStats'
507
+ shards :
508
+ type : object
509
+ additionalProperties :
510
+ $ref : ' #/components/schemas/CacheShardStats'
511
+ CacheIndicesStats :
512
+ allOf :
513
+ - $ref : ' #/components/schemas/CacheStatsBase'
514
+ - type : object
515
+ properties : {}
516
+ CacheShardStats :
517
+ allOf :
518
+ - $ref : ' #/components/schemas/CacheStatsBase'
519
+ - type : object
520
+ properties : {}
498
521
AdaptiveSelection :
499
522
type : object
500
523
properties :
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ $schema: ../../../../json_schemas/test_story.schema.yaml
2
2
3
3
description : Test hybrid query with pagination_depth property.
4
4
version : ' >=2.19'
5
+ warnings :
6
+ invalid-path-detected : false
5
7
prologues :
6
8
- path : /books
7
9
method : PUT
You can’t perform that action at this time.
0 commit comments