Package org.opensearch.client
Class SyncedFlushResponse.ShardFailure
- java.lang.Object
-
- org.opensearch.client.SyncedFlushResponse.ShardFailure
-
- All Implemented Interfaces:
org.opensearch.common.xcontent.ToXContent,org.opensearch.common.xcontent.ToXContentFragment
- Enclosing class:
- SyncedFlushResponse
public static final class SyncedFlushResponse.ShardFailure extends java.lang.Object implements org.opensearch.common.xcontent.ToXContentFragmentDescription of a failed shard copy for an index.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringFAILURE_REASON_FIELDstatic java.lang.StringROUTING_FIELDstatic java.lang.StringSHARD_ID_FIELD
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SyncedFlushResponse.ShardFailurefromXContent(org.opensearch.common.xcontent.XContentParser parser)java.lang.StringgetFailureReason()java.util.Map<java.lang.String,java.lang.Object>getRouting()intgetShardId()org.opensearch.common.xcontent.XContentBuildertoXContent(org.opensearch.common.xcontent.XContentBuilder builder, org.opensearch.common.xcontent.ToXContent.Params params)
-
-
-
Method Detail
-
getShardId
public int getShardId()
- Returns:
- Id of the shard whose copy failed
-
getFailureReason
public java.lang.String getFailureReason()
- Returns:
- Reason for failure of the shard copy
-
getRouting
public java.util.Map<java.lang.String,java.lang.Object> getRouting()
- Returns:
- Additional information about the failure.
-
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.ShardFailure fromXContent(org.opensearch.common.xcontent.XContentParser parser) throws java.io.IOException
- Throws:
java.io.IOException
-
-