File tree 2 files changed +29
-6
lines changed
tests/default/_core/search
2 files changed +29
-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,29 @@ 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
+ $ref : ' #/components/schemas/CacheIndicesStats'
505
+ shards :
506
+ $ref : ' #/components/schemas/CacheShardStats'
507
+ CacheIndicesStats :
508
+ allOf :
509
+ - $ref : ' #/components/schemas/CacheStatsBase'
510
+ - type : object
511
+ properties :
512
+ shards :
513
+ $ref : ' #/components/schemas/CacheShardStats'
514
+ CacheShardStats :
515
+ allOf :
516
+ - $ref : ' #/components/schemas/CacheStatsBase'
517
+ - type : object
518
+ properties : {}
498
519
AdaptiveSelection :
499
520
type : object
500
521
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