Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta3DocumentIdGcsManagedDocumentId
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta3DocumentIdGcsManagedDocumentId
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1/classes.rb,
lib/google/apis/documentai_v1/representations.rb,
lib/google/apis/documentai_v1/representations.rb more...
Overview
Identifies a document uniquely within the scope of a dataset in the user- managed Cloud Storage option.
Instance Attribute Summary collapse
-
#cw_doc_id ⇒ String
Id of the document (indexed) managed by Content Warehouse.
-
#gcs_uri ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3DocumentIdGcsManagedDocumentId
constructor
A new instance of GoogleCloudDocumentaiV1beta3DocumentIdGcsManagedDocumentId.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3DocumentIdGcsManagedDocumentId
Returns a new instance of GoogleCloudDocumentaiV1beta3DocumentIdGcsManagedDocumentId.
10300 10301 10302 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 10300 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cw_doc_id ⇒ String
Id of the document (indexed) managed by Content Warehouse.
Corresponds to the JSON property cwDocId
10293 10294 10295 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 10293 def cw_doc_id @cw_doc_id end |
#gcs_uri ⇒ String
Required. The Cloud Storage URI where the actual document is stored.
Corresponds to the JSON property gcsUri
10298 10299 10300 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 10298 def gcs_uri @gcs_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10305 10306 10307 10308 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 10305 def update!(**args) @cw_doc_id = args[:cw_doc_id] if args.key?(:cw_doc_id) @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri) end |