Class SourceConfig
- java.lang.Object
-
- org.elasticsearch.client.dataframe.transforms.SourceConfig
-
- All Implemented Interfaces:
ToXContent,ToXContentObject
public class SourceConfig extends java.lang.Object implements ToXContentObject
Class encapsulating all options for aDataFrameTransformConfiggathering data
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSourceConfig.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 ParseFieldINDEXstatic ConstructingObjectParser<SourceConfig,java.lang.Void>PARSERstatic ParseFieldQUERY-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description SourceConfig(java.lang.String... index)Create a new SourceConfig for the provided indices.
-
Method Summary
Modifier and Type Method Description static SourceConfig.Builderbuilder()booleanequals(java.lang.Object other)java.lang.String[]getIndex()QueryConfiggetQueryConfig()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
-
QUERY
public static final ParseField QUERY
-
INDEX
public static final ParseField INDEX
-
PARSER
public static final ConstructingObjectParser<SourceConfig,java.lang.Void> PARSER
-
-
Constructor Detail
-
SourceConfig
public SourceConfig(java.lang.String... index)
Create a new SourceConfig for the provided indices.QueryConfigdefaults to a MatchAll query.- Parameters:
index- Any number of indices. At least one non-null, non-empty, index should be provided
-
-
Method Detail
-
getIndex
public java.lang.String[] getIndex()
-
getQueryConfig
public QueryConfig getQueryConfig()
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
builder
public static SourceConfig.Builder builder()
-
-