@@ -2292,68 +2292,68 @@ public class DocumentExistsRequestParameters : FluentRequestParameters<DocumentE
22922292 ///http://www.elastic.co/guide/en/elasticsearch/reference/master/docs-get.html
22932293 ///</pre>
22942294 ///</summary>
2295- public class ExistsSourceRequestParameters : FluentRequestParameters < ExistsSourceRequestParameters >
2295+ public class SourceExistsRequestParameters : FluentRequestParameters < SourceExistsRequestParameters >
22962296 {
22972297 public override HttpMethod DefaultHttpMethod => HttpMethod . HEAD ;
22982298
22992299 ///<summary>The ID of the parent document</summary>
2300- public ExistsSourceRequestParameters Parent ( string parent ) => this . AddQueryString ( "parent" , parent ) ;
2300+ public SourceExistsRequestParameters Parent ( string parent ) => this . AddQueryString ( "parent" , parent ) ;
23012301
23022302
23032303 ///<summary>Specify the node or shard the operation should be performed on (default: random)</summary>
2304- public ExistsSourceRequestParameters Preference ( string preference ) => this . AddQueryString ( "preference" , preference ) ;
2304+ public SourceExistsRequestParameters Preference ( string preference ) => this . AddQueryString ( "preference" , preference ) ;
23052305
23062306
23072307 ///<summary>Specify whether to perform the operation in realtime or search mode</summary>
2308- public ExistsSourceRequestParameters Realtime ( bool realtime ) => this . AddQueryString ( "realtime" , realtime ) ;
2308+ public SourceExistsRequestParameters Realtime ( bool realtime ) => this . AddQueryString ( "realtime" , realtime ) ;
23092309
23102310
23112311 ///<summary>Refresh the shard containing the document before performing the operation</summary>
2312- public ExistsSourceRequestParameters Refresh ( bool refresh ) => this . AddQueryString ( "refresh" , refresh ) ;
2312+ public SourceExistsRequestParameters Refresh ( bool refresh ) => this . AddQueryString ( "refresh" , refresh ) ;
23132313
23142314
23152315 ///<summary>Specific routing value</summary>
2316- public ExistsSourceRequestParameters Routing ( string routing ) => this . AddQueryString ( "routing" , routing ) ;
2316+ public SourceExistsRequestParameters Routing ( string routing ) => this . AddQueryString ( "routing" , routing ) ;
23172317
23182318
23192319 ///<summary>True or false to return the _source field or not, or a list of fields to return</summary>
2320- public ExistsSourceRequestParameters SourceEnabled ( params string [ ] source_enabled ) => this . AddQueryString ( "_source" , source_enabled ) ;
2320+ public SourceExistsRequestParameters SourceEnabled ( params string [ ] source_enabled ) => this . AddQueryString ( "_source" , source_enabled ) ;
23212321
23222322
23232323 ///<summary>A list of fields to exclude from the returned _source field</summary>
2324- public ExistsSourceRequestParameters SourceExclude ( params string [ ] source_exclude ) => this . AddQueryString ( "_source_exclude" , source_exclude ) ;
2324+ public SourceExistsRequestParameters SourceExclude ( params string [ ] source_exclude ) => this . AddQueryString ( "_source_exclude" , source_exclude ) ;
23252325
23262326
23272327 ///<summary>A list of fields to extract and return from the _source field</summary>
2328- public ExistsSourceRequestParameters SourceInclude ( params string [ ] source_include ) => this . AddQueryString ( "_source_include" , source_include ) ;
2328+ public SourceExistsRequestParameters SourceInclude ( params string [ ] source_include ) => this . AddQueryString ( "_source_include" , source_include ) ;
23292329
23302330
23312331 ///<summary>Explicit version number for concurrency control</summary>
2332- public ExistsSourceRequestParameters Version ( long version ) => this . AddQueryString ( "version" , version ) ;
2332+ public SourceExistsRequestParameters Version ( long version ) => this . AddQueryString ( "version" , version ) ;
23332333
23342334
23352335 ///<summary>Specific version type</summary>
2336- public ExistsSourceRequestParameters VersionType ( VersionType version_type ) => this . AddQueryString ( "version_type" , version_type ) ;
2336+ public SourceExistsRequestParameters VersionType ( VersionType version_type ) => this . AddQueryString ( "version_type" , version_type ) ;
23372337
23382338
23392339 ///<summary>Pretty format the returned JSON response.</summary>
2340- public ExistsSourceRequestParameters Pretty ( bool pretty ) => this . AddQueryString ( "pretty" , pretty ) ;
2340+ public SourceExistsRequestParameters Pretty ( bool pretty ) => this . AddQueryString ( "pretty" , pretty ) ;
23412341
23422342
23432343 ///<summary>Return human readable values for statistics.</summary>
2344- public ExistsSourceRequestParameters Human ( bool human ) => this . AddQueryString ( "human" , human ) ;
2344+ public SourceExistsRequestParameters Human ( bool human ) => this . AddQueryString ( "human" , human ) ;
23452345
23462346
23472347 ///<summary>Include the stack trace of returned errors.</summary>
2348- public ExistsSourceRequestParameters ErrorTrace ( bool error_trace ) => this . AddQueryString ( "error_trace" , error_trace ) ;
2348+ public SourceExistsRequestParameters ErrorTrace ( bool error_trace ) => this . AddQueryString ( "error_trace" , error_trace ) ;
23492349
23502350
23512351 ///<summary>The URL-encoded request definition. Useful for libraries that do not accept a request body for non-POST requests.</summary>
2352- public ExistsSourceRequestParameters Source ( string source ) => this . AddQueryString ( "source" , source ) ;
2352+ public SourceExistsRequestParameters Source ( string source ) => this . AddQueryString ( "source" , source ) ;
23532353
23542354
23552355 ///<summary>A comma-separated list of filters used to reduce the respone.</summary>
2356- public ExistsSourceRequestParameters FilterPath ( params string [ ] filter_path ) => this . AddQueryString ( "filter_path" , filter_path ) ;
2356+ public SourceExistsRequestParameters FilterPath ( params string [ ] filter_path ) => this . AddQueryString ( "filter_path" , filter_path ) ;
23572357
23582358 }
23592359
0 commit comments