Interface ImportMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportMetadata,ImportMetadata.Builder
public interface ImportMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetCreateTime()Operation create time.com.google.protobuf.TimestampOrBuildergetCreateTimeOrBuilder()Operation create time.longgetFailureCount()Count of entries that encountered errors while processing.StringgetOperationName()Name of the operation.com.google.protobuf.ByteStringgetOperationNameBytes()Name of the operation.StringgetRequestId()Id of the request / operation.com.google.protobuf.ByteStringgetRequestIdBytes()Id of the request / operation.longgetSuccessCount()Count of entries that were processed successfully.com.google.protobuf.TimestampgetUpdateTime()Operation last update time.com.google.protobuf.TimestampOrBuildergetUpdateTimeOrBuilder()Operation last update time.booleanhasCreateTime()Operation create time.booleanhasUpdateTime()Operation last update time.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getOperationName
String getOperationName()
Name of the operation.
string operation_name = 5;- Returns:
- The operationName.
-
getOperationNameBytes
com.google.protobuf.ByteString getOperationNameBytes()
Name of the operation.
string operation_name = 5;- Returns:
- The bytes for operationName.
-
getRequestId
String getRequestId()
Id of the request / operation. This is parroting back the requestId that was passed in the request.
string request_id = 3;- Returns:
- The requestId.
-
getRequestIdBytes
com.google.protobuf.ByteString getRequestIdBytes()
Id of the request / operation. This is parroting back the requestId that was passed in the request.
string request_id = 3;- Returns:
- The bytes for requestId.
-
hasCreateTime
boolean hasCreateTime()
Operation create time.
.google.protobuf.Timestamp create_time = 4;- Returns:
- Whether the createTime field is set.
-
getCreateTime
com.google.protobuf.Timestamp getCreateTime()
Operation create time.
.google.protobuf.Timestamp create_time = 4;- Returns:
- The createTime.
-
getCreateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
Operation create time.
.google.protobuf.Timestamp create_time = 4;
-
getSuccessCount
long getSuccessCount()
Count of entries that were processed successfully.
int64 success_count = 1;- Returns:
- The successCount.
-
getFailureCount
long getFailureCount()
Count of entries that encountered errors while processing.
int64 failure_count = 2;- Returns:
- The failureCount.
-
hasUpdateTime
boolean hasUpdateTime()
Operation last update time. If the operation is done, this is also the finish time.
.google.protobuf.Timestamp update_time = 6;- Returns:
- Whether the updateTime field is set.
-
getUpdateTime
com.google.protobuf.Timestamp getUpdateTime()
Operation last update time. If the operation is done, this is also the finish time.
.google.protobuf.Timestamp update_time = 6;- Returns:
- The updateTime.
-
getUpdateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder()
Operation last update time. If the operation is done, this is also the finish time.
.google.protobuf.Timestamp update_time = 6;
-
-