Class TransformsRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.cat.CatRequestBase
co.elastic.clients.elasticsearch.cat.TransformsRequest
public class TransformsRequest extends CatRequestBase
Returns configuration and usage information about transforms.
IMPORTANT: cat APIs are only intended for human consumption using the Kibana console or command line. They are not intended for use by applications. For application consumption, use the get transform statistics API.
- See Also:
- API specification
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTransformsRequest.BuilderBuilder forTransformsRequest.Nested classes/interfaces inherited from class co.elastic.clients.elasticsearch.cat.CatRequestBase
CatRequestBase.AbstractBuilder<BuilderT extends CatRequestBase.AbstractBuilder<BuilderT>> -
Field Summary
Fields Modifier and Type Field Description static Endpoint<TransformsRequest,TransformsResponse,ErrorResponse>_ENDPOINTEndpoint "cat.transforms". -
Method Summary
Modifier and Type Method Description java.lang.BooleanallowNoMatch()Whether to ignore if a wildcard expression matches no transforms.java.lang.Integerfrom()skips a number of transform configs, defaults to 0java.util.List<CatTransformColumn>h()Comma-separated list of column names to display.static TransformsRequestof(java.util.function.Function<TransformsRequest.Builder,ObjectBuilder<TransformsRequest>> fn)java.util.List<CatTransformColumn>s()Comma-separated list of column names or column aliases used to sort the response.java.lang.Integersize()specifies a max number of transforms to get, defaults to 100Timetime()Unit used to display time values.java.lang.StringtransformId()The id of the transform for which to get stats.Methods inherited from class co.elastic.clients.elasticsearch._types.RequestBase
toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Field Details
-
_ENDPOINT
Endpoint "cat.transforms".
-
-
Method Details
-
of
public static TransformsRequest of(java.util.function.Function<TransformsRequest.Builder,ObjectBuilder<TransformsRequest>> fn) -
allowNoMatch
@Nullable public final java.lang.Boolean allowNoMatch()Whether to ignore if a wildcard expression matches no transforms. (This includes_allstring or when no transforms have been specified)API name:
allow_no_match -
from
@Nullable public final java.lang.Integer from()skips a number of transform configs, defaults to 0API name:
from -
h
Comma-separated list of column names to display.API name:
h -
s
Comma-separated list of column names or column aliases used to sort the response.API name:
s -
size
@Nullable public final java.lang.Integer size()specifies a max number of transforms to get, defaults to 100API name:
size -
time
Unit used to display time values.API name:
time -
transformId
@Nullable public final java.lang.String transformId()The id of the transform for which to get stats. '_all' or '*' implies all transformsAPI name:
transform_id
-