Skip to content

Commit 9e37c5c

Browse files
authored
Deprecates allow_no_jobs and allow_no_datafeeds parameters
1 parent 30e11d8 commit 9e37c5c

File tree

10 files changed

+84
-5
lines changed

10 files changed

+84
-5
lines changed

output/schema/schema.json

+61-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/validation-errors.json

-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/cat/ml_datafeeds/CatDatafeedsRequest.ts

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ export interface Request extends CatRequestBase {
3030
datafeed_id?: Id
3131
}
3232
query_parameters: {
33+
/**
34+
* @deprecated 7.10.0 Use `allow_no_match` instead.
35+
*/
3336
allow_no_datafeeds?: boolean
3437
}
3538
}

specification/cat/ml_jobs/CatJobsRequest.ts

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ export interface Request extends CatRequestBase {
3030
job_id?: Id
3131
}
3232
query_parameters: {
33+
/**
34+
* @deprecated 7.10.0 Use `allow_no_match` instead.
35+
*/
3336
allow_no_jobs?: boolean
3437
bytes?: Bytes
3538
}

specification/ml/get_datafeed_stats/MlGetDatafeedStatsRequest.ts

+4
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ export interface Request extends RequestBase {
4343
datafeed_id?: Ids
4444
}
4545
query_parameters: {
46+
/**
47+
* @deprecated 7.10.0 Use `allow_no_match` instead.
48+
*/
49+
allow_no_datafeeds?: boolean
4650
/**
4751
* Specifies what to do when the request:
4852
*

specification/ml/get_datafeeds/MlGetDatafeedsRequest.ts

+4
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ export interface Request extends RequestBase {
4242
datafeed_id?: Ids
4343
}
4444
query_parameters: {
45+
/**
46+
* @deprecated 7.10.0 Use `allow_no_match` instead.
47+
*/
48+
allow_no_datafeeds?: boolean
4549
/**
4650
* Specifies what to do when the request:
4751
*

specification/ml/get_job_stats/MlGetJobStatsRequest.ts

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ export interface Request extends RequestBase {
5050
* matches. If this parameter is `false`, the request returns a `404` status
5151
* code when there are no matches or only partial matches.
5252
* @server_default true
53+
* @deprecated 7.10.0 Use `allow_no_match` instead.
5354
*/
5455
allow_no_jobs?: boolean
5556
}

specification/ml/get_jobs/MlGetJobsRequest.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export interface Request extends RequestBase {
5656
*/
5757
allow_no_match?: boolean
5858
/**
59-
* @deprecated 7.10.0
59+
* @deprecated 7.10.0 Use `allow_no_match` instead.
6060
*/
6161
allow_no_jobs?: boolean
6262
/**

specification/ml/stop_datafeed/MlStopDatafeedRequest.ts

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ export interface Request extends RequestBase {
3131
datafeed_id: Id
3232
}
3333
query_parameters: {
34+
/**
35+
* @deprecated 7.10.0 Use `allow_no_match` instead.
36+
*/
37+
allow_no_datafeeds?: boolean
3438
/** @server_default true */
3539
allow_no_match?: boolean
3640
/** @server_default false */

0 commit comments

Comments
 (0)