Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1Processor
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1Processor
 
- 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 first-class citizen for Document AI. Each processor defines how to extract structural information from a document.
Instance Attribute Summary collapse
- 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time the processor was created. 
- 
  
    
      #default_processor_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The default processor version. 
- 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The display name of the processor. 
- 
  
    
      #kms_key_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The KMS key used for encryption/decryption in CMEK scenarios. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #process_endpoint  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The processor type, e.g., OCR_PROCESSOR, INVOICE_PROCESSOR, etc. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDocumentaiV1Processor 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudDocumentaiV1Processor. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1Processor
Returns a new instance of GoogleCloudDocumentaiV1Processor.
| 3134 3135 3136 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3134 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#create_time ⇒ String
The time the processor was created.
Corresponds to the JSON property createTime
| 3093 3094 3095 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3093 def create_time @create_time end | 
#default_processor_version ⇒ String
The default processor version.
Corresponds to the JSON property defaultProcessorVersion
| 3098 3099 3100 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3098 def default_processor_version @default_processor_version end | 
#display_name ⇒ String
The display name of the processor.
Corresponds to the JSON property displayName
| 3103 3104 3105 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3103 def display_name @display_name end | 
#kms_key_name ⇒ String
The KMS key used for encryption/decryption in CMEK scenarios. See https://
cloud.google.com/security-key-management.
Corresponds to the JSON property kmsKeyName
| 3109 3110 3111 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3109 def kms_key_name @kms_key_name end | 
#name ⇒ String
Output only. Immutable. The resource name of the processor. Format: projects/
project/locations/location/processors/processor`
Corresponds to the JSON propertyname`
| 3115 3116 3117 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3115 def name @name end | 
#process_endpoint ⇒ String
Output only. Immutable. The http endpoint that can be called to invoke
processing.
Corresponds to the JSON property processEndpoint
| 3121 3122 3123 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3121 def process_endpoint @process_endpoint end | 
#state ⇒ String
Output only. The state of the processor.
Corresponds to the JSON property state
| 3126 3127 3128 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3126 def state @state end | 
#type ⇒ String
The processor type, e.g., OCR_PROCESSOR, INVOICE_PROCESSOR, etc. To get a list
of processors types, see FetchProcessorTypes.
Corresponds to the JSON property type
| 3132 3133 3134 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3132 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3139 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @default_processor_version = args[:default_processor_version] if args.key?(:default_processor_version) @display_name = args[:display_name] if args.key?(:display_name) @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name) @name = args[:name] if args.key?(:name) @process_endpoint = args[:process_endpoint] if args.key?(:process_endpoint) @state = args[:state] if args.key?(:state) @type = args[:type] if args.key?(:type) end |