Uses of Class
org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest
-
Packages that use PutMappingRequest Package Description org.elasticsearch.action.admin.indices.mapping.put org.elasticsearch.client org.elasticsearch.plugins -
-
Uses of PutMappingRequest in org.elasticsearch.action.admin.indices.mapping.put
Methods in org.elasticsearch.action.admin.indices.mapping.put that return PutMappingRequest Modifier and Type Method Description PutMappingRequestPutMappingRequest. indices(String... indices)Sets the indices this put mapping operation will execute on.PutMappingRequestPutMappingRequest. indicesOptions(IndicesOptions indicesOptions)PutMappingRequestPutMappingRequest. origin(String origin)PutMappingRequestPutMappingRequest. setConcreteIndex(Index index)Sets a concrete index for this put mapping request.PutMappingRequestPutMappingRequest. source(Object... source)A specialized simplified mapping source method, takes the form of simple properties definition: ("field1", "type=string,store=true").PutMappingRequestPutMappingRequest. source(String mappingSource, XContentType xContentType)The mapping source definition.PutMappingRequestPutMappingRequest. source(Map<String,?> mappingSource)The mapping source definition.PutMappingRequestPutMappingRequest. source(BytesReference mappingSource, XContentType xContentType)The mapping source definition.PutMappingRequestPutMappingRequest. source(XContentBuilder mappingBuilder)The mapping source definition.PutMappingRequestPutMappingRequest. type(String type)The type of the mappings.Methods in org.elasticsearch.action.admin.indices.mapping.put with parameters of type PutMappingRequest Modifier and Type Method Description protected ClusterBlockExceptionTransportPutMappingAction. checkBlock(PutMappingRequest request, ClusterState state)protected voidTransportPutMappingAction. masterOperation(PutMappingRequest request, ClusterState state, ActionListener<AcknowledgedResponse> listener)Constructor parameters in org.elasticsearch.action.admin.indices.mapping.put with type arguments of type PutMappingRequest Constructor Description TransportPutMappingAction(TransportService transportService, ClusterService clusterService, ThreadPool threadPool, MetaDataMappingService metaDataMappingService, ActionFilters actionFilters, IndexNameExpressionResolver indexNameExpressionResolver, RequestValidators<PutMappingRequest> requestValidators) -
Uses of PutMappingRequest in org.elasticsearch.client
Methods in org.elasticsearch.client that return PutMappingRequest Modifier and Type Method Description static PutMappingRequestRequests. putMappingRequest(String... indices)Create a create mapping request against one or more indices.Methods in org.elasticsearch.client with parameters of type PutMappingRequest Modifier and Type Method Description ActionFuture<AcknowledgedResponse>IndicesAdminClient. putMapping(PutMappingRequest request)Add mapping definition for a type into one or more indices.voidIndicesAdminClient. putMapping(PutMappingRequest request, ActionListener<AcknowledgedResponse> listener)Add mapping definition for a type into one or more indices.AcknowledgedResponseIndicesClient. putMapping(PutMappingRequest putMappingRequest, RequestOptions options)Deprecated.This method uses an old request object which still refers to types, a deprecated feature.CancellableIndicesClient. putMappingAsync(PutMappingRequest putMappingRequest, RequestOptions options, ActionListener<AcknowledgedResponse> listener)Deprecated.This method uses an old request object which still refers to types, a deprecated feature. -
Uses of PutMappingRequest in org.elasticsearch.plugins
Methods in org.elasticsearch.plugins that return types with arguments of type PutMappingRequest Modifier and Type Method Description default Collection<RequestValidators.RequestValidator<PutMappingRequest>>ActionPlugin. mappingRequestValidators()Returns a collection of validators that are used byRequestValidatorsto validate aPutMappingRequestbefore the executing it.
-