Interface BatchDeleteDocumentsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BatchDeleteDocumentsRequest
,BatchDeleteDocumentsRequest.Builder
public interface BatchDeleteDocumentsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDataset()
Required.com.google.protobuf.ByteString
getDatasetBytes()
Required.BatchDatasetDocuments
getDatasetDocuments()
Required.BatchDatasetDocumentsOrBuilder
getDatasetDocumentsOrBuilder()
Required.boolean
hasDatasetDocuments()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDataset
String getDataset()
Required. The dataset resource name. Format: projects/{project}/locations/{location}/processors/{processor}/dataset
string dataset = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The dataset.
-
getDatasetBytes
com.google.protobuf.ByteString getDatasetBytes()
Required. The dataset resource name. Format: projects/{project}/locations/{location}/processors/{processor}/dataset
string dataset = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for dataset.
-
hasDatasetDocuments
boolean hasDatasetDocuments()
Required. Dataset documents input. If given `filter`, all documents satisfying the filter will be deleted. If given documentIds, a maximum of 50 documents can be deleted in a batch. The request will be rejected if more than 50 document_ids are provided.
.google.cloud.documentai.v1beta3.BatchDatasetDocuments dataset_documents = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the datasetDocuments field is set.
-
getDatasetDocuments
BatchDatasetDocuments getDatasetDocuments()
Required. Dataset documents input. If given `filter`, all documents satisfying the filter will be deleted. If given documentIds, a maximum of 50 documents can be deleted in a batch. The request will be rejected if more than 50 document_ids are provided.
.google.cloud.documentai.v1beta3.BatchDatasetDocuments dataset_documents = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The datasetDocuments.
-
getDatasetDocumentsOrBuilder
BatchDatasetDocumentsOrBuilder getDatasetDocumentsOrBuilder()
Required. Dataset documents input. If given `filter`, all documents satisfying the filter will be deleted. If given documentIds, a maximum of 50 documents can be deleted in a batch. The request will be rejected if more than 50 document_ids are provided.
.google.cloud.documentai.v1beta3.BatchDatasetDocuments dataset_documents = 3 [(.google.api.field_behavior) = REQUIRED];
-
-