Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1ProcessorVersion
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1ProcessorVersion
 
- 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
A processor version is an implementation of a processor. Each processor can have multiple versions, pre-trained by Google internally or up-trained by the customer. At a time, a processor can only have one default version version. So the processor's behavior (when processing documents) is defined by a default version.
Instance Attribute Summary collapse
- 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time the processor version was created. 
- 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The display name of the processor version. 
- 
  
    
      #google_managed  ⇒ Boolean 
    
    
      (also: #google_managed?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Denotes that this ProcessorVersion is managed by google. 
- 
  
    
      #kms_key_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The KMS key name used for encryption. 
- 
  
    
      #kms_key_version_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The KMS key version with which data is encrypted. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The resource name of the processor version. 
- 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The state of the processor version. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDocumentaiV1ProcessorVersion 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudDocumentaiV1ProcessorVersion. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1ProcessorVersion
Returns a new instance of GoogleCloudDocumentaiV1ProcessorVersion.
| 3269 3270 3271 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3269 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#create_time ⇒ String
The time the processor version was created.
Corresponds to the JSON property createTime
| 3234 3235 3236 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3234 def create_time @create_time end | 
#display_name ⇒ String
The display name of the processor version.
Corresponds to the JSON property displayName
| 3239 3240 3241 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3239 def display_name @display_name end | 
#google_managed ⇒ Boolean Also known as: google_managed?
Denotes that this ProcessorVersion is managed by google.
Corresponds to the JSON property googleManaged
| 3244 3245 3246 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3244 def google_managed @google_managed end | 
#kms_key_name ⇒ String
The KMS key name used for encryption.
Corresponds to the JSON property kmsKeyName
| 3250 3251 3252 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3250 def kms_key_name @kms_key_name end | 
#kms_key_version_name ⇒ String
The KMS key version with which data is encrypted.
Corresponds to the JSON property kmsKeyVersionName
| 3255 3256 3257 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3255 def kms_key_version_name @kms_key_version_name end | 
#name ⇒ String
The resource name of the processor version. Format: projects/project/
locations/location/processors/processor/processorVersions/
processor_version`
Corresponds to the JSON propertyname`
| 3262 3263 3264 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3262 def name @name end | 
#state ⇒ String
The state of the processor version.
Corresponds to the JSON property state
| 3267 3268 3269 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3267 def state @state end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3274 3275 3276 3277 3278 3279 3280 3281 3282 | # File 'lib/google/apis/documentai_v1/classes.rb', line 3274 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @google_managed = args[:google_managed] if args.key?(:google_managed) @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name) @kms_key_version_name = args[:kms_key_version_name] if args.key?(:kms_key_version_name) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) end |