google-apis-discoveryengine_v1beta 0.94.0 → 0.96.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: 6089cd065de1cee0c472494bb6129945236f8a7d94531974c1394f874904a87c
4
- data.tar.gz: 1d370639771bf37f3ef26d578621c065b8bf338d0c49e6f09c8acb777bcdd648
3
+ metadata.gz: d47a6906e9c4e74927e6bb3fb686ce2ca0ec92786967e0373f0dc9e60d999f87
4
+ data.tar.gz: '0498dc339ba555360e7e56549584dbfe287a9ba9b852b37528c4601e1c7e6ce1'
5
5
  SHA512:
6
- metadata.gz: 2da0fed3d6b77aa60dff80c29f939e00d141e98f14d2c61d5d5876ec4240444924102f229b4ee517df3257d584844c65b5a4e0f2ef24457eab2fc122fbc71da9
7
- data.tar.gz: 68a3c5a3b55006a041c1fe0090e461b87349f9e799ffd044861e85c27457e33445ee00285f66a2844b5b91eecf667c833d8235b1ce4a96ba831eafcbd42f09ca
6
+ metadata.gz: 5edad08843dbe1477adc2bf2e73fa1ef82d96aa93bfb15040097654217405c1a1fa0a4132cd2dfecbd74bb6c5b68a49bfd48cd2343b74bcc4b9617f543dffeb3
7
+ data.tar.gz: beaa7fd2969912972a4686ed018a5e1dda5c992a32c9c052aeecfa2a395d898b1783648d2a5b272eb73c206ef4a097882c2a779f706771d2654deea85f94f6c9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-discoveryengine_v1beta
2
2
 
3
+ ### v0.96.0 (2026-01-25)
4
+
5
+ * Regenerated from discovery document revision 20260118
6
+
7
+ ### v0.95.0 (2026-01-18)
8
+
9
+ * Regenerated from discovery document revision 20260112
10
+
3
11
  ### v0.94.0 (2026-01-11)
4
12
 
5
13
  * Regenerated from discovery document revision 20260107
@@ -3496,9 +3496,10 @@ module Google
3496
3496
  # settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
3497
3497
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
3498
3498
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
3499
- # personalization-memory` * `disable-agent-sharing` * `disable-image-generation`
3500
- # * `disable-video-generation` * `disable-onedrive-upload` * `disable-talk-to-
3501
- # content` * `disable-google-drive-upload`
3499
+ # personalization-memory` * `personalization-suggested-highlights` * `disable-
3500
+ # agent-sharing` * `disable-image-generation` * `disable-video-generation` * `
3501
+ # disable-onedrive-upload` * `disable-talk-to-content` * `disable-google-drive-
3502
+ # upload` * `disable-welcome-emails`
3502
3503
  # Corresponds to the JSON property `features`
3503
3504
  # @return [Hash<String,String>]
3504
3505
  attr_accessor :features
@@ -3510,6 +3511,11 @@ module Google
3510
3511
  # @return [String]
3511
3512
  attr_accessor :industry_vertical
3512
3513
 
3514
+ # Configuration message for the Knowledge Graph.
3515
+ # Corresponds to the JSON property `knowledgeGraphConfig`
3516
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig]
3517
+ attr_accessor :knowledge_graph_config
3518
+
3513
3519
  # Additional config specs for a Media Recommendation engine.
3514
3520
  # Corresponds to the JSON property `mediaRecommendationEngineConfig`
3515
3521
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig]
@@ -3568,6 +3574,7 @@ module Google
3568
3574
  @display_name = args[:display_name] if args.key?(:display_name)
3569
3575
  @features = args[:features] if args.key?(:features)
3570
3576
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
3577
+ @knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
3571
3578
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
3572
3579
  @model_configs = args[:model_configs] if args.key?(:model_configs)
3573
3580
  @name = args[:name] if args.key?(:name)
@@ -3711,6 +3718,98 @@ module Google
3711
3718
  end
3712
3719
  end
3713
3720
 
3721
+ # Configuration message for the Knowledge Graph.
3722
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig
3723
+ include Google::Apis::Core::Hashable
3724
+
3725
+ # Specify entity types to support.
3726
+ # Corresponds to the JSON property `cloudKnowledgeGraphTypes`
3727
+ # @return [Array<String>]
3728
+ attr_accessor :cloud_knowledge_graph_types
3729
+
3730
+ # Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false
3731
+ # if not specified.
3732
+ # Corresponds to the JSON property `enableCloudKnowledgeGraph`
3733
+ # @return [Boolean]
3734
+ attr_accessor :enable_cloud_knowledge_graph
3735
+ alias_method :enable_cloud_knowledge_graph?, :enable_cloud_knowledge_graph
3736
+
3737
+ # Whether to enable the Private Knowledge Graph for the engine. Defaults to
3738
+ # false if not specified.
3739
+ # Corresponds to the JSON property `enablePrivateKnowledgeGraph`
3740
+ # @return [Boolean]
3741
+ attr_accessor :enable_private_knowledge_graph
3742
+ alias_method :enable_private_knowledge_graph?, :enable_private_knowledge_graph
3743
+
3744
+ # Feature config for the Knowledge Graph.
3745
+ # Corresponds to the JSON property `featureConfig`
3746
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig]
3747
+ attr_accessor :feature_config
3748
+
3749
+ # Specify entity types to support.
3750
+ # Corresponds to the JSON property `privateKnowledgeGraphTypes`
3751
+ # @return [Array<String>]
3752
+ attr_accessor :private_knowledge_graph_types
3753
+
3754
+ def initialize(**args)
3755
+ update!(**args)
3756
+ end
3757
+
3758
+ # Update properties of this object
3759
+ def update!(**args)
3760
+ @cloud_knowledge_graph_types = args[:cloud_knowledge_graph_types] if args.key?(:cloud_knowledge_graph_types)
3761
+ @enable_cloud_knowledge_graph = args[:enable_cloud_knowledge_graph] if args.key?(:enable_cloud_knowledge_graph)
3762
+ @enable_private_knowledge_graph = args[:enable_private_knowledge_graph] if args.key?(:enable_private_knowledge_graph)
3763
+ @feature_config = args[:feature_config] if args.key?(:feature_config)
3764
+ @private_knowledge_graph_types = args[:private_knowledge_graph_types] if args.key?(:private_knowledge_graph_types)
3765
+ end
3766
+ end
3767
+
3768
+ # Feature config for the Knowledge Graph.
3769
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig
3770
+ include Google::Apis::Core::Hashable
3771
+
3772
+ # Whether to disable the private KG auto complete for the engine. Defaults to
3773
+ # false if not specified.
3774
+ # Corresponds to the JSON property `disablePrivateKgAutoComplete`
3775
+ # @return [Boolean]
3776
+ attr_accessor :disable_private_kg_auto_complete
3777
+ alias_method :disable_private_kg_auto_complete?, :disable_private_kg_auto_complete
3778
+
3779
+ # Whether to disable the private KG enrichment for the engine. Defaults to false
3780
+ # if not specified.
3781
+ # Corresponds to the JSON property `disablePrivateKgEnrichment`
3782
+ # @return [Boolean]
3783
+ attr_accessor :disable_private_kg_enrichment
3784
+ alias_method :disable_private_kg_enrichment?, :disable_private_kg_enrichment
3785
+
3786
+ # Whether to disable the private KG for query UI chips. Defaults to false if not
3787
+ # specified.
3788
+ # Corresponds to the JSON property `disablePrivateKgQueryUiChips`
3789
+ # @return [Boolean]
3790
+ attr_accessor :disable_private_kg_query_ui_chips
3791
+ alias_method :disable_private_kg_query_ui_chips?, :disable_private_kg_query_ui_chips
3792
+
3793
+ # Whether to disable the private KG query understanding for the engine. Defaults
3794
+ # to false if not specified.
3795
+ # Corresponds to the JSON property `disablePrivateKgQueryUnderstanding`
3796
+ # @return [Boolean]
3797
+ attr_accessor :disable_private_kg_query_understanding
3798
+ alias_method :disable_private_kg_query_understanding?, :disable_private_kg_query_understanding
3799
+
3800
+ def initialize(**args)
3801
+ update!(**args)
3802
+ end
3803
+
3804
+ # Update properties of this object
3805
+ def update!(**args)
3806
+ @disable_private_kg_auto_complete = args[:disable_private_kg_auto_complete] if args.key?(:disable_private_kg_auto_complete)
3807
+ @disable_private_kg_enrichment = args[:disable_private_kg_enrichment] if args.key?(:disable_private_kg_enrichment)
3808
+ @disable_private_kg_query_ui_chips = args[:disable_private_kg_query_ui_chips] if args.key?(:disable_private_kg_query_ui_chips)
3809
+ @disable_private_kg_query_understanding = args[:disable_private_kg_query_understanding] if args.key?(:disable_private_kg_query_understanding)
3810
+ end
3811
+ end
3812
+
3714
3813
  # Additional config specs for a Media Recommendation engine.
