google-apis-discoveryengine_v1 0.36.0 → 0.38.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: e9054e9baf295a06f1e1e110b97b4d1a4f7f22a0ca3b42cdefdf9f815b3e2731
4
- data.tar.gz: 1cc7ffaed4bc3c4a65c9c81bdc4e429cc21df4bbdf3e552fb5bbe81e8a543dae
3
+ metadata.gz: c7e7ad9e5f32225c80a6c1d8a25d4a04d5a29beffe151734f4af10fda342136e
4
+ data.tar.gz: 6f029c267b754ebd1e19beb3b70f4d99619b3c31bb8ab0e73b90c8f83c00eb97
5
5
  SHA512:
6
- metadata.gz: 9b96404d3f5aa99304be0b9c1a047b5bb6355e676257bcbc222bb5c33d059666421ee7408543c60a7f91445b66037f54841a90ced67a5e892ad2879a239a6e05
7
- data.tar.gz: 41a5b2a6304c0faae43a88f65714b0e3489dd54b730148c5ee08503f01517d5abd7419381b12f6427215eaeddac582796f98ad452f78d6e0010491a541880ef2
6
+ metadata.gz: d249c3c3b79f9c241dfa37ea21f65e8424342e8c32f95d0fbac154185ebf7ca39fcafc84659120c0bbfd12de6320da06666ced7bcb1fce548bce3d3122279239
7
+ data.tar.gz: 23b261eb795ba08ed931cbe2f0a3574d13864bcd37fafe3829858d342b1cccf172cd43e5a8101bea77ab4f7695af7855a0d532be458afc7753a036b1a3ec16b2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.38.0 (2025-05-21)
4
+
5
+ * Regenerated from discovery document revision 20250519
6
+
7
+ ### v0.37.0 (2025-05-18)
8
+
9
+ * Regenerated from discovery document revision 20250514
10
+
3
11
  ### v0.36.0 (2025-05-11)
4
12
 
5
13
  * Regenerated from discovery document revision 20250508
@@ -3176,6 +3176,12 @@ module Google
3176
3176
  # @return [Array<String>]
3177
3177
  attr_accessor :annotation_contents
3178
3178
 
3179
+ # Output only. The annotation metadata includes structured content in the
3180
+ # current chunk.
3181
+ # Corresponds to the JSON property `annotationMetadata`
3182
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata>]
3183
+ attr_accessor :annotation_metadata
3184
+
3179
3185
  # Metadata of the current chunk. This field is only populated on SearchService.
3180
3186
  # Search API.
3181
3187
  # Corresponds to the JSON property `chunkMetadata`
@@ -3238,6 +3244,7 @@ module Google
3238
3244
  # Update properties of this object
3239
3245
  def update!(**args)
3240
3246
  @annotation_contents = args[:annotation_contents] if args.key?(:annotation_contents)
3247
+ @annotation_metadata = args[:annotation_metadata] if args.key?(:annotation_metadata)
3241
3248
  @chunk_metadata = args[:chunk_metadata] if args.key?(:chunk_metadata)
3242
3249
  @content = args[:content] if args.key?(:content)
3243
3250
  @data_urls = args[:data_urls] if args.key?(:data_urls)
@@ -3250,6 +3257,32 @@ module Google
3250
3257
  end
3251
3258
  end
3252
3259
 
3260
+ # The annotation metadata includes structured content in the current chunk.
3261
+ class GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata
3262
+ include Google::Apis::Core::Hashable
3263
+
3264
+ # Output only. Image id is provided if the structured content is based on an
3265
+ # image.
3266
+ # Corresponds to the JSON property `imageId`
3267
+ # @return [String]
3268
+ attr_accessor :image_id
3269
+
3270
+ # The structured content information.
3271
+ # Corresponds to the JSON property `structuredContent`
3272
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ChunkStructuredContent]
3273
+ attr_accessor :structured_content
3274
+
3275
+ def initialize(**args)
3276
+ update!(**args)
3277
+ end
3278
+
3279
+ # Update properties of this object
3280
+ def update!(**args)
3281
+ @image_id = args[:image_id] if args.key?(:image_id)
3282
+ @structured_content = args[:structured_content] if args.key?(:structured_content)
3283
+ end
3284
+ end
3285
+
3253
3286
  # Metadata of the current chunk. This field is only populated on SearchService.
