Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig

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

Overview

Config specific to the Document Warehouse-based implementation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig

Returns a new instance of GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig.



6555
6556
6557
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 6555

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

Instance Attribute Details

#collectionString

Output only. The collection in Document Warehouse associated with the dataset. Corresponds to the JSON property collection

Returns:

  • (String)


6548
6549
6550
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 6548

def collection
  @collection
end

#schemaString

Output only. The schema in Document Warehouse associated with the dataset. Corresponds to the JSON property schema

Returns:

  • (String)


6553
6554
6555
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 6553

def schema
  @schema
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6560
6561
6562
6563
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 6560

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