google-apis-discoveryengine_v1 0.37.0 → 0.39.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: 4a1b7946b1b1c90e633d96f12e5cf01a983efd8a6119a89fd4f539aad1e7fd37
4
- data.tar.gz: facbd9de71fc22cee051738d70a18bb4f670428240ea2b481e9c55eccf763d7f
3
+ metadata.gz: 4a797385247771e27eabc70cc34e579fba1f902c918785d1dc34611c692d5ff2
4
+ data.tar.gz: 16299e0fad7ad9c31fb610432ee5b7dc46743ff10f2eb5915a27435d3bc7232d
5
5
  SHA512:
6
- metadata.gz: 68f7f5836e525377f1a9801b1d039f24bc654d3f627aba00e7749956e1640c95701d6d1dc4e3e65e0c6e531501f0763a9f6a317e42ac9304d9c5da73a7febf34
7
- data.tar.gz: 730b0e21fa3bec15daad2877914ac8825e3e0c9a50b002ebfb2194264056c10b001afb747084facb88e985fc3dd60f370b18228ef0cd79d40dc44f5a22b6b90f
6
+ metadata.gz: 0ae2b818fdd58bac605049787de8ebb9951fd5e07181b4304fa29d215348810a16093826178491ac460974feb17eaadf76591acd6c8d54461f96b6e16589f577
7
+ data.tar.gz: cee25acc8ffc3628cda9c28220f2fbba12ec6d0c5c03dfe75ebf220c90009f0c51d7aa522a2b79802bb5d93971e84ad97028c99ab37fb7e0458c185b4e3b2ad6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.39.0 (2025-05-25)
4
+
5
+ * Regenerated from discovery document revision 20250521
6
+ * Regenerated using generator version 0.18.0
7
+
8
+ ### v0.38.0 (2025-05-21)
9
+
10
+ * Regenerated from discovery document revision 20250519
11
+
3
12
  ### v0.37.0 (2025-05-18)
4
13
 
5
14
  * Regenerated from discovery document revision 20250514
@@ -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
@@ -5440,6 +5498,12 @@ module Google
5440
5498
  # @return [Array<String>]
5441
5499
  attr_accessor :exclude_html_ids
5442
5500
 
5501
+ # Optional. Contains the required structure types to extract from the document.
5502
+ # Supported values: * `shareholder-structure`
5503
+ # Corresponds to the JSON property `structuredContentTypes`
5504
+ # @return [Array<String>]
5505
+ attr_accessor :structured_content_types
5506
+
5443
5507
  def initialize(**args)
5444
5508
  update!(**args)
5445
5509
  end
@@ -5451,6 +5515,7 @@ module Google
5451
5515
  @exclude_html_classes = args[:exclude_html_classes] if args.key?(:exclude_html_classes)
5452
5516
  @exclude_html_elements = args[:exclude_html_elements] if args.key?(:exclude_html_elements)
5453
5517
  @exclude_html_ids = args[:exclude_html_ids] if args.key?(:exclude_html_ids)
5518
+ @structured_content_types = args[:structured_content_types] if args.key?(:structured_content_types)
5454
5519
  end
5455
5520
  end
5456
5521
 
@@ -5602,6 +5667,15 @@ module Google
5602
5667
  # @return [String]
5603
5668
  attr_accessor :display_name
5604
5669
 
5670
+ # Optional. Feature config for the engine to opt in or opt out of features.
5671
+ # Supported keys: * `*`: all features, if it's present, all other feature state
5672
+ # settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
5673
+ # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
5674
+ # org-chart` * `bi-directional-audio` * `feedback`
5675
+ # Corresponds to the JSON property `features`
5676
+ # @return [Hash<String,String>]
5677
+ attr_accessor :features
5678
+
5605
5679
  # Optional. The industry vertical that the engine registers. The restriction of
5606
5680
  # the Engine industry vertical is based on DataStore: Vertical on Engine has to
5607
5681
  # match vertical of the DataStore linked to the engine.
