Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ProcessorVersionDeprecationInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/documentai_v1beta3/classes.rb,
lib/google/apis/documentai_v1beta3/representations.rb,
lib/google/apis/documentai_v1beta3/representations.rb

Overview

Information about the upcoming deprecation of this processor version.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3ProcessorVersionDeprecationInfo

Returns a new instance of GoogleCloudDocumentaiV1beta3ProcessorVersionDeprecationInfo.



7958
7959
7960
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7958

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#deprecation_timeString

The time at which this processor version will be deprecated. Corresponds to the JSON property deprecationTime

Returns:

  • (String)


7951
7952
7953
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7951

def deprecation_time
  @deprecation_time
end

#replacement_processor_versionString

If set, the processor version that will be used as a replacement. Corresponds to the JSON property replacementProcessorVersion

Returns:

  • (String)


7956
7957
7958
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7956

def replacement_processor_version
  @replacement_processor_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7963
7964
7965
7966
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7963

def update!(**args)
  @deprecation_time = args[:deprecation_time] if args.key?(:deprecation_time)
  @replacement_processor_version = args[:replacement_processor_version] if args.key?(:replacement_processor_version)
end