Interface ProcessorInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ProcessorInfo,ProcessorInfo.Builder
public interface ProcessorInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDocumentType()The processor will process the documents with this document type.com.google.protobuf.ByteStringgetDocumentTypeBytes()The processor will process the documents with this document type.StringgetProcessorName()The processor resource name.com.google.protobuf.ByteStringgetProcessorNameBytes()The processor resource name.StringgetSchemaName()The Document schema resource name.com.google.protobuf.ByteStringgetSchemaNameBytes()The Document schema resource name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProcessorName
String getProcessorName()
The processor resource name. Format is `projects/{project}/locations/{location}/processors/{processor}`, or `projects/{project}/locations/{location}/processors/{processor}/processorVersions/{processorVersion}`string processor_name = 1;- Returns:
- The processorName.
-
getProcessorNameBytes
com.google.protobuf.ByteString getProcessorNameBytes()
The processor resource name. Format is `projects/{project}/locations/{location}/processors/{processor}`, or `projects/{project}/locations/{location}/processors/{processor}/processorVersions/{processorVersion}`string processor_name = 1;- Returns:
- The bytes for processorName.
-
getDocumentType
String getDocumentType()
The processor will process the documents with this document type.
string document_type = 2;- Returns:
- The documentType.
-
getDocumentTypeBytes
com.google.protobuf.ByteString getDocumentTypeBytes()
The processor will process the documents with this document type.
string document_type = 2;- Returns:
- The bytes for documentType.
-
getSchemaName
String getSchemaName()
The Document schema resource name. All documents processed by this processor will use this schema. Format: projects/{project_number}/locations/{location}/documentSchemas/{document_schema_id}.string schema_name = 3;- Returns:
- The schemaName.
-
getSchemaNameBytes
com.google.protobuf.ByteString getSchemaNameBytes()
The Document schema resource name. All documents processed by this processor will use this schema. Format: projects/{project_number}/locations/{location}/documentSchemas/{document_schema_id}.string schema_name = 3;- Returns:
- The bytes for schemaName.
-
-