Class GetIndicesSettingsRequest
- java.lang.Object
-
- org.opensearch.client.opensearch._types.RequestBase
-
- org.opensearch.client.opensearch.indices.GetIndicesSettingsRequest
-
public class GetIndicesSettingsRequest extends RequestBase
Returns settings for one or more indices.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGetIndicesSettingsRequest.BuilderBuilder forGetIndicesSettingsRequest.-
Nested classes/interfaces inherited from class org.opensearch.client.opensearch._types.RequestBase
RequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>>
-
-
Field Summary
Fields Modifier and Type Field Description static Endpoint<GetIndicesSettingsRequest,GetIndicesSettingsResponse,ErrorResponse>_ENDPOINTEndpoint "indices.get_settings".
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.BooleanallowNoIndices()Whether to ignore if a wildcard indices expression resolves into no concrete indices.TimeclusterManagerTimeout()Specify timeout for connection to cluster-managerjava.util.List<ExpandWildcard>expandWildcards()Whether to expand wildcard expression to concrete indices that are open, closed or both.java.lang.BooleanflatSettings()Return settings in flat format (default: false)java.lang.BooleanignoreUnavailable()Whether specified concrete indices should be ignored when unavailable (missing or closed)java.lang.BooleanincludeDefaults()Whether to return all default setting for each of the indices.java.util.List<java.lang.String>index()A comma-separated list of index names; use_allor empty string to perform the operation on all indicesjava.lang.Booleanlocal()Return local information, do not retrieve the state from cluster-manager node (default: false)TimemasterTimeout()Deprecated.java.util.List<java.lang.String>name()The name of the settings that should be includedstatic GetIndicesSettingsRequestof(java.util.function.Function<GetIndicesSettingsRequest.Builder,ObjectBuilder<GetIndicesSettingsRequest>> fn)
-
-
-
Field Detail
-
_ENDPOINT
public static final Endpoint<GetIndicesSettingsRequest,GetIndicesSettingsResponse,ErrorResponse> _ENDPOINT
Endpoint "indices.get_settings".
-
-
Method Detail
-
of
public static GetIndicesSettingsRequest of(java.util.function.Function<GetIndicesSettingsRequest.Builder,ObjectBuilder<GetIndicesSettingsRequest>> fn)
-
allowNoIndices
@Nullable public final java.lang.Boolean allowNoIndices()
Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes_allstring or when no indices have been specified)API name:
allow_no_indices
-
expandWildcards
public final java.util.List<ExpandWildcard> expandWildcards()
Whether to expand wildcard expression to concrete indices that are open, closed or both.API name:
expand_wildcards
-
flatSettings
@Nullable public final java.lang.Boolean flatSettings()
Return settings in flat format (default: false)API name:
flat_settings
-
ignoreUnavailable
@Nullable public final java.lang.Boolean ignoreUnavailable()
Whether specified concrete indices should be ignored when unavailable (missing or closed)API name:
ignore_unavailable
-
includeDefaults
@Nullable public final java.lang.Boolean includeDefaults()
Whether to return all default setting for each of the indices.API name:
include_defaults
-
index
public final java.util.List<java.lang.String> index()
A comma-separated list of index names; use_allor empty string to perform the operation on all indicesAPI name:
index
-
local
@Nullable public final java.lang.Boolean local()
Return local information, do not retrieve the state from cluster-manager node (default: false)API name:
local
-
masterTimeout
@Deprecated @Nullable public final Time masterTimeout()
Deprecated.Specify timeout for connection to masterAPI name:
master_timeout
-
clusterManagerTimeout
@Nullable public final Time clusterManagerTimeout()
Specify timeout for connection to cluster-managerAPI name:
cluster_manager_timeout
-
name
public final java.util.List<java.lang.String> name()
The name of the settings that should be includedAPI name:
name
-
-