Interface BatchDeleteDocumentsMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BatchDeleteDocumentsMetadata,BatchDeleteDocumentsMetadata.Builder
public interface BatchDeleteDocumentsMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommonOperationMetadatagetCommonMetadata()The basic metadata of the long running operation.CommonOperationMetadataOrBuildergetCommonMetadataOrBuilder()The basic metadata of the long running operation.intgetErrorDocumentCount()Total number of documents that failed to be deleted in storage.BatchDeleteDocumentsMetadata.IndividualBatchDeleteStatusgetIndividualBatchDeleteStatuses(int index)The list of response details of each document.intgetIndividualBatchDeleteStatusesCount()The list of response details of each document.List<BatchDeleteDocumentsMetadata.IndividualBatchDeleteStatus>getIndividualBatchDeleteStatusesList()The list of response details of each document.BatchDeleteDocumentsMetadata.IndividualBatchDeleteStatusOrBuildergetIndividualBatchDeleteStatusesOrBuilder(int index)The list of response details of each document.List<? extends BatchDeleteDocumentsMetadata.IndividualBatchDeleteStatusOrBuilder>getIndividualBatchDeleteStatusesOrBuilderList()The list of response details of each document.intgetTotalDocumentCount()Total number of documents deleting from dataset.booleanhasCommonMetadata()The basic metadata of the long running operation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasCommonMetadata
boolean hasCommonMetadata()
The basic metadata of the long running operation.
.google.cloud.documentai.v1beta3.CommonOperationMetadata common_metadata = 1;- Returns:
- Whether the commonMetadata field is set.
-
getCommonMetadata
CommonOperationMetadata getCommonMetadata()
The basic metadata of the long running operation.
.google.cloud.documentai.v1beta3.CommonOperationMetadata common_metadata = 1;- Returns:
- The commonMetadata.
-
getCommonMetadataOrBuilder
CommonOperationMetadataOrBuilder getCommonMetadataOrBuilder()
The basic metadata of the long running operation.
.google.cloud.documentai.v1beta3.CommonOperationMetadata common_metadata = 1;
-
getIndividualBatchDeleteStatusesList
List<BatchDeleteDocumentsMetadata.IndividualBatchDeleteStatus> getIndividualBatchDeleteStatusesList()
The list of response details of each document.
repeated .google.cloud.documentai.v1beta3.BatchDeleteDocumentsMetadata.IndividualBatchDeleteStatus individual_batch_delete_statuses = 2;
-
getIndividualBatchDeleteStatuses
BatchDeleteDocumentsMetadata.IndividualBatchDeleteStatus getIndividualBatchDeleteStatuses(int index)
The list of response details of each document.
repeated .google.cloud.documentai.v1beta3.BatchDeleteDocumentsMetadata.IndividualBatchDeleteStatus individual_batch_delete_statuses = 2;
-
getIndividualBatchDeleteStatusesCount
int getIndividualBatchDeleteStatusesCount()
The list of response details of each document.
repeated .google.cloud.documentai.v1beta3.BatchDeleteDocumentsMetadata.IndividualBatchDeleteStatus individual_batch_delete_statuses = 2;
-
getIndividualBatchDeleteStatusesOrBuilderList
List<? extends BatchDeleteDocumentsMetadata.IndividualBatchDeleteStatusOrBuilder> getIndividualBatchDeleteStatusesOrBuilderList()
The list of response details of each document.
repeated .google.cloud.documentai.v1beta3.BatchDeleteDocumentsMetadata.IndividualBatchDeleteStatus individual_batch_delete_statuses = 2;
-
getIndividualBatchDeleteStatusesOrBuilder
BatchDeleteDocumentsMetadata.IndividualBatchDeleteStatusOrBuilder getIndividualBatchDeleteStatusesOrBuilder(int index)
The list of response details of each document.
repeated .google.cloud.documentai.v1beta3.BatchDeleteDocumentsMetadata.IndividualBatchDeleteStatus individual_batch_delete_statuses = 2;
-
getTotalDocumentCount
int getTotalDocumentCount()
Total number of documents deleting from dataset.
int32 total_document_count = 3;- Returns:
- The totalDocumentCount.
-
getErrorDocumentCount
int getErrorDocumentCount()
Total number of documents that failed to be deleted in storage.
int32 error_document_count = 4;- Returns:
- The errorDocumentCount.
-
-