google-apis-discoveryengine_v1 0.31.0 → 0.32.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ceb8679fe5b611eb660df37c94216ebe043368ab9b51d356b88696201c0e6bb
|
4
|
+
data.tar.gz: 760eaab856d0defe7fa841580ffbc56584697cdaf09f3b3d247e20fa2a25e3f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e10f6b146bde1e13549bc07523fa536d8043265ae210e00c8cd49f099a0a2412ae2b70908aab2000ed14228a6bd0d82846fc6fc5196e1db25ab7ebe95b20f5cb
|
7
|
+
data.tar.gz: 2b106b640f17b07ef6c9b7540901b91be672158be789123bc96d3cd1987f7b1f2afcc8812b196e0e9c00665e7ba551407818ef0e1ce61ba3b1d682744fb9dcfb
|
data/CHANGELOG.md
CHANGED
@@ -5175,12 +5175,28 @@ module Google
|
|
5175
5175
|
class GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigLayoutParsingConfig
|
5176
5176
|
include Google::Apis::Core::Hashable
|
5177
5177
|
|
5178
|
+
# Optional. If true, the LLM based annotation is added to the image during
|
5179
|
+
# parsing.
|
5180
|
+
# Corresponds to the JSON property `enableImageAnnotation`
|
5181
|
+
# @return [Boolean]
|
5182
|
+
attr_accessor :enable_image_annotation
|
5183
|
+
alias_method :enable_image_annotation?, :enable_image_annotation
|
5184
|
+
|
5185
|
+
# Optional. If true, the LLM based annotation is added to the table during
|
5186
|
+
# parsing.
|
5187
|
+
# Corresponds to the JSON property `enableTableAnnotation`
|
5188
|
+
# @return [Boolean]
|
5189
|
+
attr_accessor :enable_table_annotation
|
5190
|
+
alias_method :enable_table_annotation?, :enable_table_annotation
|
5191
|
+
|
5178
5192
|
def initialize(**args)
|
5179
5193
|
update!(**args)
|
5180
5194
|
end
|
5181
5195
|
|
5182
5196
|
# Update properties of this object
|
5183
5197
|
def update!(**args)
|
5198
|
+
@enable_image_annotation = args[:enable_image_annotation] if args.key?(:enable_image_annotation)
|
5199
|
+
@enable_table_annotation = args[:enable_table_annotation] if args.key?(:enable_table_annotation)
|
5184
5200
|
end
|
5185
5201
|
end
|
5186
5202
|
|
@@ -10979,6 +10995,11 @@ module Google
|
|
10979
10995
|
class GoogleCloudDiscoveryengineV1UserInfo
|
10980
10996
|
include Google::Apis::Core::Hashable
|
10981
10997
|
|
10998
|
+
# Optional. IANA time zone, e.g. Europe/Budapest.
|
10999
|
+
# Corresponds to the JSON property `timeZone`
|
11000
|
+
# @return [String]
|
11001
|
+
attr_accessor :time_zone
|
11002
|
+
|
10982
11003
|
# User agent as included in the HTTP header. The field must be a UTF-8 encoded
|
10983
11004
|
# string with a length limit of 1,000 characters. Otherwise, an `
|
10984
11005
|
# INVALID_ARGUMENT` error is returned. This should not be set when using the
|
@@ -11004,6 +11025,7 @@ module Google
|
|
11004
11025
|
|
11005
11026
|
# Update properties of this object
|
11006
11027
|
def update!(**args)
|
11028
|
+
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
11007
11029
|
@user_agent = args[:user_agent] if args.key?(:user_agent)
|
11008
11030
|
@user_id = args[:user_id] if args.key?(:user_id)
|
11009
11031
|
end
|
@@ -13990,12 +14012,28 @@ module Google
|
|
13990
14012
|
class GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigLayoutParsingConfig
|
13991
14013
|
include Google::Apis::Core::Hashable
|
13992
14014
|
|
14015
|
+
# Optional. If true, the LLM based annotation is added to the image during
|
14016
|
+
# parsing.
|
14017
|
+
# Corresponds to the JSON property `enableImageAnnotation`
|
14018
|
+
# @return [Boolean]
|
14019
|
+
attr_accessor :enable_image_annotation
|
14020
|
+
alias_method :enable_image_annotation?, :enable_image_annotation
|
14021
|
+
|
14022
|
+
# Optional. If true, the LLM based annotation is added to the table during
|
14023
|
+
# parsing.
|
14024
|
+
# Corresponds to the JSON property `enableTableAnnotation`
|
14025
|
+
# @return [Boolean]
|
14026
|
+
attr_accessor :enable_table_annotation
|
14027
|
+
alias_method :enable_table_annotation?, :enable_table_annotation
|
14028
|
+
|
13993
14029
|
def initialize(**args)
|
13994
14030
|
update!(**args)
|
13995
14031
|
end
|
13996
14032
|
|
13997
14033
|
# Update properties of this object
|
13998
14034
|
def update!(**args)
|
14035
|
+
@enable_image_annotation = args[:enable_image_annotation] if args.key?(:enable_image_annotation)
|
14036
|
+
@enable_table_annotation = args[:enable_table_annotation] if args.key?(:enable_table_annotation)
|
13999
14037
|
end
|
14000
14038
|
end
|
14001
14039
|
|
@@ -18427,6 +18465,11 @@ module Google
|
|
18427
18465
|
class GoogleCloudDiscoveryengineV1alphaUserInfo
|
18428
18466
|
include Google::Apis::Core::Hashable
|
18429
18467
|
|
18468
|
+
# Optional. IANA time zone, e.g. Europe/Budapest.
|
18469
|
+
# Corresponds to the JSON property `timeZone`
|
18470
|
+
# @return [String]
|
18471
|
+
attr_accessor :time_zone
|
18472
|
+
|
18430
18473
|
# User agent as included in the HTTP header. The field must be a UTF-8 encoded
|
18431
18474
|
# string with a length limit of 1,000 characters. Otherwise, an `
|
18432
18475
|
# INVALID_ARGUMENT` error is returned. This should not be set when using the
|
@@ -18452,6 +18495,7 @@ module Google
|
|
18452
18495
|
|
18453
18496
|
# Update properties of this object
|
18454
18497
|
def update!(**args)
|
18498
|
+
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
18455
18499
|
@user_agent = args[:user_agent] if args.key?(:user_agent)
|
18456
18500
|
@user_id = args[:user_id] if args.key?(:user_id)
|
18457
18501
|
end
|
@@ -19843,12 +19887,28 @@ module Google
|
|
19843
19887
|
class GoogleCloudDiscoveryengineV1betaDocumentProcessingConfigParsingConfigLayoutParsingConfig
|
19844
19888
|
include Google::Apis::Core::Hashable
|
19845
19889
|
|
19890
|
+
# Optional. If true, the LLM based annotation is added to the image during
|
19891
|
+
# parsing.
|
19892
|
+
# Corresponds to the JSON property `enableImageAnnotation`
|
19893
|
+
# @return [Boolean]
|
19894
|
+
attr_accessor :enable_image_annotation
|
19895
|
+
alias_method :enable_image_annotation?, :enable_image_annotation
|
19896
|
+
|
19897
|
+
# Optional. If true, the LLM based annotation is added to the table during
|
19898
|
+
# parsing.
|
19899
|
+
# Corresponds to the JSON property `enableTableAnnotation`
|
19900
|
+
# @return [Boolean]
|
19901
|
+
attr_accessor :enable_table_annotation
|
19902
|
+
alias_method :enable_table_annotation?, :enable_table_annotation
|
19903
|
+
|
19846
19904
|
def initialize(**args)
|
19847
19905
|
update!(**args)
|
19848
19906
|
end
|
19849
19907
|
|
19850
19908
|
# Update properties of this object
|
19851
19909
|
def update!(**args)
|
19910
|
+
@enable_image_annotation = args[:enable_image_annotation] if args.key?(:enable_image_annotation)
|
19911
|
+
@enable_table_annotation = args[:enable_table_annotation] if args.key?(:enable_table_annotation)
|
19852
19912
|
end
|
19853
19913
|
end
|
19854
19914
|
|
@@ -23118,6 +23178,11 @@ module Google
|
|
23118
23178
|
class GoogleCloudDiscoveryengineV1betaUserInfo
|
23119
23179
|
include Google::Apis::Core::Hashable
|
23120
23180
|
|
23181
|
+
# Optional. IANA time zone, e.g. Europe/Budapest.
|
23182
|
+
# Corresponds to the JSON property `timeZone`
|
23183
|
+
# @return [String]
|
23184
|
+
attr_accessor :time_zone
|
23185
|
+
|
23121
23186
|
# User agent as included in the HTTP header. The field must be a UTF-8 encoded
|
23122
23187
|
# string with a length limit of 1,000 characters. Otherwise, an `
|
23123
23188
|
# INVALID_ARGUMENT` error is returned. This should not be set when using the
|
@@ -23143,6 +23208,7 @@ module Google
|
|
23143
23208
|
|
23144
23209
|
# Update properties of this object
|
23145
23210
|
def update!(**args)
|
23211
|
+
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
23146
23212
|
@user_agent = args[:user_agent] if args.key?(:user_agent)
|
23147
23213
|
@user_id = args[:user_id] if args.key?(:user_id)
|
23148
23214
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1
|
18
18
|
# Version of the google-apis-discoveryengine_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.32.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250322"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -5198,6 +5198,8 @@ module Google
|
|
5198
5198
|
class GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigLayoutParsingConfig
|
5199
5199
|
# @private
|
5200
5200
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5201
|
+
property :enable_image_annotation, as: 'enableImageAnnotation'
|
5202
|
+
property :enable_table_annotation, as: 'enableTableAnnotation'
|
5201
5203
|
end
|
5202
5204
|
end
|
5203
5205
|
|
@@ -6728,6 +6730,7 @@ module Google
|
|
6728
6730
|
class GoogleCloudDiscoveryengineV1UserInfo
|
6729
6731
|
# @private
|
6730
6732
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6733
|
+
property :time_zone, as: 'timeZone'
|
6731
6734
|
property :user_agent, as: 'userAgent'
|
6732
6735
|
property :user_id, as: 'userId'
|
6733
6736
|
end
|
@@ -7558,6 +7561,8 @@ module Google
|
|
7558
7561
|
class GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigLayoutParsingConfig
|
7559
7562
|
# @private
|
7560
7563
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7564
|
+
property :enable_image_annotation, as: 'enableImageAnnotation'
|
7565
|
+
property :enable_table_annotation, as: 'enableTableAnnotation'
|
7561
7566
|
end
|
7562
7567
|
end
|
7563
7568
|
|
@@ -8721,6 +8726,7 @@ module Google
|
|
8721
8726
|
class GoogleCloudDiscoveryengineV1alphaUserInfo
|
8722
8727
|
# @private
|
8723
8728
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8729
|
+
property :time_zone, as: 'timeZone'
|
8724
8730
|
property :user_agent, as: 'userAgent'
|
8725
8731
|
property :user_id, as: 'userId'
|
8726
8732
|
end
|
@@ -9123,6 +9129,8 @@ module Google
|
|
9123
9129
|
class GoogleCloudDiscoveryengineV1betaDocumentProcessingConfigParsingConfigLayoutParsingConfig
|
9124
9130
|
# @private
|
9125
9131
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9132
|
+
property :enable_image_annotation, as: 'enableImageAnnotation'
|
9133
|
+
property :enable_table_annotation, as: 'enableTableAnnotation'
|
9126
9134
|
end
|
9127
9135
|
end
|
9128
9136
|
|
@@ -9979,6 +9987,7 @@ module Google
|
|
9979
9987
|
class GoogleCloudDiscoveryengineV1betaUserInfo
|
9980
9988
|
# @private
|
9981
9989
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9990
|
+
property :time_zone, as: 'timeZone'
|
9982
9991
|
property :user_agent, as: 'userAgent'
|
9983
9992
|
property :user_id, as: 'userId'
|
9984
9993
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-30 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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-discoveryengine_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.32.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|