3715
3814
  class GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig
3716
3815
  include Google::Apis::Core::Hashable
@@ -3918,6 +4017,16 @@ module Google
3918
4017
  attr_accessor :enable_static_indexing_for_batch_ingestion
3919
4018
  alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
3920
4019
 
4020
+ # Optional. Names of the Group resources to use as a basis for the initial
4021
+ # patient filter, in format `projects/`project_id`/locations/`location_id`/
4022
+ # datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. The
4023
+ # filter group must be a FHIR resource name of type Group, and the filter will
4024
+ # be constructed from the direct members of the group which are Patient
4025
+ # resources.
4026
+ # Corresponds to the JSON property `initialFilterGroups`
4027
+ # @return [Array<String>]
4028
+ attr_accessor :initial_filter_groups
4029
+
3921
4030
  def initialize(**args)
3922
4031
  update!(**args)
3923
4032
  end
@@ -3926,6 +4035,7 @@ module Google
3926
4035
  def update!(**args)
3927
4036
  @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
3928
4037
  @enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
4038
+ @initial_filter_groups = args[:initial_filter_groups] if args.key?(:initial_filter_groups)
3929
4039
  end
3930
4040
  end
3931
4041
 
@@ -6237,6 +6347,47 @@ module Google
6237
6347
  end
6238
6348
  end
6239
6349
 
6350
+ # Request for DataStoreService.AddPatientFilter method.
6351
+ class GoogleCloudDiscoveryengineV1alphaAddPatientFilterRequest
6352
+ include Google::Apis::Core::Hashable
6353
+
6354
+ # Required. Full resource name of DataStore, such as `projects/`project`/
6355
+ # locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
6356
+ # If the caller does not have permission to access the DataStore, regardless of
6357
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the
6358
+ # requested DataStore does not exist, a NOT_FOUND error is returned. If the
6359
+ # requested DataStore already has a patient filter, an ALREADY_EXISTS error will
6360
+ # be returned.
6361
+ # Corresponds to the JSON property `dataStore`
6362
+ # @return [String]
6363
+ attr_accessor :data_store
6364
+
6365
+ # Required. Names of the Group resources to use as a basis for the patient
6366
+ # filter, in format `projects/`project_id`/locations/`location_id`/datasets/`
6367
+ # dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. if the caller
6368
+ # does not have permission to access the FHIR store, regardless of whether it
6369
+ # exists, PERMISSION_DENIED error is returned. If the discovery engine service
6370
+ # account does not have permission to access the FHIR store, regardless of
6371
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the group
6372
+ # is not found at the location, a RESOURCE_NOT_FOUND error will be returned. The
6373
+ # filter group must be a FHIR resource name of type Group, and the filter will
6374
+ # be constructed from the direct members of the group which are Patient
6375
+ # resources.
6376
+ # Corresponds to the JSON property `filterGroups`
6377
+ # @return [Array<String>]
6378
+ attr_accessor :filter_groups
6379
+
6380
+ def initialize(**args)
6381
+ update!(**args)
6382
+ end
6383
+
6384
+ # Update properties of this object
6385
+ def update!(**args)
6386
+ @data_store = args[:data_store] if args.key?(:data_store)
6387
+ @filter_groups = args[:filter_groups] if args.key?(:filter_groups)
6388
+ end
6389
+ end
6390
+
6240
6391
  # Configuration data for advance site search.
6241
6392
  class GoogleCloudDiscoveryengineV1alphaAdvancedSiteSearchConfig
6242
6393
  include Google::Apis::Core::Hashable
@@ -7308,8 +7459,8 @@ module Google
7308
7459
  # Output only. When set, uniquely identifies a reply within the `AssistAnswer`
7309
7460
  # resource. During an AssistantService.StreamAssist call, multiple `Reply`
7310
7461
  # messages with the same ID can occur within the response stream (across
7311
- # multiple AssistantService.StreamAssistResponse messages). These represent
7312
- # parts of a single `Reply` message in the final `AssistAnswer` resource.
7462
+ # multiple StreamAssistResponse messages). These represent parts of a single `
7463
+ # Reply` message in the final `AssistAnswer` resource.
7313
7464
  # Corresponds to the JSON property `replyId`
7314
7465
  # @return [String]
7315
7466
  attr_accessor :reply_id
@@ -9783,6 +9934,31 @@ module Google
9783
9934
  end
9784
9935
  end
9785
9936
 
9937
+ # Request for DataStoreService.DeletePatientFilters method.
9938
+ class GoogleCloudDiscoveryengineV1alphaDeletePatientFiltersRequest
9939
+ include Google::Apis::Core::Hashable
9940
+
9941
+ # Required. Full resource name of DataStore, such as `projects/`project`/
9942
+ # locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
9943
+ # If the caller does not have permission to access the DataStore, regardless of
9944
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the
9945
+ # requested DataStore does not exist, a NOT_FOUND error is returned. If the
9946
+ # requested DataStore does not have a patient filter, a NOT_FOUND error will be
9947
+ # returned.
9948
+ # Corresponds to the JSON property `dataStore`
9949
+ # @return [String]
9950
+ attr_accessor :data_store
9951
+
9952
+ def initialize(**args)
9953
+ update!(**args)
9954
+ end
9955
+
9956
+ # Update properties of this object
9957
+ def update!(**args)
9958
+ @data_store = args[:data_store] if args.key?(:data_store)
9959
+ end
9960
+ end
9961
+
9786
9962
  # Metadata for DeleteSchema LRO.
