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,ToXContent,ToXContentObject,TaskAwareRequest
public class StopDatafeedRequest extends ActionRequest implements 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.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V extends java.lang.Object>, Writeable.Writer<V extends java.lang.Object> -
Field Summary
Fields Modifier and Type Field Description static ParseFieldALLOW_NO_DATAFEEDSstatic ParseFieldFORCEstatic ConstructingObjectParser<StopDatafeedRequest,java.lang.Void>PARSERstatic ParseFieldTIMEOUT -
Constructor Summary
Constructors Constructor Description StopDatafeedRequest(java.lang.String... datafeedIds)Close the specified Datafeeds via their unique datafeedIds -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object other)java.lang.BooleangetAllowNoDatafeeds()java.util.List<java.lang.String>getDatafeedIds()All the datafeedIds to be stoppedjava.lang.BooleangetForce()TimeValuegetTimeout()inthashCode()voidsetAllowNoDatafeeds(boolean allowNoDatafeeds)Whether to ignore if a wildcard expression matches no datafeeds.voidsetForce(boolean force)Should the stopping be forced.voidsetTimeout(TimeValue timeout)How long to wait for the stop request to complete before timing out.static StopDatafeedRequeststopAllDatafeedsRequest()Explicitly stop all datafeedsjava.lang.StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)ActionRequestValidationExceptionvalidate()Methods inherited from class org.elasticsearch.transport.TransportRequest
getParentTask, setParentTaskMethods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddressMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.elasticsearch.tasks.TaskAwareRequest
createTask, getDescription, setParentTask
-
Field Details
-
Constructor Details
-
StopDatafeedRequest
public StopDatafeedRequest(java.lang.String... datafeedIds)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
public java.util.List<java.lang.String> getDatafeedIds()All the datafeedIds to be stopped -
getTimeout
-
setTimeout
How long to wait for the stop request to complete before timing out.- Parameters:
timeout- Default value: 30 minutes
-
getForce
public java.lang.Boolean 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
-
getAllowNoDatafeeds
public java.lang.Boolean getAllowNoDatafeeds() -
setAllowNoDatafeeds
public void setAllowNoDatafeeds(boolean allowNoDatafeeds)Whether to ignore if a wildcard expression matches no datafeeds. This includes_allstring.- Parameters:
allowNoDatafeeds- Whentrueignore if wildcard or_allmatches no datafeeds. Defaults totrue
-
validate
- Specified by:
validatein classActionRequest
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)- Overrides:
equalsin classjava.lang.Object
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-