Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,7 @@ public final ProcessResponse processDocument(String name) {
* .setSkipHumanReview(true)
* .setFieldMask(FieldMask.newBuilder().build())
* .setProcessOptions(ProcessOptions.newBuilder().build())
* .putAllLabels(new HashMap<String, String>())
* .build();
* ProcessResponse response = documentProcessorServiceClient.processDocument(request);
* }
Expand Down Expand Up @@ -803,6 +804,7 @@ public final ProcessResponse processDocument(ProcessRequest request) {
* .setSkipHumanReview(true)
* .setFieldMask(FieldMask.newBuilder().build())
* .setProcessOptions(ProcessOptions.newBuilder().build())
* .putAllLabels(new HashMap<String, String>())
* .build();
* ApiFuture<ProcessResponse> future =
* documentProcessorServiceClient.processDocumentCallable().futureCall(request);
Expand Down Expand Up @@ -908,6 +910,7 @@ public final UnaryCallable<ProcessRequest, ProcessResponse> processDocumentCalla
* .setDocumentOutputConfig(DocumentOutputConfig.newBuilder().build())
* .setSkipHumanReview(true)
* .setProcessOptions(ProcessOptions.newBuilder().build())
* .putAllLabels(new HashMap<String, String>())
* .build();
* BatchProcessResponse response =
* documentProcessorServiceClient.batchProcessDocumentsAsync(request).get();
Expand Down Expand Up @@ -946,6 +949,7 @@ public final UnaryCallable<ProcessRequest, ProcessResponse> processDocumentCalla
* .setDocumentOutputConfig(DocumentOutputConfig.newBuilder().build())
* .setSkipHumanReview(true)
* .setProcessOptions(ProcessOptions.newBuilder().build())
* .putAllLabels(new HashMap<String, String>())
* .build();
* OperationFuture<BatchProcessResponse, BatchProcessMetadata> future =
* documentProcessorServiceClient
Expand Down Expand Up @@ -985,6 +989,7 @@ public final UnaryCallable<ProcessRequest, ProcessResponse> processDocumentCalla
* .setDocumentOutputConfig(DocumentOutputConfig.newBuilder().build())
* .setSkipHumanReview(true)
* .setProcessOptions(ProcessOptions.newBuilder().build())
* .putAllLabels(new HashMap<String, String>())
* .build();
* ApiFuture<Operation> future =
* documentProcessorServiceClient.batchProcessDocumentsCallable().futureCall(request);
Expand Down Expand Up @@ -2720,9 +2725,9 @@ public final OperationFuture<Empty, DeleteProcessorVersionMetadata> deleteProces
* Format: `projects/{project}/locations/{location}`
* @param processor Required. The processor to be created, requires
* [Processor.type][google.cloud.documentai.v1beta3.Processor.type] and
* [Processor.display_name]][] to be set. Also, the
* [Processor.kms_key_name][google.cloud.documentai.v1beta3.Processor.kms_key_name] field must
* be set if the processor is under CMEK.
* [Processor.display_name][google.cloud.documentai.v1beta3.Processor.display_name] to be set.
* Also, the [Processor.kms_key_name][google.cloud.documentai.v1beta3.Processor.kms_key_name]
* field must be set if the processor is under CMEK.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final Processor createProcessor(LocationName parent, Processor processor) {
Expand Down Expand Up @@ -2759,9 +2764,9 @@ public final Processor createProcessor(LocationName parent, Processor processor)
* Format: `projects/{project}/locations/{location}`
* @param processor Required. The processor to be created, requires
* [Processor.type][google.cloud.documentai.v1beta3.Processor.type] and
* [Processor.display_name]][] to be set. Also, the
* [Processor.kms_key_name][google.cloud.documentai.v1beta3.Processor.kms_key_name] field must
* be set if the processor is under CMEK.
* [Processor.display_name][google.cloud.documentai.v1beta3.Processor.display_name] to be set.
* Also, the [Processor.kms_key_name][google.cloud.documentai.v1beta3.Processor.kms_key_name]
* field must be set if the processor is under CMEK.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final Processor createProcessor(String parent, Processor processor) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3437,6 +3437,24 @@
"allDeclaredClasses": true,
"allPublicClasses": true
},
{
"name": "com.google.cloud.documentai.v1beta3.TrainProcessorVersionRequest$FoundationModelTuningOptions",
"queryAllDeclaredConstructors": true,
"queryAllPublicConstructors": true,
"queryAllDeclaredMethods": true,
"allPublicMethods": true,
"allDeclaredClasses": true,
"allPublicClasses": true
},
{
"name": "com.google.cloud.documentai.v1beta3.TrainProcessorVersionRequest$FoundationModelTuningOptions$Builder",
"queryAllDeclaredConstructors": true,
"queryAllPublicConstructors": true,
"queryAllDeclaredMethods": true,
"allPublicMethods": true,
"allDeclaredClasses": true,
"allPublicClasses": true
},
{
"name": "com.google.cloud.documentai.v1beta3.TrainProcessorVersionRequest$InputData",
"queryAllDeclaredConstructors": true,
Expand Down
Loading