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.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.Empty -
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.ParseFieldTIMEOUT -
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.transport.TransportRequest
getParentTask, setParentTaskMethods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddressMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
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
-