9787
9963
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
9788
9964
  include Google::Apis::Core::Hashable
@@ -10366,9 +10542,10 @@ module Google
10366
10542
  # settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
10367
10543
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
10368
10544
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
10369
- # personalization-memory` * `disable-agent-sharing` * `disable-image-generation`
10370
- # * `disable-video-generation` * `disable-onedrive-upload` * `disable-talk-to-
10371
- # content` * `disable-google-drive-upload`
10545
+ # personalization-memory` * `personalization-suggested-highlights` * `disable-
10546
+ # agent-sharing` * `disable-image-generation` * `disable-video-generation` * `
10547
+ # disable-onedrive-upload` * `disable-talk-to-content` * `disable-google-drive-
10548
+ # upload` * `disable-welcome-emails`
10372
10549
  # Corresponds to the JSON property `features`
10373
10550
  # @return [Hash<String,String>]
10374
10551
  attr_accessor :features
@@ -10380,6 +10557,11 @@ module Google
10380
10557
  # @return [String]
10381
10558
  attr_accessor :industry_vertical
10382
10559
 
10560
+ # Configuration message for the Knowledge Graph.
10561
+ # Corresponds to the JSON property `knowledgeGraphConfig`
10562
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig]
10563
+ attr_accessor :knowledge_graph_config
10564
+
10383
10565
  # Additional config specs for a Media Recommendation engine.
10384
10566
  # Corresponds to the JSON property `mediaRecommendationEngineConfig`
10385
10567
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig]
@@ -10448,6 +10630,7 @@ module Google
10448
10630
  @display_name = args[:display_name] if args.key?(:display_name)
10449
10631
  @features = args[:features] if args.key?(:features)
10450
10632
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
10633
+ @knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
10451
10634
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
10452
10635
  @model_configs = args[:model_configs] if args.key?(:model_configs)
10453
10636
  @name = args[:name] if args.key?(:name)
@@ -10593,6 +10776,98 @@ module Google
10593
10776
  end
10594
10777
  end
10595
10778
 
10779
+ # Configuration message for the Knowledge Graph.
10780
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig
10781
+ include Google::Apis::Core::Hashable
10782
+
10783
+ # Specify entity types to support.
10784
+ # Corresponds to the JSON property `cloudKnowledgeGraphTypes`
10785
+ # @return [Array<String>]
10786
+ attr_accessor :cloud_knowledge_graph_types
10787
+
10788
+ # Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false
10789
+ # if not specified.
10790
+ # Corresponds to the JSON property `enableCloudKnowledgeGraph`
10791
+ # @return [Boolean]
10792
+ attr_accessor :enable_cloud_knowledge_graph
10793
+ alias_method :enable_cloud_knowledge_graph?, :enable_cloud_knowledge_graph
10794
+
10795
+ # Whether to enable the Private Knowledge Graph for the engine. Defaults to
10796
+ # false if not specified.
10797
+ # Corresponds to the JSON property `enablePrivateKnowledgeGraph`
10798
+ # @return [Boolean]
10799
+ attr_accessor :enable_private_knowledge_graph
10800
+ alias_method :enable_private_knowledge_graph?, :enable_private_knowledge_graph
10801
+
10802
+ # Feature config for the Knowledge Graph.
10803
+ # Corresponds to the JSON property `featureConfig`
10804
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig]
10805
+ attr_accessor :feature_config
10806
+
10807
+ # Specify entity types to support.
10808
+ # Corresponds to the JSON property `privateKnowledgeGraphTypes`
10809
+ # @return [Array<String>]
10810
+ attr_accessor :private_knowledge_graph_types
10811
+
10812
+ def initialize(**args)
10813
+ update!(**args)
10814
+ end
10815
+
10816
+ # Update properties of this object
10817
+ def update!(**args)
10818
+ @cloud_knowledge_graph_types = args[:cloud_knowledge_graph_types] if args.key?(:cloud_knowledge_graph_types)
10819
+ @enable_cloud_knowledge_graph = args[:enable_cloud_knowledge_graph] if args.key?(:enable_cloud_knowledge_graph)
10820
+ @enable_private_knowledge_graph = args[:enable_private_knowledge_graph] if args.key?(:enable_private_knowledge_graph)
10821
+ @feature_config = args[:feature_config] if args.key?(:feature_config)
10822
+ @private_knowledge_graph_types = args[:private_knowledge_graph_types] if args.key?(:private_knowledge_graph_types)
10823
+ end
10824
+ end
10825
+
10826
+ # Feature config for the Knowledge Graph.
10827
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig
10828
+ include Google::Apis::Core::Hashable
10829
+
10830
+ # Whether to disable the private KG auto complete for the engine. Defaults to
10831
+ # false if not specified.
10832
+ # Corresponds to the JSON property `disablePrivateKgAutoComplete`
10833
+ # @return [Boolean]
10834
+ attr_accessor :disable_private_kg_auto_complete
10835
+ alias_method :disable_private_kg_auto_complete?, :disable_private_kg_auto_complete
10836
+
10837
+ # Whether to disable the private KG enrichment for the engine. Defaults to false
10838
+ # if not specified.
10839
+ # Corresponds to the JSON property `disablePrivateKgEnrichment`
10840
+ # @return [Boolean]
10841
+ attr_accessor :disable_private_kg_enrichment
10842
+ alias_method :disable_private_kg_enrichment?, :disable_private_kg_enrichment
10843
+
10844
+ # Whether to disable the private KG for query UI chips. Defaults to false if not
10845
+ # specified.
10846
+ # Corresponds to the JSON property `disablePrivateKgQueryUiChips`
10847
+ # @return [Boolean]
10848
+ attr_accessor :disable_private_kg_query_ui_chips
10849
+ alias_method :disable_private_kg_query_ui_chips?, :disable_private_kg_query_ui_chips
10850
+
10851
+ # Whether to disable the private KG query understanding for the engine. Defaults
10852
+ # to false if not specified.
10853
+ # Corresponds to the JSON property `disablePrivateKgQueryUnderstanding`
10854
+ # @return [Boolean]
10855
+ attr_accessor :disable_private_kg_query_understanding
10856
+ alias_method :disable_private_kg_query_understanding?, :disable_private_kg_query_understanding
10857
+
10858
+ def initialize(**args)
10859
+ update!(**args)
10860
+ end
10861
+
10862
+ # Update properties of this object
10863
+ def update!(**args)
10864
+ @disable_private_kg_auto_complete = args[:disable_private_kg_auto_complete] if args.key?(:disable_private_kg_auto_complete)
10865
+ @disable_private_kg_enrichment = args[:disable_private_kg_enrichment] if args.key?(:disable_private_kg_enrichment)
10866
+ @disable_private_kg_query_ui_chips = args[:disable_private_kg_query_ui_chips] if args.key?(:disable_private_kg_query_ui_chips)
10867
+ @disable_private_kg_query_understanding = args[:disable_private_kg_query_understanding] if args.key?(:disable_private_kg_query_understanding)
10868
+ end
10869
+ end
10870
+
10596
10871
  # Additional config specs for a Media Recommendation engine.
