Class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1InputConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/documentai_v1beta2/classes.rb,
lib/google/apis/documentai_v1beta2/representations.rb,
lib/google/apis/documentai_v1beta2/representations.rb

Overview

The desired input location and metadata.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta1InputConfig

Returns a new instance of GoogleCloudDocumentaiV1beta1InputConfig.



2590
2591
2592
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 2590

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#gcs_sourceGoogle::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1GcsSource

The Google Cloud Storage location where the input file will be read from. Corresponds to the JSON property gcsSource



2580
2581
2582
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 2580

def gcs_source
  @gcs_source
end

#mime_typeString

Required. Mimetype of the input. Current supported mimetypes are application/ pdf, image/tiff, and image/gif. In addition, application/json type is supported for requests with ProcessDocumentRequest.automl_params field set. The JSON file needs to be in Document format. Corresponds to the JSON property mimeType

Returns:

  • (String)


2588
2589
2590
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 2588

def mime_type
  @mime_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2595
2596
2597
2598
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 2595

def update!(**args)
  @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
  @mime_type = args[:mime_type] if args.key?(:mime_type)
end