Skip to content

Commit 878b611

Browse files
committed
Update code configuration with 7.9 APIs
(cherry picked from commit 2924231)
1 parent 7698c8c commit 878b611

File tree

1 file changed

+24
-7
lines changed

1 file changed

+24
-7
lines changed

src/ApiGenerator/Configuration/CodeConfiguration.cs

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,19 @@ public static class CodeConfiguration
3535

3636
public static string[] IgnoredApisHighLevel { get; } =
3737
{
38-
"autoscaling.delete_autoscaling_decision.json",
39-
"autoscaling.get_autoscaling_policy.json",
40-
"autoscaling.put_autoscaling_policy.json",
41-
"autoscaling.delete_autoscaling_policy.json",
38+
"dangling_indices.list_dangling_indices.json", // TODO: implement
39+
"dangling_indices.import_dangling_index.json", // TODO: implement
40+
"dangling_indices.delete_dangling_index.json", // TODO: implement
41+
"indices.add_block.json", // TODO: implement
42+
"indices.resolve_index.json", // TODO: implement
43+
"security.clear_cached_privileges.json", // TODO: implement
44+
45+
"autoscaling.get_autoscaling_decision.json", // 7.7 experimental
46+
"autoscaling.delete_autoscaling_decision.json", // experimental
47+
"autoscaling.get_autoscaling_policy.json", // experimental
48+
"autoscaling.put_autoscaling_policy.json", // experimental
49+
"autoscaling.delete_autoscaling_policy.json", // experimental
50+
4251

4352
"indices.delete_index_template.json",
4453
"indices.exists_index_template.json",
@@ -52,33 +61,41 @@ public static class CodeConfiguration
5261
"searchable_snapshots.mount.json",
5362
"searchable_snapshots.repository_stats.json",
5463

55-
"autoscaling.get_autoscaling_decision.json", // 7.7 experimental
56-
"eql.search.json", // 7.7 beta
5764
"get_script_context.json", // 7.7 experimental
5865
"get_script_languages.json", // 7.7 experimental
66+
67+
"indices.exist_type.json", // already removed on client
5968
"indices.create_data_stream.json", // 7.7 experimental
6069
"indices.delete_data_stream.json", // 7.7 experimental
6170
"indices.get_data_stream.json", // 7.7 experimental
6271
"indices.get_data_streams.json", // 7.7 experimental
63-
"ml.delete_data_frame_analytics.json", // 7.7 experimental
72+
"indices.data_streams_stats.json", // 7.7 experimental
73+
6474
"ml.delete_trained_model.json", // 7.7 experimental
6575
"ml.evaluate_data_frame.json", // 7.7 experimental
6676
"ml.explain_data_frame_analytics.json", // 7.7 experimental
6777
"ml.find_file_structure.json", // 7.7 experimental
6878
"ml.get_data_frame_analytics.json", // 7.7 experimental
6979
"ml.get_data_frame_analytics_stats.json", // 7.7 experimental
80+
"ml.delete_data_frame_analytics.json", // 7.7 experimental
7081
"ml.get_trained_models.json", // 7.7 experimental
7182
"ml.get_trained_models_stats.json", // 7.7 experimental
7283
"ml.put_data_frame_analytics.json", // 7.7 experimental
7384
"ml.put_trained_model.json", // 7.7 experimental
7485
"ml.start_data_frame_analytics.json", // 7.7 experimental
7586
"ml.stop_data_frame_analytics.json", // 7.7 experimental
87+
"ml.update_data_frame_analytics.json", // 7.7 experimental
88+
7689
"rank_eval.json", // 7.7 experimental
7790
"scripts_painless_context.json", // 7.7 experimental
7891
"cluster.delete_component_template.json", // 7.8 experimental
7992
"cluster.get_component_template.json", // 7.8 experimental
8093
"cluster.put_component_template.json", // 7.8 experimental
8194
"cluster.exists_component_template.json", // 7.8 experimental
95+
96+
"eql.search.json", // 7.9 beta
97+
"eql.get.json", // 7.9 beta
98+
"eql.delete.json", // 7.9 beta
8299
};
83100

84101
/// <summary>

0 commit comments

Comments
 (0)