@@ -5651,6 +5725,7 @@ module Google
5651
5725
  @data_store_ids = args[:data_store_ids] if args.key?(:data_store_ids)
5652
5726
  @disable_analytics = args[:disable_analytics] if args.key?(:disable_analytics)
5653
5727
  @display_name = args[:display_name] if args.key?(:display_name)
5728
+ @features = args[:features] if args.key?(:features)
5654
5729
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
5655
5730
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
5656
5731
  @name = args[:name] if args.key?(:name)
@@ -11573,15 +11648,6 @@ module Google
11573
11648
  # @return [String]
11574
11649
  attr_accessor :update_time
11575
11650
 
11576
- # Optional. The full resource name of the User, in the format of `projects/`
11577
- # project`/locations/`location`/userStores/`user_store`/users/`user_id``. This
11578
- # field must be a UTF-8 encoded string with a length limit of 2048 characters.
11579
- # If the user field is empty, it's indicating the user has not logged in yet and
11580
- # no User entity is created.
11581
- # Corresponds to the JSON property `user`
11582
- # @return [String]
11583
- attr_accessor :user
11584
-
11585
11651
  # Required. Immutable. The user principal of the User, could be email address or
11586
11652
  # other prinical identifier. This field is immutable. Admin assign licenses
11587
11653
  # based on the user principal.
@@ -11606,7 +11672,6 @@ module Google
11606
11672
  @license_assignment_state = args[:license_assignment_state] if args.key?(:license_assignment_state)
11607
11673
  @license_config = args[:license_config] if args.key?(:license_config)
11608
11674
  @update_time = args[:update_time] if args.key?(:update_time)
11609
- @user = args[:user] if args.key?(:user)
11610
11675
  @user_principal = args[:user_principal] if args.key?(:user_principal)
11611
11676
  @user_profile = args[:user_profile] if args.key?(:user_profile)
11612
11677
  end
@@ -12990,7 +13055,7 @@ module Google
12990
13055
  attr_accessor :errors
12991
13056
 
12992
13057
  # The number of documents extracted from connector source, ready to be ingested
12993
- # to UCS.
13058
+ # to VAIS.
12994
13059
  # Corresponds to the JSON property `extractedRecordCount`
12995
13060
  # @return [Fixnum]
12996
13061
  attr_accessor :extracted_record_count
@@ -13005,6 +13070,12 @@ module Google
13005
13070
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress]
13006
13071
  attr_accessor :progress
13007
13072
 
13073
+ # The number of documents scheduled to be crawled/extracted from connector
13074
+ # source. This only applies to third party connectors.
13075
+ # Corresponds to the JSON property `scheduledRecordCount`
13076
+ # @return [Fixnum]
13077
+ attr_accessor :scheduled_record_count
13078
+
13008
13079
  # The number of requests sent to 3p API.
13009
13080
  # Corresponds to the JSON property `sourceApiRequestCount`
13010
13081
  # @return [Fixnum]
@@ -13044,6 +13115,7 @@ module Google
13044
13115
  @extracted_record_count = args[:extracted_record_count] if args.key?(:extracted_record_count)
13045
13116
  @indexed_record_count = args[:indexed_record_count] if args.key?(:indexed_record_count)
13046
13117
  @progress = args[:progress] if args.key?(:progress)
13118
+ @scheduled_record_count = args[:scheduled_record_count] if args.key?(:scheduled_record_count)
13047
13119
  @source_api_request_count = args[:source_api_request_count] if args.key?(:source_api_request_count)
13048
13120
  @state = args[:state] if args.key?(:state)
13049
13121
  @state_update_time = args[:state_update_time] if args.key?(:state_update_time)
@@ -14794,6 +14866,12 @@ module Google
14794
14866
  # @return [Array<String>]
14795
14867
  attr_accessor :exclude_html_ids
14796
14868
 
