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:
org.elasticsearch.common.io.stream.Writeable,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentObject,org.elasticsearch.tasks.TaskAwareRequest
public class StopDatafeedRequest
extends org.elasticsearch.action.ActionRequest
implements org.elasticsearch.common.xcontent.ToXContentObject
Request to stop Machine Learning Datafeeds
-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportRequest
org.elasticsearch.transport.TransportRequest.Empty -
Field Summary
Fields Modifier and Type Field Description static org.elasticsearch.common.ParseFieldALLOW_NO_MATCHstatic org.elasticsearch.common.ParseFieldFORCEstatic org.elasticsearch.common.xcontent.ConstructingObjectParser<StopDatafeedRequest,java.lang.Void>PARSERstatic org.elasticsearch.common.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.BooleangetAllowNoMatch()java.util.List<java.lang.String>getDatafeedIds()All the datafeedIds to be stoppedjava.lang.BooleangetForce()org.elasticsearch.common.unit.TimeValuegetTimeout()inthashCode()voidsetAllowNoMatch(boolean allowNoMatch)Whether to ignore if a wildcard expression matches no datafeeds.voidsetForce(boolean force)Should the stopping be forced.voidsetTimeout(org.elasticsearch.common.unit.TimeValue timeout)How long to wait for the stop request to complete before timing out.static StopDatafeedRequeststopAllDatafeedsRequest()Explicitly stop all datafeedsjava.lang.StringtoString()org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)org.elasticsearch.action.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, wait
-
Field Details
-
TIMEOUT
public static final org.elasticsearch.common.ParseField TIMEOUT -
FORCE
public static final org.elasticsearch.common.ParseField FORCE -
ALLOW_NO_MATCH
public static final org.elasticsearch.common.ParseField ALLOW_NO_MATCH -
PARSER
public static final org.elasticsearch.common.xcontent.ConstructingObjectParser<StopDatafeedRequest,java.lang.Void> PARSER
-
-
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
public org.elasticsearch.common.unit.TimeValue getTimeout() -
setTimeout
public void setTimeout(org.elasticsearch.common.unit.TimeValue timeout)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
-
getAllowNoMatch
public java.lang.Boolean 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
public org.elasticsearch.action.ActionRequestValidationException validate()- Specified by:
validatein classorg.elasticsearch.action.ActionRequest
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)- Overrides:
equalsin classjava.lang.Object
-
toXContent
public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
java.io.IOException
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-