Package org.elasticsearch.client.ml
Class DeleteForecastRequest
java.lang.Object
org.elasticsearch.transport.TransportMessage
org.elasticsearch.transport.TransportRequest
org.elasticsearch.action.ActionRequest
org.elasticsearch.client.ml.DeleteForecastRequest
- All Implemented Interfaces:
org.elasticsearch.common.io.stream.Writeable,org.elasticsearch.common.util.concurrent.RefCounted,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentObject,org.elasticsearch.tasks.TaskAwareRequest
public class DeleteForecastRequest
extends org.elasticsearch.action.ActionRequest
implements org.elasticsearch.common.xcontent.ToXContentObject
POJO for a delete forecast request
-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportRequest
org.elasticsearch.transport.TransportRequest.EmptyNested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
org.elasticsearch.common.io.stream.Writeable.Reader<V extends java.lang.Object>, org.elasticsearch.common.io.stream.Writeable.Writer<V extends java.lang.Object> -
Field Summary
Fields Modifier and Type Field Description static java.lang.StringALLstatic org.elasticsearch.common.ParseFieldALLOW_NO_FORECASTSstatic org.elasticsearch.common.ParseFieldFORECAST_IDstatic org.elasticsearch.common.xcontent.ConstructingObjectParser<DeleteForecastRequest,java.lang.Void>PARSERstatic org.elasticsearch.common.ParseFieldTIMEOUTFields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS -
Constructor Summary
Constructors Constructor Description DeleteForecastRequest(java.lang.String jobId)Create a new DeleteForecastRequest for the given Job ID -
Method Summary
Modifier and Type Method Description static DeleteForecastRequestdeleteAllForecasts(java.lang.String jobId)Create a newDeleteForecastRequestthat explicitly deletes all forecastsbooleanequals(java.lang.Object other)java.lang.BooleangetAllowNoForecasts()java.util.List<java.lang.String>getForecastIds()java.lang.StringgetJobId()inthashCode()voidsetAllowNoForecasts(boolean allowNoForecasts)Sets the value of "allow_no_forecasts".voidsetForecastIds(java.lang.String... forecastIds)The forecast IDs to delete.org.elasticsearch.common.unit.TimeValuetimeout()voidtimeout(java.lang.String timeout)Allows to set the timeoutvoidtimeout(org.elasticsearch.common.unit.TimeValue timeout)Allows to set the timeoutorg.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.action.ActionRequest
getShouldStoreResult, writeToMethods inherited from class org.elasticsearch.transport.TransportRequest
getParentTask, setParentTaskMethods inherited from class org.elasticsearch.transport.TransportMessage
decRef, incRef, remoteAddress, remoteAddress, tryIncRefMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.elasticsearch.tasks.TaskAwareRequest
createTask, getDescription, setParentTaskMethods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
Field Details
-
FORECAST_ID
public static final org.elasticsearch.common.ParseField FORECAST_ID -
ALLOW_NO_FORECASTS
public static final org.elasticsearch.common.ParseField ALLOW_NO_FORECASTS -
TIMEOUT
public static final org.elasticsearch.common.ParseField TIMEOUT -
ALL
public static final java.lang.String ALL- See Also:
- Constant Field Values
-
PARSER
public static final org.elasticsearch.common.xcontent.ConstructingObjectParser<DeleteForecastRequest,java.lang.Void> PARSER
-
-
Constructor Details
-
DeleteForecastRequest
public DeleteForecastRequest(java.lang.String jobId)Create a new DeleteForecastRequest for the given Job ID- Parameters:
jobId- the jobId of the Job whose forecast(s) to delete
-
-
Method Details
-
deleteAllForecasts
Create a newDeleteForecastRequestthat explicitly deletes all forecasts- Parameters:
jobId- the jobId of the Job whose forecasts to delete
-
getJobId
public java.lang.String getJobId() -
getForecastIds
public java.util.List<java.lang.String> getForecastIds() -
setForecastIds
public void setForecastIds(java.lang.String... forecastIds)The forecast IDs to delete. Can be also beALLto explicitly delete ALL forecasts- Parameters:
forecastIds- forecast IDs to delete
-
getAllowNoForecasts
public java.lang.Boolean getAllowNoForecasts() -
setAllowNoForecasts
public void setAllowNoForecasts(boolean allowNoForecasts)Sets the value of "allow_no_forecasts".- Parameters:
allowNoForecasts- whentrueno error is thrown whenALLdoes not find any forecasts
-
timeout
public void timeout(java.lang.String timeout)Allows to set the timeout- Parameters:
timeout- timeout as a string (e.g. 1s)
-
timeout
public void timeout(org.elasticsearch.common.unit.TimeValue timeout)Allows to set the timeout- Parameters:
timeout- timeout as aTimeValue
-
timeout
public org.elasticsearch.common.unit.TimeValue timeout() -
equals
public boolean equals(java.lang.Object other)- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
validate
public org.elasticsearch.action.ActionRequestValidationException validate()- Specified by:
validatein classorg.elasticsearch.action.ActionRequest
-
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
-