Interface BatchCommitWriteStreamsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BatchCommitWriteStreamsResponse
,BatchCommitWriteStreamsResponse.Builder
public interface BatchCommitWriteStreamsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getCommitTime()
The time at which streams were committed in microseconds granularity.com.google.protobuf.TimestampOrBuilder
getCommitTimeOrBuilder()
The time at which streams were committed in microseconds granularity.StorageError
getStreamErrors(int index)
Stream level error if commit failed.int
getStreamErrorsCount()
Stream level error if commit failed.List<StorageError>
getStreamErrorsList()
Stream level error if commit failed.StorageErrorOrBuilder
getStreamErrorsOrBuilder(int index)
Stream level error if commit failed.List<? extends StorageErrorOrBuilder>
getStreamErrorsOrBuilderList()
Stream level error if commit failed.boolean
hasCommitTime()
The time at which streams were committed in microseconds granularity.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasCommitTime
boolean hasCommitTime()
The time at which streams were committed in microseconds granularity. This field will only exist when there are no stream errors. **Note** if this field is not set, it means the commit was not successful.
.google.protobuf.Timestamp commit_time = 1;
- Returns:
- Whether the commitTime field is set.
-
getCommitTime
com.google.protobuf.Timestamp getCommitTime()
The time at which streams were committed in microseconds granularity. This field will only exist when there are no stream errors. **Note** if this field is not set, it means the commit was not successful.
.google.protobuf.Timestamp commit_time = 1;
- Returns:
- The commitTime.
-
getCommitTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCommitTimeOrBuilder()
The time at which streams were committed in microseconds granularity. This field will only exist when there are no stream errors. **Note** if this field is not set, it means the commit was not successful.
.google.protobuf.Timestamp commit_time = 1;
-
getStreamErrorsList
List<StorageError> getStreamErrorsList()
Stream level error if commit failed. Only streams with error will be in the list. If empty, there is no error and all streams are committed successfully. If non empty, certain streams have errors and ZERO stream is committed due to atomicity guarantee.
repeated .google.cloud.bigquery.storage.v1.StorageError stream_errors = 2;
-
getStreamErrors
StorageError getStreamErrors(int index)
Stream level error if commit failed. Only streams with error will be in the list. If empty, there is no error and all streams are committed successfully. If non empty, certain streams have errors and ZERO stream is committed due to atomicity guarantee.
repeated .google.cloud.bigquery.storage.v1.StorageError stream_errors = 2;
-
getStreamErrorsCount
int getStreamErrorsCount()
Stream level error if commit failed. Only streams with error will be in the list. If empty, there is no error and all streams are committed successfully. If non empty, certain streams have errors and ZERO stream is committed due to atomicity guarantee.
repeated .google.cloud.bigquery.storage.v1.StorageError stream_errors = 2;
-
getStreamErrorsOrBuilderList
List<? extends StorageErrorOrBuilder> getStreamErrorsOrBuilderList()
Stream level error if commit failed. Only streams with error will be in the list. If empty, there is no error and all streams are committed successfully. If non empty, certain streams have errors and ZERO stream is committed due to atomicity guarantee.
repeated .google.cloud.bigquery.storage.v1.StorageError stream_errors = 2;
-
getStreamErrorsOrBuilder
StorageErrorOrBuilder getStreamErrorsOrBuilder(int index)
Stream level error if commit failed. Only streams with error will be in the list. If empty, there is no error and all streams are committed successfully. If non empty, certain streams have errors and ZERO stream is committed due to atomicity guarantee.
repeated .google.cloud.bigquery.storage.v1.StorageError stream_errors = 2;
-
-