File tree Expand file tree Collapse file tree 9 files changed +33
-22
lines changed
_global/render_search_template
security/clear_api_key_cache Expand file tree Collapse file tree 9 files changed +33
-22
lines changed Original file line number Diff line number Diff line change 20882
20882
"name": "Request",
20883
20883
"namespace": "_global.render_search_template"
20884
20884
},
20885
- "path": [],
20885
+ "path": [
20886
+ {
20887
+ "name": "id",
20888
+ "required": false,
20889
+ "type": {
20890
+ "kind": "instance_of",
20891
+ "type": {
20892
+ "name": "Id",
20893
+ "namespace": "_types"
20894
+ }
20895
+ }
20896
+ }
20897
+ ],
20886
20898
"query": []
20887
20899
},
20888
20900
{
81996
82008
"path": [
81997
82009
{
81998
82010
"name": "policy",
81999
- "required": false ,
82011
+ "required": true ,
82000
82012
"type": {
82001
82013
"kind": "instance_of",
82002
82014
"type": {
82714
82726
"path": [
82715
82727
{
82716
82728
"name": "policy",
82717
- "required": false ,
82729
+ "required": true ,
82718
82730
"type": {
82719
82731
"kind": "instance_of",
82720
82732
"type": {
90005
90017
"path": [
90006
90018
{
90007
90019
"name": "index",
90008
- "required": false ,
90020
+ "required": true ,
90009
90021
"type": {
90010
90022
"kind": "instance_of",
90011
90023
"type": {
@@ -112666,7 +112678,7 @@
112666
112678
{
112667
112679
"description": "A string that uniquely identifies a calendar.",
112668
112680
"name": "calendar_id",
112669
- "required": false ,
112681
+ "required": true ,
112670
112682
"type": {
112671
112683
"kind": "instance_of",
112672
112684
"type": {
@@ -124372,7 +124384,7 @@
124372
124384
"path": [
124373
124385
{
124374
124386
"name": "ids",
124375
- "required": false ,
124387
+ "required": true ,
124376
124388
"type": {
124377
124389
"kind": "instance_of",
124378
124390
"type": {
Original file line number Diff line number Diff line change 1339
1339
],
1340
1340
"response" : []
1341
1341
},
1342
- "render_search_template" : {
1343
- "request" : [
1344
- " Endpoint has \" @stability: TODO"
1345
- ],
1346
- "response" : []
1347
- },
1348
1342
"rollup.delete_job" : {
1349
1343
"request" : [
1350
1344
" Endpoint has \" @stability: TODO"
Original file line number Diff line number Diff line change @@ -901,6 +901,7 @@ export interface ReindexRethrottleResponse {
901
901
}
902
902
903
903
export interface RenderSearchTemplateRequest extends RequestBase {
904
+ id ?: Id
904
905
body ?: {
905
906
file ?: string
906
907
params ?: Record < string , any >
@@ -8047,7 +8048,7 @@ export interface IlmPolicy {
8047
8048
}
8048
8049
8049
8050
export interface IlmDeleteLifecycleRequest extends RequestBase {
8050
- policy ? : Name
8051
+ policy : Name
8051
8052
}
8052
8053
8053
8054
export interface IlmDeleteLifecycleResponse extends AcknowledgedResponseBase {
@@ -8135,7 +8136,7 @@ export interface IlmMoveToStepStepKey {
8135
8136
}
8136
8137
8137
8138
export interface IlmPutLifecycleRequest extends RequestBase {
8138
- policy ? : Name
8139
+ policy : Name
8139
8140
body ?: {
8140
8141
policy ?: IlmPolicy
8141
8142
}
@@ -8957,7 +8958,7 @@ export interface IndicesPutIndexTemplateResponse extends AcknowledgedResponseBas
8957
8958
}
8958
8959
8959
8960
export interface IndicesPutMappingRequest extends RequestBase {
8960
- index ? : Indices
8961
+ index : Indices
8961
8962
type ?: Type
8962
8963
allow_no_indices ?: boolean
8963
8964
expand_wildcards ?: ExpandWildcards
@@ -11554,7 +11555,7 @@ export interface MlOpenJobResponse {
11554
11555
}
11555
11556
11556
11557
export interface MlPostCalendarEventsRequest extends RequestBase {
11557
- calendar_id ? : Id
11558
+ calendar_id : Id
11558
11559
body ?: {
11559
11560
events : MlCalendarEvent [ ]
11560
11561
}
@@ -12942,7 +12943,7 @@ export interface SecurityChangePasswordResponse {
12942
12943
}
12943
12944
12944
12945
export interface SecurityClearApiKeyCacheRequest extends RequestBase {
12945
- ids ? : Ids
12946
+ ids : Ids
12946
12947
}
12947
12948
12948
12949
export interface SecurityClearApiKeyCacheResponse {
Original file line number Diff line number Diff line change 20
20
import { Dictionary } from '@spec_utils/Dictionary'
21
21
import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
22
22
import { RequestBase } from '@_types/Base'
23
+ import { Id } from '@_types/common'
23
24
24
25
/**
25
26
* @rest_spec_name render_search_template
26
27
* @since 0.0.0
27
28
* @stability TODO
28
29
*/
29
30
export interface Request extends RequestBase {
31
+ path_parts ?: {
32
+ id ?: Id
33
+ }
30
34
query_parameters ?: { }
31
35
body ?: {
32
36
file ?: string
Original file line number Diff line number Diff line change @@ -27,6 +27,6 @@ import { Name } from '@_types/common'
27
27
*/
28
28
export interface Request extends RequestBase {
29
29
path_parts ?: {
30
- policy ? : Name
30
+ policy : Name
31
31
}
32
32
}
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import { Name } from '@_types/common'
28
28
*/
29
29
export interface Request extends RequestBase {
30
30
path_parts ?: {
31
- policy ? : Name
31
+ policy : Name
32
32
}
33
33
body ?: {
34
34
policy ?: Policy
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ import { Time } from '@_types/Time'
44
44
*/
45
45
export interface Request extends RequestBase {
46
46
path_parts ?: {
47
- index ? : Indices
47
+ index : Indices
48
48
type ?: Type
49
49
}
50
50
query_parameters ?: {
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ import { CalendarEvent } from '../_types/CalendarEvent'
29
29
export interface Request extends RequestBase {
30
30
path_parts ?: {
31
31
/** A string that uniquely identifies a calendar. */
32
- calendar_id ? : Id
32
+ calendar_id : Id
33
33
}
34
34
body : {
35
35
/** A list of one of more scheduled events. The event’s start and end times may be specified as integer milliseconds since the epoch or as a string in ISO 8601 format. */
Original file line number Diff line number Diff line change @@ -27,6 +27,6 @@ import { Ids } from '@_types/common'
27
27
*/
28
28
export interface Request extends RequestBase {
29
29
path_parts ?: {
30
- ids ? : Ids
30
+ ids : Ids
31
31
}
32
32
}
You can’t perform that action at this time.
0 commit comments