@@ -3378,12 +3378,12 @@ public GetIndexSettingsRequestParameters Local(bool local)
3378
3378
///http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/indices-upgrade.html
3379
3379
///</pre>
3380
3380
///</summary>
3381
- public class IndicesGetUpgradeRequestParameters : FluentRequestParameters < IndicesGetUpgradeRequestParameters >
3381
+ public class UpgradeStatusRequestParameters : FluentRequestParameters < UpgradeStatusRequestParameters >
3382
3382
{
3383
3383
3384
3384
internal bool _ignore_unavailable { get ; set ; }
3385
3385
///<summary>Whether specified concrete indices should be ignored when unavailable (missing or closed)</summary>
3386
- public IndicesGetUpgradeRequestParameters IgnoreUnavailable ( bool ignore_unavailable )
3386
+ public UpgradeStatusRequestParameters IgnoreUnavailable ( bool ignore_unavailable )
3387
3387
{
3388
3388
this . _ignore_unavailable = ignore_unavailable ;
3389
3389
this . AddQueryString ( "ignore_unavailable" , this . _ignore_unavailable ) ;
@@ -3393,7 +3393,7 @@ public IndicesGetUpgradeRequestParameters IgnoreUnavailable(bool ignore_unavaila
3393
3393
3394
3394
internal bool _allow_no_indices { get ; set ; }
3395
3395
///<summary>Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)</summary>
3396
- public IndicesGetUpgradeRequestParameters AllowNoIndices ( bool allow_no_indices )
3396
+ public UpgradeStatusRequestParameters AllowNoIndices ( bool allow_no_indices )
3397
3397
{
3398
3398
this . _allow_no_indices = allow_no_indices ;
3399
3399
this . AddQueryString ( "allow_no_indices" , this . _allow_no_indices ) ;
@@ -3403,7 +3403,7 @@ public IndicesGetUpgradeRequestParameters AllowNoIndices(bool allow_no_indices)
3403
3403
3404
3404
internal ExpandWildcards _expand_wildcards { get ; set ; }
3405
3405
///<summary>Whether to expand wildcard expression to concrete indices that are open, closed or both.</summary>
3406
- public IndicesGetUpgradeRequestParameters ExpandWildcards ( ExpandWildcards expand_wildcards )
3406
+ public UpgradeStatusRequestParameters ExpandWildcards ( ExpandWildcards expand_wildcards )
3407
3407
{
3408
3408
this . _expand_wildcards = expand_wildcards ;
3409
3409
this . AddQueryString ( "expand_wildcards" , this . _expand_wildcards ) ;
@@ -3413,7 +3413,7 @@ public IndicesGetUpgradeRequestParameters ExpandWildcards(ExpandWildcards expand
3413
3413
3414
3414
internal bool _human { get ; set ; }
3415
3415
///<summary>Whether to return time and byte values in human-readable format.</summary>
3416
- public IndicesGetUpgradeRequestParameters Human ( bool human )
3416
+ public UpgradeStatusRequestParameters Human ( bool human )
3417
3417
{
3418
3418
this . _human = human ;
3419
3419
this . AddQueryString ( "human" , this . _human ) ;
@@ -4238,12 +4238,12 @@ public AliasRequestParameters MasterTimeout(string master_timeout)
4238
4238
///http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/indices-upgrade.html
4239
4239
///</pre>
4240
4240
///</summary>
4241
- public class IndicesUpgradeRequestParameters : FluentRequestParameters < IndicesUpgradeRequestParameters >
4241
+ public class UpgradeRequestParameters : FluentRequestParameters < UpgradeRequestParameters >
4242
4242
{
4243
4243
4244
4244
internal bool _allow_no_indices { get ; set ; }
4245
4245
///<summary>Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)</summary>
4246
- public IndicesUpgradeRequestParameters AllowNoIndices ( bool allow_no_indices )
4246
+ public UpgradeRequestParameters AllowNoIndices ( bool allow_no_indices )
4247
4247
{
4248
4248
this . _allow_no_indices = allow_no_indices ;
4249
4249
this . AddQueryString ( "allow_no_indices" , this . _allow_no_indices ) ;
@@ -4253,7 +4253,7 @@ public IndicesUpgradeRequestParameters AllowNoIndices(bool allow_no_indices)
4253
4253
4254
4254
internal ExpandWildcards _expand_wildcards { get ; set ; }
4255
4255
///<summary>Whether to expand wildcard expression to concrete indices that are open, closed or both.</summary>
4256
- public IndicesUpgradeRequestParameters ExpandWildcards ( ExpandWildcards expand_wildcards )
4256
+ public UpgradeRequestParameters ExpandWildcards ( ExpandWildcards expand_wildcards )
4257
4257
{
4258
4258
this . _expand_wildcards = expand_wildcards ;
4259
4259
this . AddQueryString ( "expand_wildcards" , this . _expand_wildcards ) ;
@@ -4263,7 +4263,7 @@ public IndicesUpgradeRequestParameters ExpandWildcards(ExpandWildcards expand_wi
4263
4263
4264
4264
internal bool _ignore_unavailable { get ; set ; }
4265
4265
///<summary>Whether specified concrete indices should be ignored when unavailable (missing or closed)</summary>
4266
- public IndicesUpgradeRequestParameters IgnoreUnavailable ( bool ignore_unavailable )
4266
+ public UpgradeRequestParameters IgnoreUnavailable ( bool ignore_unavailable )
4267
4267
{
4268
4268
this . _ignore_unavailable = ignore_unavailable ;
4269
4269
this . AddQueryString ( "ignore_unavailable" , this . _ignore_unavailable ) ;
@@ -4273,7 +4273,7 @@ public IndicesUpgradeRequestParameters IgnoreUnavailable(bool ignore_unavailable
4273
4273
4274
4274
internal bool _wait_for_completion { get ; set ; }
4275
4275
///<summary>Specify whether the request should block until the all segments are upgraded (default: true)</summary>
4276
- public IndicesUpgradeRequestParameters WaitForCompletion ( bool wait_for_completion )
4276
+ public UpgradeRequestParameters WaitForCompletion ( bool wait_for_completion )
4277
4277
{
4278
4278
this . _wait_for_completion = wait_for_completion ;
4279
4279
this . AddQueryString ( "wait_for_completion" , this . _wait_for_completion ) ;
0 commit comments