google-apis-discoveryengine_v1 0.63.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: ef48a739c95e9cce417e3295c3f5a383998222c343045613436fbb5f1e668fc3
4
- data.tar.gz: b0410b06678aff41e9278acd571dfc91b05c7b3b366cb3e52d908c22b7f4deaf
3
+ metadata.gz: 666fcf2062edd73f449c7e92471bd63649dbc1af100e33de0690e35d49ac5a69
4
+ data.tar.gz: 5cd7cac1055feb8eb581991884c730e61ebb615de771d76b4121520ee0c7b75b
5
5
  SHA512:
6
- metadata.gz: 6d1450b6dd2e5033aea2182c4525f5f23a1f269d195cc773d0ec038f6771193b9807d2e24273e0ebb104da5681fd40dab54653a2ed61fbea2d4f51d46f100fe4
7
- data.tar.gz: 267dd3c74d820966e2c4dd462db48250ec1349f15788353642fc866602a4ee86c4384a77a454dfec38ff3250930dbf843ce40e2fe7d556f00af160e40222ce94
6
+ metadata.gz: 27fa6a7526ce7ed917fe251541f45e07b57dd32660c4f3084050c7de7e1a341871faf3c481442b34135211c0f699e7788c3f29087ca2d7617cf18d825376746a
7
+ data.tar.gz: be21fd32b5e58e9a938018afb21b1c21a1dd6785f25775488a498e0087784f3023b00a4ac59e16916cc754802c8fdbac585b27809e71466eb14cd710e1758776
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.64.0 (2026-01-11)
8
+
9
+ * Regenerated from discovery document revision 20260107
10
+
3
11
  ### v0.63.0 (2025-12-28)
4
12
 
5
13
  * Regenerated from discovery document revision 20251221
@@ -3245,6 +3245,19 @@ module Google
3245
3245
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantCustomerPolicy]
3246
3246
  attr_accessor :customer_policy
3247
3247
 
3248
+ # Optional. This field controls the default web grounding toggle for end users
3249
+ # if `web_grounding_type` is set to `WEB_GROUNDING_TYPE_GOOGLE_SEARCH` or `
3250
+ # WEB_GROUNDING_TYPE_ENTERPRISE_WEB_SEARCH`. By default, this field is set to
3251
+ # false. If `web_grounding_type` is `WEB_GROUNDING_TYPE_GOOGLE_SEARCH` or `
3252
+ # WEB_GROUNDING_TYPE_ENTERPRISE_WEB_SEARCH`, end users will have web grounding
3253
+ # enabled by default on UI. If true, grounding toggle will be disabled by
3254
+ # default on UI. End users can still enable web grounding in the UI if web
3255
+ # grounding is enabled.
3256
+ # Corresponds to the JSON property `defaultWebGroundingToggleOff`
3257
+ # @return [Boolean]
3258
+ attr_accessor :default_web_grounding_toggle_off
3259
+ alias_method :default_web_grounding_toggle_off?, :default_web_grounding_toggle_off
3260
+
3248
3261
  # Optional. Description for additional information. Expected to be shown on the
3249
3262
  # configuration UI, not to the users of the assistant.
3250
3263
  # Corresponds to the JSON property `description`
@@ -3294,6 +3307,7 @@ module Google
3294
3307
  # Update properties of this object
3295
3308
  def update!(**args)
3296
3309
  @customer_policy = args[:customer_policy] if args.key?(:customer_policy)
3310
+ @default_web_grounding_toggle_off = args[:default_web_grounding_toggle_off] if args.key?(:default_web_grounding_toggle_off)
3297
3311
  @description = args[:description] if args.key?(:description)
3298
3312
  @display_name = args[:display_name] if args.key?(:display_name)
3299
3313
  @enabled_tools = args[:enabled_tools] if args.key?(:enabled_tools)
@@ -7880,6 +7894,11 @@ module Google
7880
7894
  # @return [String]
7881
7895
  attr_accessor :industry_vertical
7882
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
+
7883
7902
  # Additional config specs for a Media Recommendation engine.
7884
7903
  # Corresponds to the JSON property `mediaRecommendationEngineConfig`
7885
7904
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig]
@@ -7938,6 +7957,7 @@ module Google
7938
7957
  @display_name = args[:display_name] if args.key?(:display_name)
7939
7958
  @features = args[:features] if args.key?(:features)
7940
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)
7941
7961
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
7942
7962
  @model_configs = args[:model_configs] if args.key?(:model_configs)
7943
7963
  @name = args[:name] if args.key?(:name)
@@ -8081,6 +8101,98 @@ module Google
8081
8101
  end
8082
8102
  end
8083
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
+
8084
8196
  # Additional config specs for a Media Recommendation engine.
8085
8197
  class GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig
8086
8198
  include Google::Apis::Core::Hashable
@@ -8578,6 +8690,16 @@ module Google
8578
8690
  attr_accessor :enable_static_indexing_for_batch_ingestion
8579
8691
  alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
8580
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
+
8581
8703
  def initialize(**args)
8582
8704
  update!(**args)
8583
8705
  end
@@ -8586,6 +8708,7 @@ module Google
8586
8708
  def update!(**args)
8587
8709
  @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
8588
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)
8589
8712
  end
8590
8713
  end
8591
8714
 
@@ -16102,6 +16225,47 @@ module Google
16102
16225
  end
16103
16226
  end
16104
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
+
16105
16269
  # Configuration data for advance site search.
16106
16270
  class GoogleCloudDiscoveryengineV1alphaAdvancedSiteSearchConfig
16107
16271
  include Google::Apis::Core::Hashable
@@ -19648,6 +19812,31 @@ module Google
19648
19812
  end
19649
19813
  end
19650
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
+
19651
19840
  # Metadata for DeleteSchema LRO.
19652
19841
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
19653
19842
  include Google::Apis::Core::Hashable
@@ -20245,6 +20434,11 @@ module Google
20245
20434
  # @return [String]
20246
20435
  attr_accessor :industry_vertical
20247
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
+
20248
20442
  # Additional config specs for a Media Recommendation engine.
20249
20443
  # Corresponds to the JSON property `mediaRecommendationEngineConfig`
20250
20444
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig]
@@ -20313,6 +20507,7 @@ module Google
20313
20507
  @display_name = args[:display_name] if args.key?(:display_name)
20314
20508
  @features = args[:features] if args.key?(:features)
20315
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)
20316
20511
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
20317
20512
  @model_configs = args[:model_configs] if args.key?(:model_configs)
20318
20513
  @name = args[:name] if args.key?(:name)
@@ -20458,6 +20653,98 @@ module Google
20458
20653
  end
20459
20654
  end
20460
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
+
20461
20748
  # Additional config specs for a Media Recommendation engine.
20462
20749
  class GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig
20463
20750
  include Google::Apis::Core::Hashable
@@ -21134,6 +21421,16 @@ module Google
21134
21421
  attr_accessor :enable_static_indexing_for_batch_ingestion
21135
21422
  alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
21136
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
+
21137
21434
  def initialize(**args)
21138
21435
  update!(**args)
21139
21436
  end
@@ -21142,6 +21439,7 @@ module Google
21142
21439
  def update!(**args)
21143
21440
  @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
21144
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)
21145
21443
  end
21146
21444
  end
21147
21445
 
@@ -22005,6 +22303,45 @@ module Google
22005
22303
  end
22006
22304
  end
22007
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
+
22008
22345
  # Metadata and configurations for a Google Cloud project in the service.
22009
22346
  class GoogleCloudDiscoveryengineV1alphaProject
22010
22347
  include Google::Apis::Core::Hashable
@@ -22814,6 +23151,88 @@ module Google
22814
23151
  end
22815
23152
  end
22816
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
+
22817
23236
  # Safety rating corresponding to the generated content.
22818
23237
  class GoogleCloudDiscoveryengineV1alphaSafetyRating
22819
23238
  include Google::Apis::Core::Hashable
@@ -27049,6 +27468,11 @@ module Google
27049
27468
  # @return [String]
27050
27469
  attr_accessor :industry_vertical
27051
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
+
27052
27476
  # Additional config specs for a Media Recommendation engine.
27053
27477
  # Corresponds to the JSON property `mediaRecommendationEngineConfig`
27054
27478
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig]
@@ -27107,6 +27531,7 @@ module Google
27107
27531
  @display_name = args[:display_name] if args.key?(:display_name)
27108
27532
  @features = args[:features] if args.key?(:features)
27109
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)
27110
27535
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
27111
27536
  @model_configs = args[:model_configs] if args.key?(:model_configs)
27112
27537
  @name = args[:name] if args.key?(:name)
@@ -27250,6 +27675,98 @@ module Google
27250
27675
  end
27251
27676
  end
27252
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
+
27253
27770
  # Additional config specs for a Media Recommendation engine.
27254
27771
  class GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig
27255
27772
  include Google::Apis::Core::Hashable
@@ -27572,6 +28089,16 @@ module Google
27572
28089
  attr_accessor :enable_static_indexing_for_batch_ingestion
27573
28090
  alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
27574
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
+
27575
28102
  def initialize(**args)
27576
28103
  update!(**args)
27577
28104
  end
@@ -27580,6 +28107,7 @@ module Google
27580
28107
  def update!(**args)
27581
28108
  @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
27582
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)
27583
28111
  end
27584
28112
  end
27585
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.63.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 = "20251221"
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
 