10597
10872
  class GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig
10598
10873
  include Google::Apis::Core::Hashable
@@ -11269,6 +11544,16 @@ module Google
11269
11544
  attr_accessor :enable_static_indexing_for_batch_ingestion
11270
11545
  alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
11271
11546
 
11547
+ # Optional. Names of the Group resources to use as a basis for the initial
11548
+ # patient filter, in format `projects/`project_id`/locations/`location_id`/
11549
+ # datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. The
11550
+ # filter group must be a FHIR resource name of type Group, and the filter will
11551
+ # be constructed from the direct members of the group which are Patient
11552
+ # resources.
11553
+ # Corresponds to the JSON property `initialFilterGroups`
11554
+ # @return [Array<String>]
11555
+ attr_accessor :initial_filter_groups
11556
+
11272
11557
  def initialize(**args)
11273
11558
  update!(**args)
11274
11559
  end
@@ -11277,6 +11562,7 @@ module Google
11277
11562
  def update!(**args)
11278
11563
  @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
11279
11564
  @enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
11565
+ @initial_filter_groups = args[:initial_filter_groups] if args.key?(:initial_filter_groups)
11280
11566
  end
11281
11567
  end
11282
11568
 
@@ -12140,6 +12426,45 @@ module Google
12140
12426
  end
12141
12427
  end
12142
12428
 
12429
+ # Metadata related to the progress of the various patient filter operations.
12430
+ # This will be returned by the google.longrunning.Operation.metadata field.
12431
+ class GoogleCloudDiscoveryengineV1alphaPatientFilterOperationMetadata
12432
+ include Google::Apis::Core::Hashable
12433
+
12434
+ # Operation create time.
12435
+ # Corresponds to the JSON property `createTime`
12436
+ # @return [String]
12437
+ attr_accessor :create_time
12438
+
12439
+ # The number of patient IDs added to the patient filter.
12440
+ # Corresponds to the JSON property `filtersAddedCount`
12441
+ # @return [Fixnum]
12442
+ attr_accessor :filters_added_count
12443
+
12444
+ # The number of patient IDs removed from the patient filter.
12445
+ # Corresponds to the JSON property `filtersRemovedCount`
12446
+ # @return [Fixnum]
12447
+ attr_accessor :filters_removed_count
12448
+
12449
+ # Operation last update time. If the operation is done, this is also the finish
12450
+ # time.
12451
+ # Corresponds to the JSON property `updateTime`
12452
+ # @return [String]
12453
+ attr_accessor :update_time
12454
+
12455
+ def initialize(**args)
12456
+ update!(**args)
12457
+ end
12458
+
12459
+ # Update properties of this object
12460
+ def update!(**args)
12461
+ @create_time = args[:create_time] if args.key?(:create_time)
12462
+ @filters_added_count = args[:filters_added_count] if args.key?(:filters_added_count)
12463
+ @filters_removed_count = args[:filters_removed_count] if args.key?(:filters_removed_count)
12464
+ @update_time = args[:update_time] if args.key?(:update_time)
12465
+ end
12466
+ end
12467
+
12143
12468
  # Metadata and configurations for a Google Cloud project in the service.
12144
12469
  class GoogleCloudDiscoveryengineV1alphaProject
12145
12470
  include Google::Apis::Core::Hashable
@@ -12949,6 +13274,88 @@ module Google
12949
13274
  end
12950
13275
  end
12951
13276
 
13277
+ # Request for DataStoreService.RemovePatientFilter method.
13278
+ class GoogleCloudDiscoveryengineV1alphaRemovePatientFilterRequest
13279
+ include Google::Apis::Core::Hashable
13280
+
13281
+ # Required. Full resource name of DataStore, such as `projects/`project`/
13282
+ # locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
13283
+ # If the caller does not have permission to access the DataStore, regardless of
13284
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the
13285
+ # requested DataStore does not exist, a NOT_FOUND error is returned. If the
13286
+ # requested DataStore does not have a patient filter, a NOT_FOUND error will be
13287
+ # returned
13288
+ # Corresponds to the JSON property `dataStore`
13289
+ # @return [String]
13290
+ attr_accessor :data_store
13291
+
13292
+ # Required. Names of the Group resources to use as a basis for the list of
13293
+ # patients to remove from the patient filter, in format `projects/`project_id`/
13294
+ # locations/`location_id`/datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/
13295
+ # Group/`group_id``. if the caller does not have permission to access the FHIR
13296
+ # store, regardless of whether it exists, PERMISSION_DENIED error is returned.
13297
+ # If the discovery engine service account does not have permission to access the
13298
+ # FHIR store, regardless of whether or not it exists, a PERMISSION_DENIED error
13299
+ # is returned. If the group is not found at the location, a RESOURCE_NOT_FOUND
13300
+ # error will be returned. The filter group must be a FHIR resource name of type
13301
+ # Group, and the list of IDs to remove will be constructed from the direct
13302
+ # members of the group which are Patient resources.
13303
+ # Corresponds to the JSON property `filterGroups`
13304
+ # @return [Array<String>]
13305
+ attr_accessor :filter_groups
13306
+
13307
+ def initialize(**args)
13308
+ update!(**args)
13309
+ end
13310
+
13311
+ # Update properties of this object
13312
+ def update!(**args)
13313
+ @data_store = args[:data_store] if args.key?(:data_store)
13314
+ @filter_groups = args[:filter_groups] if args.key?(:filter_groups)
13315
+ end
13316
+ end
13317
+
13318
+ # Request for DataStoreService.ReplacePatientFilter method.
13319
+ class GoogleCloudDiscoveryengineV1alphaReplacePatientFilterRequest
13320
+ include Google::Apis::Core::Hashable
13321
+
13322
+ # Required. Full resource name of DataStore, such as `projects/`project`/
13323
+ # locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
13324
+ # If the caller does not have permission to access the DataStore, regardless of
13325
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the
13326
+ # requested DataStore does not exist, a NOT_FOUND error is returned. If the
13327
+ # requested DataStore already has a patient filter, an ALREADY_EXISTS error will
13328
+ # be returned.
13329
+ # Corresponds to the JSON property `dataStore`
13330
+ # @return [String]
13331
+ attr_accessor :data_store
13332
+
13333
+ # Required. Names of the Group resources to use as a basis for the list of
13334
+ # patients for the new patient filter, in format `projects/`project_id`/
13335
+ # locations/`location_id`/datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/
13336
+ # Group/`group_id``. if the caller does not have permission to access the FHIR
13337
+ # store, regardless of whether it exists, PERMISSION_DENIED error is returned.
13338
+ # If the discovery engine service account does not have permission to access the
13339
+ # FHIR store, regardless of whether or not it exists, a PERMISSION_DENIED error
13340
+ # is returned. If the group is not found at the location, a RESOURCE_NOT_FOUND
13341
+ # error will be returned. The filter group must be a FHIR resource name of type
13342
+ # Group, and the new filter will be constructed from the direct members of the
13343
+ # group which are Patient resources.
13344
+ # Corresponds to the JSON property `filterGroups`
13345
+ # @return [Array<String>]
13346
+ attr_accessor :filter_groups
13347
+
13348
+ def initialize(**args)
13349
+ update!(**args)
13350
+ end
13351
+
13352
+ # Update properties of this object
13353
+ def update!(**args)
13354
+ @data_store = args[:data_store] if args.key?(:data_store)
13355
+ @filter_groups = args[:filter_groups] if args.key?(:filter_groups)
13356
+ end
13357
+ end
13358
+
12952
13359
  # Safety rating corresponding to the generated content.
