Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfig
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
A singleton resource of DataStore. It's empty when DataStore is created, which defaults to digital parser. The first call to DataStoreService. UpdateDocumentProcessingConfig method will initialize the config.
Instance Attribute Summary collapse
-
#chunking_config ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigChunkingConfig
Configuration for chunking config.
-
#default_parsing_config ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfig
Related configurations applied to a specific type of document parser.
-
#name ⇒ String
The full resource name of the Document Processing Config.
-
#ocr_config ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaOcrConfig
The OCR options for parsing documents.
-
#parsing_config_overrides ⇒ Hash<String,Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfig>
Map from file type to override the default parsing configuration based on the file type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfig
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfig
Returns a new instance of GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfig.
2110 2111 2112 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 2110 def initialize(**args) update!(**args) end |
Instance Attribute Details
#chunking_config ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigChunkingConfig
Configuration for chunking config.
Corresponds to the JSON property chunkingConfig
2082 2083 2084 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 2082 def chunking_config @chunking_config end |
#default_parsing_config ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfig
Related configurations applied to a specific type of document parser.
Corresponds to the JSON property defaultParsingConfig
2087 2088 2089 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 2087 def default_parsing_config @default_parsing_config end |
#name ⇒ String
The full resource name of the Document Processing Config. Format: projects/*/
locations/*/collections/*/dataStores/*/documentProcessingConfig.
Corresponds to the JSON property name
2093 2094 2095 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 2093 def name @name end |
#ocr_config ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaOcrConfig
The OCR options for parsing documents.
Corresponds to the JSON property ocrConfig
2098 2099 2100 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 2098 def ocr_config @ocr_config end |
#parsing_config_overrides ⇒ Hash<String,Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfig>
Map from file type to override the default parsing configuration based on the
file type. Supported keys: * pdf: Override parsing config for PDF files,
either digital parsing, ocr parsing or layout parsing is supported. * html:
Override parsing config for HTML files, only digital parsing and or layout
parsing are supported. * docx: Override parsing config for DOCX files, only
digital parsing and or layout parsing are supported.
Corresponds to the JSON property parsingConfigOverrides
2108 2109 2110 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 2108 def parsing_config_overrides @parsing_config_overrides end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2115 2116 2117 2118 2119 2120 2121 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 2115 def update!(**args) @chunking_config = args[:chunking_config] if args.key?(:chunking_config) @default_parsing_config = args[:default_parsing_config] if args.key?(:default_parsing_config) @name = args[:name] if args.key?(:name) @ocr_config = args[:ocr_config] if args.key?(:ocr_config) @parsing_config_overrides = args[:parsing_config_overrides] if args.key?(:parsing_config_overrides) end |