Package org.elasticsearch.snapshots
Class RestoreInfo
java.lang.Object
org.elasticsearch.snapshots.RestoreInfo
- All Implemented Interfaces:
Writeable,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentObject
public class RestoreInfo extends java.lang.Object implements org.elasticsearch.common.xcontent.ToXContentObject, Writeable
Information about successfully completed restore operation.
Returned as part of RestoreSnapshotResponse
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
-
Constructor Summary
Constructors Constructor Description RestoreInfo(java.lang.String name, java.util.List<java.lang.String> indices, int totalShards, int successfulShards)RestoreInfo(StreamInput in) -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object o)intfailedShards()Number of failed shardsstatic RestoreInfofromXContent(org.elasticsearch.common.xcontent.XContentParser parser)inthashCode()java.util.List<java.lang.String>indices()List of restored indicesjava.lang.Stringname()Snapshot namestatic RestoreInforeadOptionalRestoreInfo(StreamInput in)Reads optional restore info fromStreamInputRestStatusstatus()REST status of the operationintsuccessfulShards()Number of successful shardsjava.lang.StringtoString()inttotalShards()Number of shards being restoredorg.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.
-
Constructor Details
-
RestoreInfo
public RestoreInfo(java.lang.String name, java.util.List<java.lang.String> indices, int totalShards, int successfulShards) -
RestoreInfo
- Throws:
java.io.IOException
-
-
Method Details
-
name
public java.lang.String name()Snapshot name- Returns:
- snapshot name
-
indices
public java.util.List<java.lang.String> indices()List of restored indices- Returns:
- list of restored indices
-
totalShards
public int totalShards()Number of shards being restored- Returns:
- number of being restored
-
failedShards
public int failedShards()Number of failed shards- Returns:
- number of failed shards
-
successfulShards
public int successfulShards()Number of successful shards- Returns:
- number of successful shards
-
status
REST status of the operation- Returns:
- REST status
-
toXContent
public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
java.io.IOException
-
fromXContent
public static RestoreInfo fromXContent(org.elasticsearch.common.xcontent.XContentParser parser) throws java.io.IOException- Throws:
java.io.IOException
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput. -
readOptionalRestoreInfo
Reads optional restore info fromStreamInput- Parameters:
in- stream input- Returns:
- restore info
- Throws:
java.io.IOException
-
equals
public boolean equals(java.lang.Object o)- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-