Package org.opensearch.client
Class SyncedFlushResponse.IndexResult
- java.lang.Object
-
- org.opensearch.client.SyncedFlushResponse.IndexResult
-
- All Implemented Interfaces:
org.opensearch.common.xcontent.ToXContent,org.opensearch.common.xcontent.ToXContentFragment
- Enclosing class:
- SyncedFlushResponse
public static final class SyncedFlushResponse.IndexResult extends java.lang.Object implements org.opensearch.common.xcontent.ToXContentFragmentDescription for the flush/synced results for a particular index. This includes total, successful and failed copies along with failure description for each failed copy.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringFAILED_FIELDstatic java.lang.StringFAILURES_FIELDstatic java.lang.StringSUCCESSFUL_FIELDstatic java.lang.StringTOTAL_FIELD
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intfailedShards()java.util.List<SyncedFlushResponse.ShardFailure>failures()static SyncedFlushResponse.IndexResultfromXContent(org.opensearch.common.xcontent.XContentParser parser)intsuccessfulShards()inttotalShards()org.opensearch.common.xcontent.XContentBuildertoXContent(org.opensearch.common.xcontent.XContentBuilder builder, org.opensearch.common.xcontent.ToXContent.Params params)
-
-
-
Field Detail
-
TOTAL_FIELD
public static final java.lang.String TOTAL_FIELD
- See Also:
- Constant Field Values
-
SUCCESSFUL_FIELD
public static final java.lang.String SUCCESSFUL_FIELD
- See Also:
- Constant Field Values
-
FAILED_FIELD
public static final java.lang.String FAILED_FIELD
- See Also:
- Constant Field Values
-
FAILURES_FIELD
public static final java.lang.String FAILURES_FIELD
- See Also:
- Constant Field Values
-
-
Method Detail
-
totalShards
public int totalShards()
- Returns:
- The total number of shard copies that were processed for this index.
-
successfulShards
public int successfulShards()
- Returns:
- The number of successful shard copies that were processed for this index.
-
failedShards
public int failedShards()
- Returns:
- The number of failed shard copies that were processed for this index.
-
failures
public java.util.List<SyncedFlushResponse.ShardFailure> failures()
- Returns:
- A list of
SyncedFlushResponse.ShardFailureobjects that describe each of the failed shard copies for this index.
-
toXContent
public org.opensearch.common.xcontent.XContentBuilder toXContent(org.opensearch.common.xcontent.XContentBuilder builder, org.opensearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceorg.opensearch.common.xcontent.ToXContent- Throws:
java.io.IOException
-
fromXContent
public static SyncedFlushResponse.IndexResult fromXContent(org.opensearch.common.xcontent.XContentParser parser) throws java.io.IOException
- Throws:
java.io.IOException
-
-