Class GetTransformStatsRequest.Builder
java.lang.Object
co.elastic.clients.elasticsearch.transform.GetTransformStatsRequest.Builder
- All Implemented Interfaces:
ObjectBuilder<GetTransformStatsRequest>
- Enclosing class:
- GetTransformStatsRequest
public static class GetTransformStatsRequest.Builder extends java.lang.Object implements ObjectBuilder<GetTransformStatsRequest>
Builder for
GetTransformStatsRequest
.-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
Modifier and Type Method Description GetTransformStatsRequest.Builder
allowNoMatch(java.lang.Boolean value)
Whether to ignore if a wildcard expression matches no transforms.GetTransformStatsRequest
build()
Builds aGetTransformStatsRequest
.GetTransformStatsRequest.Builder
from(java.lang.Long value)
skips a number of transform stats, defaults to 0GetTransformStatsRequest.Builder
size(java.lang.Long value)
specifies a max number of transform stats to get, defaults to 100GetTransformStatsRequest.Builder
transformId(java.lang.String value)
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
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
transformId
The id of the transform for which to get stats. '_all' or '*' implies all transformsAPI name:
transform_id
-
allowNoMatch
Whether to ignore if a wildcard expression matches no transforms. (This includes_all
string or when no transforms have been specified)API name:
allow_no_match
-
from
skips a number of transform stats, defaults to 0API name:
from
-
size
specifies a max number of transform stats to get, defaults to 100API name:
size
-
build
Builds aGetTransformStatsRequest
.- Specified by:
build
in interfaceObjectBuilder<GetTransformStatsRequest>
- Throws:
java.lang.NullPointerException
- if some of the required fields are null.
-