@@ -3648,12 +3648,12 @@ public SegmentsRequestParameters OperationThreading(string operation_threading)
36483648 ///http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/indices-gateway-snapshot.html
36493649 ///</pre>
36503650 ///</summary>
3651- public class SnapshotRequestParameters : FluentRequestParameters < SnapshotRequestParameters >
3651+ public class GatewaySnapshotRequestParameters : FluentRequestParameters < GatewaySnapshotRequestParameters >
36523652 {
36533653
36543654 internal bool _ignore_unavailable { get ; set ; }
36553655 ///<summary>Whether specified concrete indices should be ignored when unavailable (missing or closed)</summary>
3656- public SnapshotRequestParameters IgnoreUnavailable ( bool ignore_unavailable )
3656+ public GatewaySnapshotRequestParameters IgnoreUnavailable ( bool ignore_unavailable )
36573657 {
36583658 this . _ignore_unavailable = ignore_unavailable ;
36593659 this . AddQueryString ( "ignore_unavailable" , this . _ignore_unavailable ) ;
@@ -3663,7 +3663,7 @@ public SnapshotRequestParameters IgnoreUnavailable(bool ignore_unavailable)
36633663
36643664 internal bool _allow_no_indices { get ; set ; }
36653665 ///<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>
3666- public SnapshotRequestParameters AllowNoIndices ( bool allow_no_indices )
3666+ public GatewaySnapshotRequestParameters AllowNoIndices ( bool allow_no_indices )
36673667 {
36683668 this . _allow_no_indices = allow_no_indices ;
36693669 this . AddQueryString ( "allow_no_indices" , this . _allow_no_indices ) ;
@@ -3673,7 +3673,7 @@ public SnapshotRequestParameters AllowNoIndices(bool allow_no_indices)
36733673
36743674 internal ExpandWildcardsOptions _expand_wildcards { get ; set ; }
36753675 ///<summary>Whether to expand wildcard expression to concrete indices that are open, closed or both.</summary>
3676- public SnapshotRequestParameters ExpandWildcards ( ExpandWildcardsOptions expand_wildcards )
3676+ public GatewaySnapshotRequestParameters ExpandWildcards ( ExpandWildcardsOptions expand_wildcards )
36773677 {
36783678 this . _expand_wildcards = expand_wildcards ;
36793679 this . AddQueryString ( "expand_wildcards" , this . _expand_wildcards ) ;
@@ -4958,12 +4958,12 @@ public SearchRequestParameters SuggestText(string suggest_text)
49584958 ///http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/modules-snapshots.html
49594959 ///</pre>
49604960 ///</summary>
4961- public class SnapshotCreateRequestParameters : FluentRequestParameters < SnapshotCreateRequestParameters >
4961+ public class SnapshotRequestParameters : FluentRequestParameters < SnapshotRequestParameters >
49624962 {
49634963
49644964 internal string _master_timeout { get ; set ; }
49654965 ///<summary>Explicit operation timeout for connection to master node</summary>
4966- public SnapshotCreateRequestParameters MasterTimeout ( string master_timeout )
4966+ public SnapshotRequestParameters MasterTimeout ( string master_timeout )
49674967 {
49684968 this . _master_timeout = master_timeout ;
49694969 this . AddQueryString ( "master_timeout" , this . _master_timeout ) ;
@@ -4973,7 +4973,7 @@ public SnapshotCreateRequestParameters MasterTimeout(string master_timeout)
49734973
49744974 internal bool _wait_for_completion { get ; set ; }
49754975 ///<summary>Should this request wait until the operation has completed before returning</summary>
4976- public SnapshotCreateRequestParameters WaitForCompletion ( bool wait_for_completion )
4976+ public SnapshotRequestParameters WaitForCompletion ( bool wait_for_completion )
49774977 {
49784978 this . _wait_for_completion = wait_for_completion ;
49794979 this . AddQueryString ( "wait_for_completion" , this . _wait_for_completion ) ;
@@ -4988,12 +4988,12 @@ public SnapshotCreateRequestParameters WaitForCompletion(bool wait_for_completio
49884988 ///http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/modules-snapshots.html
49894989 ///</pre>
49904990 ///</summary>
4991- public class SnapshotCreateRepositoryRequestParameters : FluentRequestParameters < SnapshotCreateRepositoryRequestParameters >
4991+ public class CreateRepositoryRequestParameters : FluentRequestParameters < CreateRepositoryRequestParameters >
49924992 {
49934993
49944994 internal string _master_timeout { get ; set ; }
49954995 ///<summary>Explicit operation timeout for connection to master node</summary>
4996- public SnapshotCreateRepositoryRequestParameters MasterTimeout ( string master_timeout )
4996+ public CreateRepositoryRequestParameters MasterTimeout ( string master_timeout )
49974997 {
49984998 this . _master_timeout = master_timeout ;
49994999 this . AddQueryString ( "master_timeout" , this . _master_timeout ) ;
@@ -5003,7 +5003,7 @@ public SnapshotCreateRepositoryRequestParameters MasterTimeout(string master_tim
50035003
50045004 internal string _timeout { get ; set ; }
50055005 ///<summary>Explicit operation timeout</summary>
5006- public SnapshotCreateRepositoryRequestParameters Timeout ( string timeout )
5006+ public CreateRepositoryRequestParameters Timeout ( string timeout )
50075007 {
50085008 this . _timeout = timeout ;
50095009 this . AddQueryString ( "timeout" , this . _timeout ) ;
@@ -5038,12 +5038,12 @@ public SnapshotDeleteRequestParameters MasterTimeout(string master_timeout)
50385038 ///http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/modules-snapshots.html
50395039 ///</pre>
50405040 ///</summary>
5041- public class SnapshotDeleteRepositoryRequestParameters : FluentRequestParameters < SnapshotDeleteRepositoryRequestParameters >
5041+ public class DeleteRepositoryRequestParameters : FluentRequestParameters < DeleteRepositoryRequestParameters >
50425042 {
50435043
50445044 internal string _master_timeout { get ; set ; }
50455045 ///<summary>Explicit operation timeout for connection to master node</summary>
5046- public SnapshotDeleteRepositoryRequestParameters MasterTimeout ( string master_timeout )
5046+ public DeleteRepositoryRequestParameters MasterTimeout ( string master_timeout )
50475047 {
50485048 this . _master_timeout = master_timeout ;
50495049 this . AddQueryString ( "master_timeout" , this . _master_timeout ) ;
@@ -5053,7 +5053,7 @@ public SnapshotDeleteRepositoryRequestParameters MasterTimeout(string master_tim
50535053
50545054 internal string _timeout { get ; set ; }
50555055 ///<summary>Explicit operation timeout</summary>
5056- public SnapshotDeleteRepositoryRequestParameters Timeout ( string timeout )
5056+ public DeleteRepositoryRequestParameters Timeout ( string timeout )
50575057 {
50585058 this . _timeout = timeout ;
50595059 this . AddQueryString ( "timeout" , this . _timeout ) ;
0 commit comments