Interface ImportUserEventsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportUserEventsResponse,ImportUserEventsResponse.Builder
public interface ImportUserEventsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImportErrorConfiggetErrorConfig()Echoes the destination for the complete errors if this field was set in the request.ImportErrorConfigOrBuildergetErrorConfigOrBuilder()Echoes the destination for the complete errors if this field was set in the request.com.google.rpc.StatusgetErrorSamples(int index)A sample of errors encountered while processing the request.intgetErrorSamplesCount()A sample of errors encountered while processing the request.List<com.google.rpc.Status>getErrorSamplesList()A sample of errors encountered while processing the request.com.google.rpc.StatusOrBuildergetErrorSamplesOrBuilder(int index)A sample of errors encountered while processing the request.List<? extends com.google.rpc.StatusOrBuilder>getErrorSamplesOrBuilderList()A sample of errors encountered while processing the request.longgetJoinedEventsCount()Count of user events imported with complete existing Documents.longgetUnjoinedEventsCount()Count of user events imported, but with Document information not found in the existing Branch.booleanhasErrorConfig()Echoes the destination for the complete errors if this field was set in the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getErrorSamplesList
List<com.google.rpc.Status> getErrorSamplesList()
A sample of errors encountered while processing the request.
repeated .google.rpc.Status error_samples = 1;
-
getErrorSamples
com.google.rpc.Status getErrorSamples(int index)
A sample of errors encountered while processing the request.
repeated .google.rpc.Status error_samples = 1;
-
getErrorSamplesCount
int getErrorSamplesCount()
A sample of errors encountered while processing the request.
repeated .google.rpc.Status error_samples = 1;
-
getErrorSamplesOrBuilderList
List<? extends com.google.rpc.StatusOrBuilder> getErrorSamplesOrBuilderList()
A sample of errors encountered while processing the request.
repeated .google.rpc.Status error_samples = 1;
-
getErrorSamplesOrBuilder
com.google.rpc.StatusOrBuilder getErrorSamplesOrBuilder(int index)
A sample of errors encountered while processing the request.
repeated .google.rpc.Status error_samples = 1;
-
hasErrorConfig
boolean hasErrorConfig()
Echoes the destination for the complete errors if this field was set in the request.
.google.cloud.discoveryengine.v1.ImportErrorConfig error_config = 2;- Returns:
- Whether the errorConfig field is set.
-
getErrorConfig
ImportErrorConfig getErrorConfig()
Echoes the destination for the complete errors if this field was set in the request.
.google.cloud.discoveryengine.v1.ImportErrorConfig error_config = 2;- Returns:
- The errorConfig.
-
getErrorConfigOrBuilder
ImportErrorConfigOrBuilder getErrorConfigOrBuilder()
Echoes the destination for the complete errors if this field was set in the request.
.google.cloud.discoveryengine.v1.ImportErrorConfig error_config = 2;
-
getJoinedEventsCount
long getJoinedEventsCount()
Count of user events imported with complete existing Documents.
int64 joined_events_count = 3;- Returns:
- The joinedEventsCount.
-
getUnjoinedEventsCount
long getUnjoinedEventsCount()
Count of user events imported, but with Document information not found in the existing Branch.
int64 unjoined_events_count = 4;- Returns:
- The unjoinedEventsCount.
-
-