7
7
8
8
///This file contains all the typed querystring parameters that are generated of the client spec.
9
9
///This file is automatically generated from https://github.com/elasticsearch/elasticsearch-rest-api-spec
10
- ///Generated of commit
10
+ ///Generated of commit 5f64a7f7e8
11
11
12
12
namespace Elasticsearch . Net
13
13
{
@@ -623,6 +623,66 @@ public CatPendingTasksRequestParameters V(bool v)
623
623
}
624
624
625
625
626
+ ///<summary>Query string descriptor for CatPlugins
627
+ ///<pre>
628
+ ///http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/cat-plugins.html
629
+ ///</pre>
630
+ ///</summary>
631
+ public class CatPluginsRequestParameters : FluentRequestParameters < CatPluginsRequestParameters >
632
+ {
633
+
634
+ internal bool _local { get ; set ; }
635
+ ///<summary>Return local information, do not retrieve the state from master node (default: false)</summary>
636
+ public CatPluginsRequestParameters Local ( bool local )
637
+ {
638
+ this . _local = local ;
639
+ this . AddQueryString ( "local" , this . _local ) ;
640
+ return this ;
641
+ }
642
+
643
+
644
+ internal string _master_timeout { get ; set ; }
645
+ ///<summary>Explicit operation timeout for connection to master node</summary>
646
+ public CatPluginsRequestParameters MasterTimeout ( string master_timeout )
647
+ {
648
+ this . _master_timeout = master_timeout ;
649
+ this . AddQueryString ( "master_timeout" , this . _master_timeout ) ;
650
+ return this ;
651
+ }
652
+
653
+
654
+ internal string [ ] _h { get ; set ; }
655
+ ///<summary>Comma-separated list of column names to display</summary>
656
+ public CatPluginsRequestParameters H ( params string [ ] h )
657
+ {
658
+ this . _h = h ;
659
+ this . AddQueryString ( "h" , this . _h ) ;
660
+ return this ;
661
+ }
662
+
663
+
664
+ internal bool _help { get ; set ; }
665
+ ///<summary>Return help information</summary>
666
+ public CatPluginsRequestParameters Help ( bool help )
667
+ {
668
+ this . _help = help ;
669
+ this . AddQueryString ( "help" , this . _help ) ;
670
+ return this ;
671
+ }
672
+
673
+
674
+ internal bool _v { get ; set ; }
675
+ ///<summary>Verbose mode. Display column headers</summary>
676
+ public CatPluginsRequestParameters V ( bool v )
677
+ {
678
+ this . _v = v ;
679
+ this . AddQueryString ( "v" , this . _v ) ;
680
+ return this ;
681
+ }
682
+
683
+ }
684
+
685
+
626
686
///<summary>Query string descriptor for CatRecovery
627
687
///<pre>
628
688
///http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/cat-recovery.html
@@ -641,16 +701,6 @@ public CatRecoveryRequestParameters Bytes(BytesOptions bytes)
641
701
}
642
702
643
703
644
- internal bool _local { get ; set ; }
645
- ///<summary>Return local information, do not retrieve the state from master node (default: false)</summary>
646
- public CatRecoveryRequestParameters Local ( bool local )
647
- {
648
- this . _local = local ;
649
- this . AddQueryString ( "local" , this . _local ) ;
650
- return this ;
651
- }
652
-
653
-
654
704
internal string _master_timeout { get ; set ; }
655
705
///<summary>Explicit operation timeout for connection to master node</summary>
656
706
public CatRecoveryRequestParameters MasterTimeout ( string master_timeout )
@@ -1031,6 +1081,16 @@ public ClusterRerouteRequestParameters DryRun(bool dry_run)
1031
1081
}
1032
1082
1033
1083
1084
+ internal bool _explain { get ; set ; }
1085
+ ///<summary>Return an explanation of why the commands can or cannot be executed</summary>
1086
+ public ClusterRerouteRequestParameters Explain ( bool explain )
1087
+ {
1088
+ this . _explain = explain ;
1089
+ this . AddQueryString ( "explain" , this . _explain ) ;
1090
+ return this ;
1091
+ }
1092
+
1093
+
1034
1094
internal bool _filter_metadata { get ; set ; }
1035
1095
///<summary>Don't return cluster state metadata (default: false)</summary>
1036
1096
public ClusterRerouteRequestParameters FilterMetadata ( bool filter_metadata )
@@ -3270,6 +3330,16 @@ public OptimizeRequestParameters WaitForMerge(bool wait_for_merge)
3270
3330
return this ;
3271
3331
}
3272
3332
3333
+
3334
+ internal bool _force { get ; set ; }
3335
+ ///<summary>Force a merge operation to run, even if there is a single segment in the index (default: false)</summary>
3336
+ public OptimizeRequestParameters Force ( bool force )
3337
+ {
3338
+ this . _force = force ;
3339
+ this . AddQueryString ( "force" , this . _force ) ;
3340
+ return this ;
3341
+ }
3342
+
3273
3343
}
3274
3344
3275
3345
@@ -3523,6 +3593,46 @@ public PutWarmerRequestParameters ExpandWildcards(ExpandWildcardsOptions expand_
3523
3593
}
3524
3594
3525
3595
3596
+ ///<summary>Query string descriptor for IndicesRecoveryForAll
3597
+ ///<pre>
3598
+ ///http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/indices-recovery.html
3599
+ ///</pre>
3600
+ ///</summary>
3601
+ public class IndicesRecoveryRequestParameters : FluentRequestParameters < IndicesRecoveryRequestParameters >
3602
+ {
3603
+
3604
+ internal bool _detailed { get ; set ; }
3605
+ ///<summary>Whether to display detailed information about shard recovery</summary>
3606
+ public IndicesRecoveryRequestParameters Detailed ( bool detailed )
3607
+ {
3608
+ this . _detailed = detailed ;
3609
+ this . AddQueryString ( "detailed" , this . _detailed ) ;
3610
+ return this ;
3611
+ }
3612
+
3613
+
3614
+ internal bool _active_only { get ; set ; }
3615
+ ///<summary>Display only those recoveries that are currently on-going</summary>
3616
+ public IndicesRecoveryRequestParameters ActiveOnly ( bool active_only )
3617
+ {
3618
+ this . _active_only = active_only ;
3619
+ this . AddQueryString ( "active_only" , this . _active_only ) ;
3620
+ return this ;
3621
+ }
3622
+
3623
+
3624
+ internal bool _human { get ; set ; }
3625
+ ///<summary>Whether to return time and byte values in human-readable format.</summary>
3626
+ public IndicesRecoveryRequestParameters Human ( bool human )
3627
+ {
3628
+ this . _human = human ;
3629
+ this . AddQueryString ( "human" , this . _human ) ;
3630
+ return this ;
3631
+ }
3632
+
3633
+ }
3634
+
3635
+
3526
3636
///<summary>Query string descriptor for IndicesRefreshForAll
3527
3637
///<pre>
3528
3638
///http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/indices-refresh.html
@@ -4953,6 +5063,16 @@ public SearchRequestParameters SuggestText(string suggest_text)
4953
5063
}
4954
5064
4955
5065
5066
+ ///<summary>Query string descriptor for SearchTemplateGet
5067
+ ///<pre>
5068
+ ///http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/search-search.html
5069
+ ///</pre>
5070
+ ///</summary>
5071
+ public class SearchTemplateRequestParameters : FluentRequestParameters < SearchTemplateRequestParameters >
5072
+ {
5073
+ }
5074
+
5075
+
4956
5076
///<summary>Query string descriptor for SnapshotCreate
4957
5077
///<pre>
4958
5078
///http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/modules-snapshots.html
@@ -5143,6 +5263,26 @@ public RestoreRequestParameters WaitForCompletion(bool wait_for_completion)
5143
5263
}
5144
5264
5145
5265
5266
+ ///<summary>Query string descriptor for SnapshotStatus
5267
+ ///<pre>
5268
+ ///http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/modules-snapshots.html
5269
+ ///</pre>
5270
+ ///</summary>
5271
+ public class SnapshotStatusRequestParameters : FluentRequestParameters < SnapshotStatusRequestParameters >
5272
+ {
5273
+
5274
+ internal string _master_timeout { get ; set ; }
5275
+ ///<summary>Explicit operation timeout for connection to master node</summary>
5276
+ public SnapshotStatusRequestParameters MasterTimeout ( string master_timeout )
5277
+ {
5278
+ this . _master_timeout = master_timeout ;
5279
+ this . AddQueryString ( "master_timeout" , this . _master_timeout ) ;
5280
+ return this ;
5281
+ }
5282
+
5283
+ }
5284
+
5285
+
5146
5286
///<summary>Query string descriptor for Suggest
5147
5287
///<pre>
5148
5288
///http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/search-search.html
0 commit comments