Class GetTransformStatsRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.transform.GetTransformStatsRequest
public class GetTransformStatsRequest extends RequestBase
Retrieves usage information for transforms.
- See Also:
- API specification
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGetTransformStatsRequest.BuilderBuilder forGetTransformStatsRequest.Nested classes/interfaces inherited from class co.elastic.clients.elasticsearch._types.RequestBase
RequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>> -
Field Summary
Fields Modifier and Type Field Description static Endpoint<GetTransformStatsRequest,GetTransformStatsResponse,ErrorResponse>_ENDPOINTEndpoint "transform.get_transform_stats". -
Method Summary
Modifier and Type Method Description java.lang.BooleanallowNoMatch()Whether to ignore if a wildcard expression matches no transforms.java.lang.Longfrom()skips a number of transform stats, defaults to 0static GetTransformStatsRequestof(java.util.function.Function<GetTransformStatsRequest.Builder,ObjectBuilder<GetTransformStatsRequest>> fn)java.lang.Longsize()specifies a max number of transform stats to get, defaults to 100java.lang.StringtransformId()Required - The id of the transform for which to get stats.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
_ENDPOINT
public static final Endpoint<GetTransformStatsRequest,GetTransformStatsResponse,ErrorResponse> _ENDPOINTEndpoint "transform.get_transform_stats".
-
-
Method Details
-
of
public static GetTransformStatsRequest of(java.util.function.Function<GetTransformStatsRequest.Builder,ObjectBuilder<GetTransformStatsRequest>> 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.Long from()skips a number of transform stats, defaults to 0API name:
from -
size
@Nullable public final java.lang.Long size()specifies a max number of transform stats to get, defaults to 100API name:
size -
transformId
public final java.lang.String transformId()Required - The id of the transform for which to get stats. '_all' or '*' implies all transformsAPI name:
transform_id
-