You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Initial code gen for CCR
* Created all the infra for the CCR api's (request/response/client methods)
* Progress commit implementing the API and coordinated integration test for it
* Add global ccr stats endpoint and tidy up implemented ccr api's thus far
* Auto Follow CCR api's + tests
* default keyword
* CCR url and api tests
* This API comments
///<summary>Request options for CcrDeleteAutoFollowPattern<pre>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-delete-auto-follow-pattern.html</pre></summary>
///<summary>Request options for CcrFollowStats<pre>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-follow-stats.html</pre></summary>
///<summary>Request options for CcrGetAutoFollowPattern<pre>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-auto-follow-pattern.html</pre></summary>
///<summary>Request options for CcrPauseFollow<pre>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-post-pause-follow.html</pre></summary>
///<summary>Request options for CcrPutAutoFollowPattern<pre>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-put-auto-follow-pattern.html</pre></summary>
///<summary>Request options for CcrResumeFollow<pre>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-post-resume-follow.html</pre></summary>
///<summary>Request options for XpackGraphExplore<pre>https://www.elastic.co/guide/en/elasticsearch/reference/current/graph-explore-api.html</pre></summary>
///<summary>DELETE on /_ccr/auto_follow/{name} <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-delete-auto-follow-pattern.html</para></summary>
2380
+
///<param name="name">The name of the auto follow pattern.</param>
2381
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>DELETE on /_ccr/auto_follow/{name} <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-delete-auto-follow-pattern.html</para></summary>
2384
+
///<param name="name">The name of the auto follow pattern.</param>
2385
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>GET on /{index}/_ccr/stats <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-follow-stats.html</para></summary>
2398
+
///<param name="index">A comma-separated list of index patterns; use `_all` to perform the operation on all indices</param>
2399
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>GET on /{index}/_ccr/stats <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-follow-stats.html</para></summary>
2402
+
///<param name="index">A comma-separated list of index patterns; use `_all` to perform the operation on all indices</param>
2403
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>GET on /_ccr/auto_follow <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-auto-follow-pattern.html</para></summary>
2406
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>GET on /_ccr/auto_follow <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-auto-follow-pattern.html</para></summary>
2409
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>GET on /_ccr/auto_follow/{name} <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-auto-follow-pattern.html</para></summary>
2412
+
///<param name="name">The name of the auto follow pattern.</param>
2413
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>GET on /_ccr/auto_follow/{name} <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-auto-follow-pattern.html</para></summary>
2416
+
///<param name="name">The name of the auto follow pattern.</param>
2417
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>POST on /{index}/_ccr/pause_follow <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-post-pause-follow.html</para></summary>
2420
+
///<param name="index">The name of the follower index that should pause following its leader index.</param>
2421
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>POST on /{index}/_ccr/pause_follow <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-post-pause-follow.html</para></summary>
2424
+
///<param name="index">The name of the follower index that should pause following its leader index.</param>
2425
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>PUT on /_ccr/auto_follow/{name} <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-put-auto-follow-pattern.html</para></summary>
2428
+
///<param name="name">The name of the auto follow pattern.</param>
2429
+
///<param name="body">The specification of the auto follow pattern</param>
2430
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>PUT on /_ccr/auto_follow/{name} <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-put-auto-follow-pattern.html</para></summary>
2433
+
///<param name="name">The name of the auto follow pattern.</param>
2434
+
///<param name="body">The specification of the auto follow pattern</param>
2435
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>POST on /{index}/_ccr/resume_follow <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-post-resume-follow.html</para></summary>
2438
+
///<param name="index">The name of the follow index to resume following.</param>
2439
+
///<param name="body">The name of the leader index and other optional ccr related parameters</param>
2440
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>POST on /{index}/_ccr/resume_follow <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-post-resume-follow.html</para></summary>
2443
+
///<param name="index">The name of the follow index to resume following.</param>
2444
+
///<param name="body">The name of the leader index and other optional ccr related parameters</param>
2445
+
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<summary>GET on /{index}/_xpack/graph/_explore <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/graph-explore-api.html</para></summary>
2380
2462
///<param name="index">A comma-separated list of index names to search; use the special string `_all` or Indices.All to perform the operation on all indices</param>
2381
2463
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
0 commit comments