Uses of Class
org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsRequest
-
Packages that use UpdateSettingsRequest Package Description org.elasticsearch.action.admin.indices.settings.put org.elasticsearch.client -
-
Uses of UpdateSettingsRequest in org.elasticsearch.action.admin.indices.settings.put
Methods in org.elasticsearch.action.admin.indices.settings.put that return UpdateSettingsRequest Modifier and Type Method Description UpdateSettingsRequestUpdateSettingsRequest. fromXContent(XContentParser parser)UpdateSettingsRequestUpdateSettingsRequest. indices(String... indices)Sets the indices to apply to settings update toUpdateSettingsRequestUpdateSettingsRequest. indicesOptions(IndicesOptions indicesOptions)UpdateSettingsRequestUpdateSettingsRequest. setPreserveExisting(boolean preserveExisting)Iff set totruethis settings update will only add settings not already set on an index.UpdateSettingsRequestUpdateSettingsRequest. settings(String source, XContentType xContentType)Sets the settings to be updated (either json or yaml format)UpdateSettingsRequestUpdateSettingsRequest. settings(Map<String,?> source)Sets the settings to be updated (either json or yaml format)UpdateSettingsRequestUpdateSettingsRequest. settings(Settings settings)Sets the settings to be updatedUpdateSettingsRequestUpdateSettingsRequest. settings(Settings.Builder settings)Sets the settings to be updatedMethods in org.elasticsearch.action.admin.indices.settings.put with parameters of type UpdateSettingsRequest Modifier and Type Method Description protected ClusterBlockExceptionTransportUpdateSettingsAction. checkBlock(UpdateSettingsRequest request, ClusterState state)protected voidTransportUpdateSettingsAction. masterOperation(UpdateSettingsRequest request, ClusterState state, ActionListener<AcknowledgedResponse> listener) -
Uses of UpdateSettingsRequest in org.elasticsearch.client
Methods in org.elasticsearch.client that return UpdateSettingsRequest Modifier and Type Method Description static UpdateSettingsRequestRequests. updateSettingsRequest(String... indices)A request to update indices settings.Methods in org.elasticsearch.client with parameters of type UpdateSettingsRequest Modifier and Type Method Description AcknowledgedResponseIndicesClient. putSettings(UpdateSettingsRequest updateSettingsRequest, RequestOptions options)Updates specific index level settings using the Update Indices Settings API.CancellableIndicesClient. putSettingsAsync(UpdateSettingsRequest updateSettingsRequest, RequestOptions options, ActionListener<AcknowledgedResponse> listener)Asynchronously updates specific index level settings using the Update Indices Settings API.ActionFuture<AcknowledgedResponse>IndicesAdminClient. updateSettings(UpdateSettingsRequest request)Updates settings of one or more indices.voidIndicesAdminClient. updateSettings(UpdateSettingsRequest request, ActionListener<AcknowledgedResponse> listener)Updates settings of one or more indices.
-