77
88///This file contains all the typed querystring parameters that are generated of the client spec.
99///This file is automatically generated from https://github.com/elasticsearch/elasticsearch-rest-api-spec
10- ///Generated of commit
10+ ///Generated of commit 5f64a7f7e8
1111
1212namespace Elasticsearch . Net
1313{
@@ -623,6 +623,66 @@ public CatPendingTasksRequestParameters V(bool v)
623623 }
624624
625625
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+
626686 ///<summary>Query string descriptor for CatRecovery
627687 ///<pre>
628688 ///http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/cat-recovery.html
@@ -641,16 +701,6 @@ public CatRecoveryRequestParameters Bytes(BytesOptions bytes)
641701 }
642702
643703
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-
654704 internal string _master_timeout { get ; set ; }
655705 ///<summary>Explicit operation timeout for connection to master node</summary>
656706 public CatRecoveryRequestParameters MasterTimeout ( string master_timeout )
@@ -1031,6 +1081,16 @@ public ClusterRerouteRequestParameters DryRun(bool dry_run)
10311081 }
10321082
10331083
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+
10341094 internal bool _filter_metadata { get ; set ; }
10351095 ///<summary>Don't return cluster state metadata (default: false)</summary>
10361096 public ClusterRerouteRequestParameters FilterMetadata ( bool filter_metadata )
@@ -3270,6 +3330,16 @@ public OptimizeRequestParameters WaitForMerge(bool wait_for_merge)
32703330 return this ;
32713331 }
32723332
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+
32733343 }
32743344
32753345
@@ -3523,6 +3593,46 @@ public PutWarmerRequestParameters ExpandWildcards(ExpandWildcardsOptions expand_
35233593 }
35243594
35253595
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+
35263636 ///<summary>Query string descriptor for IndicesRefreshForAll
35273637 ///<pre>
35283638 ///http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/indices-refresh.html
@@ -4953,6 +5063,16 @@ public SearchRequestParameters SuggestText(string suggest_text)
49535063 }
49545064
49555065
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+
49565076 ///<summary>Query string descriptor for SnapshotCreate
49575077 ///<pre>
49585078 ///http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/modules-snapshots.html
@@ -5143,6 +5263,26 @@ public RestoreRequestParameters WaitForCompletion(bool wait_for_completion)
51435263 }
51445264
51455265
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+
51465286 ///<summary>Query string descriptor for Suggest
51475287 ///<pre>
51485288 ///http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/search-search.html
0 commit comments