3254
3287
  # Search API.
3255
3288
  class GoogleCloudDiscoveryengineV1ChunkChunkMetadata
@@ -3338,6 +3371,31 @@ module Google
3338
3371
  end
3339
3372
  end
3340
3373
 
3374
+ # The structured content information.
3375
+ class GoogleCloudDiscoveryengineV1ChunkStructuredContent
3376
+ include Google::Apis::Core::Hashable
3377
+
3378
+ # Output only. The content of the structured content.
3379
+ # Corresponds to the JSON property `content`
3380
+ # @return [String]
3381
+ attr_accessor :content
3382
+
3383
+ # Output only. The structure type of the structured content.
3384
+ # Corresponds to the JSON property `structureType`
3385
+ # @return [String]
3386
+ attr_accessor :structure_type
3387
+
3388
+ def initialize(**args)
3389
+ update!(**args)
3390
+ end
3391
+
3392
+ # Update properties of this object
3393
+ def update!(**args)
3394
+ @content = args[:content] if args.key?(:content)
3395
+ @structure_type = args[:structure_type] if args.key?(:structure_type)
3396
+ end
3397
+ end
3398
+
3341
3399
  # Cloud SQL source import data from.
3342
3400
  class GoogleCloudDiscoveryengineV1CloudSqlSource
3343
3401
  include Google::Apis::Core::Hashable
@@ -4598,10 +4656,10 @@ module Google
4598
4656
  # @return [String]
4599
4657
  attr_accessor :kms_key_name
4600
4658
 
4601
- # Immutable. The full resource name of the data store. Format: `projects/`
4602
- # project`/locations/`location`/collections/`collection_id`/dataStores/`
4603
- # data_store_id``. This field must be a UTF-8 encoded string with a length limit
4604
- # of 1024 characters.
4659
+ # Immutable. Identifier. The full resource name of the data store. Format: `
4660
+ # projects/`project`/locations/`location`/collections/`collection_id`/dataStores/
4661
+ # `data_store_id``. This field must be a UTF-8 encoded string with a length
4662
+ # limit of 1024 characters.
4605
4663
  # Corresponds to the JSON property `name`
4606
4664
  # @return [String]
4607
4665
  attr_accessor :name
@@ -4710,7 +4768,8 @@ module Google
4710
4768
  class GoogleCloudDiscoveryengineV1DataStoreServingConfigDataStore
4711
4769
  include Google::Apis::Core::Hashable
4712
4770
 
4713
- # If set true, the DataStore will not be available for serving search requests.
4771
+ # Optional. If set true, the DataStore will not be available for serving search
4772
+ # requests.
4714
4773
  # Corresponds to the JSON property `disabledForServing`
4715
4774
  # @return [Boolean]
4716
4775
  attr_accessor :disabled_for_serving
@@ -5579,12 +5638,12 @@ module Google
5579
5638
  # @return [String]
5580
5639
  attr_accessor :create_time
5581
5640
 
5582
- # The data stores associated with this engine. For SOLUTION_TYPE_SEARCH and
5583
- # SOLUTION_TYPE_RECOMMENDATION type of engines, they can only associate with at
5584
- # most one data store. If solution_type is SOLUTION_TYPE_CHAT, multiple
5585
- # DataStores in the same Collection can be associated here. Note that when used
5586
- # in CreateEngineRequest, one DataStore id must be provided as the system will
5587
- # use it for necessary initializations.
5641
+ # Optional. The data stores associated with this engine. For
5642
+ # SOLUTION_TYPE_SEARCH and SOLUTION_TYPE_RECOMMENDATION type of engines, they
5643
+ # can only associate with at most one data store. If solution_type is
5644
+ # SOLUTION_TYPE_CHAT, multiple DataStores in the same Collection can be
5645
+ # associated here. Note that when used in CreateEngineRequest, one DataStore id
5646
+ # must be provided as the system will use it for necessary initializations.
5588
5647
  # Corresponds to the JSON property `dataStoreIds`
5589
5648
  # @return [Array<String>]
5590
5649
  attr_accessor :data_store_ids
@@ -5601,9 +5660,9 @@ module Google
5601
5660
  # @return [String]
5602
5661
  attr_accessor :display_name
5603
5662
 
5604
- # The industry vertical that the engine registers. The restriction of the Engine
5605
- # industry vertical is based on DataStore: Vertical on Engine has to match
5606
- # vertical of the DataStore linked to the engine.
5663
+ # Optional. The industry vertical that the engine registers. The restriction of
5664
+ # the Engine industry vertical is based on DataStore: Vertical on Engine has to
5665
+ # match vertical of the DataStore linked to the engine.
5607
5666
  # Corresponds to the JSON property `industryVertical`
5608
5667
  # @return [String]
5609
5668
  attr_accessor :industry_vertical
@@ -5613,11 +5672,11 @@ module Google
5613
5672
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig]
5614
5673
  attr_accessor :media_recommendation_engine_config
5615
5674
 
5616
- # Immutable. The fully qualified resource name of the engine. This field must be
5617
- # a UTF-8 encoded string with a length limit of 1024 characters. Format: `
5618
- # projects/`project`/locations/`location`/collections/`collection`/engines/`
5619
- # engine`` engine should be 1-63 characters, and valid characters are /a-z0-9*/.
5620
- # Otherwise, an INVALID_ARGUMENT error is returned.
5675
+ # Immutable. Identifier. The fully qualified resource name of the engine. This
5676
+ # field must be a UTF-8 encoded string with a length limit of 1024 characters.
5677
+ # Format: `projects/`project`/locations/`location`/collections/`collection`/
5678
+ # engines/`engine`` engine should be 1-63 characters, and valid characters are /
5679
+ # a-z0-9*/. Otherwise, an INVALID_ARGUMENT error is returned.
5621
5680
  # Corresponds to the JSON property `name`
5622
5681
  # @return [String]
5623
5682
  attr_accessor :name
@@ -13625,8 +13684,10 @@ module Google
13625
13684
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAlertPolicyConfig>]
13626
13685
  attr_accessor :alert_policy_configs
13627
13686
 
13628
- # Indicates whether the connector is disabled for auto run. It can be used to
13629
- # pause periodical and real time sync.
13687
+ # Optional. Indicates whether the connector is disabled for auto run. It can be
13688
+ # used to pause periodical and real time sync. Update: with the introduction of
13689
+ # incremental_sync_disabled, auto_run_disabled is used to pause/disable only
13690
+ # full syncs
13630
13691
  # Corresponds to the JSON property `autoRunDisabled`
13631
13692
  # @return [Boolean]
13632
13693
  attr_accessor :auto_run_disabled
@@ -13706,6 +13767,20 @@ module Google
13706
13767
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig]
13707
13768
  attr_accessor :identity_schedule_config
13708
13769
 
13770
+ # Optional. The refresh interval specifically for incremental data syncs. If
13771
+ # unset, incremental syncs will use the default from env, set to 3hrs. The
13772
+ # minimum is 30 minutes and maximum is 7 days.
13773
+ # Corresponds to the JSON property `incrementalRefreshInterval`
13774
+ # @return [String]
13775
+ attr_accessor :incremental_refresh_interval
13776
+
13777
+ # Optional. Indicates whether incremental syncs are paused for this connector.
13778
+ # This is independent of auto_run_disabled.
13779
+ # Corresponds to the JSON property `incrementalSyncDisabled`
13780
+ # @return [Boolean]
13781
+ attr_accessor :incremental_sync_disabled
13782
+ alias_method :incremental_sync_disabled?, :incremental_sync_disabled
13783
+
13709
13784
  # Input only. The KMS key to be used to protect the DataStores managed by this
13710
13785
  # connector. Must be set for requests that need to comply with CMEK Org Policy
13711
13786
  # protections. If this field is set and processed successfully, the DataStores
@@ -13853,6 +13928,8 @@ module Google
13853
13928
  @errors = args[:errors] if args.key?(:errors)
13854
13929
  @identity_refresh_interval = args[:identity_refresh_interval] if args.key?(:identity_refresh_interval)