12953
13360
  class GoogleCloudDiscoveryengineV1alphaSafetyRating
12954
13361
  include Google::Apis::Core::Hashable
@@ -13235,15 +13642,15 @@ module Google
13235
13642
 
13236
13643
  # Optional. The categories associated with a category page. Must be set for
13237
13644
  # category navigation queries to achieve good search quality. The format should
13238
- # be the same as UserEvent.PageInfo.page_category. This field is the equivalent
13239
- # of the query for browse (navigation) queries. It's used by the browse model
13240
- # when the query is empty. If the field is empty, it will not be used by the
13241
- # browse model. If the field contains more than one element, only the first
13242
- # element will be used. To represent full path of a category, use '>' character
13243
- # to separate different hierarchies. If '>' is part of the category name,
13244
- # replace it with other character(s). For example, `Graphics Cards > RTX>4090 >
13245
- # Founders Edition` where "RTX > 4090" represents one level, can be rewritten as
13246
- # `Graphics Cards > RTX_4090 > Founders Edition`
13645
+ # be the same as PageInfo.page_category. This field is the equivalent of the
13646
+ # query for browse (navigation) queries. It's used by the browse model when the
13647
+ # query is empty. If the field is empty, it will not be used by the browse model.
13648
+ # If the field contains more than one element, only the first element will be
13649
+ # used. To represent full path of a category, use '>' character to separate
13650
+ # different hierarchies. If '>' is part of the category name, replace it with
13651
+ # other character(s). For example, `Graphics Cards > RTX>4090 > Founders Edition`
13652
+ # where "RTX > 4090" represents one level, can be rewritten as `Graphics Cards >
13653
+ # RTX_4090 > Founders Edition`
13247
13654
  # Corresponds to the JSON property `pageCategories`
13248
13655
  # @return [Array<String>]
13249
13656
  attr_accessor :page_categories
@@ -14382,8 +14789,8 @@ module Google
14382
14789
  # search, the default is `HARD_FILTER`. For multi-datastore search, the default
14383
14790
  # behavior is `SOFT_BOOST`. Location-based filters are always applied as hard
14384
14791
  # filters, and the `SOFT_BOOST` setting will not affect them. This field is only
14385
- # used if SearchRequest.natural_language_query_understanding_spec.
14386
- # filter_extraction_condition is set to FilterExtractionCondition.ENABLED.
14792
+ # used if SearchRequest.NaturalLanguageQueryUnderstandingSpec.
14793
+ # FilterExtractionCondition is set to FilterExtractionCondition.ENABLED.
14387
14794
  # Corresponds to the JSON property `extractedFilterBehavior`
14388
14795
  # @return [String]
14389
14796
  attr_accessor :extracted_filter_behavior
@@ -22048,9 +22455,10 @@ module Google
22048
22455
  # settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
22049
22456
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
22050
22457
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
22051
- # personalization-memory` * `disable-agent-sharing` * `disable-image-generation`
22052
- # * `disable-video-generation` * `disable-onedrive-upload` * `disable-talk-to-
22053
- # content` * `disable-google-drive-upload`
22458
+ # personalization-memory` * `personalization-suggested-highlights` * `disable-
22459
+ # agent-sharing` * `disable-image-generation` * `disable-video-generation` * `
22460
+ # disable-onedrive-upload` * `disable-talk-to-content` * `disable-google-drive-
22461
+ # upload` * `disable-welcome-emails`
22054
22462
  # Corresponds to the JSON property `features`
22055
22463
  # @return [Hash<String,String>]
22056
22464
  attr_accessor :features
@@ -22062,6 +22470,11 @@ module Google
22062
22470
  # @return [String]
22063
22471
  attr_accessor :industry_vertical
22064
22472
 
22473
+ # Configuration message for the Knowledge Graph.
22474
+ # Corresponds to the JSON property `knowledgeGraphConfig`
22475
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig]
22476
+ attr_accessor :knowledge_graph_config
22477
+
22065
22478
  # Additional config specs for a Media Recommendation engine.
22066
22479
  # Corresponds to the JSON property `mediaRecommendationEngineConfig`
22067
22480
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig]
@@ -22120,6 +22533,7 @@ module Google
22120
22533
  @display_name = args[:display_name] if args.key?(:display_name)
22121
22534
  @features = args[:features] if args.key?(:features)
22122
22535
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
22536
+ @knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
22123
22537
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
22124
22538
  @model_configs = args[:model_configs] if args.key?(:model_configs)
22125
22539
  @name = args[:name] if args.key?(:name)
@@ -22263,6 +22677,98 @@ module Google
22263
22677
  end
22264
22678
  end
22265
22679
 
