google-apis-discoveryengine_v1beta 0.94.0 → 0.95.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: d5e340fb454faa7d6302d482a8ac43023a8c010a40d67afcd4c6ac82944a1b47
4
+ data.tar.gz: 81a1cb6bf6657a37eda919168bf7468a26dbf41d63f62a177bd9243617520b2b
5
5
  SHA512:
6
- metadata.gz: 2da0fed3d6b77aa60dff80c29f939e00d141e98f14d2c61d5d5876ec4240444924102f229b4ee517df3257d584844c65b5a4e0f2ef24457eab2fc122fbc71da9
7
- data.tar.gz: 68a3c5a3b55006a041c1fe0090e461b87349f9e799ffd044861e85c27457e33445ee00285f66a2844b5b91eecf667c833d8235b1ce4a96ba831eafcbd42f09ca
6
+ metadata.gz: b2ccfa8d168ee90ef30b6c102080be2cdda1ecd50f8699e0123a3ee337bb36e2361c6734c46e14ed2d98d1638f2952648bec6316cae0d390418c49b3c96c1a23
7
+ data.tar.gz: 8a8ae5696a62ce329bb0a1b61610b108d19faceb451bb9b74e0a51419fba3c39292102a4c450bb91fe9277c31e771ba76bfc90c3ead393d46cafc61578f89b3c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1beta
2
2
 
3
+ ### v0.95.0 (2026-01-18)
4
+
5
+ * Regenerated from discovery document revision 20260112
6
+
3
7
  ### v0.94.0 (2026-01-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20260107
@@ -3510,6 +3510,11 @@ module Google
3510
3510
  # @return [String]
3511
3511
  attr_accessor :industry_vertical
3512
3512
 
3513
+ # Configuration message for the Knowledge Graph.
3514
+ # Corresponds to the JSON property `knowledgeGraphConfig`
3515
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig]
3516
+ attr_accessor :knowledge_graph_config
3517
+
3513
3518
  # Additional config specs for a Media Recommendation engine.
3514
3519
  # Corresponds to the JSON property `mediaRecommendationEngineConfig`
3515
3520
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig]
@@ -3568,6 +3573,7 @@ module Google
3568
3573
  @display_name = args[:display_name] if args.key?(:display_name)
3569
3574
  @features = args[:features] if args.key?(:features)
3570
3575
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
3576
+ @knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
3571
3577
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
3572
3578
  @model_configs = args[:model_configs] if args.key?(:model_configs)
3573
3579
  @name = args[:name] if args.key?(:name)
@@ -3711,6 +3717,98 @@ module Google
3711
3717
  end
3712
3718
  end
3713
3719
 
3720
+ # Configuration message for the Knowledge Graph.
3721
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig
3722
+ include Google::Apis::Core::Hashable
3723
+
3724
+ # Specify entity types to support.
3725
+ # Corresponds to the JSON property `cloudKnowledgeGraphTypes`
3726
+ # @return [Array<String>]
3727
+ attr_accessor :cloud_knowledge_graph_types
3728
+
3729
+ # Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false
3730
+ # if not specified.
3731
+ # Corresponds to the JSON property `enableCloudKnowledgeGraph`
3732
+ # @return [Boolean]
3733
+ attr_accessor :enable_cloud_knowledge_graph
3734
+ alias_method :enable_cloud_knowledge_graph?, :enable_cloud_knowledge_graph
3735
+
3736
+ # Whether to enable the Private Knowledge Graph for the engine. Defaults to
3737
+ # false if not specified.
3738
+ # Corresponds to the JSON property `enablePrivateKnowledgeGraph`
3739
+ # @return [Boolean]
3740
+ attr_accessor :enable_private_knowledge_graph
3741
+ alias_method :enable_private_knowledge_graph?, :enable_private_knowledge_graph
3742
+
3743
+ # Feature config for the Knowledge Graph.
3744
+ # Corresponds to the JSON property `featureConfig`
3745
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig]
3746
+ attr_accessor :feature_config
3747
+
3748
+ # Specify entity types to support.
3749
+ # Corresponds to the JSON property `privateKnowledgeGraphTypes`
3750
+ # @return [Array<String>]
3751
+ attr_accessor :private_knowledge_graph_types
3752
+
3753
+ def initialize(**args)
3754
+ update!(**args)
3755
+ end
3756
+
3757
+ # Update properties of this object
3758
+ def update!(**args)
3759
+ @cloud_knowledge_graph_types = args[:cloud_knowledge_graph_types] if args.key?(:cloud_knowledge_graph_types)
3760
+ @enable_cloud_knowledge_graph = args[:enable_cloud_knowledge_graph] if args.key?(:enable_cloud_knowledge_graph)
3761
+ @enable_private_knowledge_graph = args[:enable_private_knowledge_graph] if args.key?(:enable_private_knowledge_graph)
3762
+ @feature_config = args[:feature_config] if args.key?(:feature_config)
3763
+ @private_knowledge_graph_types = args[:private_knowledge_graph_types] if args.key?(:private_knowledge_graph_types)
3764
+ end
3765
+ end
3766
+
3767
+ # Feature config for the Knowledge Graph.
3768
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig
3769
+ include Google::Apis::Core::Hashable
3770
+
3771
+ # Whether to disable the private KG auto complete for the engine. Defaults to
3772
+ # false if not specified.
3773
+ # Corresponds to the JSON property `disablePrivateKgAutoComplete`
3774
+ # @return [Boolean]
3775
+ attr_accessor :disable_private_kg_auto_complete
3776
+ alias_method :disable_private_kg_auto_complete?, :disable_private_kg_auto_complete
3777
+
3778
+ # Whether to disable the private KG enrichment for the engine. Defaults to false
3779
+ # if not specified.
3780
+ # Corresponds to the JSON property `disablePrivateKgEnrichment`
3781
+ # @return [Boolean]
3782
+ attr_accessor :disable_private_kg_enrichment
3783
+ alias_method :disable_private_kg_enrichment?, :disable_private_kg_enrichment
3784
+
3785
+ # Whether to disable the private KG for query UI chips. Defaults to false if not
3786
+ # specified.
3787
+ # Corresponds to the JSON property `disablePrivateKgQueryUiChips`
3788
+ # @return [Boolean]
3789
+ attr_accessor :disable_private_kg_query_ui_chips
3790
+ alias_method :disable_private_kg_query_ui_chips?, :disable_private_kg_query_ui_chips
3791
+
3792
+ # Whether to disable the private KG query understanding for the engine. Defaults
3793
+ # to false if not specified.
3794
+ # Corresponds to the JSON property `disablePrivateKgQueryUnderstanding`
3795
+ # @return [Boolean]
3796
+ attr_accessor :disable_private_kg_query_understanding
3797
+ alias_method :disable_private_kg_query_understanding?, :disable_private_kg_query_understanding
3798
+
3799
+ def initialize(**args)
3800
+ update!(**args)
3801
+ end
3802
+
3803
+ # Update properties of this object
3804
+ def update!(**args)
3805
+ @disable_private_kg_auto_complete = args[:disable_private_kg_auto_complete] if args.key?(:disable_private_kg_auto_complete)
3806
+ @disable_private_kg_enrichment = args[:disable_private_kg_enrichment] if args.key?(:disable_private_kg_enrichment)
3807
+ @disable_private_kg_query_ui_chips = args[:disable_private_kg_query_ui_chips] if args.key?(:disable_private_kg_query_ui_chips)
3808
+ @disable_private_kg_query_understanding = args[:disable_private_kg_query_understanding] if args.key?(:disable_private_kg_query_understanding)
3809
+ end
3810
+ end
3811
+
3714
3812
  # Additional config specs for a Media Recommendation engine.
3715
3813
  class GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig
3716
3814
  include Google::Apis::Core::Hashable
@@ -3918,6 +4016,16 @@ module Google
3918
4016
  attr_accessor :enable_static_indexing_for_batch_ingestion
3919
4017
  alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
3920
4018
 
4019
+ # Optional. Names of the Group resources to use as a basis for the initial
4020
+ # patient filter, in format `projects/`project_id`/locations/`location_id`/
4021
+ # datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. The
4022
+ # filter group must be a FHIR resource name of type Group, and the filter will
4023
+ # be constructed from the direct members of the group which are Patient
4024
+ # resources.
4025
+ # Corresponds to the JSON property `initialFilterGroups`
4026
+ # @return [Array<String>]
4027
+ attr_accessor :initial_filter_groups
4028
+
3921
4029
  def initialize(**args)
3922
4030
  update!(**args)
3923
4031
  end
@@ -3926,6 +4034,7 @@ module Google
3926
4034
  def update!(**args)
3927
4035
  @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
3928
4036
  @enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
4037
+ @initial_filter_groups = args[:initial_filter_groups] if args.key?(:initial_filter_groups)
3929
4038
  end
3930
4039
  end
3931
4040
 
@@ -6237,6 +6346,47 @@ module Google
6237
6346
  end
6238
6347
  end
6239
6348
 
6349
+ # Request for DataStoreService.AddPatientFilter method.
6350
+ class GoogleCloudDiscoveryengineV1alphaAddPatientFilterRequest
6351
+ include Google::Apis::Core::Hashable
6352
+
6353
+ # Required. Full resource name of DataStore, such as `projects/`project`/
6354
+ # locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
6355
+ # If the caller does not have permission to access the DataStore, regardless of
6356
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the
6357
+ # requested DataStore does not exist, a NOT_FOUND error is returned. If the
6358
+ # requested DataStore already has a patient filter, an ALREADY_EXISTS error will
6359
+ # be returned.
6360
+ # Corresponds to the JSON property `dataStore`
6361
+ # @return [String]
6362
+ attr_accessor :data_store
6363
+
6364
+ # Required. Names of the Group resources to use as a basis for the patient
6365
+ # filter, in format `projects/`project_id`/locations/`location_id`/datasets/`
6366
+ # dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. if the caller
6367
+ # does not have permission to access the FHIR store, regardless of whether it
6368
+ # exists, PERMISSION_DENIED error is returned. If the discovery engine service
6369
+ # account does not have permission to access the FHIR store, regardless of
6370
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the group
6371
+ # is not found at the location, a RESOURCE_NOT_FOUND error will be returned. The
6372
+ # filter group must be a FHIR resource name of type Group, and the filter will
6373
+ # be constructed from the direct members of the group which are Patient
6374
+ # resources.
6375
+ # Corresponds to the JSON property `filterGroups`
6376
+ # @return [Array<String>]
6377
+ attr_accessor :filter_groups
6378
+
6379
+ def initialize(**args)
6380
+ update!(**args)
6381
+ end
6382
+
6383
+ # Update properties of this object
6384
+ def update!(**args)
6385
+ @data_store = args[:data_store] if args.key?(:data_store)
6386
+ @filter_groups = args[:filter_groups] if args.key?(:filter_groups)
6387
+ end
6388
+ end
6389
+
6240
6390
  # Configuration data for advance site search.
6241
6391
  class GoogleCloudDiscoveryengineV1alphaAdvancedSiteSearchConfig
6242
6392
  include Google::Apis::Core::Hashable
@@ -9783,6 +9933,31 @@ module Google
9783
9933
  end
9784
9934
  end
9785
9935
 
9936
+ # Request for DataStoreService.DeletePatientFilters method.
9937
+ class GoogleCloudDiscoveryengineV1alphaDeletePatientFiltersRequest
9938
+ include Google::Apis::Core::Hashable
9939
+
9940
+ # Required. Full resource name of DataStore, such as `projects/`project`/
9941
+ # locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
9942
+ # If the caller does not have permission to access the DataStore, regardless of
9943
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the
9944
+ # requested DataStore does not exist, a NOT_FOUND error is returned. If the
9945
+ # requested DataStore does not have a patient filter, a NOT_FOUND error will be
9946
+ # returned.
9947
+ # Corresponds to the JSON property `dataStore`
9948
+ # @return [String]
9949
+ attr_accessor :data_store
9950
+
9951
+ def initialize(**args)
9952
+ update!(**args)
9953
+ end
9954
+
9955
+ # Update properties of this object
9956
+ def update!(**args)
9957
+ @data_store = args[:data_store] if args.key?(:data_store)
9958
+ end
9959
+ end
9960
+
9786
9961
  # Metadata for DeleteSchema LRO.
9787
9962
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
9788
9963
  include Google::Apis::Core::Hashable
@@ -10380,6 +10555,11 @@ module Google
10380
10555
  # @return [String]
10381
10556
  attr_accessor :industry_vertical
10382
10557
 
10558
+ # Configuration message for the Knowledge Graph.
10559
+ # Corresponds to the JSON property `knowledgeGraphConfig`
10560
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig]
10561
+ attr_accessor :knowledge_graph_config
10562
+
10383
10563
  # Additional config specs for a Media Recommendation engine.
10384
10564
  # Corresponds to the JSON property `mediaRecommendationEngineConfig`
10385
10565
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig]
@@ -10448,6 +10628,7 @@ module Google
10448
10628
  @display_name = args[:display_name] if args.key?(:display_name)
10449
10629
  @features = args[:features] if args.key?(:features)
10450
10630
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
10631
+ @knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
10451
10632
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
10452
10633
  @model_configs = args[:model_configs] if args.key?(:model_configs)
10453
10634
  @name = args[:name] if args.key?(:name)
@@ -10593,6 +10774,98 @@ module Google
10593
10774
  end
10594
10775
  end
10595
10776
 
10777
+ # Configuration message for the Knowledge Graph.
10778
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig
10779
+ include Google::Apis::Core::Hashable
10780
+
10781
+ # Specify entity types to support.
10782
+ # Corresponds to the JSON property `cloudKnowledgeGraphTypes`
10783
+ # @return [Array<String>]
10784
+ attr_accessor :cloud_knowledge_graph_types
10785
+
10786
+ # Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false
10787
+ # if not specified.
10788
+ # Corresponds to the JSON property `enableCloudKnowledgeGraph`
10789
+ # @return [Boolean]
10790
+ attr_accessor :enable_cloud_knowledge_graph
10791
+ alias_method :enable_cloud_knowledge_graph?, :enable_cloud_knowledge_graph
10792
+
10793
+ # Whether to enable the Private Knowledge Graph for the engine. Defaults to
10794
+ # false if not specified.
10795
+ # Corresponds to the JSON property `enablePrivateKnowledgeGraph`
10796
+ # @return [Boolean]
10797
+ attr_accessor :enable_private_knowledge_graph
10798
+ alias_method :enable_private_knowledge_graph?, :enable_private_knowledge_graph
10799
+
10800
+ # Feature config for the Knowledge Graph.
10801
+ # Corresponds to the JSON property `featureConfig`
10802
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig]
10803
+ attr_accessor :feature_config
10804
+
10805
+ # Specify entity types to support.
10806
+ # Corresponds to the JSON property `privateKnowledgeGraphTypes`
10807
+ # @return [Array<String>]
10808
+ attr_accessor :private_knowledge_graph_types
10809
+
10810
+ def initialize(**args)
10811
+ update!(**args)
10812
+ end
10813
+
10814
+ # Update properties of this object
10815
+ def update!(**args)
10816
+ @cloud_knowledge_graph_types = args[:cloud_knowledge_graph_types] if args.key?(:cloud_knowledge_graph_types)
10817
+ @enable_cloud_knowledge_graph = args[:enable_cloud_knowledge_graph] if args.key?(:enable_cloud_knowledge_graph)
10818
+ @enable_private_knowledge_graph = args[:enable_private_knowledge_graph] if args.key?(:enable_private_knowledge_graph)
10819
+ @feature_config = args[:feature_config] if args.key?(:feature_config)
10820
+ @private_knowledge_graph_types = args[:private_knowledge_graph_types] if args.key?(:private_knowledge_graph_types)
10821
+ end
10822
+ end
10823
+
10824
+ # Feature config for the Knowledge Graph.
10825
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig
10826
+ include Google::Apis::Core::Hashable
10827
+
10828
+ # Whether to disable the private KG auto complete for the engine. Defaults to
10829
+ # false if not specified.
10830
+ # Corresponds to the JSON property `disablePrivateKgAutoComplete`
10831
+ # @return [Boolean]
10832
+ attr_accessor :disable_private_kg_auto_complete
10833
+ alias_method :disable_private_kg_auto_complete?, :disable_private_kg_auto_complete
10834
+
10835
+ # Whether to disable the private KG enrichment for the engine. Defaults to false
10836
+ # if not specified.
10837
+ # Corresponds to the JSON property `disablePrivateKgEnrichment`
10838
+ # @return [Boolean]
10839
+ attr_accessor :disable_private_kg_enrichment
10840
+ alias_method :disable_private_kg_enrichment?, :disable_private_kg_enrichment
10841
+
10842
+ # Whether to disable the private KG for query UI chips. Defaults to false if not
10843
+ # specified.
10844
+ # Corresponds to the JSON property `disablePrivateKgQueryUiChips`
10845
+ # @return [Boolean]
10846
+ attr_accessor :disable_private_kg_query_ui_chips
10847
+ alias_method :disable_private_kg_query_ui_chips?, :disable_private_kg_query_ui_chips
10848
+
10849
+ # Whether to disable the private KG query understanding for the engine. Defaults
10850
+ # to false if not specified.
10851
+ # Corresponds to the JSON property `disablePrivateKgQueryUnderstanding`
10852
+ # @return [Boolean]
10853
+ attr_accessor :disable_private_kg_query_understanding
10854
+ alias_method :disable_private_kg_query_understanding?, :disable_private_kg_query_understanding
10855
+
10856
+ def initialize(**args)
10857
+ update!(**args)
10858
+ end
10859
+
10860
+ # Update properties of this object
10861
+ def update!(**args)
10862
+ @disable_private_kg_auto_complete = args[:disable_private_kg_auto_complete] if args.key?(:disable_private_kg_auto_complete)
10863
+ @disable_private_kg_enrichment = args[:disable_private_kg_enrichment] if args.key?(:disable_private_kg_enrichment)
10864
+ @disable_private_kg_query_ui_chips = args[:disable_private_kg_query_ui_chips] if args.key?(:disable_private_kg_query_ui_chips)
10865
+ @disable_private_kg_query_understanding = args[:disable_private_kg_query_understanding] if args.key?(:disable_private_kg_query_understanding)
10866
+ end
10867
+ end
10868
+
10596
10869
  # Additional config specs for a Media Recommendation engine.
10597
10870
  class GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig
10598
10871
  include Google::Apis::Core::Hashable
@@ -11269,6 +11542,16 @@ module Google
11269
11542
  attr_accessor :enable_static_indexing_for_batch_ingestion
11270
11543
  alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
11271
11544
 
11545
+ # Optional. Names of the Group resources to use as a basis for the initial
11546
+ # patient filter, in format `projects/`project_id`/locations/`location_id`/
11547
+ # datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. The
11548
+ # filter group must be a FHIR resource name of type Group, and the filter will
11549
+ # be constructed from the direct members of the group which are Patient
11550
+ # resources.
11551
+ # Corresponds to the JSON property `initialFilterGroups`
11552
+ # @return [Array<String>]
11553
+ attr_accessor :initial_filter_groups
11554
+
11272
11555
  def initialize(**args)
11273
11556
  update!(**args)
11274
11557
  end
@@ -11277,6 +11560,7 @@ module Google
11277
11560
  def update!(**args)
11278
11561
  @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
11279
11562
  @enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
11563
+ @initial_filter_groups = args[:initial_filter_groups] if args.key?(:initial_filter_groups)
11280
11564
  end
11281
11565
  end
11282
11566
 
@@ -12140,6 +12424,45 @@ module Google
12140
12424
  end
12141
12425
  end
12142
12426
 
12427
+ # Metadata related to the progress of the various patient filter operations.
12428
+ # This will be returned by the google.longrunning.Operation.metadata field.
12429
+ class GoogleCloudDiscoveryengineV1alphaPatientFilterOperationMetadata
12430
+ include Google::Apis::Core::Hashable
12431
+
12432
+ # Operation create time.
12433
+ # Corresponds to the JSON property `createTime`
12434
+ # @return [String]
12435
+ attr_accessor :create_time
12436
+
12437
+ # The number of patient IDs added to the patient filter.
12438
+ # Corresponds to the JSON property `filtersAddedCount`
12439
+ # @return [Fixnum]
12440
+ attr_accessor :filters_added_count
12441
+
12442
+ # The number of patient IDs removed from the patient filter.
12443
+ # Corresponds to the JSON property `filtersRemovedCount`
12444
+ # @return [Fixnum]
12445
+ attr_accessor :filters_removed_count
12446
+
12447
+ # Operation last update time. If the operation is done, this is also the finish
12448
+ # time.
12449
+ # Corresponds to the JSON property `updateTime`
12450
+ # @return [String]
12451
+ attr_accessor :update_time
12452
+
12453
+ def initialize(**args)
12454
+ update!(**args)
12455
+ end
12456
+
12457
+ # Update properties of this object
12458
+ def update!(**args)
12459
+ @create_time = args[:create_time] if args.key?(:create_time)
12460
+ @filters_added_count = args[:filters_added_count] if args.key?(:filters_added_count)
12461
+ @filters_removed_count = args[:filters_removed_count] if args.key?(:filters_removed_count)
12462
+ @update_time = args[:update_time] if args.key?(:update_time)
12463
+ end
12464
+ end
12465
+
12143
12466
  # Metadata and configurations for a Google Cloud project in the service.
12144
12467
  class GoogleCloudDiscoveryengineV1alphaProject
12145
12468
  include Google::Apis::Core::Hashable
@@ -12949,6 +13272,88 @@ module Google
12949
13272
  end
12950
13273
  end
12951
13274
 
13275
+ # Request for DataStoreService.RemovePatientFilter method.
13276
+ class GoogleCloudDiscoveryengineV1alphaRemovePatientFilterRequest
13277
+ include Google::Apis::Core::Hashable
13278
+
13279
+ # Required. Full resource name of DataStore, such as `projects/`project`/
13280
+ # locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
13281
+ # If the caller does not have permission to access the DataStore, regardless of
13282
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the
13283
+ # requested DataStore does not exist, a NOT_FOUND error is returned. If the
13284
+ # requested DataStore does not have a patient filter, a NOT_FOUND error will be
13285
+ # returned
13286
+ # Corresponds to the JSON property `dataStore`
13287
+ # @return [String]
13288
+ attr_accessor :data_store
13289
+
13290
+ # Required. Names of the Group resources to use as a basis for the list of
13291
+ # patients to remove from the patient filter, in format `projects/`project_id`/
13292
+ # locations/`location_id`/datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/
13293
+ # Group/`group_id``. if the caller does not have permission to access the FHIR
13294
+ # store, regardless of whether it exists, PERMISSION_DENIED error is returned.
13295
+ # If the discovery engine service account does not have permission to access the
13296
+ # FHIR store, regardless of whether or not it exists, a PERMISSION_DENIED error
13297
+ # is returned. If the group is not found at the location, a RESOURCE_NOT_FOUND
13298
+ # error will be returned. The filter group must be a FHIR resource name of type
13299
+ # Group, and the list of IDs to remove will be constructed from the direct
13300
+ # members of the group which are Patient resources.
13301
+ # Corresponds to the JSON property `filterGroups`
13302
+ # @return [Array<String>]
13303
+ attr_accessor :filter_groups
13304
+
13305
+ def initialize(**args)
13306
+ update!(**args)
13307
+ end
13308
+
13309
+ # Update properties of this object
13310
+ def update!(**args)
13311
+ @data_store = args[:data_store] if args.key?(:data_store)
13312
+ @filter_groups = args[:filter_groups] if args.key?(:filter_groups)
13313
+ end
13314
+ end
13315
+
13316
+ # Request for DataStoreService.ReplacePatientFilter method.
13317
+ class GoogleCloudDiscoveryengineV1alphaReplacePatientFilterRequest
13318
+ include Google::Apis::Core::Hashable
13319
+
13320
+ # Required. Full resource name of DataStore, such as `projects/`project`/
13321
+ # locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
13322
+ # If the caller does not have permission to access the DataStore, regardless of
13323
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the
13324
+ # requested DataStore does not exist, a NOT_FOUND error is returned. If the
13325
+ # requested DataStore already has a patient filter, an ALREADY_EXISTS error will
13326
+ # be returned.
13327
+ # Corresponds to the JSON property `dataStore`
13328
+ # @return [String]
13329
+ attr_accessor :data_store
13330
+
13331
+ # Required. Names of the Group resources to use as a basis for the list of
13332
+ # patients for the new patient filter, in format `projects/`project_id`/
13333
+ # locations/`location_id`/datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/
13334
+ # Group/`group_id``. if the caller does not have permission to access the FHIR
13335
+ # store, regardless of whether it exists, PERMISSION_DENIED error is returned.
13336
+ # If the discovery engine service account does not have permission to access the
13337
+ # FHIR store, regardless of whether or not it exists, a PERMISSION_DENIED error
13338
+ # is returned. If the group is not found at the location, a RESOURCE_NOT_FOUND
13339
+ # error will be returned. The filter group must be a FHIR resource name of type
13340
+ # Group, and the new filter will be constructed from the direct members of the
13341
+ # group which are Patient resources.
13342
+ # Corresponds to the JSON property `filterGroups`
13343
+ # @return [Array<String>]
13344
+ attr_accessor :filter_groups
13345
+
13346
+ def initialize(**args)
13347
+ update!(**args)
13348
+ end
13349
+
13350
+ # Update properties of this object
13351
+ def update!(**args)
13352
+ @data_store = args[:data_store] if args.key?(:data_store)
13353
+ @filter_groups = args[:filter_groups] if args.key?(:filter_groups)
13354
+ end
13355
+ end
13356
+
12952
13357
  # Safety rating corresponding to the generated content.
12953
13358
  class GoogleCloudDiscoveryengineV1alphaSafetyRating
12954
13359
  include Google::Apis::Core::Hashable
@@ -22062,6 +22467,11 @@ module Google
22062
22467
  # @return [String]
22063
22468
  attr_accessor :industry_vertical
22064
22469
 
22470
+ # Configuration message for the Knowledge Graph.
22471
+ # Corresponds to the JSON property `knowledgeGraphConfig`
22472
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig]
22473
+ attr_accessor :knowledge_graph_config
22474
+
22065
22475
  # Additional config specs for a Media Recommendation engine.
22066
22476
  # Corresponds to the JSON property `mediaRecommendationEngineConfig`
22067
22477
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig]
@@ -22120,6 +22530,7 @@ module Google
22120
22530
  @display_name = args[:display_name] if args.key?(:display_name)
22121
22531
  @features = args[:features] if args.key?(:features)
22122
22532
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
22533
+ @knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
22123
22534
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
22124
22535
  @model_configs = args[:model_configs] if args.key?(:model_configs)
22125
22536
  @name = args[:name] if args.key?(:name)
@@ -22263,6 +22674,98 @@ module Google
22263
22674
  end
22264
22675
  end
22265
22676
 
22677
+ # Configuration message for the Knowledge Graph.
22678
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig
22679
+ include Google::Apis::Core::Hashable
22680
+
22681
+ # Specify entity types to support.
22682
+ # Corresponds to the JSON property `cloudKnowledgeGraphTypes`
22683
+ # @return [Array<String>]
22684
+ attr_accessor :cloud_knowledge_graph_types
22685
+
22686
+ # Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false
22687
+ # if not specified.
22688
+ # Corresponds to the JSON property `enableCloudKnowledgeGraph`
22689
+ # @return [Boolean]
22690
+ attr_accessor :enable_cloud_knowledge_graph
22691
+ alias_method :enable_cloud_knowledge_graph?, :enable_cloud_knowledge_graph
22692
+
22693
+ # Whether to enable the Private Knowledge Graph for the engine. Defaults to
22694
+ # false if not specified.
22695
+ # Corresponds to the JSON property `enablePrivateKnowledgeGraph`
22696
+ # @return [Boolean]
22697
+ attr_accessor :enable_private_knowledge_graph
22698
+ alias_method :enable_private_knowledge_graph?, :enable_private_knowledge_graph
22699
+
22700
+ # Feature config for the Knowledge Graph.
22701
+ # Corresponds to the JSON property `featureConfig`
22702
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig]
22703
+ attr_accessor :feature_config
22704
+
22705
+ # Specify entity types to support.
22706
+ # Corresponds to the JSON property `privateKnowledgeGraphTypes`
22707
+ # @return [Array<String>]
22708
+ attr_accessor :private_knowledge_graph_types
22709
+
22710
+ def initialize(**args)
22711
+ update!(**args)
22712
+ end
22713
+
22714
+ # Update properties of this object
22715
+ def update!(**args)
22716
+ @cloud_knowledge_graph_types = args[:cloud_knowledge_graph_types] if args.key?(:cloud_knowledge_graph_types)
22717
+ @enable_cloud_knowledge_graph = args[:enable_cloud_knowledge_graph] if args.key?(:enable_cloud_knowledge_graph)
22718
+ @enable_private_knowledge_graph = args[:enable_private_knowledge_graph] if args.key?(:enable_private_knowledge_graph)
22719
+ @feature_config = args[:feature_config] if args.key?(:feature_config)
22720
+ @private_knowledge_graph_types = args[:private_knowledge_graph_types] if args.key?(:private_knowledge_graph_types)
22721
+ end
22722
+ end
22723
+
22724
+ # Feature config for the Knowledge Graph.
22725
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig
22726
+ include Google::Apis::Core::Hashable
22727
+
22728
+ # Whether to disable the private KG auto complete for the engine. Defaults to
22729
+ # false if not specified.
22730
+ # Corresponds to the JSON property `disablePrivateKgAutoComplete`
22731
+ # @return [Boolean]
22732
+ attr_accessor :disable_private_kg_auto_complete
22733
+ alias_method :disable_private_kg_auto_complete?, :disable_private_kg_auto_complete
22734
+
22735
+ # Whether to disable the private KG enrichment for the engine. Defaults to false
22736
+ # if not specified.
22737
+ # Corresponds to the JSON property `disablePrivateKgEnrichment`
22738
+ # @return [Boolean]
22739
+ attr_accessor :disable_private_kg_enrichment
22740
+ alias_method :disable_private_kg_enrichment?, :disable_private_kg_enrichment
22741
+
22742
+ # Whether to disable the private KG for query UI chips. Defaults to false if not
22743
+ # specified.
22744
+ # Corresponds to the JSON property `disablePrivateKgQueryUiChips`
22745
+ # @return [Boolean]
22746
+ attr_accessor :disable_private_kg_query_ui_chips
22747
+ alias_method :disable_private_kg_query_ui_chips?, :disable_private_kg_query_ui_chips
22748
+
22749
+ # Whether to disable the private KG query understanding for the engine. Defaults
22750
+ # to false if not specified.
22751
+ # Corresponds to the JSON property `disablePrivateKgQueryUnderstanding`
22752
+ # @return [Boolean]
22753
+ attr_accessor :disable_private_kg_query_understanding
22754
+ alias_method :disable_private_kg_query_understanding?, :disable_private_kg_query_understanding
22755
+
22756
+ def initialize(**args)
22757
+ update!(**args)
22758
+ end
22759
+
22760
+ # Update properties of this object
22761
+ def update!(**args)
22762
+ @disable_private_kg_auto_complete = args[:disable_private_kg_auto_complete] if args.key?(:disable_private_kg_auto_complete)
22763
+ @disable_private_kg_enrichment = args[:disable_private_kg_enrichment] if args.key?(:disable_private_kg_enrichment)
22764
+ @disable_private_kg_query_ui_chips = args[:disable_private_kg_query_ui_chips] if args.key?(:disable_private_kg_query_ui_chips)
22765
+ @disable_private_kg_query_understanding = args[:disable_private_kg_query_understanding] if args.key?(:disable_private_kg_query_understanding)
22766
+ end
22767
+ end
22768
+
22266
22769
  # Additional config specs for a Media Recommendation engine.
22267
22770
  class GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig
22268
22771
  include Google::Apis::Core::Hashable
@@ -22875,6 +23378,16 @@ module Google
22875
23378
  attr_accessor :enable_static_indexing_for_batch_ingestion
22876
23379
  alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
22877
23380
 
23381
+ # Optional. Names of the Group resources to use as a basis for the initial
23382
+ # patient filter, in format `projects/`project_id`/locations/`location_id`/
23383
+ # datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. The
23384
+ # filter group must be a FHIR resource name of type Group, and the filter will
23385
+ # be constructed from the direct members of the group which are Patient
23386
+ # resources.
23387
+ # Corresponds to the JSON property `initialFilterGroups`
23388
+ # @return [Array<String>]
23389
+ attr_accessor :initial_filter_groups
23390
+
22878
23391
  def initialize(**args)
22879
23392
  update!(**args)
22880
23393
  end
@@ -22883,6 +23396,7 @@ module Google
22883
23396
  def update!(**args)
22884
23397
  @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
22885
23398
  @enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
23399
+ @initial_filter_groups = args[:initial_filter_groups] if args.key?(:initial_filter_groups)
22886
23400
  end
22887
23401
  end
22888
23402
 
@@ -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.95.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 = "20260112"
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.95.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.95.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: