Class CreateSnapshotRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.snapshot.CreateSnapshotRequest
- All Implemented Interfaces:
JsonpSerializable
@JsonpDeserializable public class CreateSnapshotRequest extends RequestBase implements JsonpSerializable
Creates a snapshot in a repository.
- See Also:
- API specification
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CreateSnapshotRequest.Builder
Builder forCreateSnapshotRequest
.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 JsonpDeserializer<CreateSnapshotRequest>
_DESERIALIZER
Json deserializer forCreateSnapshotRequest
static Endpoint<CreateSnapshotRequest,CreateSnapshotResponse,ErrorResponse>
_ENDPOINT
Endpoint "snapshot.create
". -
Method Summary
Modifier and Type Method Description java.util.List<java.lang.String>
featureStates()
Feature states to include in the snapshot.java.lang.Boolean
ignoreUnavailable()
Iftrue
, the request ignores data streams and indices inindices
that are missing or closed.java.lang.Boolean
includeGlobalState()
Iftrue
, the current cluster state is included in the snapshot.java.util.List<java.lang.String>
indices()
Data streams and indices to include in the snapshot.Time
masterTimeout()
Period to wait for a connection to the master node.java.util.Map<java.lang.String,JsonData>
metadata()
Optional metadata for the snapshot.static CreateSnapshotRequest
of(java.util.function.Function<CreateSnapshotRequest.Builder,ObjectBuilder<CreateSnapshotRequest>> fn)
java.lang.Boolean
partial()
Iftrue
, allows restoring a partial snapshot of indices with unavailable shards.java.lang.String
repository()
Required - Repository for the snapshot.void
serialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)
Serialize this object to JSON.protected void
serializeInternal(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)
protected static void
setupCreateSnapshotRequestDeserializer(ObjectDeserializer<CreateSnapshotRequest.Builder> op)
java.lang.String
snapshot()
Required - Name of the snapshot.java.lang.Boolean
waitForCompletion()
Iftrue
, the request returns a response when the snapshot is complete.Methods inherited from class co.elastic.clients.elasticsearch._types.RequestBase
toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Field Details
-
_DESERIALIZER
Json deserializer forCreateSnapshotRequest
-
_ENDPOINT
public static final Endpoint<CreateSnapshotRequest,CreateSnapshotResponse,ErrorResponse> _ENDPOINTEndpoint "snapshot.create
".
-
-
Method Details
-
of
public static CreateSnapshotRequest of(java.util.function.Function<CreateSnapshotRequest.Builder,ObjectBuilder<CreateSnapshotRequest>> fn) -
featureStates
public final java.util.List<java.lang.String> featureStates()Feature states to include in the snapshot. Each feature state includes one or more system indices containing related data. You can view a list of eligible features using the get features API. Ifinclude_global_state
istrue
, all current feature states are included by default. Ifinclude_global_state
isfalse
, no feature states are included by default.API name:
feature_states
-
includeGlobalState
@Nullable public final java.lang.Boolean includeGlobalState()Iftrue
, the current cluster state is included in the snapshot. The cluster state includes persistent cluster settings, composable index templates, legacy index templates, ingest pipelines, and ILM policies. It also includes data stored in system indices, such as Watches and task records (configurable viafeature_states
).API name:
include_global_state
-
indices
public final java.util.List<java.lang.String> indices()Data streams and indices to include in the snapshot. Supports multi-target syntax. Includes all data streams and indices by default.API name:
indices
-
masterTimeout
Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error.API name:
master_timeout
-
metadata
Optional metadata for the snapshot. May have any contents. Must be less than 1024 bytes. This map is not automatically generated by Elasticsearch.API name:
metadata
-
partial
@Nullable public final java.lang.Boolean partial()Iftrue
, allows restoring a partial snapshot of indices with unavailable shards. Only shards that were successfully included in the snapshot will be restored. All missing shards will be recreated as empty. Iffalse
, the entire restore operation will fail if one or more indices included in the snapshot do not have all primary shards available.API name:
partial
-
repository
public final java.lang.String repository()Required - Repository for the snapshot.API name:
repository
-
snapshot
public final java.lang.String snapshot()Required - Name of the snapshot. Must be unique in the repository.API name:
snapshot
-
waitForCompletion
@Nullable public final java.lang.Boolean waitForCompletion()Iftrue
, the request returns a response when the snapshot is complete. Iffalse
, the request returns a response when the snapshot initializes.API name:
wait_for_completion
-
serialize
Serialize this object to JSON.- Specified by:
serialize
in interfaceJsonpSerializable
-
serializeInternal
-
setupCreateSnapshotRequestDeserializer
protected static void setupCreateSnapshotRequestDeserializer(ObjectDeserializer<CreateSnapshotRequest.Builder> op)
-