Class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3Dataset

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

A singleton resource under a Processor which configures a collection of documents.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3Dataset

Returns a new instance of GoogleCloudDocumentaiV1beta3Dataset.



6809
6810
6811
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 6809

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

Instance Attribute Details

#document_warehouse_configGoogle::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig

Configuration specific to the Document AI Warehouse-based implementation. Corresponds to the JSON property documentWarehouseConfig



6781
6782
6783
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 6781

def document_warehouse_config
  @document_warehouse_config
end

#gcs_managed_configGoogle::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3DatasetGcsManagedConfig

Configuration specific to the Cloud Storage-based implementation. Corresponds to the JSON property gcsManagedConfig



6786
6787
6788
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 6786

def gcs_managed_config
  @gcs_managed_config
end

#nameString

Dataset resource name. Format: projects/project/locations/location/ processors/processor/dataset Corresponds to the JSON property name

Returns:

  • (String)


6792
6793
6794
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 6792

def name
  @name
end

#spanner_indexing_configGoogle::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3DatasetSpannerIndexingConfig

Configuration specific to spanner-based indexing. Corresponds to the JSON property spannerIndexingConfig



6797
6798
6799
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 6797

def spanner_indexing_config
  @spanner_indexing_config
end

#stateString

Required. State of the dataset. Ignored when updating dataset. Corresponds to the JSON property state

Returns:

  • (String)


6802
6803
6804
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 6802

def state
  @state
end

#unmanaged_dataset_configGoogle::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3DatasetUnmanagedDatasetConfig

Configuration specific to an unmanaged dataset. Corresponds to the JSON property unmanagedDatasetConfig



6807
6808
6809
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 6807

def unmanaged_dataset_config
  @unmanaged_dataset_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6814
6815
6816
6817
6818
6819
6820
6821
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 6814

def update!(**args)
  @document_warehouse_config = args[:document_warehouse_config] if args.key?(:document_warehouse_config)
  @gcs_managed_config = args[:gcs_managed_config] if args.key?(:gcs_managed_config)
  @name = args[:name] if args.key?(:name)
  @spanner_indexing_config = args[:spanner_indexing_config] if args.key?(:spanner_indexing_config)
  @state = args[:state] if args.key?(:state)
  @unmanaged_dataset_config = args[:unmanaged_dataset_config] if args.key?(:unmanaged_dataset_config)
end