Class JobUpdate.DetectorUpdate
- java.lang.Object
-
- org.elasticsearch.client.ml.job.config.JobUpdate.DetectorUpdate
-
- All Implemented Interfaces:
ToXContent,ToXContentObject
- Enclosing class:
- JobUpdate
public static class JobUpdate.DetectorUpdate extends java.lang.Object implements ToXContentObject
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
Fields Modifier and Type Field Description static ConstructingObjectParser<JobUpdate.DetectorUpdate,java.lang.Void>PARSER-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description DetectorUpdate(int detectorIndex, java.lang.String description, java.util.List<DetectionRule> rules)A detector update to apply to the Machine Learning Job
-
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object other)java.lang.StringgetDescription()intgetDetectorIndex()java.util.List<DetectionRule>getRules()inthashCode()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Field Detail
-
PARSER
public static final ConstructingObjectParser<JobUpdate.DetectorUpdate,java.lang.Void> PARSER
-
-
Constructor Detail
-
DetectorUpdate
public DetectorUpdate(int detectorIndex, java.lang.String description, java.util.List<DetectionRule> rules)A detector update to apply to the Machine Learning Job- Parameters:
detectorIndex- The identifier of the detector to update.description- The new description for the detector.rules- The new list of rules for the detector.
-
-
Method Detail
-
getDetectorIndex
public int getDetectorIndex()
-
getDescription
public java.lang.String getDescription()
-
getRules
public java.util.List<DetectionRule> getRules()
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
-