22680
+ # Configuration message for the Knowledge Graph.
22681
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig
22682
+ include Google::Apis::Core::Hashable
22683
+
22684
+ # Specify entity types to support.
22685
+ # Corresponds to the JSON property `cloudKnowledgeGraphTypes`
22686
+ # @return [Array<String>]
22687
+ attr_accessor :cloud_knowledge_graph_types
22688
+
22689
+ # Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false
22690
+ # if not specified.
22691
+ # Corresponds to the JSON property `enableCloudKnowledgeGraph`
22692
+ # @return [Boolean]
22693
+ attr_accessor :enable_cloud_knowledge_graph
22694
+ alias_method :enable_cloud_knowledge_graph?, :enable_cloud_knowledge_graph
22695
+
22696
+ # Whether to enable the Private Knowledge Graph for the engine. Defaults to
22697
+ # false if not specified.
22698
+ # Corresponds to the JSON property `enablePrivateKnowledgeGraph`
22699
+ # @return [Boolean]
22700
+ attr_accessor :enable_private_knowledge_graph
22701
+ alias_method :enable_private_knowledge_graph?, :enable_private_knowledge_graph
22702
+
22703
+ # Feature config for the Knowledge Graph.
22704
+ # Corresponds to the JSON property `featureConfig`
22705
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig]
22706
+ attr_accessor :feature_config
22707
+
22708
+ # Specify entity types to support.
22709
+ # Corresponds to the JSON property `privateKnowledgeGraphTypes`
22710
+ # @return [Array<String>]
22711
+ attr_accessor :private_knowledge_graph_types
22712
+
22713
+ def initialize(**args)
22714
+ update!(**args)
22715
+ end
22716
+
22717
+ # Update properties of this object
22718
+ def update!(**args)
22719
+ @cloud_knowledge_graph_types = args[:cloud_knowledge_graph_types] if args.key?(:cloud_knowledge_graph_types)
22720
+ @enable_cloud_knowledge_graph = args[:enable_cloud_knowledge_graph] if args.key?(:enable_cloud_knowledge_graph)
22721
+ @enable_private_knowledge_graph = args[:enable_private_knowledge_graph] if args.key?(:enable_private_knowledge_graph)
22722
+ @feature_config = args[:feature_config] if args.key?(:feature_config)
22723
+ @private_knowledge_graph_types = args[:private_knowledge_graph_types] if args.key?(:private_knowledge_graph_types)
22724
+ end
22725
+ end
22726
+
22727
+ # Feature config for the Knowledge Graph.
22728
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig
22729
+ include Google::Apis::Core::Hashable
22730
+
22731
+ # Whether to disable the private KG auto complete for the engine. Defaults to
22732
+ # false if not specified.
22733
+ # Corresponds to the JSON property `disablePrivateKgAutoComplete`
22734
+ # @return [Boolean]
22735
+ attr_accessor :disable_private_kg_auto_complete
22736
+ alias_method :disable_private_kg_auto_complete?, :disable_private_kg_auto_complete
22737
+
22738
+ # Whether to disable the private KG enrichment for the engine. Defaults to false
22739
+ # if not specified.
22740
+ # Corresponds to the JSON property `disablePrivateKgEnrichment`
22741
+ # @return [Boolean]
22742
+ attr_accessor :disable_private_kg_enrichment
22743
+ alias_method :disable_private_kg_enrichment?, :disable_private_kg_enrichment
22744
+
22745
+ # Whether to disable the private KG for query UI chips. Defaults to false if not
22746
+ # specified.
22747
+ # Corresponds to the JSON property `disablePrivateKgQueryUiChips`
22748
+ # @return [Boolean]
22749
+ attr_accessor :disable_private_kg_query_ui_chips
22750
+ alias_method :disable_private_kg_query_ui_chips?, :disable_private_kg_query_ui_chips
22751
+
22752
+ # Whether to disable the private KG query understanding for the engine. Defaults
22753
+ # to false if not specified.
22754
+ # Corresponds to the JSON property `disablePrivateKgQueryUnderstanding`
22755
+ # @return [Boolean]
22756
+ attr_accessor :disable_private_kg_query_understanding
22757
+ alias_method :disable_private_kg_query_understanding?, :disable_private_kg_query_understanding
22758
+
22759
+ def initialize(**args)
22760
+ update!(**args)
22761
+ end
22762
+
22763
+ # Update properties of this object
22764
+ def update!(**args)
22765
+ @disable_private_kg_auto_complete = args[:disable_private_kg_auto_complete] if args.key?(:disable_private_kg_auto_complete)
22766
+ @disable_private_kg_enrichment = args[:disable_private_kg_enrichment] if args.key?(:disable_private_kg_enrichment)
22767
+ @disable_private_kg_query_ui_chips = args[:disable_private_kg_query_ui_chips] if args.key?(:disable_private_kg_query_ui_chips)
22768
+ @disable_private_kg_query_understanding = args[:disable_private_kg_query_understanding] if args.key?(:disable_private_kg_query_understanding)
22769
+ end
22770
+ end
22771
+
22266
22772
  # Additional config specs for a Media Recommendation engine.
22267
22773
  class GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig
22268
22774
  include Google::Apis::Core::Hashable
@@ -22875,6 +23381,16 @@ module Google
22875
23381
  attr_accessor :enable_static_indexing_for_batch_ingestion
22876
23382
  alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
22877
23383
 
23384
+ # Optional. Names of the Group resources to use as a basis for the initial
23385
+ # patient filter, in format `projects/`project_id`/locations/`location_id`/
23386
+ # datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. The
23387
+ # filter group must be a FHIR resource name of type Group, and the filter will
23388
+ # be constructed from the direct members of the group which are Patient
23389
+ # resources.
23390
+ # Corresponds to the JSON property `initialFilterGroups`
23391
+ # @return [Array<String>]
23392
+ attr_accessor :initial_filter_groups
23393
+
22878
23394
  def initialize(**args)
22879
23395
  update!(**args)
22880
23396
  end
@@ -22883,6 +23399,7 @@ module Google
22883
23399
  def update!(**args)
22884
23400
  @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
22885
23401
  @enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
23402
+ @initial_filter_groups = args[:initial_filter_groups] if args.key?(:initial_filter_groups)
22886
23403
  end
22887
23404
  end
22888
23405
 
@@ -24349,7 +24866,7 @@ module Google
24349
24866
  end
24350
24867
  end
24351
24868
 
24352
- # Response message for UserLicenseService.ListLicenseConfigUsageStats method.
24869
+ # Response message for UserLicenseService.ListLicenseConfigsUsageStats method.
24353
24870
  class GoogleCloudDiscoveryengineV1betaListLicenseConfigsUsageStatsResponse
24354
24871
  include Google::Apis::Core::Hashable
24355
24872
 
@@ -26612,15 +27129,15 @@ module Google
26612
27129
 
26613
27130
  # Optional. The categories associated with a category page. Must be set for
26614
27131
  # category navigation queries to achieve good search quality. The format should
26615
- # be the same as UserEvent.PageInfo.page_category. This field is the equivalent
26616
- # of the query for browse (navigation) queries. It's used by the browse model
26617
- # when the query is empty. If the field is empty, it will not be used by the
26618
- # browse model. If the field contains more than one element, only the first
26619
- # element will be used. To represent full path of a category, use '>' character
26620
- # to separate different hierarchies. If '>' is part of the category name,
26621
- # replace it with other character(s). For example, `Graphics Cards > RTX>4090 >
26622
- # Founders Edition` where "RTX > 4090" represents one level, can be rewritten as
26623
- # `Graphics Cards > RTX_4090 > Founders Edition`
27132
+ # be the same as PageInfo.page_category. This field is the equivalent of the
27133
+ # query for browse (navigation) queries. It's used by the browse model when the
27134
+ # query is empty. If the field is empty, it will not be used by the browse model.
27135
+ # If the field contains more than one element, only the first element will be
27136
+ # used. To represent full path of a category, use '>' character to separate
27137
+ # different hierarchies. If '>' is part of the category name, replace it with
27138
+ # other character(s). For example, `Graphics Cards > RTX>4090 > Founders Edition`
27139
+ # where "RTX > 4090" represents one level, can be rewritten as `Graphics Cards >
27140
+ # RTX_4090 > Founders Edition`
26624
27141
  # Corresponds to the JSON property `pageCategories`
26625
27142
  # @return [Array<String>]
26626
27143
  attr_accessor :page_categories
@@ -27748,8 +28265,8 @@ module Google
27748
28265
  # search, the default is `HARD_FILTER`. For multi-datastore search, the default
27749
28266
  # behavior is `SOFT_BOOST`. Location-based filters are always applied as hard
27750
28267
  # filters, and the `SOFT_BOOST` setting will not affect them. This field is only
27751
- # used if SearchRequest.natural_language_query_understanding_spec.
27752
- # filter_extraction_condition is set to FilterExtractionCondition.ENABLED.
28268
+ # used if SearchRequest.NaturalLanguageQueryUnderstandingSpec.
28269
+ # FilterExtractionCondition is set to FilterExtractionCondition.ENABLED.
27753
28270
  # Corresponds to the JSON property `extractedFilterBehavior`
27754
28271
  # @return [String]
27755
28272
  attr_accessor :extracted_filter_behavior
