File tree Expand file tree Collapse file tree
generated/google-apis-documentai_v1beta3
lib/google/apis/documentai_v1beta3 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -261008,6 +261008,8 @@
261008261008"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestCustomDocumentExtractionOptions/trainingMethod": training_method
261009261009"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestFoundationModelTuningOptions": google_cloud_documentai_v1beta3_train_processor_version_request_foundation_model_tuning_options
261010261010"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestFoundationModelTuningOptions/learningRateMultiplier": learning_rate_multiplier
261011+ ? "/documentai:v1beta3/GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestFoundationModelTuningOptions/previousFineTunedProcessorVersionName"
261012+ : previous_fine_tuned_processor_version_name
261011261013"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestFoundationModelTuningOptions/trainSteps": train_steps
261012261014"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestInputData": google_cloud_documentai_v1beta3_train_processor_version_request_input_data
261013261015"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestInputData/testDocuments": test_documents
Original file line number Diff line number Diff line change 11# Release history for google-apis-documentai_v1beta3
22
3+ ### v0.124.0 (2026-03-22)
4+
5+ * Regenerated from discovery document revision 20260316
6+
37### v0.123.0 (2026-03-08)
48
59* Regenerated from discovery document revision 20260224
Original file line number Diff line number Diff line change @@ -10024,6 +10024,15 @@ class GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestFoundationModelTun
1002410024 # @return [Float]
1002510025 attr_accessor :learning_rate_multiplier
1002610026
10027+ # Optional. Resource name of a previously fine tuned version id to copy the
10028+ # overwritten configs from. The base_processor_version should be newer than the
10029+ # base processor version used to fine tune this provided processor version.
10030+ # Format: `projects/`project`/locations/`location`/processors/`processor`/
10031+ # processorVersions/`processorVersion``.
10032+ # Corresponds to the JSON property `previousFineTunedProcessorVersionName`
10033+ # @return [String]
10034+ attr_accessor :previous_fine_tuned_processor_version_name
10035+
1002710036 # Optional. The number of steps to run for model tuning. Valid values are
1002810037 # between 1 and 400. If not provided, recommended steps will be used.
1002910038 # Corresponds to the JSON property `trainSteps`
@@ -10037,6 +10046,7 @@ def initialize(**args)
1003710046 # Update properties of this object
1003810047 def update! ( **args )
1003910048 @learning_rate_multiplier = args [ :learning_rate_multiplier ] if args . key? ( :learning_rate_multiplier )
10049+ @previous_fine_tuned_processor_version_name = args [ :previous_fine_tuned_processor_version_name ] if args . key? ( :previous_fine_tuned_processor_version_name )
1004010050 @train_steps = args [ :train_steps ] if args . key? ( :train_steps )
1004110051 end
1004210052 end
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ module Google
1616 module Apis
1717 module DocumentaiV1beta3
1818 # Version of the google-apis-documentai_v1beta3 gem
19- GEM_VERSION = "0.123 .0"
19+ GEM_VERSION = "0.124 .0"
2020
2121 # Version of the code generator used to generate this client
2222 GENERATOR_VERSION = "0.18.0"
2323
2424 # Revision of the discovery document this client was generated from
25- REVISION = "20260224 "
25+ REVISION = "20260316 "
2626 end
2727 end
2828end
Original file line number Diff line number Diff line change @@ -5037,6 +5037,7 @@ class GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestFoundationModelTun
50375037 # @private
50385038 class Representation < Google ::Apis ::Core ::JsonRepresentation
50395039 property :learning_rate_multiplier , as : 'learningRateMultiplier'
5040+ property :previous_fine_tuned_processor_version_name , as : 'previousFineTunedProcessorVersionName'
50405041 property :train_steps , as : 'trainSteps'
50415042 end
50425043 end
You can’t perform that action at this time.
0 commit comments