Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
 
- 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
Overview
The proto for updated document in resync pipeline.
Instance Attribute Summary collapse
- 
  
    
      #destination_prefix  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The prefix of cloud storage, identifies the destination document which should be updated by resync pipeline. 
- 
  
    
      #source_prefix  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The prefix of cloud storage, identifies the original document which should be updated by resync pipeline. 
- 
  
    
      #status  ⇒ Google::Apis::DocumentaiV1::GoogleRpcStatus 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Statustype defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
Returns a new instance of GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument.
| 609 610 611 | # File 'lib/google/apis/documentai_v1/classes.rb', line 609 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#destination_prefix ⇒ String
The prefix of cloud storage, identifies the destination document which should
be updated by resync pipeline.
Corresponds to the JSON property destinationPrefix
| 591 592 593 | # File 'lib/google/apis/documentai_v1/classes.rb', line 591 def destination_prefix @destination_prefix end | 
#source_prefix ⇒ String
The prefix of cloud storage, identifies the original document which should be
updated by resync pipeline.
Corresponds to the JSON property sourcePrefix
| 597 598 599 | # File 'lib/google/apis/documentai_v1/classes.rb', line 597 def source_prefix @source_prefix end | 
#status ⇒ Google::Apis::DocumentaiV1::GoogleRpcStatus
The Status type defines a logical error model that is suitable for different
programming environments, including REST APIs and RPC APIs. It is used by 
gRPC. Each Status message contains three pieces of
data: error code, error message, and error details. You can find out more
about this error model and how to work with it in the API Design Guide.
Corresponds to the JSON property status
| 607 608 609 | # File 'lib/google/apis/documentai_v1/classes.rb', line 607 def status @status end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 614 615 616 617 618 | # File 'lib/google/apis/documentai_v1/classes.rb', line 614 def update!(**args) @destination_prefix = args[:destination_prefix] if args.key?(:destination_prefix) @source_prefix = args[:source_prefix] if args.key?(:source_prefix) @status = args[:status] if args.key?(:status) end |