google-apis-discoveryengine_v1alpha 0.57.0 → 0.58.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: ffcb1ed39aa5e2aa4c59282191e4fc953807b277ffb87939f88f20a97a957f5d
4
- data.tar.gz: 87f71cde3e544a336f3fff116c09a75e87e226be4ca7125875a6c870e39a730a
3
+ metadata.gz: 9a8d367bb552397cca5da331b84144514f8ec0c36cc411ac08ff1a3146c3ff30
4
+ data.tar.gz: 14186c301bfde98e1262e19659c603ed4643b2282e9f3afaf5fd85fe26aa17b3
5
5
  SHA512:
6
- metadata.gz: c416cf5d9a6928cbda7be87c8d74c9146e3ba33f3b946750710ca15b5c0a44fd2b306d1b5d4245953f728c0abf573e5230fbdd97359143ed9afad3a816552d23
7
- data.tar.gz: 0ad19d589ba4e46271bc6619a80f5c024e933ef331882ad0fde6526c953a44c162f8006b3b416829f2b2841afb8d2a0043066d82b62153e87604660a62e769c1
6
+ metadata.gz: d4d1aa2d88bd7229699133133c824662acda08c5e8a265ff29f1876b527cd6222f8da1bfd60df66d160d9d0be6be3981b3f6627c22b12353fa9c4baf26283484
7
+ data.tar.gz: 10141a20b11535a39c1bc0f5071f5f2824a20a1329fff8b89d228533336b7022916ffe191fa8cb3a48e0b199f4afa21084f821097836bd075dfa76184e3e1fd1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1alpha
2
2
 
3
+ ### v0.58.0 (2025-03-30)
4
+
5
+ * Regenerated from discovery document revision 20250322
6
+
3
7
  ### v0.57.0 (2025-03-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20250320
@@ -2901,12 +2901,28 @@ module Google
2901
2901
  class GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigLayoutParsingConfig
2902
2902
  include Google::Apis::Core::Hashable
2903
2903
 
2904
+ # Optional. If true, the LLM based annotation is added to the image during
2905
+ # parsing.
2906
+ # Corresponds to the JSON property `enableImageAnnotation`
2907
+ # @return [Boolean]
2908
+ attr_accessor :enable_image_annotation
2909
+ alias_method :enable_image_annotation?, :enable_image_annotation
2910
+
2911
+ # Optional. If true, the LLM based annotation is added to the table during
2912
+ # parsing.
2913
+ # Corresponds to the JSON property `enableTableAnnotation`
2914
+ # @return [Boolean]
2915
+ attr_accessor :enable_table_annotation
2916
+ alias_method :enable_table_annotation?, :enable_table_annotation
2917
+
2904
2918
  def initialize(**args)
2905
2919
  update!(**args)
2906
2920
  end
2907
2921
 
2908
2922
  # Update properties of this object
2909
2923
  def update!(**args)
2924
+ @enable_image_annotation = args[:enable_image_annotation] if args.key?(:enable_image_annotation)
2925
+ @enable_table_annotation = args[:enable_table_annotation] if args.key?(:enable_table_annotation)
2910
2926
  end
2911
2927
  end
2912
2928
 
@@ -11011,12 +11027,28 @@ module Google
11011
11027
  class GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigLayoutParsingConfig
11012
11028
  include Google::Apis::Core::Hashable
11013
11029
 
11030
+ # Optional. If true, the LLM based annotation is added to the image during
11031
+ # parsing.
11032
+ # Corresponds to the JSON property `enableImageAnnotation`
11033
+ # @return [Boolean]
11034
+ attr_accessor :enable_image_annotation
11035
+ alias_method :enable_image_annotation?, :enable_image_annotation
11036
+
11037
+ # Optional. If true, the LLM based annotation is added to the table during
11038
+ # parsing.
11039
+ # Corresponds to the JSON property `enableTableAnnotation`
11040
+ # @return [Boolean]
11041
+ attr_accessor :enable_table_annotation
11042
+ alias_method :enable_table_annotation?, :enable_table_annotation
11043
+
11014
11044
  def initialize(**args)
11015
11045
  update!(**args)
11016
11046
  end
11017
11047
 
11018
11048
  # Update properties of this object
11019
11049
  def update!(**args)
11050
+ @enable_image_annotation = args[:enable_image_annotation] if args.key?(:enable_image_annotation)
11051
+ @enable_table_annotation = args[:enable_table_annotation] if args.key?(:enable_table_annotation)
11020
11052
  end
11021
11053
  end
11022
11054
 
@@ -20259,6 +20291,11 @@ module Google
20259
20291
  class GoogleCloudDiscoveryengineV1alphaUserInfo
20260
20292
  include Google::Apis::Core::Hashable
20261
20293
 
20294
+ # Optional. IANA time zone, e.g. Europe/Budapest.
20295
+ # Corresponds to the JSON property `timeZone`
20296
+ # @return [String]
20297
+ attr_accessor :time_zone
20298
+
20262
20299
  # User agent as included in the HTTP header. The field must be a UTF-8 encoded
20263
20300
  # string with a length limit of 1,000 characters. Otherwise, an `
20264
20301
  # INVALID_ARGUMENT` error is returned. This should not be set when using the
@@ -20284,6 +20321,7 @@ module Google
20284
20321
 
20285
20322
  # Update properties of this object
20286
20323
  def update!(**args)