13855
13930
  @identity_schedule_config = args[:identity_schedule_config] if args.key?(:identity_schedule_config)
13931
+ @incremental_refresh_interval = args[:incremental_refresh_interval] if args.key?(:incremental_refresh_interval)
13932
+ @incremental_sync_disabled = args[:incremental_sync_disabled] if args.key?(:incremental_sync_disabled)
13856
13933
  @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
13857
13934
  @last_sync_time = args[:last_sync_time] if args.key?(:last_sync_time)
13858
13935
  @latest_pause_time = args[:latest_pause_time] if args.key?(:latest_pause_time)
@@ -14087,10 +14164,10 @@ module Google
14087
14164
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaLanguageInfo]
14088
14165
  attr_accessor :language_info
14089
14166
 
14090
- # Immutable. The full resource name of the data store. Format: `projects/`
14091
- # project`/locations/`location`/collections/`collection_id`/dataStores/`
14092
- # data_store_id``. This field must be a UTF-8 encoded string with a length limit
14093
- # of 1024 characters.
14167
+ # Immutable. Identifier. The full resource name of the data store. Format: `
14168
+ # projects/`project`/locations/`location`/collections/`collection_id`/dataStores/
14169
+ # `data_store_id``. This field must be a UTF-8 encoded string with a length
14170
+ # limit of 1024 characters.
14094
14171
  # Corresponds to the JSON property `name`
14095
14172
  # @return [String]
14096
14173
  attr_accessor :name
@@ -14207,7 +14284,8 @@ module Google
14207
14284
  class GoogleCloudDiscoveryengineV1alphaDataStoreServingConfigDataStore
14208
14285
  include Google::Apis::Core::Hashable
14209
14286
 
14210
- # If set true, the DataStore will not be available for serving search requests.
14287
+ # Optional. If set true, the DataStore will not be available for serving search
14288
+ # requests.
14211
14289
  # Corresponds to the JSON property `disabledForServing`
14212
14290
  # @return [Boolean]
14213
14291
  attr_accessor :disabled_for_serving
@@ -14882,12 +14960,12 @@ module Google
14882
14960
  # @return [String]
14883
14961
  attr_accessor :create_time
14884
14962
 
14885
- # The data stores associated with this engine. For SOLUTION_TYPE_SEARCH and
14886
- # SOLUTION_TYPE_RECOMMENDATION type of engines, they can only associate with at
14887
- # most one data store. If solution_type is SOLUTION_TYPE_CHAT, multiple
14888
- # DataStores in the same Collection can be associated here. Note that when used
14889
- # in CreateEngineRequest, one DataStore id must be provided as the system will
14890
- # use it for necessary initializations.
14963
+ # Optional. The data stores associated with this engine. For
14964
+ # SOLUTION_TYPE_SEARCH and SOLUTION_TYPE_RECOMMENDATION type of engines, they
14965
+ # can only associate with at most one data store. If solution_type is
14966
+ # SOLUTION_TYPE_CHAT, multiple DataStores in the same Collection can be
14967
+ # associated here. Note that when used in CreateEngineRequest, one DataStore id
14968
+ # must be provided as the system will use it for necessary initializations.
14891
14969
  # Corresponds to the JSON property `dataStoreIds`
14892
14970
  # @return [Array<String>]
14893
14971
  attr_accessor :data_store_ids
@@ -14904,9 +14982,9 @@ module Google
14904
14982
  # @return [String]
14905
14983
  attr_accessor :display_name
14906
14984
 
14907
- # The industry vertical that the engine registers. The restriction of the Engine
14908
- # industry vertical is based on DataStore: Vertical on Engine has to match
14909
- # vertical of the DataStore linked to the engine.
14985
+ # Optional. The industry vertical that the engine registers. The restriction of
14986
+ # the Engine industry vertical is based on DataStore: Vertical on Engine has to
14987
+ # match vertical of the DataStore linked to the engine.
14910
14988
  # Corresponds to the JSON property `industryVertical`
14911
14989
  # @return [String]
14912
14990
  attr_accessor :industry_vertical
@@ -14916,11 +14994,11 @@ module Google
14916
14994
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig]
14917
14995
  attr_accessor :media_recommendation_engine_config
14918
14996
 
14919
- # Immutable. The fully qualified resource name of the engine. This field must be
14920
- # a UTF-8 encoded string with a length limit of 1024 characters. Format: `
14921
- # projects/`project`/locations/`location`/collections/`collection`/engines/`
14922
- # engine`` engine should be 1-63 characters, and valid characters are /a-z0-9*/.
14923
- # Otherwise, an INVALID_ARGUMENT error is returned.
14997
+ # Immutable. Identifier. The fully qualified resource name of the engine. This
14998
+ # field must be a UTF-8 encoded string with a length limit of 1024 characters.
14999
+ # Format: `projects/`project`/locations/`location`/collections/`collection`/
15000
+ # engines/`engine`` engine should be 1-63 characters, and valid characters are /
15001
+ # a-z0-9*/. Otherwise, an INVALID_ARGUMENT error is returned.
14924
15002
  # Corresponds to the JSON property `name`
14925
15003
  # @return [String]
14926
15004
  attr_accessor :name
@@ -20280,10 +20358,10 @@ module Google
20280
20358
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaLanguageInfo]
20281
20359
  attr_accessor :language_info
20282
20360
 
20283
- # Immutable. The full resource name of the data store. Format: `projects/`
20284
- # project`/locations/`location`/collections/`collection_id`/dataStores/`
20285
- # data_store_id``. This field must be a UTF-8 encoded string with a length limit
20286
- # of 1024 characters.
20361
+ # Immutable. Identifier. The full resource name of the data store. Format: `
20362
+ # projects/`project`/locations/`location`/collections/`collection_id`/dataStores/
20363
+ # `data_store_id``. This field must be a UTF-8 encoded string with a length
20364
+ # limit of 1024 characters.
20287
20365
  # Corresponds to the JSON property `name`
20288
20366
  # @return [String]
20289
20367
  attr_accessor :name
@@ -20399,7 +20477,8 @@ module Google
20399
20477
  class GoogleCloudDiscoveryengineV1betaDataStoreServingConfigDataStore
20400
20478
  include Google::Apis::Core::Hashable
20401
20479
 
20402
- # If set true, the DataStore will not be available for serving search requests.
20480
+ # Optional. If set true, the DataStore will not be available for serving search
20481
+ # requests.
20403
20482
  # Corresponds to the JSON property `disabledForServing`
20404
20483
  # @return [Boolean]
20405
20484
  attr_accessor :disabled_for_serving
@@ -20941,12 +21020,12 @@ module Google
20941
21020
  # @return [String]
20942
21021
  attr_accessor :create_time
20943
21022
 
20944
- # The data stores associated with this engine. For SOLUTION_TYPE_SEARCH and
20945
- # SOLUTION_TYPE_RECOMMENDATION type of engines, they can only associate with at
20946
- # most one data store. If solution_type is SOLUTION_TYPE_CHAT, multiple
20947
- # DataStores in the same Collection can be associated here. Note that when used
20948
- # in CreateEngineRequest, one DataStore id must be provided as the system will
20949
- # use it for necessary initializations.
21023
+ # Optional. The data stores associated with this engine. For
21024
+ # SOLUTION_TYPE_SEARCH and SOLUTION_TYPE_RECOMMENDATION type of engines, they
21025
+ # can only associate with at most one data store. If solution_type is
21026
+ # SOLUTION_TYPE_CHAT, multiple DataStores in the same Collection can be
21027
+ # associated here. Note that when used in CreateEngineRequest, one DataStore id
21028
+ # must be provided as the system will use it for necessary initializations.
20950
21029
  # Corresponds to the JSON property `dataStoreIds`
20951
21030
  # @return [Array<String>]
20952
21031
  attr_accessor :data_store_ids
@@ -20963,9 +21042,9 @@ module Google
20963
21042
  # @return [String]
20964
21043
  attr_accessor :display_name
20965
21044
 
20966
- # The industry vertical that the engine registers. The restriction of the Engine
20967
- # industry vertical is based on DataStore: Vertical on Engine has to match
20968
- # vertical of the DataStore linked to the engine.
21045
+ # Optional. The industry vertical that the engine registers. The restriction of
21046
+ # the Engine industry vertical is based on DataStore: Vertical on Engine has to
21047
+ # match vertical of the DataStore linked to the engine.
20969
21048
  # Corresponds to the JSON property `industryVertical`
20970
21049
  # @return [String]
20971
21050
  attr_accessor :industry_vertical
@@ -20975,11 +21054,11 @@ module Google
20975
21054
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig]
20976
21055
  attr_accessor :media_recommendation_engine_config
20977
21056
 
20978
- # Immutable. The fully qualified resource name of the engine. This field must be
20979
- # a UTF-8 encoded string with a length limit of 1024 characters. Format: `
20980
- # projects/`project`/locations/`location`/collections/`collection`/engines/`
20981
- # engine`` engine should be 1-63 characters, and valid characters are /a-z0-9*/.
20982
- # Otherwise, an INVALID_ARGUMENT error is returned.
21057
+ # Immutable. Identifier. The fully qualified resource name of the engine. This
21058
+ # field must be a UTF-8 encoded string with a length limit of 1024 characters.
21059
+ # Format: `projects/`project`/locations/`location`/collections/`collection`/
21060
+ # engines/`engine`` engine should be 1-63 characters, and valid characters are /
21061
+ # a-z0-9*/. Otherwise, an INVALID_ARGUMENT error is returned.
20983
21062
  # Corresponds to the JSON property `name`
20984
21063
  # @return [String]
20985
21064
  attr_accessor :name
@@ -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.36.0"
19
+ GEM_VERSION = "0.38.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250508"
25
+ REVISION = "20250519"
26
26
  end
27
27
  end
28
28
  end
@@ -550,6 +550,12 @@ module Google
550
550
  include Google::Apis::Core::JsonObjectSupport
551
551
  end
552
552
 
553
+ class GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata
554
+ class Representation < Google::Apis::Core::JsonRepresentation; end
555
+
556
+ include Google::Apis::Core::JsonObjectSupport
557
+ end
558
+
553
559
  class GoogleCloudDiscoveryengineV1ChunkChunkMetadata
554
560
  class Representation < Google::Apis::Core::JsonRepresentation; end
555
561
 
@@ -568,6 +574,12 @@ module Google
568
574
  include Google::Apis::Core::JsonObjectSupport
569
575
  end
570
576
 
577
+ class GoogleCloudDiscoveryengineV1ChunkStructuredContent
578
+ class Representation < Google::Apis::Core::JsonRepresentation; end
579
+
580
+ include Google::Apis::Core::JsonObjectSupport
581
+ end
582
+
571
583
  class GoogleCloudDiscoveryengineV1CloudSqlSource
572
584
  class Representation < Google::Apis::Core::JsonRepresentation; end
573
585
 
@@ -4826,6 +4838,8 @@ module Google
4826
4838
  # @private
4827
4839
  class Representation < Google::Apis::Core::JsonRepresentation
4828
4840
  collection :annotation_contents, as: 'annotationContents'
4841
+ collection :annotation_metadata, as: 'annotationMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata::Representation
4842
+
4829
4843
  property :chunk_metadata, as: 'chunkMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ChunkChunkMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ChunkChunkMetadata::Representation
4830
4844
 
4831
4845
  property :content, as: 'content'
@@ -4841,6 +4855,15 @@ module Google
4841
4855
  end
4842
4856
  end
4843
4857
 
4858
+ class GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata
4859
+ # @private
4860
+ class Representation < Google::Apis::Core::JsonRepresentation
4861
+ property :image_id, as: 'imageId'
4862
+ property :structured_content, as: 'structuredContent', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ChunkStructuredContent, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ChunkStructuredContent::Representation
4863
+
4864
+ end
4865
+ end
4866
+
4844
4867
  class GoogleCloudDiscoveryengineV1ChunkChunkMetadata
4845
4868
  # @private
4846
4869
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4868,6 +4891,14 @@ module Google
4868
4891
  end
4869
4892
  end
4870
4893
 
4894
+ class GoogleCloudDiscoveryengineV1ChunkStructuredContent
4895
+ # @private
4896
+ class Representation < Google::Apis::Core::JsonRepresentation
4897
+ property :content, as: 'content'
4898
+ property :structure_type, as: 'structureType'
4899
+ end
4900
+ end
4901
+
4871
4902
  class GoogleCloudDiscoveryengineV1CloudSqlSource
4872
4903
  # @private
4873
4904
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7644,6 +7675,8 @@ module Google
7644
7675
  property :identity_refresh_interval, as: 'identityRefreshInterval'
7645
7676
  property :identity_schedule_config, as: 'identityScheduleConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig::Representation
7646
7677
 
7678
+ property :incremental_refresh_interval, as: 'incrementalRefreshInterval'
7679
+ property :incremental_sync_disabled, as: 'incrementalSyncDisabled'
7647
7680
  property :kms_key_name, as: 'kmsKeyName'
7648
7681
  property :last_sync_time, as: 'lastSyncTime'
7649
7682
  property :latest_pause_time, as: 'latestPauseTime'
@@ -649,10 +649,10 @@ module Google
649
649
 
650
650
  # Updates a DataStore
651
651
  # @param [String] name
652
- # Immutable. The full resource name of the data store. Format: `projects/`
653
- # project`/locations/`location`/collections/`collection_id`/dataStores/`
654
- # data_store_id``. This field must be a UTF-8 encoded string with a length limit
655
- # of 1024 characters.
652
+ # Immutable. Identifier. The full resource name of the data store. Format: `
653
+ # projects/`project`/locations/`location`/collections/`collection_id`/dataStores/
654
+ # `data_store_id``. This field must be a UTF-8 encoded string with a length
655
+ # limit of 1024 characters.
656
656
  # @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DataStore] google_cloud_discoveryengine_v1_data_store_object
657
657
  # @param [String] update_mask
658
658
  # Indicates which fields in the provided DataStore to update. If an unsupported
@@ -3578,11 +3578,11 @@ module Google
3578
3578
 
3579
3579
  # Updates an Engine
3580
3580
  # @param [String] name
3581
- # Immutable. The fully qualified resource name of the engine. This field must be
3582
- # a UTF-8 encoded string with a length limit of 1024 characters. Format: `
3583
- # projects/`project`/locations/`location`/collections/`collection`/engines/`
3584
- # engine`` engine should be 1-63 characters, and valid characters are /a-z0-9*/.
3585
- # Otherwise, an INVALID_ARGUMENT error is returned.
3581
+ # Immutable. Identifier. The fully qualified resource name of the engine. This
3582
+ # field must be a UTF-8 encoded string with a length limit of 1024 characters.
3583
+ # Format: `projects/`project`/locations/`location`/collections/`collection`/
3584
+ # engines/`engine`` engine should be 1-63 characters, and valid characters are /
3585
+ # a-z0-9*/. Otherwise, an INVALID_ARGUMENT error is returned.
3586
3586
  # @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Engine] google_cloud_discoveryengine_v1_engine_object
3587
3587
  # @param [String] update_mask
3588
3588
  # Indicates which fields in the provided Engine to update. If an unsupported or
@@ -4965,10 +4965,10 @@ module Google
4965
4965
 
4966
4966
  # Updates a DataStore
4967
4967
  # @param [String] name
4968
- # Immutable. The full resource name of the data store. Format: `projects/`
4969
- # project`/locations/`location`/collections/`collection_id`/dataStores/`
4970
- # data_store_id``. This field must be a UTF-8 encoded string with a length limit
4971
- # of 1024 characters.
4968
+ # Immutable. Identifier. The full resource name of the data store. Format: `
4969
+ # projects/`project`/locations/`location`/collections/`collection_id`/dataStores/
4970
+ # `data_store_id``. This field must be a UTF-8 encoded string with a length
4971
+ # limit of 1024 characters.
4972
4972
  # @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DataStore] google_cloud_discoveryengine_v1_data_store_object
4973
4973
  # @param [String] update_mask
4974
4974
  # Indicates which fields in the provided DataStore to update. If an unsupported
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.36.0
4
+ version: 0.38.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-discoveryengine_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.36.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.38.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:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Discovery Engine API V1
79
79
  test_files: []