Interface IngestConversationsMetadata.IngestConversationsStatsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IngestConversationsMetadata.IngestConversationsStats
,IngestConversationsMetadata.IngestConversationsStats.Builder
- Enclosing class:
- IngestConversationsMetadata
public static interface IngestConversationsMetadata.IngestConversationsStatsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getDuplicatesSkippedCount()
Output only.int
getFailedIngestCount()
Output only.int
getProcessedObjectCount()
Output only.int
getSuccessfulIngestCount()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProcessedObjectCount
int getProcessedObjectCount()
Output only. The number of objects processed during the ingest operation.
int32 processed_object_count = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The processedObjectCount.
-
getDuplicatesSkippedCount
int getDuplicatesSkippedCount()
Output only. The number of objects skipped because another conversation with the same transcript uri had already been ingested.
int32 duplicates_skipped_count = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The duplicatesSkippedCount.
-
getSuccessfulIngestCount
int getSuccessfulIngestCount()
Output only. The number of new conversations added during this ingest operation.
int32 successful_ingest_count = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The successfulIngestCount.
-
getFailedIngestCount
int getFailedIngestCount()
Output only. The number of objects which were unable to be ingested due to errors. The errors are populated in the partial_errors field.
int32 failed_ingest_count = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The failedIngestCount.
-
-