@@ -5773,6 +5839,7 @@ module Google
5773
5839
  class Representation < Google::Apis::Core::JsonRepresentation
5774
5840
  property :customer_policy, as: 'customerPolicy', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantCustomerPolicy, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantCustomerPolicy::Representation
5775
5841
 
5842
+ property :default_web_grounding_toggle_off, as: 'defaultWebGroundingToggleOff'
5776
5843
  property :description, as: 'description'
5777
5844
  property :display_name, as: 'displayName'
5778
5845
  hash :enabled_tools, as: 'enabledTools', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantToolList, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantToolList::Representation
@@ -7016,6 +7083,8 @@ module Google
7016
7083
  property :display_name, as: 'displayName'
7017
7084
  hash :features, as: 'features'
7018
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
+
7019
7088
  property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig::Representation
7020
7089
 
7021
7090
  hash :model_configs, as: 'modelConfigs'
@@ -7061,6 +7130,28 @@ module Google
7061
7130
  end
7062
7131
  end
7063
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
+
7064
7155
  class GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig
7065
7156
  # @private
7066
7157
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7195,6 +7286,7 @@ module Google
7195
7286
  class Representation < Google::Apis::Core::JsonRepresentation
7196
7287
  property :enable_configurable_schema, as: 'enableConfigurableSchema'
7197
7288
  property :enable_static_indexing_for_batch_ingestion, as: 'enableStaticIndexingForBatchIngestion'
7289
+ collection :initial_filter_groups, as: 'initialFilterGroups'
7198
7290
  end
7199
7291
  end
7200
7292
 
@@ -9132,6 +9224,14 @@ module Google
9132
9224
  end
9133
9225
  end
9134
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
+
9135
9235
  class GoogleCloudDiscoveryengineV1alphaAdvancedSiteSearchConfig
9136
9236
  # @private
9137
9237
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10111,6 +10211,13 @@ module Google
10111
10211
  end
10112
10212
  end
10113
10213
 
10214
+ class GoogleCloudDiscoveryengineV1alphaDeletePatientFiltersRequest
10215
+ # @private
10216
+ class Representation < Google::Apis::Core::JsonRepresentation
10217
+ property :data_store, as: 'dataStore'
10218
+ end
10219
+ end
10220
+
10114
10221
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
10115
10222
  # @private
10116
10223
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10285,6 +10392,8 @@ module Google
10285
10392
  property :display_name, as: 'displayName'
10286
10393
  hash :features, as: 'features'
10287
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
+
10288
10397
  property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig::Representation
10289
10398
 
10290
10399
  hash :model_configs, as: 'modelConfigs'
@@ -10334,6 +10443,28 @@ module Google
10334
10443
  end
10335
10444
  end
10336
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
+
10337
10468
  class GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig
10338
10469
  # @private
10339
10470
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10507,6 +10638,7 @@ module Google
10507
10638
  class Representation < Google::Apis::Core::JsonRepresentation
10508
10639
  property :enable_configurable_schema, as: 'enableConfigurableSchema'
10509
10640
  property :enable_static_indexing_for_batch_ingestion, as: 'enableStaticIndexingForBatchIngestion'
10641
+ collection :initial_filter_groups, as: 'initialFilterGroups'
10510
10642
  end
10511
10643
  end
10512
10644
 
@@ -10751,6 +10883,16 @@ module Google
10751
10883
  end
10752
10884
  end
10753
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
+
10754
10896
  class GoogleCloudDiscoveryengineV1alphaProject
10755
10897
  # @private
10756
10898
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10982,6 +11124,22 @@ module Google
10982
11124
  end
10983
11125
  end
10984
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
+
10985
11143
  class GoogleCloudDiscoveryengineV1alphaSafetyRating
10986
11144
  # @private
10987
11145
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12070,6 +12228,8 @@ module Google
12070
12228
  property :display_name, as: 'displayName'
12071
12229
  hash :features, as: 'features'
12072
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
+
12073
12233
  property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig::Representation
12074
12234
 
12075
12235
  hash :model_configs, as: 'modelConfigs'
@@ -12115,6 +12275,28 @@ module Google
12115
12275
  end
12116
12276
  end
12117
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
+
12118
12300
  class GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig
12119
12301
  # @private
12120
12302
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12209,6 +12391,7 @@ module Google
12209
12391
  class Representation < Google::Apis::Core::JsonRepresentation
12210
12392
  property :enable_configurable_schema, as: 'enableConfigurableSchema'
12211
12393
  property :enable_static_indexing_for_batch_ingestion, as: 'enableStaticIndexingForBatchIngestion'
12394
+ collection :initial_filter_groups, as: 'initialFilterGroups'
12212
12395
  end
12213
12396
  end
12214
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.63.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.63.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: