We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2abe27e commit ea218ddCopy full SHA for ea218dd
x-pack/plugin/rollup/src/main/java/org/elasticsearch/xpack/downsample/RestDownsampleAction.java
@@ -10,6 +10,8 @@
10
import org.elasticsearch.client.internal.node.NodeClient;
11
import org.elasticsearch.rest.BaseRestHandler;
12
import org.elasticsearch.rest.RestRequest;
13
+import org.elasticsearch.rest.Scope;
14
+import org.elasticsearch.rest.ServerlessScope;
15
import org.elasticsearch.rest.action.RestToXContentListener;
16
import org.elasticsearch.xpack.core.downsample.DownsampleAction;
17
import org.elasticsearch.xpack.core.downsample.DownsampleConfig;
@@ -19,6 +21,7 @@
19
21
20
22
import static org.elasticsearch.rest.RestRequest.Method.POST;
23
24
+@ServerlessScope(Scope.INTERNAL)
25
public class RestDownsampleAction extends BaseRestHandler {
26
27
@Override
0 commit comments