File tree Expand file tree Collapse file tree 3 files changed +64
-33
lines changed
specification/searchable_snapshots/clear_cache Expand file tree Collapse file tree 3 files changed +64
-33
lines changed Original file line number Diff line number Diff line change @@ -109677,22 +109677,6 @@
109677
109677
"attachedBehaviors": [
109678
109678
"CommonQueryParameters"
109679
109679
],
109680
- "body": {
109681
- "kind": "properties",
109682
- "properties": [
109683
- {
109684
- "name": "stub_c",
109685
- "required": true,
109686
- "type": {
109687
- "kind": "instance_of",
109688
- "type": {
109689
- "name": "integer",
109690
- "namespace": "_types"
109691
- }
109692
- }
109693
- }
109694
- ]
109695
- },
109696
109680
"inherits": {
109697
109681
"type": {
109698
109682
"name": "RequestBase",
@@ -109706,28 +109690,73 @@
109706
109690
},
109707
109691
"path": [
109708
109692
{
109709
- "name": "stub_a",
109710
- "required": true,
109693
+ "description": "A comma-separated list of index names",
109694
+ "name": "index",
109695
+ "required": false,
109711
109696
"type": {
109712
109697
"kind": "instance_of",
109713
109698
"type": {
109714
- "name": "integer ",
109699
+ "name": "Indices ",
109715
109700
"namespace": "_types"
109716
109701
}
109717
109702
}
109718
109703
}
109719
109704
],
109720
109705
"query": [
109721
109706
{
109722
- "name": "stub_b ",
109723
- "required": true ,
109707
+ "name": "expand_wildcards ",
109708
+ "required": false ,
109724
109709
"type": {
109725
109710
"kind": "instance_of",
109726
109711
"type": {
109727
- "name": "integer ",
109712
+ "name": "ExpandWildcards ",
109728
109713
"namespace": "_types"
109729
109714
}
109730
109715
}
109716
+ },
109717
+ {
109718
+ "name": "allow_no_indices",
109719
+ "required": false,
109720
+ "type": {
109721
+ "kind": "instance_of",
109722
+ "type": {
109723
+ "name": "boolean",
109724
+ "namespace": "internal"
109725
+ }
109726
+ }
109727
+ },
109728
+ {
109729
+ "name": "ignore_unavailable",
109730
+ "required": false,
109731
+ "type": {
109732
+ "kind": "instance_of",
109733
+ "type": {
109734
+ "name": "boolean",
109735
+ "namespace": "internal"
109736
+ }
109737
+ }
109738
+ },
109739
+ {
109740
+ "name": "pretty",
109741
+ "required": false,
109742
+ "type": {
109743
+ "kind": "instance_of",
109744
+ "type": {
109745
+ "name": "boolean",
109746
+ "namespace": "internal"
109747
+ }
109748
+ }
109749
+ },
109750
+ {
109751
+ "name": "human",
109752
+ "required": false,
109753
+ "type": {
109754
+ "kind": "instance_of",
109755
+ "type": {
109756
+ "name": "boolean",
109757
+ "namespace": "internal"
109758
+ }
109759
+ }
109731
109760
}
109732
109761
]
109733
109762
},
Original file line number Diff line number Diff line change @@ -11462,11 +11462,12 @@ export interface WatcherSearchTransform {
11462
11462
export type SearchType = 'query_then_fetch' | 'dfs_query_then_fetch'
11463
11463
11464
11464
export interface SearchableSnapshotsClearCacheSearchableSnapshotsClearCacheRequest extends RequestBase {
11465
- stub_a : integer
11466
- stub_b : integer
11467
- body ?: {
11468
- stub_c : integer
11469
- }
11465
+ index ?: Indices
11466
+ expand_wildcards ?: ExpandWildcards
11467
+ allow_no_indices ?: boolean
11468
+ ignore_unavailable ?: boolean
11469
+ pretty ?: boolean
11470
+ human ?: boolean
11470
11471
}
11471
11472
11472
11473
export interface SearchableSnapshotsClearCacheSearchableSnapshotsClearCacheResponse extends ResponseBase {
Original file line number Diff line number Diff line change 18
18
*/
19
19
20
20
import { RequestBase } from '@_types/Base'
21
- import { integer } from '@_types/Numeric '
21
+ import { ExpandWildcards , Indices } from '@_types/common '
22
22
23
23
/**
24
24
* @rest_spec_name searchable_snapshots.clear_cache
@@ -27,12 +27,13 @@ import { integer } from '@_types/Numeric'
27
27
*/
28
28
export interface SearchableSnapshotsClearCacheRequest extends RequestBase {
29
29
path_parts ?: {
30
- stub_a : integer
30
+ index ?: Indices
31
31
}
32
32
query_parameters ?: {
33
- stub_b : integer
34
- }
35
- body ?: {
36
- stub_c : integer
33
+ expand_wildcards ?: ExpandWildcards
34
+ allow_no_indices ?: boolean
35
+ ignore_unavailable ?: boolean
36
+ pretty ?: boolean
37
+ human ?: boolean
37
38
}
38
39
}
You can’t perform that action at this time.
0 commit comments