google-apis-discoveryengine_v1 0.64.0 → 0.65.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: 9b7e05e2b1a781a814422bb14390f52a6468579f58f2e39c7fc2c0849e3ddf83
4
- data.tar.gz: d9ccecaba3ea1558e92ddf54fc89862b97555b7328bba0aa3857a899c897ecf7
3
+ metadata.gz: 666fcf2062edd73f449c7e92471bd63649dbc1af100e33de0690e35d49ac5a69
4
+ data.tar.gz: 5cd7cac1055feb8eb581991884c730e61ebb615de771d76b4121520ee0c7b75b
5
5
  SHA512:
6
- metadata.gz: d940faa18e8724f80c2da61c1e114289bf0b9cfd2e45d6f41d82e20eadc601eaed79f3f2baabba28ce24df9c3c879045f4684f7db642039cfb1a11e00c8e88dd
7
- data.tar.gz: 3d122919782f8ca931c1205c3b3073b611c66e8ac355d174e52c7cf67762c8bc916614890efe2ee4576ff72bddb07e665304ff2c350e3939c6eab69db2e1d1d6
6
+ metadata.gz: 27fa6a7526ce7ed917fe251541f45e07b57dd32660c4f3084050c7de7e1a341871faf3c481442b34135211c0f699e7788c3f29087ca2d7617cf18d825376746a
7
+ data.tar.gz: be21fd32b5e58e9a938018afb21b1c21a1dd6785f25775488a498e0087784f3023b00a4ac59e16916cc754802c8fdbac585b27809e71466eb14cd710e1758776
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.65.0 (2026-01-18)
4
+
5
+ * Regenerated from discovery document revision 20260112
6
+
3
7
  ### v0.64.0 (2026-01-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20260107
@@ -7894,6 +7894,11 @@ module Google
7894
7894
  # @return [String]
7895
7895
  attr_accessor :industry_vertical
7896
7896
 
7897
+ # Configuration message for the Knowledge Graph.
7898
+ # Corresponds to the JSON property `knowledgeGraphConfig`
7899
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig]
7900
+ attr_accessor :knowledge_graph_config
7901
+
7897
7902
  # Additional config specs for a Media Recommendation engine.
7898
7903
  # Corresponds to the JSON property `mediaRecommendationEngineConfig`
7899
7904
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig]
@@ -7952,6 +7957,7 @@ module Google
7952
7957
  @display_name = args[:display_name] if args.key?(:display_name)
7953
7958
  @features = args[:features] if args.key?(:features)
7954
7959
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
7960
+ @knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
7955
7961
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
7956
7962
  @model_configs = args[:model_configs] if args.key?(:model_configs)
7957
7963
  @name = args[:name] if args.key?(:name)
@@ -8095,6 +8101,98 @@ module Google
8095
8101
  end
8096
8102
  end
8097
8103
 
8104
+ # Configuration message for the Knowledge Graph.
8105
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig
8106
+ include Google::Apis::Core::Hashable
8107
+
8108
+ # Specify entity types to support.
8109
+ # Corresponds to the JSON property `cloudKnowledgeGraphTypes`
8110
+ # @return [Array<String>]
8111
+ attr_accessor :cloud_knowledge_graph_types
8112
+
8113
+ # Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false
8114
+ # if not specified.
8115
+ # Corresponds to the JSON property `enableCloudKnowledgeGraph`
8116
+ # @return [Boolean]
8117
+ attr_accessor :enable_cloud_knowledge_graph
8118
+ alias_method :enable_cloud_knowledge_graph?, :enable_cloud_knowledge_graph
8119
+
8120
+ # Whether to enable the Private Knowledge Graph for the engine. Defaults to
8121
+ # false if not specified.
8122
+ # Corresponds to the JSON property `enablePrivateKnowledgeGraph`
8123
+ # @return [Boolean]
8124
+ attr_accessor :enable_private_knowledge_graph
8125
+ alias_method :enable_private_knowledge_graph?, :enable_private_knowledge_graph
8126
+
8127
+ # Feature config for the Knowledge Graph.
8128
+ # Corresponds to the JSON property `featureConfig`
8129
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig]
8130
+ attr_accessor :feature_config
8131
+
8132
+ # Specify entity types to support.
8133
+ # Corresponds to the JSON property `privateKnowledgeGraphTypes`
8134
+ # @return [Array<String>]
8135
+ attr_accessor :private_knowledge_graph_types
8136
+
8137
+ def initialize(**args)
8138
+ update!(**args)
8139
+ end
8140
+
8141
+ # Update properties of this object
8142
+ def update!(**args)
8143
+ @cloud_knowledge_graph_types = args[:cloud_knowledge_graph_types] if args.key?(:cloud_knowledge_graph_types)
8144
+ @enable_cloud_knowledge_graph = args[:enable_cloud_knowledge_graph] if args.key?(:enable_cloud_knowledge_graph)
8145
+ @enable_private_knowledge_graph = args[:enable_private_knowledge_graph] if args.key?(:enable_private_knowledge_graph)
8146
+ @feature_config = args[:feature_config] if args.key?(:feature_config)
8147
+ @private_knowledge_graph_types = args[:private_knowledge_graph_types] if args.key?(:private_knowledge_graph_types)
8148
+ end
8149
+ end
8150
+
8151
+ # Feature config for the Knowledge Graph.
8152
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig
8153
+ include Google::Apis::Core::Hashable
8154
+
8155
+ # Whether to disable the private KG auto complete for the engine. Defaults to
8156
+ # false if not specified.
8157
+ # Corresponds to the JSON property `disablePrivateKgAutoComplete`
8158
+ # @return [Boolean]
8159
+ attr_accessor :disable_private_kg_auto_complete
8160
+ alias_method :disable_private_kg_auto_complete?, :disable_private_kg_auto_complete
8161
+
8162
+ # Whether to disable the private KG enrichment for the engine. Defaults to false
8163
+ # if not specified.
8164
+ # Corresponds to the JSON property `disablePrivateKgEnrichment`
8165
+ # @return [Boolean]
8166
+ attr_accessor :disable_private_kg_enrichment
8167
+ alias_method :disable_private_kg_enrichment?, :disable_private_kg_enrichment
8168
+
8169
+ # Whether to disable the private KG for query UI chips. Defaults to false if not
8170
+ # specified.
8171
+ # Corresponds to the JSON property `disablePrivateKgQueryUiChips`
8172
+ # @return [Boolean]
8173
+ attr_accessor :disable_private_kg_query_ui_chips
8174
+ alias_method :disable_private_kg_query_ui_chips?, :disable_private_kg_query_ui_chips
8175
+
8176
+ # Whether to disable the private KG query understanding for the engine. Defaults
8177
+ # to false if not specified.
8178
+ # Corresponds to the JSON property `disablePrivateKgQueryUnderstanding`
8179
+ # @return [Boolean]
8180
+ attr_accessor :disable_private_kg_query_understanding
8181
+ alias_method :disable_private_kg_query_understanding?, :disable_private_kg_query_understanding
8182
+
8183
+ def initialize(**args)
8184
+ update!(**args)
8185
+ end
8186
+
8187
+ # Update properties of this object
8188
+ def update!(**args)
8189
+ @disable_private_kg_auto_complete = args[:disable_private_kg_auto_complete] if args.key?(:disable_private_kg_auto_complete)
8190
+ @disable_private_kg_enrichment = args[:disable_private_kg_enrichment] if args.key?(:disable_private_kg_enrichment)
8191
+ @disable_private_kg_query_ui_chips = args[:disable_private_kg_query_ui_chips] if args.key?(:disable_private_kg_query_ui_chips)
8192
+ @disable_private_kg_query_understanding = args[:disable_private_kg_query_understanding] if args.key?(:disable_private_kg_query_understanding)
8193
+ end
8194
+ end
8195
+
8098
8196
  # Additional config specs for a Media Recommendation engine.
8099
8197
  class GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig
8100
8198
  include Google::Apis::Core::Hashable
@@ -8592,6 +8690,16 @@ module Google
8592
8690
  attr_accessor :enable_static_indexing_for_batch_ingestion
8593
8691
  alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
8594
8692
 
8693
+ # Optional. Names of the Group resources to use as a basis for the initial
8694
+ # patient filter, in format `projects/`project_id`/locations/`location_id`/
8695
+ # datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. The
8696
+ # filter group must be a FHIR resource name of type Group, and the filter will
8697
+ # be constructed from the direct members of the group which are Patient
8698
+ # resources.
8699
+ # Corresponds to the JSON property `initialFilterGroups`
8700
+ # @return [Array<String>]
8701
+ attr_accessor :initial_filter_groups
8702
+
8595
8703
  def initialize(**args)
8596
8704
  update!(**args)
8597
8705
  end
@@ -8600,6 +8708,7 @@ module Google
8600
8708
  def update!(**args)
8601
8709
  @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
8602
8710
  @enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
8711
+ @initial_filter_groups = args[:initial_filter_groups] if args.key?(:initial_filter_groups)
8603
8712
  end
8604
8713
  end
8605
8714
 
@@ -16116,6 +16225,47 @@ module Google
16116
16225
  end
16117
16226
  end
16118
16227
 
16228
+ # Request for DataStoreService.AddPatientFilter method.
16229
+ class GoogleCloudDiscoveryengineV1alphaAddPatientFilterRequest
16230
+ include Google::Apis::Core::Hashable
16231
+
16232
+ # Required. Full resource name of DataStore, such as `projects/`project`/
16233
+ # locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
16234
+ # If the caller does not have permission to access the DataStore, regardless of
16235
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the
16236
+ # requested DataStore does not exist, a NOT_FOUND error is returned. If the
16237
+ # requested DataStore already has a patient filter, an ALREADY_EXISTS error will
16238
+ # be returned.
16239
+ # Corresponds to the JSON property `dataStore`
16240
+ # @return [String]
16241
+ attr_accessor :data_store
16242
+
16243
+ # Required. Names of the Group resources to use as a basis for the patient
16244
+ # filter, in format `projects/`project_id`/locations/`location_id`/datasets/`
16245
+ # dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. if the caller
16246
+ # does not have permission to access the FHIR store, regardless of whether it
16247
+ # exists, PERMISSION_DENIED error is returned. If the discovery engine service
16248
+ # account does not have permission to access the FHIR store, regardless of
16249
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the group
16250
+ # is not found at the location, a RESOURCE_NOT_FOUND error will be returned. The
16251
+ # filter group must be a FHIR resource name of type Group, and the filter will
16252
+ # be constructed from the direct members of the group which are Patient
16253
+ # resources.
16254
+ # Corresponds to the JSON property `filterGroups`
16255
+ # @return [Array<String>]
16256
+ attr_accessor :filter_groups
16257
+
16258
+ def initialize(**args)
16259
+ update!(**args)
16260
+ end
16261
+
16262
+ # Update properties of this object
16263
+ def update!(**args)
16264
+ @data_store = args[:data_store] if args.key?(:data_store)
16265
+ @filter_groups = args[:filter_groups] if args.key?(:filter_groups)
16266
+ end
16267
+ end
16268
+
16119
16269
  # Configuration data for advance site search.
16120
16270
  class GoogleCloudDiscoveryengineV1alphaAdvancedSiteSearchConfig
16121
16271
  include Google::Apis::Core::Hashable
@@ -19662,6 +19812,31 @@ module Google
19662
19812
  end
19663
19813
  end
19664
19814
 
19815
+ # Request for DataStoreService.DeletePatientFilters method.
19816
+ class GoogleCloudDiscoveryengineV1alphaDeletePatientFiltersRequest
19817
+ include Google::Apis::Core::Hashable
19818
+
19819
+ # Required. Full resource name of DataStore, such as `projects/`project`/
19820
+ # locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
19821
+ # If the caller does not have permission to access the DataStore, regardless of
19822
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the
19823
+ # requested DataStore does not exist, a NOT_FOUND error is returned. If the
19824
+ # requested DataStore does not have a patient filter, a NOT_FOUND error will be
19825
+ # returned.
19826
+ # Corresponds to the JSON property `dataStore`
19827
+ # @return [String]
19828
+ attr_accessor :data_store
19829
+
19830
+ def initialize(**args)
19831
+ update!(**args)
19832
+ end
19833
+
19834
+ # Update properties of this object
19835
+ def update!(**args)
19836
+ @data_store = args[:data_store] if args.key?(:data_store)
19837
+ end
19838
+ end
19839
+
19665
19840
  # Metadata for DeleteSchema LRO.
19666
19841
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
19667
19842
  include Google::Apis::Core::Hashable
@@ -20259,6 +20434,11 @@ module Google
20259
20434
  # @return [String]
20260
20435
  attr_accessor :industry_vertical
20261
20436
 
20437
+ # Configuration message for the Knowledge Graph.
20438
+ # Corresponds to the JSON property `knowledgeGraphConfig`
20439
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig]
20440
+ attr_accessor :knowledge_graph_config
20441
+
20262
20442
  # Additional config specs for a Media Recommendation engine.
20263
20443
  # Corresponds to the JSON property `mediaRecommendationEngineConfig`
20264
20444
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig]
@@ -20327,6 +20507,7 @@ module Google
20327
20507
  @display_name = args[:display_name] if args.key?(:display_name)
20328
20508
  @features = args[:features] if args.key?(:features)
20329
20509
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
20510
+ @knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
20330
20511
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
20331
20512
  @model_configs = args[:model_configs] if args.key?(:model_configs)
20332
20513
  @name = args[:name] if args.key?(:name)
@@ -20472,6 +20653,98 @@ module Google
20472
20653
  end
20473
20654
  end
20474
20655
 
20656
+ # Configuration message for the Knowledge Graph.
20657
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig
20658
+ include Google::Apis::Core::Hashable
20659
+
20660
+ # Specify entity types to support.
20661
+ # Corresponds to the JSON property `cloudKnowledgeGraphTypes`
20662
+ # @return [Array<String>]
20663
+ attr_accessor :cloud_knowledge_graph_types
20664
+
20665
+ # Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false
20666
+ # if not specified.
20667
+ # Corresponds to the JSON property `enableCloudKnowledgeGraph`
20668
+ # @return [Boolean]
20669
+ attr_accessor :enable_cloud_knowledge_graph
20670
+ alias_method :enable_cloud_knowledge_graph?, :enable_cloud_knowledge_graph
20671
+
20672
+ # Whether to enable the Private Knowledge Graph for the engine. Defaults to
20673
+ # false if not specified.
20674
+ # Corresponds to the JSON property `enablePrivateKnowledgeGraph`
20675
+ # @return [Boolean]
20676
+ attr_accessor :enable_private_knowledge_graph
20677
+ alias_method :enable_private_knowledge_graph?, :enable_private_knowledge_graph
20678
+
20679
+ # Feature config for the Knowledge Graph.
20680
+ # Corresponds to the JSON property `featureConfig`
20681
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig]
20682
+ attr_accessor :feature_config
20683
+
20684
+ # Specify entity types to support.
20685
+ # Corresponds to the JSON property `privateKnowledgeGraphTypes`
20686
+ # @return [Array<String>]
20687
+ attr_accessor :private_knowledge_graph_types
20688
+
20689
+ def initialize(**args)
20690
+ update!(**args)
20691
+ end
20692
+
20693
+ # Update properties of this object
20694
+ def update!(**args)
20695
+ @cloud_knowledge_graph_types = args[:cloud_knowledge_graph_types] if args.key?(:cloud_knowledge_graph_types)
20696
+ @enable_cloud_knowledge_graph = args[:enable_cloud_knowledge_graph] if args.key?(:enable_cloud_knowledge_graph)
20697
+ @enable_private_knowledge_graph = args[:enable_private_knowledge_graph] if args.key?(:enable_private_knowledge_graph)
20698
+ @feature_config = args[:feature_config] if args.key?(:feature_config)
20699
+ @private_knowledge_graph_types = args[:private_knowledge_graph_types] if args.key?(:private_knowledge_graph_types)
20700
+ end
20701
+ end
20702
+
20703
+ # Feature config for the Knowledge Graph.
20704
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig
20705
+ include Google::Apis::Core::Hashable
20706
+
20707
+ # Whether to disable the private KG auto complete for the engine. Defaults to
20708
+ # false if not specified.
20709
+ # Corresponds to the JSON property `disablePrivateKgAutoComplete`
20710
+ # @return [Boolean]
20711
+ attr_accessor :disable_private_kg_auto_complete
20712
+ alias_method :disable_private_kg_auto_complete?, :disable_private_kg_auto_complete
20713
+
20714
+ # Whether to disable the private KG enrichment for the engine. Defaults to false
20715
+ # if not specified.
20716
+ # Corresponds to the JSON property `disablePrivateKgEnrichment`
20717
+ # @return [Boolean]
20718
+ attr_accessor :disable_private_kg_enrichment
20719
+ alias_method :disable_private_kg_enrichment?, :disable_private_kg_enrichment
20720
+
20721
+ # Whether to disable the private KG for query UI chips. Defaults to false if not
20722
+ # specified.
20723
+ # Corresponds to the JSON property `disablePrivateKgQueryUiChips`
20724
+ # @return [Boolean]
20725
+ attr_accessor :disable_private_kg_query_ui_chips
20726
+ alias_method :disable_private_kg_query_ui_chips?, :disable_private_kg_query_ui_chips
20727
+
20728
+ # Whether to disable the private KG query understanding for the engine. Defaults
20729
+ # to false if not specified.
20730
+ # Corresponds to the JSON property `disablePrivateKgQueryUnderstanding`
20731
+ # @return [Boolean]
20732
+ attr_accessor :disable_private_kg_query_understanding
20733
+ alias_method :disable_private_kg_query_understanding?, :disable_private_kg_query_understanding
20734
+
20735
+ def initialize(**args)
20736
+ update!(**args)
20737
+ end
20738
+
20739
+ # Update properties of this object
20740
+ def update!(**args)
20741
+ @disable_private_kg_auto_complete = args[:disable_private_kg_auto_complete] if args.key?(:disable_private_kg_auto_complete)
20742
+ @disable_private_kg_enrichment = args[:disable_private_kg_enrichment] if args.key?(:disable_private_kg_enrichment)
20743
+ @disable_private_kg_query_ui_chips = args[:disable_private_kg_query_ui_chips] if args.key?(:disable_private_kg_query_ui_chips)
20744
+ @disable_private_kg_query_understanding = args[:disable_private_kg_query_understanding] if args.key?(:disable_private_kg_query_understanding)
20745
+ end
20746
+ end
20747
+
20475
20748
  # Additional config specs for a Media Recommendation engine.
20476
20749
  class GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig
20477
20750
  include Google::Apis::Core::Hashable
@@ -21148,6 +21421,16 @@ module Google
21148
21421
  attr_accessor :enable_static_indexing_for_batch_ingestion
21149
21422
  alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
21150
21423
 
21424
+ # Optional. Names of the Group resources to use as a basis for the initial
21425
+ # patient filter, in format `projects/`project_id`/locations/`location_id`/
21426
+ # datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. The
21427
+ # filter group must be a FHIR resource name of type Group, and the filter will
21428
+ # be constructed from the direct members of the group which are Patient
21429
+ # resources.
21430
+ # Corresponds to the JSON property `initialFilterGroups`
21431
+ # @return [Array<String>]
21432
+ attr_accessor :initial_filter_groups
21433
+
21151
21434
  def initialize(**args)
21152
21435
  update!(**args)
21153
21436
  end
@@ -21156,6 +21439,7 @@ module Google
21156
21439
  def update!(**args)
21157
21440
  @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
21158
21441
  @enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
21442
+ @initial_filter_groups = args[:initial_filter_groups] if args.key?(:initial_filter_groups)
21159
21443
  end
21160
21444
  end
21161
21445
 
@@ -22019,6 +22303,45 @@ module Google
22019
22303
  end
22020
22304
  end
22021
22305
 
22306
+ # Metadata related to the progress of the various patient filter operations.
22307
+ # This will be returned by the google.longrunning.Operation.metadata field.
22308
+ class GoogleCloudDiscoveryengineV1alphaPatientFilterOperationMetadata
22309
+ include Google::Apis::Core::Hashable
22310
+
22311
+ # Operation create time.
22312
+ # Corresponds to the JSON property `createTime`
22313
+ # @return [String]
22314
+ attr_accessor :create_time
22315
+
22316
+ # The number of patient IDs added to the patient filter.
22317
+ # Corresponds to the JSON property `filtersAddedCount`
22318
+ # @return [Fixnum]
22319
+ attr_accessor :filters_added_count
22320
+
22321
+ # The number of patient IDs removed from the patient filter.
22322
+ # Corresponds to the JSON property `filtersRemovedCount`
22323
+ # @return [Fixnum]
22324
+ attr_accessor :filters_removed_count
22325
+
22326
+ # Operation last update time. If the operation is done, this is also the finish
22327
+ # time.
22328
+ # Corresponds to the JSON property `updateTime`
22329
+ # @return [String]
22330
+ attr_accessor :update_time
22331
+
22332
+ def initialize(**args)
22333
+ update!(**args)
22334
+ end
22335
+
22336
+ # Update properties of this object
22337
+ def update!(**args)
22338
+ @create_time = args[:create_time] if args.key?(:create_time)
22339
+ @filters_added_count = args[:filters_added_count] if args.key?(:filters_added_count)
22340
+ @filters_removed_count = args[:filters_removed_count] if args.key?(:filters_removed_count)
22341
+ @update_time = args[:update_time] if args.key?(:update_time)
22342
+ end
22343
+ end
22344
+
22022
22345
  # Metadata and configurations for a Google Cloud project in the service.
22023
22346
  class GoogleCloudDiscoveryengineV1alphaProject
22024
22347
  include Google::Apis::Core::Hashable
@@ -22828,6 +23151,88 @@ module Google
22828
23151
  end
22829
23152
  end
22830
23153
 
23154
+ # Request for DataStoreService.RemovePatientFilter method.
23155
+ class GoogleCloudDiscoveryengineV1alphaRemovePatientFilterRequest
23156
+ include Google::Apis::Core::Hashable
23157
+
23158
+ # Required. Full resource name of DataStore, such as `projects/`project`/
23159
+ # locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
23160
+ # If the caller does not have permission to access the DataStore, regardless of
23161
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the
23162
+ # requested DataStore does not exist, a NOT_FOUND error is returned. If the
23163
+ # requested DataStore does not have a patient filter, a NOT_FOUND error will be
23164
+ # returned
23165
+ # Corresponds to the JSON property `dataStore`
23166
+ # @return [String]
23167
+ attr_accessor :data_store
23168
+
23169
+ # Required. Names of the Group resources to use as a basis for the list of
23170
+ # patients to remove from the patient filter, in format `projects/`project_id`/
23171
+ # locations/`location_id`/datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/
23172
+ # Group/`group_id``. if the caller does not have permission to access the FHIR
23173
+ # store, regardless of whether it exists, PERMISSION_DENIED error is returned.
23174
+ # If the discovery engine service account does not have permission to access the
23175
+ # FHIR store, regardless of whether or not it exists, a PERMISSION_DENIED error
23176
+ # is returned. If the group is not found at the location, a RESOURCE_NOT_FOUND
23177
+ # error will be returned. The filter group must be a FHIR resource name of type
23178
+ # Group, and the list of IDs to remove will be constructed from the direct
23179
+ # members of the group which are Patient resources.
23180
+ # Corresponds to the JSON property `filterGroups`
23181
+ # @return [Array<String>]
23182
+ attr_accessor :filter_groups
23183
+
23184
+ def initialize(**args)
23185
+ update!(**args)
23186
+ end
23187
+
23188
+ # Update properties of this object
23189
+ def update!(**args)
23190
+ @data_store = args[:data_store] if args.key?(:data_store)
23191
+ @filter_groups = args[:filter_groups] if args.key?(:filter_groups)
23192
+ end
23193
+ end
23194
+
23195
+ # Request for DataStoreService.ReplacePatientFilter method.
23196
+ class GoogleCloudDiscoveryengineV1alphaReplacePatientFilterRequest
23197
+ include Google::Apis::Core::Hashable
23198
+
23199
+ # Required. Full resource name of DataStore, such as `projects/`project`/
23200
+ # locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
23201
+ # If the caller does not have permission to access the DataStore, regardless of
23202
+ # whether or not it exists, a PERMISSION_DENIED error is returned. If the
23203
+ # requested DataStore does not exist, a NOT_FOUND error is returned. If the
23204
+ # requested DataStore already has a patient filter, an ALREADY_EXISTS error will
23205
+ # be returned.
23206
+ # Corresponds to the JSON property `dataStore`
23207
+ # @return [String]
23208
+ attr_accessor :data_store
23209
+
23210
+ # Required. Names of the Group resources to use as a basis for the list of
23211
+ # patients for the new patient filter, in format `projects/`project_id`/
23212
+ # locations/`location_id`/datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/
23213
+ # Group/`group_id``. if the caller does not have permission to access the FHIR
23214
+ # store, regardless of whether it exists, PERMISSION_DENIED error is returned.
23215
+ # If the discovery engine service account does not have permission to access the
23216
+ # FHIR store, regardless of whether or not it exists, a PERMISSION_DENIED error
23217
+ # is returned. If the group is not found at the location, a RESOURCE_NOT_FOUND
23218
+ # error will be returned. The filter group must be a FHIR resource name of type
23219
+ # Group, and the new filter will be constructed from the direct members of the
23220
+ # group which are Patient resources.
23221
+ # Corresponds to the JSON property `filterGroups`
23222
+ # @return [Array<String>]
23223
+ attr_accessor :filter_groups
23224
+
23225
+ def initialize(**args)
23226
+ update!(**args)
23227
+ end
23228
+
23229
+ # Update properties of this object
23230
+ def update!(**args)
23231
+ @data_store = args[:data_store] if args.key?(:data_store)
23232
+ @filter_groups = args[:filter_groups] if args.key?(:filter_groups)
23233
+ end
23234
+ end
23235
+
22831
23236
  # Safety rating corresponding to the generated content.
22832
23237
  class GoogleCloudDiscoveryengineV1alphaSafetyRating
22833
23238
  include Google::Apis::Core::Hashable
@@ -27063,6 +27468,11 @@ module Google
27063
27468
  # @return [String]
27064
27469
  attr_accessor :industry_vertical
27065
27470
 
27471
+ # Configuration message for the Knowledge Graph.
27472
+ # Corresponds to the JSON property `knowledgeGraphConfig`
27473
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig]
27474
+ attr_accessor :knowledge_graph_config
27475
+
27066
27476
  # Additional config specs for a Media Recommendation engine.
27067
27477
  # Corresponds to the JSON property `mediaRecommendationEngineConfig`
27068
27478
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig]
@@ -27121,6 +27531,7 @@ module Google
27121
27531
  @display_name = args[:display_name] if args.key?(:display_name)
27122
27532
  @features = args[:features] if args.key?(:features)
27123
27533
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
27534
+ @knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
27124
27535
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
27125
27536
  @model_configs = args[:model_configs] if args.key?(:model_configs)
27126
27537
  @name = args[:name] if args.key?(:name)
@@ -27264,6 +27675,98 @@ module Google
27264
27675
  end
27265
27676
  end
27266
27677
 
27678
+ # Configuration message for the Knowledge Graph.
27679
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig
27680
+ include Google::Apis::Core::Hashable
27681
+
27682
+ # Specify entity types to support.
27683
+ # Corresponds to the JSON property `cloudKnowledgeGraphTypes`
27684
+ # @return [Array<String>]
27685
+ attr_accessor :cloud_knowledge_graph_types
27686
+
27687
+ # Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false
27688
+ # if not specified.
27689
+ # Corresponds to the JSON property `enableCloudKnowledgeGraph`
27690
+ # @return [Boolean]
27691
+ attr_accessor :enable_cloud_knowledge_graph
27692
+ alias_method :enable_cloud_knowledge_graph?, :enable_cloud_knowledge_graph
27693
+
27694
+ # Whether to enable the Private Knowledge Graph for the engine. Defaults to
27695
+ # false if not specified.
27696
+ # Corresponds to the JSON property `enablePrivateKnowledgeGraph`
27697
+ # @return [Boolean]
27698
+ attr_accessor :enable_private_knowledge_graph
27699
+ alias_method :enable_private_knowledge_graph?, :enable_private_knowledge_graph
27700
+
27701
+ # Feature config for the Knowledge Graph.
27702
+ # Corresponds to the JSON property `featureConfig`
27703
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig]
27704
+ attr_accessor :feature_config
27705
+
27706
+ # Specify entity types to support.
27707
+ # Corresponds to the JSON property `privateKnowledgeGraphTypes`
27708
+ # @return [Array<String>]
27709
+ attr_accessor :private_knowledge_graph_types
27710
+
27711
+ def initialize(**args)
27712
+ update!(**args)
27713
+ end
27714
+
27715
+ # Update properties of this object
27716
+ def update!(**args)
27717
+ @cloud_knowledge_graph_types = args[:cloud_knowledge_graph_types] if args.key?(:cloud_knowledge_graph_types)
27718
+ @enable_cloud_knowledge_graph = args[:enable_cloud_knowledge_graph] if args.key?(:enable_cloud_knowledge_graph)
27719
+ @enable_private_knowledge_graph = args[:enable_private_knowledge_graph] if args.key?(:enable_private_knowledge_graph)
27720
+ @feature_config = args[:feature_config] if args.key?(:feature_config)
27721
+ @private_knowledge_graph_types = args[:private_knowledge_graph_types] if args.key?(:private_knowledge_graph_types)
27722
+ end
27723
+ end
27724
+
27725
+ # Feature config for the Knowledge Graph.
27726
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig
27727
+ include Google::Apis::Core::Hashable
27728
+
27729
+ # Whether to disable the private KG auto complete for the engine. Defaults to
27730
+ # false if not specified.
27731
+ # Corresponds to the JSON property `disablePrivateKgAutoComplete`
27732
+ # @return [Boolean]
27733
+ attr_accessor :disable_private_kg_auto_complete
27734
+ alias_method :disable_private_kg_auto_complete?, :disable_private_kg_auto_complete
27735
+
27736
+ # Whether to disable the private KG enrichment for the engine. Defaults to false
27737
+ # if not specified.
27738
+ # Corresponds to the JSON property `disablePrivateKgEnrichment`
27739
+ # @return [Boolean]
27740
+ attr_accessor :disable_private_kg_enrichment
27741
+ alias_method :disable_private_kg_enrichment?, :disable_private_kg_enrichment
27742
+
27743
+ # Whether to disable the private KG for query UI chips. Defaults to false if not
27744
+ # specified.
27745
+ # Corresponds to the JSON property `disablePrivateKgQueryUiChips`
27746
+ # @return [Boolean]
27747
+ attr_accessor :disable_private_kg_query_ui_chips
27748
+ alias_method :disable_private_kg_query_ui_chips?, :disable_private_kg_query_ui_chips
27749
+
27750
+ # Whether to disable the private KG query understanding for the engine. Defaults
27751
+ # to false if not specified.
27752
+ # Corresponds to the JSON property `disablePrivateKgQueryUnderstanding`
27753
+ # @return [Boolean]
27754
+ attr_accessor :disable_private_kg_query_understanding
27755
+ alias_method :disable_private_kg_query_understanding?, :disable_private_kg_query_understanding
27756
+
27757
+ def initialize(**args)
27758
+ update!(**args)
27759
+ end
27760
+
27761
+ # Update properties of this object
27762
+ def update!(**args)
27763
+ @disable_private_kg_auto_complete = args[:disable_private_kg_auto_complete] if args.key?(:disable_private_kg_auto_complete)
27764
+ @disable_private_kg_enrichment = args[:disable_private_kg_enrichment] if args.key?(:disable_private_kg_enrichment)
27765
+ @disable_private_kg_query_ui_chips = args[:disable_private_kg_query_ui_chips] if args.key?(:disable_private_kg_query_ui_chips)
27766
+ @disable_private_kg_query_understanding = args[:disable_private_kg_query_understanding] if args.key?(:disable_private_kg_query_understanding)
27767
+ end
27768
+ end
27769
+
27267
27770
  # Additional config specs for a Media Recommendation engine.
27268
27771
  class GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig
27269
27772
  include Google::Apis::Core::Hashable
@@ -27586,6 +28089,16 @@ module Google
27586
28089
  attr_accessor :enable_static_indexing_for_batch_ingestion
27587
28090
  alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
27588
28091
 
28092
+ # Optional. Names of the Group resources to use as a basis for the initial
28093
+ # patient filter, in format `projects/`project_id`/locations/`location_id`/
28094
+ # datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. The
28095
+ # filter group must be a FHIR resource name of type Group, and the filter will
28096
+ # be constructed from the direct members of the group which are Patient
28097
+ # resources.
28098
+ # Corresponds to the JSON property `initialFilterGroups`
28099
+ # @return [Array<String>]
28100
+ attr_accessor :initial_filter_groups
28101
+
27589
28102
  def initialize(**args)
27590
28103
  update!(**args)
27591
28104
  end
@@ -27594,6 +28107,7 @@ module Google
27594
28107
  def update!(**args)
27595
28108
  @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
27596
28109
  @enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
28110
+ @initial_filter_groups = args[:initial_filter_groups] if args.key?(:initial_filter_groups)
27597
28111
  end
27598
28112
  end
27599
28113
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1
18
18
  # Version of the google-apis-discoveryengine_v1 gem
19
- GEM_VERSION = "0.64.0"
19
+ GEM_VERSION = "0.65.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
@@ -1288,6 +1288,18 @@ module Google
1288
1288
  include Google::Apis::Core::JsonObjectSupport
1289
1289
  end
1290
1290
 
1291
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig
1292
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1293
+
1294
+ include Google::Apis::Core::JsonObjectSupport
1295
+ end
1296
+
1297
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig
1298
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1299
+
1300
+ include Google::Apis::Core::JsonObjectSupport
1301
+ end
1302
+
1291
1303
  class GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig
1292
1304
  class Representation < Google::Apis::Core::JsonRepresentation; end
1293
1305
 
@@ -2476,6 +2488,12 @@ module Google
2476
2488
  include Google::Apis::Core::JsonObjectSupport
2477
2489
  end
2478
2490
 
2491
+ class GoogleCloudDiscoveryengineV1alphaAddPatientFilterRequest
2492
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2493
+
2494
+ include Google::Apis::Core::JsonObjectSupport
2495
+ end
2496
+
2479
2497
  class GoogleCloudDiscoveryengineV1alphaAdvancedSiteSearchConfig
2480
2498
  class Representation < Google::Apis::Core::JsonRepresentation; end
2481
2499
 
@@ -3016,6 +3034,12 @@ module Google
3016
3034
  include Google::Apis::Core::JsonObjectSupport
3017
3035
  end
3018
3036
 
3037
+ class GoogleCloudDiscoveryengineV1alphaDeletePatientFiltersRequest
3038
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3039
+
3040
+ include Google::Apis::Core::JsonObjectSupport
3041
+ end
3042
+
3019
3043
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
3020
3044
  class Representation < Google::Apis::Core::JsonRepresentation; end
3021
3045
 
@@ -3154,6 +3178,18 @@ module Google
3154
3178
  include Google::Apis::Core::JsonObjectSupport
3155
3179
  end
3156
3180
 
3181
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig
3182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3183
+
3184
+ include Google::Apis::Core::JsonObjectSupport
3185
+ end
3186
+
3187
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig
3188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3189
+
3190
+ include Google::Apis::Core::JsonObjectSupport
3191
+ end
3192
+
3157
3193
  class GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig
3158
3194
  class Representation < Google::Apis::Core::JsonRepresentation; end
3159
3195
 
@@ -3412,6 +3448,12 @@ module Google
3412
3448
  include Google::Apis::Core::JsonObjectSupport
3413
3449
  end
3414
3450
 
3451
+ class GoogleCloudDiscoveryengineV1alphaPatientFilterOperationMetadata
3452
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3453
+
3454
+ include Google::Apis::Core::JsonObjectSupport
3455
+ end
3456
+
3415
3457
  class GoogleCloudDiscoveryengineV1alphaProject
3416
3458
  class Representation < Google::Apis::Core::JsonRepresentation; end
3417
3459
 
@@ -3556,6 +3598,18 @@ module Google
3556
3598
  include Google::Apis::Core::JsonObjectSupport
3557
3599
  end
3558
3600
 
3601
+ class GoogleCloudDiscoveryengineV1alphaRemovePatientFilterRequest
3602
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3603
+
3604
+ include Google::Apis::Core::JsonObjectSupport
3605
+ end
3606
+
3607
+ class GoogleCloudDiscoveryengineV1alphaReplacePatientFilterRequest
3608
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3609
+
3610
+ include Google::Apis::Core::JsonObjectSupport
3611
+ end
3612
+
3559
3613
  class GoogleCloudDiscoveryengineV1alphaSafetyRating
3560
3614
  class Representation < Google::Apis::Core::JsonRepresentation; end
3561
3615
 
@@ -4222,6 +4276,18 @@ module Google
4222
4276
  include Google::Apis::Core::JsonObjectSupport
4223
4277
  end
4224
4278
 
4279
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig
4280
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4281
+
4282
+ include Google::Apis::Core::JsonObjectSupport
4283
+ end
4284
+
4285
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig
4286
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4287
+
4288
+ include Google::Apis::Core::JsonObjectSupport
4289
+ end
4290
+
4225
4291
  class GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig
4226
4292
  class Representation < Google::Apis::Core::JsonRepresentation; end
4227
4293
 
@@ -7017,6 +7083,8 @@ module Google
7017
7083
  property :display_name, as: 'displayName'
7018
7084
  hash :features, as: 'features'
7019
7085
  property :industry_vertical, as: 'industryVertical'
7086
+ property :knowledge_graph_config, as: 'knowledgeGraphConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig::Representation
7087
+
7020
7088
  property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig::Representation
7021
7089
 
7022
7090
  hash :model_configs, as: 'modelConfigs'
@@ -7062,6 +7130,28 @@ module Google
7062
7130
  end
7063
7131
  end
7064
7132
 
7133
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig
7134
+ # @private
7135
+ class Representation < Google::Apis::Core::JsonRepresentation
7136
+ collection :cloud_knowledge_graph_types, as: 'cloudKnowledgeGraphTypes'
7137
+ property :enable_cloud_knowledge_graph, as: 'enableCloudKnowledgeGraph'
7138
+ property :enable_private_knowledge_graph, as: 'enablePrivateKnowledgeGraph'
7139
+ property :feature_config, as: 'featureConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig::Representation
7140
+
7141
+ collection :private_knowledge_graph_types, as: 'privateKnowledgeGraphTypes'
7142
+ end
7143
+ end
7144
+
7145
+ class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig
7146
+ # @private
7147
+ class Representation < Google::Apis::Core::JsonRepresentation
7148
+ property :disable_private_kg_auto_complete, as: 'disablePrivateKgAutoComplete'
7149
+ property :disable_private_kg_enrichment, as: 'disablePrivateKgEnrichment'
7150
+ property :disable_private_kg_query_ui_chips, as: 'disablePrivateKgQueryUiChips'
7151
+ property :disable_private_kg_query_understanding, as: 'disablePrivateKgQueryUnderstanding'
7152
+ end
7153
+ end
7154
+
7065
7155
  class GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig
7066
7156
  # @private
7067
7157
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7196,6 +7286,7 @@ module Google
7196
7286
  class Representation < Google::Apis::Core::JsonRepresentation
7197
7287
  property :enable_configurable_schema, as: 'enableConfigurableSchema'
7198
7288
  property :enable_static_indexing_for_batch_ingestion, as: 'enableStaticIndexingForBatchIngestion'
7289
+ collection :initial_filter_groups, as: 'initialFilterGroups'
7199
7290
  end
7200
7291
  end
7201
7292
 
@@ -9133,6 +9224,14 @@ module Google
9133
9224
  end
9134
9225
  end
9135
9226
 
9227
+ class GoogleCloudDiscoveryengineV1alphaAddPatientFilterRequest
9228
+ # @private
9229
+ class Representation < Google::Apis::Core::JsonRepresentation
9230
+ property :data_store, as: 'dataStore'
9231
+ collection :filter_groups, as: 'filterGroups'
9232
+ end
9233
+ end
9234
+
9136
9235
  class GoogleCloudDiscoveryengineV1alphaAdvancedSiteSearchConfig
9137
9236
  # @private
9138
9237
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10112,6 +10211,13 @@ module Google
10112
10211
  end
10113
10212
  end
10114
10213
 
10214
+ class GoogleCloudDiscoveryengineV1alphaDeletePatientFiltersRequest
10215
+ # @private
10216
+ class Representation < Google::Apis::Core::JsonRepresentation
10217
+ property :data_store, as: 'dataStore'
10218
+ end
10219
+ end
10220
+
10115
10221
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
10116
10222
  # @private
10117
10223
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10286,6 +10392,8 @@ module Google
10286
10392
  property :display_name, as: 'displayName'
10287
10393
  hash :features, as: 'features'
10288
10394
  property :industry_vertical, as: 'industryVertical'
10395
+ property :knowledge_graph_config, as: 'knowledgeGraphConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig::Representation
10396
+
10289
10397
  property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig::Representation
10290
10398
 
10291
10399
  hash :model_configs, as: 'modelConfigs'
@@ -10335,6 +10443,28 @@ module Google
10335
10443
  end
10336
10444
  end
10337
10445
 
10446
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig
10447
+ # @private
10448
+ class Representation < Google::Apis::Core::JsonRepresentation
10449
+ collection :cloud_knowledge_graph_types, as: 'cloudKnowledgeGraphTypes'
10450
+ property :enable_cloud_knowledge_graph, as: 'enableCloudKnowledgeGraph'
10451
+ property :enable_private_knowledge_graph, as: 'enablePrivateKnowledgeGraph'
10452
+ property :feature_config, as: 'featureConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig::Representation
10453
+
10454
+ collection :private_knowledge_graph_types, as: 'privateKnowledgeGraphTypes'
10455
+ end
10456
+ end
10457
+
10458
+ class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig
10459
+ # @private
10460
+ class Representation < Google::Apis::Core::JsonRepresentation
10461
+ property :disable_private_kg_auto_complete, as: 'disablePrivateKgAutoComplete'
10462
+ property :disable_private_kg_enrichment, as: 'disablePrivateKgEnrichment'
10463
+ property :disable_private_kg_query_ui_chips, as: 'disablePrivateKgQueryUiChips'
10464
+ property :disable_private_kg_query_understanding, as: 'disablePrivateKgQueryUnderstanding'
10465
+ end
10466
+ end
10467
+
10338
10468
  class GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig
10339
10469
  # @private
10340
10470
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10508,6 +10638,7 @@ module Google
10508
10638
  class Representation < Google::Apis::Core::JsonRepresentation
10509
10639
  property :enable_configurable_schema, as: 'enableConfigurableSchema'
10510
10640
  property :enable_static_indexing_for_batch_ingestion, as: 'enableStaticIndexingForBatchIngestion'
10641
+ collection :initial_filter_groups, as: 'initialFilterGroups'
10511
10642
  end
10512
10643
  end
10513
10644
 
@@ -10752,6 +10883,16 @@ module Google
10752
10883
  end
10753
10884
  end
10754
10885
 
10886
+ class GoogleCloudDiscoveryengineV1alphaPatientFilterOperationMetadata
10887
+ # @private
10888
+ class Representation < Google::Apis::Core::JsonRepresentation
10889
+ property :create_time, as: 'createTime'
10890
+ property :filters_added_count, :numeric_string => true, as: 'filtersAddedCount'
10891
+ property :filters_removed_count, :numeric_string => true, as: 'filtersRemovedCount'
10892
+ property :update_time, as: 'updateTime'
10893
+ end
10894
+ end
10895
+
10755
10896
  class GoogleCloudDiscoveryengineV1alphaProject
10756
10897
  # @private
10757
10898
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10983,6 +11124,22 @@ module Google
10983
11124
  end
10984
11125
  end
10985
11126
 
11127
+ class GoogleCloudDiscoveryengineV1alphaRemovePatientFilterRequest
11128
+ # @private
11129
+ class Representation < Google::Apis::Core::JsonRepresentation
11130
+ property :data_store, as: 'dataStore'
11131
+ collection :filter_groups, as: 'filterGroups'
11132
+ end
11133
+ end
11134
+
11135
+ class GoogleCloudDiscoveryengineV1alphaReplacePatientFilterRequest
11136
+ # @private
11137
+ class Representation < Google::Apis::Core::JsonRepresentation
11138
+ property :data_store, as: 'dataStore'
11139
+ collection :filter_groups, as: 'filterGroups'
11140
+ end
11141
+ end
11142
+
10986
11143
  class GoogleCloudDiscoveryengineV1alphaSafetyRating
10987
11144
  # @private
10988
11145
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12071,6 +12228,8 @@ module Google
12071
12228
  property :display_name, as: 'displayName'
12072
12229
  hash :features, as: 'features'
12073
12230
  property :industry_vertical, as: 'industryVertical'
12231
+ property :knowledge_graph_config, as: 'knowledgeGraphConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig::Representation
12232
+
12074
12233
  property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig::Representation
12075
12234
 
12076
12235
  hash :model_configs, as: 'modelConfigs'
@@ -12116,6 +12275,28 @@ module Google
12116
12275
  end
12117
12276
  end
12118
12277
 
12278
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig
12279
+ # @private
12280
+ class Representation < Google::Apis::Core::JsonRepresentation
12281
+ collection :cloud_knowledge_graph_types, as: 'cloudKnowledgeGraphTypes'
12282
+ property :enable_cloud_knowledge_graph, as: 'enableCloudKnowledgeGraph'
12283
+ property :enable_private_knowledge_graph, as: 'enablePrivateKnowledgeGraph'
12284
+ property :feature_config, as: 'featureConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig::Representation
12285
+
12286
+ collection :private_knowledge_graph_types, as: 'privateKnowledgeGraphTypes'
12287
+ end
12288
+ end
12289
+
12290
+ class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig
12291
+ # @private
12292
+ class Representation < Google::Apis::Core::JsonRepresentation
12293
+ property :disable_private_kg_auto_complete, as: 'disablePrivateKgAutoComplete'
12294
+ property :disable_private_kg_enrichment, as: 'disablePrivateKgEnrichment'
12295
+ property :disable_private_kg_query_ui_chips, as: 'disablePrivateKgQueryUiChips'
12296
+ property :disable_private_kg_query_understanding, as: 'disablePrivateKgQueryUnderstanding'
12297
+ end
12298
+ end
12299
+
12119
12300
  class GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig
12120
12301
  # @private
12121
12302
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12210,6 +12391,7 @@ module Google
12210
12391
  class Representation < Google::Apis::Core::JsonRepresentation
12211
12392
  property :enable_configurable_schema, as: 'enableConfigurableSchema'
12212
12393
  property :enable_static_indexing_for_batch_ingestion, as: 'enableStaticIndexingForBatchIngestion'
12394
+ collection :initial_filter_groups, as: 'initialFilterGroups'
12213
12395
  end
12214
12396
  end
12215
12397
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.64.0
4
+ version: 0.65.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.64.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.65.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
62
62
  rdoc_options: []
63
63
  require_paths: