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 20939
20939
"name": "Request",
20940
20940
"namespace": "_global.render_search_template"
20941
20941
},
20942
- "path": [],
20942
+ "path": [
20943
+ {
20944
+ "name": "id",
20945
+ "required": false,
20946
+ "type": {
20947
+ "kind": "instance_of",
20948
+ "type": {
20949
+ "name": "Id",
20950
+ "namespace": "_types"
20951
+ }
20952
+ }
20953
+ }
20954
+ ],
20943
20955
"query": []
20944
20956
},
20945
20957
{
82053
82065
"path": [
82054
82066
{
82055
82067
"name": "policy",
82056
- "required": false ,
82068
+ "required": true ,
82057
82069
"type": {
82058
82070
"kind": "instance_of",
82059
82071
"type": {
82771
82783
"path": [
82772
82784
{
82773
82785
"name": "policy",
82774
- "required": false ,
82786
+ "required": true ,
82775
82787
"type": {
82776
82788
"kind": "instance_of",
82777
82789
"type": {
90062
90074
"path": [
90063
90075
{
90064
90076
"name": "index",
90065
- "required": false ,
90077
+ "required": true ,
90066
90078
"type": {
90067
90079
"kind": "instance_of",
90068
90080
"type": {
@@ -112704,7 +112716,7 @@
112704
112716
{
112705
112717
"description": "A string that uniquely identifies a calendar.",
112706
112718
"name": "calendar_id",
112707
- "required": false ,
112719
+ "required": true ,
112708
112720
"type": {
112709
112721
"kind": "instance_of",
112710
112722
"type": {
@@ -124422,7 +124434,7 @@
124422
124434
"path": [
124423
124435
{
124424
124436
"name": "ids",
124425
- "required": false ,
124437
+ "required": true ,
124426
124438
"type": {
124427
124439
"kind": "instance_of",
124428
124440
"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 @@ -907,6 +907,7 @@ export interface ReindexRethrottleResponse {
907
907
}
908
908
909
909
export interface RenderSearchTemplateRequest extends RequestBase {
910
+ id ?: Id
910
911
body ?: {
911
912
file ?: string
912
913
params ?: Record < string , any >
@@ -8053,7 +8054,7 @@ export interface IlmPolicy {
8053
8054
}
8054
8055
8055
8056
export interface IlmDeleteLifecycleRequest extends RequestBase {
8056
- policy ? : Name
8057
+ policy : Name
8057
8058
}
8058
8059
8059
8060
export interface IlmDeleteLifecycleResponse extends AcknowledgedResponseBase {
@@ -8141,7 +8142,7 @@ export interface IlmMoveToStepStepKey {
8141
8142
}
8142
8143
8143
8144
export interface IlmPutLifecycleRequest extends RequestBase {
8144
- policy ? : Name
8145
+ policy : Name
8145
8146
body ?: {
8146
8147
policy ?: IlmPolicy
8147
8148
}
@@ -8963,7 +8964,7 @@ export interface IndicesPutIndexTemplateResponse extends AcknowledgedResponseBas
8963
8964
}
8964
8965
8965
8966
export interface IndicesPutMappingRequest extends RequestBase {
8966
- index ? : Indices
8967
+ index : Indices
8967
8968
type ?: Type
8968
8969
allow_no_indices ?: boolean
8969
8970
expand_wildcards ?: ExpandWildcards
@@ -11559,7 +11560,7 @@ export interface MlOpenJobResponse {
11559
11560
}
11560
11561
11561
11562
export interface MlPostCalendarEventsRequest extends RequestBase {
11562
- calendar_id ? : Id
11563
+ calendar_id : Id
11563
11564
body ?: {
11564
11565
events : MlCalendarEvent [ ]
11565
11566
}
@@ -12948,7 +12949,7 @@ export interface SecurityChangePasswordResponse {
12948
12949
}
12949
12950
12950
12951
export interface SecurityClearApiKeyCacheRequest extends RequestBase {
12951
- ids ? : Ids
12952
+ ids : Ids
12952
12953
}
12953
12954
12954
12955
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