@@ -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.94.0"
19
+ GEM_VERSION = "0.96.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260107"
25
+ REVISION = "20260118"
26
26
  end
27
27
  end
28
28
  end
@@ -568,6 +568,18 @@ module Google
568
568
  include Google::Apis::Core::JsonObjectSupport
569
569
  end
570
570
 
571
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig
572
+ class Representation < Google::Apis::Core::JsonRepresentation; end
573
+
574
+ include Google::Apis::Core::JsonObjectSupport
575
+ end
576
+
577
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig
578
+ class Representation < Google::Apis::Core::JsonRepresentation; end
579
+
580
+ include Google::Apis::Core::JsonObjectSupport
581
+ end
582
+
571
583
  class GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig
572
584
  class Representation < Google::Apis::Core::JsonRepresentation; end
573
585
 
@@ -964,6 +976,12 @@ module Google
964
976
  include Google::Apis::Core::JsonObjectSupport
965
977
  end
966
978
 
979
+ class GoogleCloudDiscoveryengineV1alphaAddPatientFilterRequest
980
+ class Representation < Google::Apis::Core::JsonRepresentation; end
981
+
982
+ include Google::Apis::Core::JsonObjectSupport
983
+ end
984
+
967
985
  class GoogleCloudDiscoveryengineV1alphaAdvancedSiteSearchConfig
968
986
  class Representation < Google::Apis::Core::JsonRepresentation; end
969
987
 
@@ -1504,6 +1522,12 @@ module Google
1504
1522
  include Google::Apis::Core::JsonObjectSupport
1505
1523
  end
1506
1524
 
1525
+ class GoogleCloudDiscoveryengineV1alphaDeletePatientFiltersRequest
1526
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1527
+
1528
+ include Google::Apis::Core::JsonObjectSupport
1529
+ end
1530
+
1507
1531
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
1508
1532
  class Representation < Google::Apis::Core::JsonRepresentation; end
1509
1533
 
@@ -1642,6 +1666,18 @@ module Google
1642
1666
  include Google::Apis::Core::JsonObjectSupport
1643
1667
  end
1644
1668
 
1669
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig
1670
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1671
+
1672
+ include Google::Apis::Core::JsonObjectSupport
1673
+ end
1674
+
1675
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig
1676
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1677
+
1678
+ include Google::Apis::Core::JsonObjectSupport
1679
+ end
1680
+
1645
1681
  class GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig
1646
1682
  class Representation < Google::Apis::Core::JsonRepresentation; end
1647
1683
 
@@ -1900,6 +1936,12 @@ module Google
1900
1936
  include Google::Apis::Core::JsonObjectSupport
1901
1937
  end
1902
1938
 
1939
+ class GoogleCloudDiscoveryengineV1alphaPatientFilterOperationMetadata
1940
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1941
+
1942
+ include Google::Apis::Core::JsonObjectSupport
1943
+ end
1944
+
1903
1945
  class GoogleCloudDiscoveryengineV1alphaProject
1904
1946
  class Representation < Google::Apis::Core::JsonRepresentation; end
1905
1947
 
@@ -2044,6 +2086,18 @@ module Google
2044
2086
  include Google::Apis::Core::JsonObjectSupport
2045
2087
  end
2046
2088
 
2089
+ class GoogleCloudDiscoveryengineV1alphaRemovePatientFilterRequest
2090
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2091
+
2092
+ include Google::Apis::Core::JsonObjectSupport
2093
+ end
2094
+
2095
+ class GoogleCloudDiscoveryengineV1alphaReplacePatientFilterRequest
2096
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2097
+
2098
+ include Google::Apis::Core::JsonObjectSupport
2099
+ end
2100
+
2047
2101
  class GoogleCloudDiscoveryengineV1alphaSafetyRating
2048
2102
  class Representation < Google::Apis::Core::JsonRepresentation; end
2049
2103
 
@@ -3514,6 +3568,18 @@ module Google
3514
3568
  include Google::Apis::Core::JsonObjectSupport
3515
3569
  end
3516
3570
 
3571
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig
3572
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3573
+
3574
+ include Google::Apis::Core::JsonObjectSupport
3575
+ end
3576
+
3577
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig
3578
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3579
+
3580
+ include Google::Apis::Core::JsonObjectSupport
3581
+ end
3582
+
3517
3583
  class GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig
3518
3584
  class Representation < Google::Apis::Core::JsonRepresentation; end
3519
3585
 
@@ -5880,6 +5946,8 @@ module Google
5880
5946
  property :display_name, as: 'displayName'
5881
5947
  hash :features, as: 'features'
5882
5948
  property :industry_vertical, as: 'industryVertical'
5949
+ property :knowledge_graph_config, as: 'knowledgeGraphConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig::Representation
5950
+
5883
5951
  property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig::Representation
5884
5952
 
5885
5953
  hash :model_configs, as: 'modelConfigs'
@@ -5925,6 +5993,28 @@ module Google
5925
5993
  end
5926
5994
  end
5927
5995
 
5996
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig
5997
+ # @private
5998
+ class Representation < Google::Apis::Core::JsonRepresentation
5999
+ collection :cloud_knowledge_graph_types, as: 'cloudKnowledgeGraphTypes'
6000
+ property :enable_cloud_knowledge_graph, as: 'enableCloudKnowledgeGraph'
6001
+ property :enable_private_knowledge_graph, as: 'enablePrivateKnowledgeGraph'
6002
+ property :feature_config, as: 'featureConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig::Representation
6003
+
6004
+ collection :private_knowledge_graph_types, as: 'privateKnowledgeGraphTypes'
6005
+ end
6006
+ end
6007
+
6008
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig
6009
+ # @private
6010
+ class Representation < Google::Apis::Core::JsonRepresentation
6011
+ property :disable_private_kg_auto_complete, as: 'disablePrivateKgAutoComplete'
6012
+ property :disable_private_kg_enrichment, as: 'disablePrivateKgEnrichment'
6013
+ property :disable_private_kg_query_ui_chips, as: 'disablePrivateKgQueryUiChips'
6014
+ property :disable_private_kg_query_understanding, as: 'disablePrivateKgQueryUnderstanding'
6015
+ end
6016
+ end
6017
+
5928
6018
  class GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig
5929
6019
  # @private
5930
6020
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5984,6 +6074,7 @@ module Google
5984
6074
  class Representation < Google::Apis::Core::JsonRepresentation
5985
6075
  property :enable_configurable_schema, as: 'enableConfigurableSchema'
5986
6076
  property :enable_static_indexing_for_batch_ingestion, as: 'enableStaticIndexingForBatchIngestion'
6077
+ collection :initial_filter_groups, as: 'initialFilterGroups'
5987
6078
  end
5988
6079
  end
5989
6080
 
@@ -6576,6 +6667,14 @@ module Google
6576
6667
  end
6577
6668
  end
6578
6669
 
6670
+ class GoogleCloudDiscoveryengineV1alphaAddPatientFilterRequest
6671
+ # @private
6672
+ class Representation < Google::Apis::Core::JsonRepresentation
6673
+ property :data_store, as: 'dataStore'
6674
+ collection :filter_groups, as: 'filterGroups'
6675
+ end
6676
+ end
6677
+
6579
6678
  class GoogleCloudDiscoveryengineV1alphaAdvancedSiteSearchConfig
