Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig
- 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
Configuration specific to the Document AI Warehouse-based implementation.
Instance Attribute Summary collapse
-
#collection ⇒ String
Output only.
-
#schema ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig
constructor
A new instance of GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig
Returns a new instance of GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig.
2554 2555 2556 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2554 def initialize(**args) update!(**args) end |
Instance Attribute Details
#collection ⇒ String
Output only. The collection in Document AI Warehouse associated with the
dataset.
Corresponds to the JSON property collection
2547 2548 2549 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2547 def collection @collection end |
#schema ⇒ String
Output only. The schema in Document AI Warehouse associated with the dataset.
Corresponds to the JSON property schema
2552 2553 2554 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2552 def schema @schema end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2559 2560 2561 2562 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2559 def update!(**args) @collection = args[:collection] if args.key?(:collection) @schema = args[:schema] if args.key?(:schema) end |