20324
+ @time_zone = args[:time_zone] if args.key?(:time_zone)
20287
20325
  @user_agent = args[:user_agent] if args.key?(:user_agent)
20288
20326
  @user_id = args[:user_id] if args.key?(:user_id)
20289
20327
  end
@@ -22509,12 +22547,28 @@ module Google
22509
22547
  class GoogleCloudDiscoveryengineV1betaDocumentProcessingConfigParsingConfigLayoutParsingConfig
22510
22548
  include Google::Apis::Core::Hashable
22511
22549
 
22550
+ # Optional. If true, the LLM based annotation is added to the image during
22551
+ # parsing.
22552
+ # Corresponds to the JSON property `enableImageAnnotation`
22553
+ # @return [Boolean]
22554
+ attr_accessor :enable_image_annotation
22555
+ alias_method :enable_image_annotation?, :enable_image_annotation
22556
+
22557
+ # Optional. If true, the LLM based annotation is added to the table during
22558
+ # parsing.
22559
+ # Corresponds to the JSON property `enableTableAnnotation`
22560
+ # @return [Boolean]
22561
+ attr_accessor :enable_table_annotation
22562
+ alias_method :enable_table_annotation?, :enable_table_annotation
22563
+
22512
22564
  def initialize(**args)
22513
22565
  update!(**args)
22514
22566
  end
22515
22567
 
22516
22568
  # Update properties of this object
22517
22569
  def update!(**args)
22570
+ @enable_image_annotation = args[:enable_image_annotation] if args.key?(:enable_image_annotation)
22571
+ @enable_table_annotation = args[:enable_table_annotation] if args.key?(:enable_table_annotation)
22518
22572
  end
22519
22573
  end
22520
22574
 
@@ -25784,6 +25838,11 @@ module Google
25784
25838
  class GoogleCloudDiscoveryengineV1betaUserInfo
25785
25839
  include Google::Apis::Core::Hashable
25786
25840
 
25841
+ # Optional. IANA time zone, e.g. Europe/Budapest.
25842
+ # Corresponds to the JSON property `timeZone`
25843
+ # @return [String]
25844
+ attr_accessor :time_zone
25845
+
25787
25846
  # User agent as included in the HTTP header. The field must be a UTF-8 encoded
25788
25847
  # string with a length limit of 1,000 characters. Otherwise, an `
25789
25848
  # INVALID_ARGUMENT` error is returned. This should not be set when using the
@@ -25809,6 +25868,7 @@ module Google
25809
25868
 
25810
25869
  # Update properties of this object
25811
25870
  def update!(**args)
25871
+ @time_zone = args[:time_zone] if args.key?(:time_zone)
25812
25872
  @user_agent = args[:user_agent] if args.key?(:user_agent)
25813
25873
  @user_id = args[:user_id] if args.key?(:user_id)
25814
25874
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1alpha
18
18
  # Version of the google-apis-discoveryengine_v1alpha gem
19
- GEM_VERSION = "0.57.0"
19
+ GEM_VERSION = "0.58.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 = "20250320"
25
+ REVISION = "20250322"
26
26
  end
27
27
  end
28
28
  end
@@ -4905,6 +4905,8 @@ module Google
4905
4905
  class GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigLayoutParsingConfig
4906
4906
  # @private
4907
4907
  class Representation < Google::Apis::Core::JsonRepresentation
4908
+ property :enable_image_annotation, as: 'enableImageAnnotation'
4909
+ property :enable_table_annotation, as: 'enableTableAnnotation'
4908
4910
  end
4909
4911
  end
4910
4912
 
@@ -7092,6 +7094,8 @@ module Google
7092
7094
  class GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigLayoutParsingConfig
7093
7095
  # @private
7094
7096
  class Representation < Google::Apis::Core::JsonRepresentation
7097
+ property :enable_image_annotation, as: 'enableImageAnnotation'
7098
+ property :enable_table_annotation, as: 'enableTableAnnotation'
7095
7099
  end
7096
7100
  end
7097
7101
 
@@ -9611,6 +9615,7 @@ module Google
9611
9615
  class GoogleCloudDiscoveryengineV1alphaUserInfo
9612
9616
  # @private
9613
9617
  class Representation < Google::Apis::Core::JsonRepresentation
9618
+ property :time_zone, as: 'timeZone'
9614
9619
  property :user_agent, as: 'userAgent'
9615
9620
  property :user_id, as: 'userId'
9616
9621
  end
@@ -10212,6 +10217,8 @@ module Google
10212
10217
  class GoogleCloudDiscoveryengineV1betaDocumentProcessingConfigParsingConfigLayoutParsingConfig
10213
10218
  # @private
10214
10219
  class Representation < Google::Apis::Core::JsonRepresentation
10220
+ property :enable_image_annotation, as: 'enableImageAnnotation'
10221
+ property :enable_table_annotation, as: 'enableTableAnnotation'
10215
10222
  end
10216
10223
  end
10217
10224
 
@@ -11068,6 +11075,7 @@ module Google
11068
11075
  class GoogleCloudDiscoveryengineV1betaUserInfo
11069
11076
  # @private
11070
11077
  class Representation < Google::Apis::Core::JsonRepresentation
11078
+ property :time_zone, as: 'timeZone'
11071
11079
  property :user_agent, as: 'userAgent'
11072
11080
  property :user_id, as: 'userId'
11073
11081
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.57.0
4
+ version: 0.58.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-23 00:00:00.000000000 Z
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_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.57.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.58.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths: