Class TransformConfigUpdate
- java.lang.Object
-
- org.elasticsearch.client.transform.transforms.TransformConfigUpdate
-
- All Implemented Interfaces:
ToXContent,ToXContentObject
public class TransformConfigUpdate extends Object implements ToXContentObject
This class holds the mutable configuration items for a transform
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTransformConfigUpdate.Builder-
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 StringNAME-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description TransformConfigUpdate(SourceConfig source, DestConfig dest, TimeValue frequency, SyncConfig syncConfig, String description)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TransformConfigUpdate.Builderbuilder()booleanequals(Object other)static TransformConfigUpdatefromXContent(XContentParser parser)StringgetDescription()DestConfiggetDestination()TimeValuegetFrequency()SourceConfiggetSource()SyncConfiggetSyncConfig()inthashCode()StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Field Detail
-
NAME
public static final String NAME
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TransformConfigUpdate
public TransformConfigUpdate(SourceConfig source, DestConfig dest, TimeValue frequency, SyncConfig syncConfig, String description)
-
-
Method Detail
-
getSource
public SourceConfig getSource()
-
getDestination
public DestConfig getDestination()
-
getFrequency
public TimeValue getFrequency()
-
getSyncConfig
public SyncConfig getSyncConfig()
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
IOException
-
builder
public static TransformConfigUpdate.Builder builder()
-
fromXContent
public static TransformConfigUpdate fromXContent(XContentParser parser)
-
-