6580
6679
  # @private
6581
6680
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7555,6 +7654,13 @@ module Google
7555
7654
  end
7556
7655
  end
7557
7656
 
7657
+ class GoogleCloudDiscoveryengineV1alphaDeletePatientFiltersRequest
7658
+ # @private
7659
+ class Representation < Google::Apis::Core::JsonRepresentation
7660
+ property :data_store, as: 'dataStore'
7661
+ end
7662
+ end
7663
+
7558
7664
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
7559
7665
  # @private
7560
7666
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7729,6 +7835,8 @@ module Google
7729
7835
  property :display_name, as: 'displayName'
7730
7836
  hash :features, as: 'features'
7731
7837
  property :industry_vertical, as: 'industryVertical'
7838
+ property :knowledge_graph_config, as: 'knowledgeGraphConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig::Representation
7839
+
7732
7840
  property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig::Representation
7733
7841
 
7734
7842
  hash :model_configs, as: 'modelConfigs'
@@ -7778,6 +7886,28 @@ module Google
7778
7886
  end
7779
7887
  end
7780
7888
 
7889
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig
7890
+ # @private
7891
+ class Representation < Google::Apis::Core::JsonRepresentation
7892
+ collection :cloud_knowledge_graph_types, as: 'cloudKnowledgeGraphTypes'
7893
+ property :enable_cloud_knowledge_graph, as: 'enableCloudKnowledgeGraph'
7894
+ property :enable_private_knowledge_graph, as: 'enablePrivateKnowledgeGraph'
7895
+ property :feature_config, as: 'featureConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig::Representation
7896
+
7897
+ collection :private_knowledge_graph_types, as: 'privateKnowledgeGraphTypes'
7898
+ end
7899
+ end
7900
+
7901
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig
7902
+ # @private
7903
+ class Representation < Google::Apis::Core::JsonRepresentation
7904
+ property :disable_private_kg_auto_complete, as: 'disablePrivateKgAutoComplete'
7905
+ property :disable_private_kg_enrichment, as: 'disablePrivateKgEnrichment'
7906
+ property :disable_private_kg_query_ui_chips, as: 'disablePrivateKgQueryUiChips'
7907
+ property :disable_private_kg_query_understanding, as: 'disablePrivateKgQueryUnderstanding'
7908
+ end
7909
+ end
7910
+
7781
7911
  class GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig
7782
7912
  # @private
7783
7913
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7951,6 +8081,7 @@ module Google
7951
8081
  class Representation < Google::Apis::Core::JsonRepresentation
7952
8082
  property :enable_configurable_schema, as: 'enableConfigurableSchema'
7953
8083
  property :enable_static_indexing_for_batch_ingestion, as: 'enableStaticIndexingForBatchIngestion'
8084
+ collection :initial_filter_groups, as: 'initialFilterGroups'
7954
8085
  end
7955
8086
  end
7956
8087
 
@@ -8195,6 +8326,16 @@ module Google
8195
8326
  end
8196
8327
  end
8197
8328
 
8329
+ class GoogleCloudDiscoveryengineV1alphaPatientFilterOperationMetadata
8330
+ # @private
8331
+ class Representation < Google::Apis::Core::JsonRepresentation
8332
+ property :create_time, as: 'createTime'
8333
+ property :filters_added_count, :numeric_string => true, as: 'filtersAddedCount'
8334
+ property :filters_removed_count, :numeric_string => true, as: 'filtersRemovedCount'
8335
+ property :update_time, as: 'updateTime'
8336
+ end
8337
+ end
8338
+
8198
8339
  class GoogleCloudDiscoveryengineV1alphaProject
8199
8340
  # @private
8200
8341
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8426,6 +8567,22 @@ module Google
8426
8567
  end
8427
8568
  end
8428
8569
 
8570
+ class GoogleCloudDiscoveryengineV1alphaRemovePatientFilterRequest
8571
+ # @private
8572
+ class Representation < Google::Apis::Core::JsonRepresentation
8573
+ property :data_store, as: 'dataStore'
8574
+ collection :filter_groups, as: 'filterGroups'
8575
+ end
8576
+ end
8577
+
8578
+ class GoogleCloudDiscoveryengineV1alphaReplacePatientFilterRequest
8579
+ # @private
8580
+ class Representation < Google::Apis::Core::JsonRepresentation
8581
+ property :data_store, as: 'dataStore'
8582
+ collection :filter_groups, as: 'filterGroups'
8583
+ end
8584
+ end
8585
+
8429
8586
  class GoogleCloudDiscoveryengineV1alphaSafetyRating
8430
8587
  # @private
8431
8588
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10888,6 +11045,8 @@ module Google
10888
11045
  property :display_name, as: 'displayName'
10889
11046
  hash :features, as: 'features'
10890
11047
  property :industry_vertical, as: 'industryVertical'
11048
+ property :knowledge_graph_config, as: 'knowledgeGraphConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig::Representation
11049
+
10891
11050
  property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig::Representation
10892
11051
 
10893
11052
  hash :model_configs, as: 'modelConfigs'
@@ -10933,6 +11092,28 @@ module Google
10933
11092
  end
10934
11093
  end
10935
11094
 
11095
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig
11096
+ # @private
11097
+ class Representation < Google::Apis::Core::JsonRepresentation
11098
+ collection :cloud_knowledge_graph_types, as: 'cloudKnowledgeGraphTypes'
11099
+ property :enable_cloud_knowledge_graph, as: 'enableCloudKnowledgeGraph'
11100
+ property :enable_private_knowledge_graph, as: 'enablePrivateKnowledgeGraph'
11101
+ property :feature_config, as: 'featureConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig::Representation
11102
+
11103
+ collection :private_knowledge_graph_types, as: 'privateKnowledgeGraphTypes'
11104
+ end
11105
+ end
11106
+
11107
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig
11108
+ # @private
11109
+ class Representation < Google::Apis::Core::JsonRepresentation
11110
+ property :disable_private_kg_auto_complete, as: 'disablePrivateKgAutoComplete'
11111
+ property :disable_private_kg_enrichment, as: 'disablePrivateKgEnrichment'
11112
+ property :disable_private_kg_query_ui_chips, as: 'disablePrivateKgQueryUiChips'
11113
+ property :disable_private_kg_query_understanding, as: 'disablePrivateKgQueryUnderstanding'
11114
+ end
11115
+ end
11116
+
10936
11117
  class GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig
10937
11118
  # @private
10938
11119
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -11102,6 +11283,7 @@ module Google
11102
11283
  class Representation < Google::Apis::Core::JsonRepresentation
11103
11284
  property :enable_configurable_schema, as: 'enableConfigurableSchema'
11104
11285
  property :enable_static_indexing_for_batch_ingestion, as: 'enableStaticIndexingForBatchIngestion'
11286
+ collection :initial_filter_groups, as: 'initialFilterGroups'
11105
11287
  end
11106
11288
  end
11107
11289
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.94.0
4
+ version: 0.96.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_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.94.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.96.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: