google-apis-documentai_v1beta3 0.123.0 → 0.125.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/documentai_v1beta3/classes.rb +10 -0
- data/lib/google/apis/documentai_v1beta3/gem_version.rb +2 -2
- data/lib/google/apis/documentai_v1beta3/representations.rb +1 -0
- data/lib/google/apis/documentai_v1beta3/service.rb +9 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62ac0239bf94feef1439eb5a8d6be7211e2b1cc033c8e3dff9c4c1161b2c6e13
|
|
4
|
+
data.tar.gz: 30ba9c484cf0b1b929ca140b3f294bd457fc246eb3ab1a38c5421120d8e55c54
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d18542378f2c7c505d623b0f13fe4c0b79d407c9755b4ed862fc3405db4cd281eea2bf7072966057db1d86f708488448421825b2e88753d3749145ab59b4d33f
|
|
7
|
+
data.tar.gz: 2aca5bb52a3fb93c5fc9ace4172489cd5744ddb5dd3ebecfe1a949fd987566f761242935868ff4f02ca5abf035170cb25872521fb1a4bdce714a97b4c6c94d5c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-documentai_v1beta3
|
|
2
2
|
|
|
3
|
+
### v0.125.0 (2026-04-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260325
|
|
6
|
+
|
|
7
|
+
### v0.124.0 (2026-03-22)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260316
|
|
10
|
+
|
|
3
11
|
### v0.123.0 (2026-03-08)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260224
|
|
@@ -10024,6 +10024,15 @@ module Google
|
|
|
10024
10024
|
# @return [Float]
|
|
10025
10025
|
attr_accessor :learning_rate_multiplier
|
|
10026
10026
|
|
|
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
|
+
|
|
10027
10036
|
# Optional. The number of steps to run for model tuning. Valid values are
|
|
10028
10037
|
# between 1 and 400. If not provided, recommended steps will be used.
|
|
10029
10038
|
# Corresponds to the JSON property `trainSteps`
|
|
@@ -10037,6 +10046,7 @@ module Google
|
|
|
10037
10046
|
# Update properties of this object
|
|
10038
10047
|
def update!(**args)
|
|
10039
10048
|
@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)
|
|
10040
10050
|
@train_steps = args[:train_steps] if args.key?(:train_steps)
|
|
10041
10051
|
end
|
|
10042
10052
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DocumentaiV1beta3
|
|
18
18
|
# Version of the google-apis-documentai_v1beta3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.125.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260325"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -5037,6 +5037,7 @@ module Google
|
|
|
5037
5037
|
# @private
|
|
5038
5038
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5039
5039
|
property :learning_rate_multiplier, as: 'learningRateMultiplier'
|
|
5040
|
+
property :previous_fine_tuned_processor_version_name, as: 'previousFineTunedProcessorVersionName'
|
|
5040
5041
|
property :train_steps, as: 'trainSteps'
|
|
5041
5042
|
end
|
|
5042
5043
|
end
|
|
@@ -116,10 +116,15 @@ module Google
|
|
|
116
116
|
end
|
|
117
117
|
|
|
118
118
|
# Lists information about the supported locations for this service. This method
|
|
119
|
-
#
|
|
120
|
-
#
|
|
121
|
-
#
|
|
122
|
-
#
|
|
119
|
+
# lists locations based on the resource scope provided in the [
|
|
120
|
+
# ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
|
|
121
|
+
# the method lists the public locations available to all projects. * **Project-
|
|
122
|
+
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
123
|
+
# method lists locations visible to that specific project. This includes public,
|
|
124
|
+
# private, or other project-specific locations enabled for the project. For gRPC
|
|
125
|
+
# and client library implementations, the resource name is passed as the `name`
|
|
126
|
+
# field. For direct service calls, the resource name is incorporated into the
|
|
127
|
+
# request path based on the specific service implementation and version.
|
|
123
128
|
# @param [String] name
|
|
124
129
|
# The resource that owns the locations collection, if applicable.
|
|
125
130
|
# @param [Array<String>, String] extra_location_types
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-documentai_v1beta3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.125.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.125.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta3
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|