14869
+ # Optional. Contains the required structure types to extract from the document.
14870
+ # Supported values: * `shareholder-structure`
14871
+ # Corresponds to the JSON property `structuredContentTypes`
14872
+ # @return [Array<String>]
14873
+ attr_accessor :structured_content_types
14874
+
14797
14875
  def initialize(**args)
14798
14876
  update!(**args)
14799
14877
  end
@@ -14805,6 +14883,7 @@ module Google
14805
14883
  @exclude_html_classes = args[:exclude_html_classes] if args.key?(:exclude_html_classes)
14806
14884
  @exclude_html_elements = args[:exclude_html_elements] if args.key?(:exclude_html_elements)
14807
14885
  @exclude_html_ids = args[:exclude_html_ids] if args.key?(:exclude_html_ids)
14886
+ @structured_content_types = args[:structured_content_types] if args.key?(:structured_content_types)
14808
14887
  end
14809
14888
  end
14810
14889
 
@@ -14924,6 +15003,15 @@ module Google
14924
15003
  # @return [String]
14925
15004
  attr_accessor :display_name
14926
15005
 
15006
+ # Optional. Feature config for the engine to opt in or opt out of features.
15007
+ # Supported keys: * `*`: all features, if it's present, all other feature state
15008
+ # settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
15009
+ # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
15010
+ # org-chart` * `bi-directional-audio` * `feedback`
15011
+ # Corresponds to the JSON property `features`
15012
+ # @return [Hash<String,String>]
15013
+ attr_accessor :features
15014
+
14927
15015
  # Optional. The industry vertical that the engine registers. The restriction of
14928
15016
  # the Engine industry vertical is based on DataStore: Vertical on Engine has to
14929
15017
  # match vertical of the DataStore linked to the engine.
@@ -14983,6 +15071,7 @@ module Google
14983
15071
  @data_store_ids = args[:data_store_ids] if args.key?(:data_store_ids)
14984
15072
  @disable_analytics = args[:disable_analytics] if args.key?(:disable_analytics)
14985
15073
  @display_name = args[:display_name] if args.key?(:display_name)
15074
+ @features = args[:features] if args.key?(:features)
14986
15075
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
14987
15076
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
14988
15077
  @name = args[:name] if args.key?(:name)
@@ -15292,6 +15381,12 @@ module Google
15292
15381
  # @return [String]
15293
15382
  attr_accessor :data_state
15294
15383
 
15384
+ # Output only. The timestamp when the latest successful training finished. Only
15385
+ # applicable on Media Recommendation engines.
15386
+ # Corresponds to the JSON property `lastTrainTime`
15387
+ # @return [String]
15388
+ attr_accessor :last_train_time
15389
+
15295
15390
  # Output only. The timestamp when the latest successful tune finished. Only
15296
15391
  # applicable on Media Recommendation engines.
15297
15392
  # Corresponds to the JSON property `lastTuneTime`
@@ -15320,6 +15415,7 @@ module Google
15320
15415
  # Update properties of this object
15321
15416
  def update!(**args)
15322
15417
  @data_state = args[:data_state] if args.key?(:data_state)
15418
+ @last_train_time = args[:last_train_time] if args.key?(:last_train_time)
15323
15419
  @last_tune_time = args[:last_tune_time] if args.key?(:last_tune_time)
15324
15420
  @serving_state = args[:serving_state] if args.key?(:serving_state)
15325
15421
  @tuning_operation = args[:tuning_operation] if args.key?(:tuning_operation)
@@ -19398,15 +19494,6 @@ module Google
19398
19494
  # @return [String]
19399
19495
  attr_accessor :update_time
19400
19496
 
19401
- # Optional. The full resource name of the User, in the format of `projects/`
19402
- # project`/locations/`location`/userStores/`user_store`/users/`user_id``. This
19403
- # field must be a UTF-8 encoded string with a length limit of 2048 characters.
19404
- # If the user field is empty, it's indicating the user has not logged in yet and
19405
- # no User entity is created.
19406
- # Corresponds to the JSON property `user`
19407
- # @return [String]
19408
- attr_accessor :user
19409
-
19410
19497
  # Required. Immutable. The user principal of the User, could be email address or
