Interface ProcessWithDocAiPipelineOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ProcessWithDocAiPipeline
,ProcessWithDocAiPipeline.Builder
public interface ProcessWithDocAiPipelineOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDocuments(int index)
The list of all the resource names of the documents to be processed.com.google.protobuf.ByteString
getDocumentsBytes(int index)
The list of all the resource names of the documents to be processed.int
getDocumentsCount()
The list of all the resource names of the documents to be processed.List<String>
getDocumentsList()
The list of all the resource names of the documents to be processed.String
getExportFolderPath()
The Cloud Storage folder path used to store the exported documents before being sent to CDW.com.google.protobuf.ByteString
getExportFolderPathBytes()
The Cloud Storage folder path used to store the exported documents before being sent to CDW.ProcessorInfo
getProcessorInfo()
The CDW processor information.ProcessorInfoOrBuilder
getProcessorInfoOrBuilder()
The CDW processor information.String
getProcessorResultsFolderPath()
The Cloud Storage folder path used to store the raw results from processors.com.google.protobuf.ByteString
getProcessorResultsFolderPathBytes()
The Cloud Storage folder path used to store the raw results from processors.boolean
hasProcessorInfo()
The CDW processor information.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDocumentsList
List<String> getDocumentsList()
The list of all the resource names of the documents to be processed. Format: projects/{project_number}/locations/{location}/documents/{document_id}.
repeated string documents = 1;
- Returns:
- A list containing the documents.
-
getDocumentsCount
int getDocumentsCount()
The list of all the resource names of the documents to be processed. Format: projects/{project_number}/locations/{location}/documents/{document_id}.
repeated string documents = 1;
- Returns:
- The count of documents.
-
getDocuments
String getDocuments(int index)
The list of all the resource names of the documents to be processed. Format: projects/{project_number}/locations/{location}/documents/{document_id}.
repeated string documents = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The documents at the given index.
-
getDocumentsBytes
com.google.protobuf.ByteString getDocumentsBytes(int index)
The list of all the resource names of the documents to be processed. Format: projects/{project_number}/locations/{location}/documents/{document_id}.
repeated string documents = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the documents at the given index.
-
getExportFolderPath
String getExportFolderPath()
The Cloud Storage folder path used to store the exported documents before being sent to CDW. Format: `gs://<bucket-name>/<folder-name>`.
string export_folder_path = 2;
- Returns:
- The exportFolderPath.
-
getExportFolderPathBytes
com.google.protobuf.ByteString getExportFolderPathBytes()
The Cloud Storage folder path used to store the exported documents before being sent to CDW. Format: `gs://<bucket-name>/<folder-name>`.
string export_folder_path = 2;
- Returns:
- The bytes for exportFolderPath.
-
hasProcessorInfo
boolean hasProcessorInfo()
The CDW processor information.
.google.cloud.contentwarehouse.v1.ProcessorInfo processor_info = 3;
- Returns:
- Whether the processorInfo field is set.
-
getProcessorInfo
ProcessorInfo getProcessorInfo()
The CDW processor information.
.google.cloud.contentwarehouse.v1.ProcessorInfo processor_info = 3;
- Returns:
- The processorInfo.
-
getProcessorInfoOrBuilder
ProcessorInfoOrBuilder getProcessorInfoOrBuilder()
The CDW processor information.
.google.cloud.contentwarehouse.v1.ProcessorInfo processor_info = 3;
-
getProcessorResultsFolderPath
String getProcessorResultsFolderPath()
The Cloud Storage folder path used to store the raw results from processors. Format: `gs://<bucket-name>/<folder-name>`.
string processor_results_folder_path = 4;
- Returns:
- The processorResultsFolderPath.
-
getProcessorResultsFolderPathBytes
com.google.protobuf.ByteString getProcessorResultsFolderPathBytes()
The Cloud Storage folder path used to store the raw results from processors. Format: `gs://<bucket-name>/<folder-name>`.
string processor_results_folder_path = 4;
- Returns:
- The bytes for processorResultsFolderPath.
-
-