Package org.elasticsearch.client.ml
Class StopDatafeedRequest
java.lang.Object
org.elasticsearch.transport.TransportMessage
org.elasticsearch.transport.TransportRequest
org.elasticsearch.action.ActionRequest
org.elasticsearch.client.ml.StopDatafeedRequest
- All Implemented Interfaces:
Writeable,org.elasticsearch.core.RefCounted,TaskAwareRequest,org.elasticsearch.xcontent.ToXContent,org.elasticsearch.xcontent.ToXContentObject
public class StopDatafeedRequest
extends ActionRequest
implements org.elasticsearch.xcontent.ToXContentObject
Request to stop Machine Learning Datafeeds
-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportRequest
TransportRequest.EmptyNested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
org.elasticsearch.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.xcontent.ToXContent.MapParams, org.elasticsearch.xcontent.ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V extends Object>, Writeable.Writer<V extends Object> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ConstructingObjectParser<StopDatafeedRequest,Void> static final org.elasticsearch.xcontent.ParseFieldFields inherited from interface org.elasticsearch.xcontent.ToXContent
EMPTY_PARAMS -
Constructor Summary
ConstructorsConstructorDescriptionStopDatafeedRequest(String... datafeedIds) Close the specified Datafeeds via their unique datafeedIds -
Method Summary
Modifier and TypeMethodDescriptionbooleanAll the datafeedIds to be stoppedgetForce()org.elasticsearch.core.TimeValueinthashCode()voidsetAllowNoMatch(boolean allowNoMatch) Whether to ignore if a wildcard expression matches no datafeeds.voidsetForce(boolean force) Should the stopping be forced.voidsetTimeout(org.elasticsearch.core.TimeValue timeout) How long to wait for the stop request to complete before timing out.static StopDatafeedRequestExplicitly stop all datafeedstoString()org.elasticsearch.xcontent.XContentBuildertoXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) validate()Methods inherited from class org.elasticsearch.action.ActionRequest
getShouldStoreResult, writeToMethods inherited from class org.elasticsearch.transport.TransportRequest
getParentTask, setParentTaskMethods inherited from class org.elasticsearch.transport.TransportMessage
decRef, hasReferences, incRef, remoteAddress, remoteAddress, tryIncRefMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.elasticsearch.tasks.TaskAwareRequest
createTask, getDescription, setParentTaskMethods inherited from interface org.elasticsearch.xcontent.ToXContentObject
isFragment
-
Field Details
-
TIMEOUT
public static final org.elasticsearch.xcontent.ParseField TIMEOUT -
FORCE
public static final org.elasticsearch.xcontent.ParseField FORCE -
ALLOW_NO_MATCH
public static final org.elasticsearch.xcontent.ParseField ALLOW_NO_MATCH -
PARSER
public static final org.elasticsearch.xcontent.ConstructingObjectParser<StopDatafeedRequest,Void> PARSER
-
-
Constructor Details
-
StopDatafeedRequest
Close the specified Datafeeds via their unique datafeedIds- Parameters:
datafeedIds- must be non-null and non-empty and each datafeedId must be non-null
-
-
Method Details
-
stopAllDatafeedsRequest
Explicitly stop all datafeeds- Returns:
- a
StopDatafeedRequestfor all existing datafeeds
-
getDatafeedIds
All the datafeedIds to be stopped -
getTimeout
public org.elasticsearch.core.TimeValue getTimeout() -
setTimeout
public void setTimeout(org.elasticsearch.core.TimeValue timeout) How long to wait for the stop request to complete before timing out.- Parameters:
timeout- Default value: 30 minutes
-
getForce
-
setForce
public void setForce(boolean force) Should the stopping be forced. Use to forcefully stop a datafeed- Parameters:
force- Whentrueforcefully stop the datafeed. Defaults tofalse
-
getAllowNoMatch
-
setAllowNoMatch
public void setAllowNoMatch(boolean allowNoMatch) Whether to ignore if a wildcard expression matches no datafeeds. This includes_allstring.- Parameters:
allowNoMatch- Whentrueignore if wildcard or_allmatches no datafeeds. Defaults totrue
-
validate
- Specified by:
validatein classActionRequest
-
hashCode
public int hashCode() -
equals
-
toXContent
public org.elasticsearch.xcontent.XContentBuilder toXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) throws IOException - Specified by:
toXContentin interfaceorg.elasticsearch.xcontent.ToXContent- Throws:
IOException
-
toString
- Overrides:
toStringin classTransportRequest
-