google-apis-discoveryengine_v1beta 0.59.0 → 0.60.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: d1aa2cc389d5ddf711ba485fb808ca3deabebc5e9bfa6b88e063d8500d4b6bd2
4
- data.tar.gz: d28a22d55eb321d648049d74442690f404fd3a041b61a92b13d45372a0b7bcd1
3
+ metadata.gz: 20f75df0ec59030e08a3cee0ff05b6537d9e708f04e9b3ee29fc947d60929553
4
+ data.tar.gz: c13c31619a55b5dc5c2378dc5efd48154b84956128036a69d135cfeb9e80a7b8
5
5
  SHA512:
6
- metadata.gz: 92af7cd13baf775970730306810d4f97e99818b0f97b1256aabc1d039951c0cb52f332bca6ca0c9ff7d79b32c9fbdfa940261eb2d91aa3b1cf0b5ef307106744
7
- data.tar.gz: 1b81c9913db1a659fe63c17c167dfc11ca681ea886292acc3771fd5a55ada9eb01b3d450bf107e5b184df713885ed46ee75507e38631458e5bbbf0d9ba3cc57e
6
+ metadata.gz: 161fe8b718f1bc074d146845854a3857f84e49fc694f2392a01fcfefd6b34adee2d474ff331ecf0de4862d4f8c7136d244168f16ad82ce07562df22cb3d4b838
7
+ data.tar.gz: 883e571c7e223004500d3dcaeb8ad2a528157c83ddba6a0bf6011b94ce02b3c16e1bdc0a81a3f8753fe479e062f20c01157b32e133942fc079f13a3740d953b2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1beta
2
2
 
3
+ ### v0.60.0 (2025-03-30)
4
+
5
+ * Regenerated from discovery document revision 20250322
6
+
3
7
  ### v0.59.0 (2025-03-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20250320
@@ -2046,12 +2046,28 @@ module Google
2046
2046
  class GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigLayoutParsingConfig
2047
2047
  include Google::Apis::Core::Hashable
2048
2048
 
2049
+ # Optional. If true, the LLM based annotation is added to the image during
2050
+ # parsing.
2051
+ # Corresponds to the JSON property `enableImageAnnotation`
2052
+ # @return [Boolean]
2053
+ attr_accessor :enable_image_annotation
2054
+ alias_method :enable_image_annotation?, :enable_image_annotation
2055
+
2056
+ # Optional. If true, the LLM based annotation is added to the table during
2057
+ # parsing.
2058
+ # Corresponds to the JSON property `enableTableAnnotation`
2059
+ # @return [Boolean]
2060
+ attr_accessor :enable_table_annotation
2061
+ alias_method :enable_table_annotation?, :enable_table_annotation
2062
+
2049
2063
  def initialize(**args)
2050
2064
  update!(**args)
2051
2065
  end
2052
2066
 
2053
2067
  # Update properties of this object
2054
2068
  def update!(**args)
2069
+ @enable_image_annotation = args[:enable_image_annotation] if args.key?(:enable_image_annotation)
2070
+ @enable_table_annotation = args[:enable_table_annotation] if args.key?(:enable_table_annotation)
2055
2071
  end
2056
2072
  end
2057
2073
 
@@ -7071,12 +7087,28 @@ module Google
7071
7087
  class GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigLayoutParsingConfig
7072
7088
  include Google::Apis::Core::Hashable
7073
7089
 
7090
+ # Optional. If true, the LLM based annotation is added to the image during
7091
+ # parsing.
7092
+ # Corresponds to the JSON property `enableImageAnnotation`
7093
+ # @return [Boolean]
7094
+ attr_accessor :enable_image_annotation
7095
+ alias_method :enable_image_annotation?, :enable_image_annotation
7096
+
7097
+ # Optional. If true, the LLM based annotation is added to the table during
7098
+ # parsing.
7099
+ # Corresponds to the JSON property `enableTableAnnotation`
7100
+ # @return [Boolean]
7101
+ attr_accessor :enable_table_annotation
7102
+ alias_method :enable_table_annotation?, :enable_table_annotation
7103
+
7074
7104
  def initialize(**args)
7075
7105
  update!(**args)
7076
7106
  end
7077
7107
 
7078
7108
  # Update properties of this object
7079
7109
  def update!(**args)
7110
+ @enable_image_annotation = args[:enable_image_annotation] if args.key?(:enable_image_annotation)
7111
+ @enable_table_annotation = args[:enable_table_annotation] if args.key?(:enable_table_annotation)
7080
7112
  end
7081
7113
  end
7082
7114
 
@@ -11508,6 +11540,11 @@ module Google
11508
11540
  class GoogleCloudDiscoveryengineV1alphaUserInfo
11509
11541
  include Google::Apis::Core::Hashable
11510
11542
 
11543
+ # Optional. IANA time zone, e.g. Europe/Budapest.
11544
+ # Corresponds to the JSON property `timeZone`
11545
+ # @return [String]
11546
+ attr_accessor :time_zone
11547
+
11511
11548
  # User agent as included in the HTTP header. The field must be a UTF-8 encoded
11512
11549
  # string with a length limit of 1,000 characters. Otherwise, an `
11513
11550
  # INVALID_ARGUMENT` error is returned. This should not be set when using the
@@ -11533,6 +11570,7 @@ module Google
11533
11570
 
11534
11571
  # Update properties of this object