19411
19498
  # other prinical identifier. This field is immutable. Admin assign licenses
19412
19499
  # based on the user principal.
@@ -19431,7 +19518,6 @@ module Google
19431
19518
  @license_assignment_state = args[:license_assignment_state] if args.key?(:license_assignment_state)
19432
19519
  @license_config = args[:license_config] if args.key?(:license_config)
19433
19520
  @update_time = args[:update_time] if args.key?(:update_time)
19434
- @user = args[:user] if args.key?(:user)
19435
19521
  @user_principal = args[:user_principal] if args.key?(:user_principal)
19436
19522
  @user_profile = args[:user_profile] if args.key?(:user_profile)
19437
19523
  end
@@ -20854,6 +20940,12 @@ module Google
20854
20940
  # @return [Array<String>]
20855
20941
  attr_accessor :exclude_html_ids
20856
20942
 
20943
+ # Optional. Contains the required structure types to extract from the document.
20944
+ # Supported values: * `shareholder-structure`
20945
+ # Corresponds to the JSON property `structuredContentTypes`
20946
+ # @return [Array<String>]
20947
+ attr_accessor :structured_content_types
20948
+
20857
20949
  def initialize(**args)
20858
20950
  update!(**args)
20859
20951
  end
@@ -20865,6 +20957,7 @@ module Google
20865
20957
  @exclude_html_classes = args[:exclude_html_classes] if args.key?(:exclude_html_classes)
20866
20958
  @exclude_html_elements = args[:exclude_html_elements] if args.key?(:exclude_html_elements)
20867
20959
  @exclude_html_ids = args[:exclude_html_ids] if args.key?(:exclude_html_ids)
20960
+ @structured_content_types = args[:structured_content_types] if args.key?(:structured_content_types)
20868
20961
  end
20869
20962
  end
20870
20963
 
@@ -20984,6 +21077,15 @@ module Google
20984
21077
  # @return [String]
20985
21078
  attr_accessor :display_name
20986
21079
 
21080
+ # Optional. Feature config for the engine to opt in or opt out of features.
21081
+ # Supported keys: * `*`: all features, if it's present, all other feature state
21082
+ # settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
21083
+ # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
21084
+ # org-chart` * `bi-directional-audio` * `feedback`
21085
+ # Corresponds to the JSON property `features`
21086
+ # @return [Hash<String,String>]
21087
+ attr_accessor :features
21088
+
20987
21089
  # Optional. The industry vertical that the engine registers. The restriction of
20988
21090
  # the Engine industry vertical is based on DataStore: Vertical on Engine has to
20989
21091
  # match vertical of the DataStore linked to the engine.
@@ -21033,6 +21135,7 @@ module Google
21033
21135
  @data_store_ids = args[:data_store_ids] if args.key?(:data_store_ids)
21034
21136
  @disable_analytics = args[:disable_analytics] if args.key?(:disable_analytics)
21035
21137
  @display_name = args[:display_name] if args.key?(:display_name)
21138
+ @features = args[:features] if args.key?(:features)
21036
21139
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
21037
21140
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
21038
21141
  @name = args[:name] if args.key?(: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.37.0"
19
+ GEM_VERSION = "0.39.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250514"
25
+ REVISION = "20250521"
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
@@ -5430,6 +5461,7 @@ module Google
5430
5461
  collection :exclude_html_classes, as: 'excludeHtmlClasses'
5431
5462
  collection :exclude_html_elements, as: 'excludeHtmlElements'
5432
5463
  collection :exclude_html_ids, as: 'excludeHtmlIds'
5464
+ collection :structured_content_types, as: 'structuredContentTypes'
5433
5465
  end
5434
5466
  end
5435
5467
 
@@ -5481,6 +5513,7 @@ module Google
5481
5513
  collection :data_store_ids, as: 'dataStoreIds'
5482
5514
  property :disable_analytics, as: 'disableAnalytics'
5483
5515
  property :display_name, as: 'displayName'
5516
+ hash :features, as: 'features'
5484
5517
  property :industry_vertical, as: 'industryVertical'
5485
5518
  property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig::Representation
5486
5519
 
@@ -7045,7 +7078,6 @@ module Google
7045
7078
  property :license_assignment_state, as: 'licenseAssignmentState'
7046
7079
  property :license_config, as: 'licenseConfig'
7047
7080
  property :update_time, as: 'updateTime'
7048
- property :user, as: 'user'
7049
7081
  property :user_principal, as: 'userPrincipal'
7050
7082
  property :user_profile, as: 'userProfile'
7051
7083
  end
@@ -7453,6 +7485,7 @@ module Google
7453
7485
  property :indexed_record_count, :numeric_string => true, as: 'indexedRecordCount'
7454
7486
  property :progress, as: 'progress', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress::Representation
7455
7487
 
7488
+ property :scheduled_record_count, :numeric_string => true, as: 'scheduledRecordCount'
7456
7489
  property :source_api_request_count, :numeric_string => true, as: 'sourceApiRequestCount'
7457
7490
  property :state, as: 'state'
7458
7491
  property :state_update_time, as: 'stateUpdateTime'
@@ -7926,6 +7959,7 @@ module Google
7926
7959
  collection :exclude_html_classes, as: 'excludeHtmlClasses'
7927
7960
  collection :exclude_html_elements, as: 'excludeHtmlElements'
7928
7961
  collection :exclude_html_ids, as: 'excludeHtmlIds'
7962
+ collection :structured_content_types, as: 'structuredContentTypes'
7929
7963
  end
7930
7964
  end
7931
7965
 
@@ -7964,6 +7998,7 @@ module Google
7964
7998
  collection :data_store_ids, as: 'dataStoreIds'
7965
7999
  property :disable_analytics, as: 'disableAnalytics'
7966
8000
  property :display_name, as: 'displayName'
8001
+ hash :features, as: 'features'
7967
8002
  property :industry_vertical, as: 'industryVertical'
7968
8003
  property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig::Representation
7969
8004
 
@@ -8062,6 +8097,7 @@ module Google
8062
8097
  # @private
8063
8098
  class Representation < Google::Apis::Core::JsonRepresentation
8064
8099
  property :data_state, as: 'dataState'
8100
+ property :last_train_time, as: 'lastTrainTime'
8065
8101
  property :last_tune_time, as: 'lastTuneTime'
8066
8102
  property :serving_state, as: 'servingState'
8067
8103
  property :tuning_operation, as: 'tuningOperation'
@@ -9131,7 +9167,6 @@ module Google
9131
9167
  property :license_assignment_state, as: 'licenseAssignmentState'
9132
9168
  property :license_config, as: 'licenseConfig'
9133
9169
  property :update_time, as: 'updateTime'
9134
- property :user, as: 'user'
9135
9170
  property :user_principal, as: 'userPrincipal'
9136
9171
  property :user_profile, as: 'userProfile'
9137
9172
  end
@@ -9539,6 +9574,7 @@ module Google
9539
9574
  collection :exclude_html_classes, as: 'excludeHtmlClasses'
9540
9575
  collection :exclude_html_elements, as: 'excludeHtmlElements'
9541
9576
  collection :exclude_html_ids, as: 'excludeHtmlIds'
9577
+ collection :structured_content_types, as: 'structuredContentTypes'
9542
9578
  end
9543
9579
  end
9544
9580
 
@@ -9577,6 +9613,7 @@ module Google
9577
9613
  collection :data_store_ids, as: 'dataStoreIds'
9578
9614
  property :disable_analytics, as: 'disableAnalytics'
9579
9615
  property :display_name, as: 'displayName'
9616
+ hash :features, as: 'features'
9580
9617
  property :industry_vertical, as: 'industryVertical'
9581
9618
  property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig::Representation
9582
9619
 
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.37.0
4
+ version: 0.39.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.37.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.39.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: []