Skip to content

Commit bbbdf05

Browse files
[codegen] 7.16 synchronization (#6059)
Co-authored-by: Mpdreamz <[email protected]>
1 parent c5ab8aa commit bbbdf05

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

src/ApiGenerator/RestSpecification/Core/cluster.health.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,6 @@
102102
"red"
103103
],
104104
"description":"Wait until cluster is in a specific state"
105-
},
106-
"return_200_for_cluster_health_timeout":{
107-
"type":"boolean",
108-
"description":"Whether to return HTTP 200 instead of 408 in case of a cluster health timeout from the server side"
109105
}
110106
}
111107
}

src/Elasticsearch.Net/Api/RequestParameters/RequestParameters.Cluster.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -187,13 +187,6 @@ public TimeSpan MasterTimeout
187187
set => Q("master_timeout", value);
188188
}
189189

190-
///<summary>Whether to return HTTP 200 instead of 408 in case of a cluster health timeout from the server side</summary>
191-
public bool? Return200ForClusterHealthTimeout
192-
{
193-
get => Q<bool? >("return_200_for_cluster_health_timeout");
194-
set => Q("return_200_for_cluster_health_timeout", value);
195-
}
196-
197190
///<summary>Explicit operation timeout</summary>
198191
public TimeSpan Timeout
199192
{

0 commit comments

Comments
 (0)