11535
11572
  def update!(**args)
11573
+ @time_zone = args[:time_zone] if args.key?(:time_zone)
11536
11574
  @user_agent = args[:user_agent] if args.key?(:user_agent)
11537
11575
  @user_id = args[:user_id] if args.key?(:user_id)
11538
11576
  end
@@ -16561,12 +16599,28 @@ module Google
16561
16599
  class GoogleCloudDiscoveryengineV1betaDocumentProcessingConfigParsingConfigLayoutParsingConfig
16562
16600
  include Google::Apis::Core::Hashable
16563
16601
 
16602
+ # Optional. If true, the LLM based annotation is added to the image during
16603
+ # parsing.
16604
+ # Corresponds to the JSON property `enableImageAnnotation`
16605
+ # @return [Boolean]
16606
+ attr_accessor :enable_image_annotation
16607
+ alias_method :enable_image_annotation?, :enable_image_annotation
16608
+
16609
+ # Optional. If true, the LLM based annotation is added to the table during
16610
+ # parsing.
16611
+ # Corresponds to the JSON property `enableTableAnnotation`
16612
+ # @return [Boolean]
16613
+ attr_accessor :enable_table_annotation
16614
+ alias_method :enable_table_annotation?, :enable_table_annotation
16615
+
16564
16616
  def initialize(**args)
16565
16617
  update!(**args)
16566
16618
  end
16567
16619
 
16568
16620
  # Update properties of this object
16569
16621
  def update!(**args)
16622
+ @enable_image_annotation = args[:enable_image_annotation] if args.key?(:enable_image_annotation)
16623
+ @enable_table_annotation = args[:enable_table_annotation] if args.key?(:enable_table_annotation)
16570
16624
  end
16571
16625
  end
16572
16626
 
@@ -24160,6 +24214,11 @@ module Google
24160
24214
  class GoogleCloudDiscoveryengineV1betaUserInfo
24161
24215
  include Google::Apis::Core::Hashable
24162
24216
 
24217
+ # Optional. IANA time zone, e.g. Europe/Budapest.
24218
+ # Corresponds to the JSON property `timeZone`
24219
+ # @return [String]
24220
+ attr_accessor :time_zone
24221
+
24163
24222
  # User agent as included in the HTTP header. The field must be a UTF-8 encoded
24164
24223
  # string with a length limit of 1,000 characters. Otherwise, an `
24165
24224
  # INVALID_ARGUMENT` error is returned. This should not be set when using the
@@ -24185,6 +24244,7 @@ module Google
24185
24244
 
24186
24245
  # Update properties of this object
24187
24246
  def update!(**args)
24247
+ @time_zone = args[:time_zone] if args.key?(:time_zone)
24188
24248
  @user_agent = args[:user_agent] if args.key?(:user_agent)
24189
24249
  @user_id = args[:user_id] if args.key?(:user_id)
24190
24250
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1beta
18
18
  # Version of the google-apis-discoveryengine_v1beta gem
19
- GEM_VERSION = "0.59.0"
19
+ GEM_VERSION = "0.60.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
@@ -4540,6 +4540,8 @@ module Google
4540
4540
  class GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigLayoutParsingConfig
4541
4541
  # @private
4542
4542
  class Representation < Google::Apis::Core::JsonRepresentation
4543
+ property :enable_image_annotation, as: 'enableImageAnnotation'
4544
+ property :enable_table_annotation, as: 'enableTableAnnotation'
4543
4545
  end
4544
4546
  end
4545
4547
 
@@ -5891,6 +5893,8 @@ module Google
5891
5893
  class GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigLayoutParsingConfig
5892
5894
  # @private
5893
5895
  class Representation < Google::Apis::Core::JsonRepresentation
5896
+ property :enable_image_annotation, as: 'enableImageAnnotation'
5897
+ property :enable_table_annotation, as: 'enableTableAnnotation'
5894
5898
  end
5895
5899
  end
5896
5900
 
@@ -7054,6 +7058,7 @@ module Google
7054
7058
  class GoogleCloudDiscoveryengineV1alphaUserInfo
7055
7059
  # @private
7056
7060
  class Representation < Google::Apis::Core::JsonRepresentation
7061
+ property :time_zone, as: 'timeZone'
7057
7062
  property :user_agent, as: 'userAgent'
7058
7063
  property :user_id, as: 'userId'
7059
7064
  end
@@ -8460,6 +8465,8 @@ module Google
8460
8465
  class GoogleCloudDiscoveryengineV1betaDocumentProcessingConfigParsingConfigLayoutParsingConfig
8461
8466
  # @private
8462
8467
  class Representation < Google::Apis::Core::JsonRepresentation
8468
+ property :enable_image_annotation, as: 'enableImageAnnotation'
8469
+ property :enable_table_annotation, as: 'enableTableAnnotation'
8463
8470
  end
8464
8471
  end
8465
8472
 
@@ -10537,6 +10544,7 @@ module Google
10537
10544
  class GoogleCloudDiscoveryengineV1betaUserInfo
10538
10545
  # @private
10539
10546
  class Representation < Google::Apis::Core::JsonRepresentation
10547
+ property :time_zone, as: 'timeZone'
10540
10548
  property :user_agent, as: 'userAgent'
10541
10549
  property :user_id, as: 'userId'
10542
10550
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.59.0
4
+ version: 0.60.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_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.59.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.60.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: