Skip to content

Commit 43528b3

Browse files
committed
ignore new API's for now
1 parent e9a2864 commit 43528b3

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

src/CodeGeneration/ApiGenerator/ApiGenerator.cs

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,38 @@ public static void Generate(string downloadBranch, params string[] folders)
5454

5555
private static string[] IgnoredApis { get; } =
5656
{
57+
// these API's are not ready for primetime yet
5758
"xpack.ml.delete_filter.json",
5859
"xpack.ml.get_filters.json",
5960
"xpack.ml.put_filter.json",
60-
"rank_eval.json"
61+
"rank_eval.json",
62+
// these API's are new and need to be mapped
63+
"xpack.license.get_basic_status.json",
64+
"xpack.license.post_start_basic.json",
65+
"xpack.ml.delete_calendar.json",
66+
"xpack.ml.delete_calendar_event.json",
67+
"xpack.ml.delete_calendar_job.json",
68+
"xpack.ml.get_calendar_events.json",
69+
"xpack.ml.get_calendars.json",
70+
"xpack.ml.info.json",
71+
"xpack.ml.post_calendar_events.json",
72+
"xpack.ml.put_calendar.json",
73+
"xpack.ml.put_calendar_job.json",
74+
"xpack.ml.get_calendar_job.json",
75+
76+
"xpack.rollup.delete_job.json",
77+
"xpack.rollup.get_jobs.json",
78+
"xpack.rollup.get_rollup_caps.json",
79+
"xpack.rollup.put_job.json",
80+
"xpack.rollup.rollup_search.json",
81+
"xpack.rollup.start_job.json",
82+
"xpack.rollup.stop_job.json",
83+
"xpack.sql.clear_cursor.json",
84+
"xpack.sql.query.json",
85+
"xpack.sql.translate.json",
86+
"xpack.ssl.certificates.json",
87+
88+
"scripts_painless_execute.json",
6189
};
6290

6391
private static RestApiSpec CreateRestApiSpecModel(string downloadBranch, string[] folders)

0 commit comments

Comments
 (0)