Googly.DocumentAI.Model.GoogleCloudDocumentaiV1beta3Dataset (googly_document_ai v0.1.0)

Copy Markdown View Source

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

Attributes

  • document_warehouse_config (type: Googly.DocumentAI.Model.GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig.t()) - Optional. Deprecated. Warehouse-based dataset configuration is not supported.
  • gcs_managed_config (type: Googly.DocumentAI.Model.GoogleCloudDocumentaiV1beta3DatasetGCSManagedConfig.t()) - Optional. User-managed Cloud Storage dataset configuration. Use this configuration if the dataset documents are stored under a user-managed Cloud Storage location.
  • name (type: String.t()) - Dataset resource name. Format: projects/{project}/locations/{location}/processors/{processor}/dataset
  • satisfies_pzi (type: boolean()) - Output only. Reserved for future use.
  • satisfies_pzs (type: boolean()) - Output only. Reserved for future use.
  • state (type: String.t()) - Required. State of the dataset. Ignored when updating dataset.
  • unmanaged_dataset_config (type: Googly.DocumentAI.Model.GoogleCloudDocumentaiV1beta3DatasetUnmanagedDatasetConfig.t()) - Optional. Unmanaged dataset configuration. Use this configuration if the dataset documents are managed by the document service internally (not user-managed).

Summary

Types

t()

@type t() :: %Googly.DocumentAI.Model.GoogleCloudDocumentaiV1beta3Dataset{
  document_warehouse_config:
    Googly.DocumentAI.Model.GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig.t()
    | nil,
  gcs_managed_config:
    Googly.DocumentAI.Model.GoogleCloudDocumentaiV1beta3DatasetGCSManagedConfig.t()
    | nil,
  name: String.t() | nil,
  satisfies_pzi: boolean() | nil,
  satisfies_pzs: boolean() | nil,
  state: String.t() | nil,
  unmanaged_dataset_config:
    Googly.DocumentAI.Model.GoogleCloudDocumentaiV1beta3DatasetUnmanagedDatasetConfig.t()
    | nil
}