google-apis-discoveryengine_v1alpha 0.89.0 → 0.91.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/discoveryengine_v1alpha/classes.rb +575 -43
- data/lib/google/apis/discoveryengine_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1alpha/representations.rb +184 -0
- data/lib/google/apis/discoveryengine_v1alpha/service.rb +375 -12
- metadata +2 -2
|
@@ -3496,9 +3496,10 @@ module Google
|
|
|
3496
3496
|
# settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
|
|
3497
3497
|
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
|
3498
3498
|
# org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
|
|
3499
|
-
# personalization-memory` * `
|
|
3500
|
-
# * `disable-
|
|
3501
|
-
# content` * `disable-google-drive-
|
|
3499
|
+
# personalization-memory` * `personalization-suggested-highlights` * `disable-
|
|
3500
|
+
# agent-sharing` * `disable-image-generation` * `disable-video-generation` * `
|
|
3501
|
+
# disable-onedrive-upload` * `disable-talk-to-content` * `disable-google-drive-
|
|
3502
|
+
# upload` * `disable-welcome-emails`
|
|
3502
3503
|
# Corresponds to the JSON property `features`
|
|
3503
3504
|
# @return [Hash<String,String>]
|
|
3504
3505
|
attr_accessor :features
|
|
@@ -3510,6 +3511,11 @@ module Google
|
|
|
3510
3511
|
# @return [String]
|
|
3511
3512
|
attr_accessor :industry_vertical
|
|
3512
3513
|
|
|
3514
|
+
# Configuration message for the Knowledge Graph.
|
|
3515
|
+
# Corresponds to the JSON property `knowledgeGraphConfig`
|
|
3516
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig]
|
|
3517
|
+
attr_accessor :knowledge_graph_config
|
|
3518
|
+
|
|
3513
3519
|
# Additional config specs for a Media Recommendation engine.
|
|
3514
3520
|
# Corresponds to the JSON property `mediaRecommendationEngineConfig`
|
|
3515
3521
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig]
|
|
@@ -3568,6 +3574,7 @@ module Google
|
|
|
3568
3574
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
3569
3575
|
@features = args[:features] if args.key?(:features)
|
|
3570
3576
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
|
3577
|
+
@knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
|
|
3571
3578
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
3572
3579
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
3573
3580
|
@name = args[:name] if args.key?(:name)
|
|
@@ -3711,6 +3718,98 @@ module Google
|
|
|
3711
3718
|
end
|
|
3712
3719
|
end
|
|
3713
3720
|
|
|
3721
|
+
# Configuration message for the Knowledge Graph.
|
|
3722
|
+
class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig
|
|
3723
|
+
include Google::Apis::Core::Hashable
|
|
3724
|
+
|
|
3725
|
+
# Specify entity types to support.
|
|
3726
|
+
# Corresponds to the JSON property `cloudKnowledgeGraphTypes`
|
|
3727
|
+
# @return [Array<String>]
|
|
3728
|
+
attr_accessor :cloud_knowledge_graph_types
|
|
3729
|
+
|
|
3730
|
+
# Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false
|
|
3731
|
+
# if not specified.
|
|
3732
|
+
# Corresponds to the JSON property `enableCloudKnowledgeGraph`
|
|
3733
|
+
# @return [Boolean]
|
|
3734
|
+
attr_accessor :enable_cloud_knowledge_graph
|
|
3735
|
+
alias_method :enable_cloud_knowledge_graph?, :enable_cloud_knowledge_graph
|
|
3736
|
+
|
|
3737
|
+
# Whether to enable the Private Knowledge Graph for the engine. Defaults to
|
|
3738
|
+
# false if not specified.
|
|
3739
|
+
# Corresponds to the JSON property `enablePrivateKnowledgeGraph`
|
|
3740
|
+
# @return [Boolean]
|
|
3741
|
+
attr_accessor :enable_private_knowledge_graph
|
|
3742
|
+
alias_method :enable_private_knowledge_graph?, :enable_private_knowledge_graph
|
|
3743
|
+
|
|
3744
|
+
# Feature config for the Knowledge Graph.
|
|
3745
|
+
# Corresponds to the JSON property `featureConfig`
|
|
3746
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig]
|
|
3747
|
+
attr_accessor :feature_config
|
|
3748
|
+
|
|
3749
|
+
# Specify entity types to support.
|
|
3750
|
+
# Corresponds to the JSON property `privateKnowledgeGraphTypes`
|
|
3751
|
+
# @return [Array<String>]
|
|
3752
|
+
attr_accessor :private_knowledge_graph_types
|
|
3753
|
+
|
|
3754
|
+
def initialize(**args)
|
|
3755
|
+
update!(**args)
|
|
3756
|
+
end
|
|
3757
|
+
|
|
3758
|
+
# Update properties of this object
|
|
3759
|
+
def update!(**args)
|
|
3760
|
+
@cloud_knowledge_graph_types = args[:cloud_knowledge_graph_types] if args.key?(:cloud_knowledge_graph_types)
|
|
3761
|
+
@enable_cloud_knowledge_graph = args[:enable_cloud_knowledge_graph] if args.key?(:enable_cloud_knowledge_graph)
|
|
3762
|
+
@enable_private_knowledge_graph = args[:enable_private_knowledge_graph] if args.key?(:enable_private_knowledge_graph)
|
|
3763
|
+
@feature_config = args[:feature_config] if args.key?(:feature_config)
|
|
3764
|
+
@private_knowledge_graph_types = args[:private_knowledge_graph_types] if args.key?(:private_knowledge_graph_types)
|
|
3765
|
+
end
|
|
3766
|
+
end
|
|
3767
|
+
|
|
3768
|
+
# Feature config for the Knowledge Graph.
|
|
3769
|
+
class GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig
|
|
3770
|
+
include Google::Apis::Core::Hashable
|
|
3771
|
+
|
|
3772
|
+
# Whether to disable the private KG auto complete for the engine. Defaults to
|
|
3773
|
+
# false if not specified.
|
|
3774
|
+
# Corresponds to the JSON property `disablePrivateKgAutoComplete`
|
|
3775
|
+
# @return [Boolean]
|
|
3776
|
+
attr_accessor :disable_private_kg_auto_complete
|
|
3777
|
+
alias_method :disable_private_kg_auto_complete?, :disable_private_kg_auto_complete
|
|
3778
|
+
|
|
3779
|
+
# Whether to disable the private KG enrichment for the engine. Defaults to false
|
|
3780
|
+
# if not specified.
|
|
3781
|
+
# Corresponds to the JSON property `disablePrivateKgEnrichment`
|
|
3782
|
+
# @return [Boolean]
|
|
3783
|
+
attr_accessor :disable_private_kg_enrichment
|
|
3784
|
+
alias_method :disable_private_kg_enrichment?, :disable_private_kg_enrichment
|
|
3785
|
+
|
|
3786
|
+
# Whether to disable the private KG for query UI chips. Defaults to false if not
|
|
3787
|
+
# specified.
|
|
3788
|
+
# Corresponds to the JSON property `disablePrivateKgQueryUiChips`
|
|
3789
|
+
# @return [Boolean]
|
|
3790
|
+
attr_accessor :disable_private_kg_query_ui_chips
|
|
3791
|
+
alias_method :disable_private_kg_query_ui_chips?, :disable_private_kg_query_ui_chips
|
|
3792
|
+
|
|
3793
|
+
# Whether to disable the private KG query understanding for the engine. Defaults
|
|
3794
|
+
# to false if not specified.
|
|
3795
|
+
# Corresponds to the JSON property `disablePrivateKgQueryUnderstanding`
|
|
3796
|
+
# @return [Boolean]
|
|
3797
|
+
attr_accessor :disable_private_kg_query_understanding
|
|
3798
|
+
alias_method :disable_private_kg_query_understanding?, :disable_private_kg_query_understanding
|
|
3799
|
+
|
|
3800
|
+
def initialize(**args)
|
|
3801
|
+
update!(**args)
|
|
3802
|
+
end
|
|
3803
|
+
|
|
3804
|
+
# Update properties of this object
|
|
3805
|
+
def update!(**args)
|
|
3806
|
+
@disable_private_kg_auto_complete = args[:disable_private_kg_auto_complete] if args.key?(:disable_private_kg_auto_complete)
|
|
3807
|
+
@disable_private_kg_enrichment = args[:disable_private_kg_enrichment] if args.key?(:disable_private_kg_enrichment)
|
|
3808
|
+
@disable_private_kg_query_ui_chips = args[:disable_private_kg_query_ui_chips] if args.key?(:disable_private_kg_query_ui_chips)
|
|
3809
|
+
@disable_private_kg_query_understanding = args[:disable_private_kg_query_understanding] if args.key?(:disable_private_kg_query_understanding)
|
|
3810
|
+
end
|
|
3811
|
+
end
|
|
3812
|
+
|
|
3714
3813
|
# Additional config specs for a Media Recommendation engine.
|
|
3715
3814
|
class GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig
|
|
3716
3815
|
include Google::Apis::Core::Hashable
|
|
@@ -3918,6 +4017,16 @@ module Google
|
|
|
3918
4017
|
attr_accessor :enable_static_indexing_for_batch_ingestion
|
|
3919
4018
|
alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
|
|
3920
4019
|
|
|
4020
|
+
# Optional. Names of the Group resources to use as a basis for the initial
|
|
4021
|
+
# patient filter, in format `projects/`project_id`/locations/`location_id`/
|
|
4022
|
+
# datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. The
|
|
4023
|
+
# filter group must be a FHIR resource name of type Group, and the filter will
|
|
4024
|
+
# be constructed from the direct members of the group which are Patient
|
|
4025
|
+
# resources.
|
|
4026
|
+
# Corresponds to the JSON property `initialFilterGroups`
|
|
4027
|
+
# @return [Array<String>]
|
|
4028
|
+
attr_accessor :initial_filter_groups
|
|
4029
|
+
|
|
3921
4030
|
def initialize(**args)
|
|
3922
4031
|
update!(**args)
|
|
3923
4032
|
end
|
|
@@ -3926,6 +4035,7 @@ module Google
|
|
|
3926
4035
|
def update!(**args)
|
|
3927
4036
|
@enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
|
|
3928
4037
|
@enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
|
|
4038
|
+
@initial_filter_groups = args[:initial_filter_groups] if args.key?(:initial_filter_groups)
|
|
3929
4039
|
end
|
|
3930
4040
|
end
|
|
3931
4041
|
|
|
@@ -6327,6 +6437,47 @@ module Google
|
|
|
6327
6437
|
end
|
|
6328
6438
|
end
|
|
6329
6439
|
|
|
6440
|
+
# Request for DataStoreService.AddPatientFilter method.
|
|
6441
|
+
class GoogleCloudDiscoveryengineV1alphaAddPatientFilterRequest
|
|
6442
|
+
include Google::Apis::Core::Hashable
|
|
6443
|
+
|
|
6444
|
+
# Required. Full resource name of DataStore, such as `projects/`project`/
|
|
6445
|
+
# locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
|
|
6446
|
+
# If the caller does not have permission to access the DataStore, regardless of
|
|
6447
|
+
# whether or not it exists, a PERMISSION_DENIED error is returned. If the
|
|
6448
|
+
# requested DataStore does not exist, a NOT_FOUND error is returned. If the
|
|
6449
|
+
# requested DataStore already has a patient filter, an ALREADY_EXISTS error will
|
|
6450
|
+
# be returned.
|
|
6451
|
+
# Corresponds to the JSON property `dataStore`
|
|
6452
|
+
# @return [String]
|
|
6453
|
+
attr_accessor :data_store
|
|
6454
|
+
|
|
6455
|
+
# Required. Names of the Group resources to use as a basis for the patient
|
|
6456
|
+
# filter, in format `projects/`project_id`/locations/`location_id`/datasets/`
|
|
6457
|
+
# dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. if the caller
|
|
6458
|
+
# does not have permission to access the FHIR store, regardless of whether it
|
|
6459
|
+
# exists, PERMISSION_DENIED error is returned. If the discovery engine service
|
|
6460
|
+
# account does not have permission to access the FHIR store, regardless of
|
|
6461
|
+
# whether or not it exists, a PERMISSION_DENIED error is returned. If the group
|
|
6462
|
+
# is not found at the location, a RESOURCE_NOT_FOUND error will be returned. The
|
|
6463
|
+
# filter group must be a FHIR resource name of type Group, and the filter will
|
|
6464
|
+
# be constructed from the direct members of the group which are Patient
|
|
6465
|
+
# resources.
|
|
6466
|
+
# Corresponds to the JSON property `filterGroups`
|
|
6467
|
+
# @return [Array<String>]
|
|
6468
|
+
attr_accessor :filter_groups
|
|
6469
|
+
|
|
6470
|
+
def initialize(**args)
|
|
6471
|
+
update!(**args)
|
|
6472
|
+
end
|
|
6473
|
+
|
|
6474
|
+
# Update properties of this object
|
|
6475
|
+
def update!(**args)
|
|
6476
|
+
@data_store = args[:data_store] if args.key?(:data_store)
|
|
6477
|
+
@filter_groups = args[:filter_groups] if args.key?(:filter_groups)
|
|
6478
|
+
end
|
|
6479
|
+
end
|
|
6480
|
+
|
|
6330
6481
|
# Stores the definition of an agent that uses ADK and is deployed to Agent
|
|
6331
6482
|
# Engine (formerly known as Reasoning Engine).
|
|
6332
6483
|
class GoogleCloudDiscoveryengineV1alphaAdkAgentDefinition
|
|
@@ -7099,6 +7250,11 @@ module Google
|
|
|
7099
7250
|
# @return [String]
|
|
7100
7251
|
attr_accessor :name
|
|
7101
7252
|
|
|
7253
|
+
# Output only. The display name of the agent owner.
|
|
7254
|
+
# Corresponds to the JSON property `ownerDisplayName`
|
|
7255
|
+
# @return [String]
|
|
7256
|
+
attr_accessor :owner_display_name
|
|
7257
|
+
|
|
7102
7258
|
# The reason why the agent was rejected. Only set if the state is PRIVATE, and
|
|
7103
7259
|
# got there via rejection.
|
|
7104
7260
|
# Corresponds to the JSON property `rejectionReason`
|
|
@@ -7121,6 +7277,11 @@ module Google
|
|
|
7121
7277
|
# @return [String]
|
|
7122
7278
|
attr_accessor :suspension_reason
|
|
7123
7279
|
|
|
7280
|
+
# Output only. The timestamp when the agent was last updated.
|
|
7281
|
+
# Corresponds to the JSON property `updateTime`
|
|
7282
|
+
# @return [String]
|
|
7283
|
+
attr_accessor :update_time
|
|
7284
|
+
|
|
7124
7285
|
# Per-user annotations for an Agent, based on UserAnnotation.
|
|
7125
7286
|
# Corresponds to the JSON property `userAnnotations`
|
|
7126
7287
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaUserAnnotations]
|
|
@@ -7146,10 +7307,12 @@ module Google
|
|
|
7146
7307
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
7147
7308
|
@icon = args[:icon] if args.key?(:icon)
|
|
7148
7309
|
@name = args[:name] if args.key?(:name)
|
|
7310
|
+
@owner_display_name = args[:owner_display_name] if args.key?(:owner_display_name)
|
|
7149
7311
|
@rejection_reason = args[:rejection_reason] if args.key?(:rejection_reason)
|
|
7150
7312
|
@state = args[:state] if args.key?(:state)
|
|
7151
7313
|
@suggested_prompts = args[:suggested_prompts] if args.key?(:suggested_prompts)
|
|
7152
7314
|
@suspension_reason = args[:suspension_reason] if args.key?(:suspension_reason)
|
|
7315
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
7153
7316
|
@user_annotations = args[:user_annotations] if args.key?(:user_annotations)
|
|
7154
7317
|
@user_permissions = args[:user_permissions] if args.key?(:user_permissions)
|
|
7155
7318
|
end
|
|
@@ -9352,8 +9515,8 @@ module Google
|
|
|
9352
9515
|
# Output only. When set, uniquely identifies a reply within the `AssistAnswer`
|
|
9353
9516
|
# resource. During an AssistantService.StreamAssist call, multiple `Reply`
|
|
9354
9517
|
# messages with the same ID can occur within the response stream (across
|
|
9355
|
-
# multiple
|
|
9356
|
-
#
|
|
9518
|
+
# multiple StreamAssistResponse messages). These represent parts of a single `
|
|
9519
|
+
# Reply` message in the final `AssistAnswer` resource.
|
|
9357
9520
|
# Corresponds to the JSON property `replyId`
|
|
9358
9521
|
# @return [String]
|
|
9359
9522
|
attr_accessor :reply_id
|
|
@@ -10114,8 +10277,10 @@ module Google
|
|
|
10114
10277
|
attr_accessor :pkce_verification_enabled
|
|
10115
10278
|
alias_method :pkce_verification_enabled?, :pkce_verification_enabled
|
|
10116
10279
|
|
|
10117
|
-
#
|
|
10118
|
-
# calendar.events`
|
|
10280
|
+
# Optional. The scopes to request. Example: `https://www.googleapis.com/auth/
|
|
10281
|
+
# calendar.events` If omitted, no additional scopes are requested beyond those
|
|
10282
|
+
# required by the authorization uri. If set, it will overwrite the scopes in the
|
|
10283
|
+
# authorization uri when acquiring user authorization.
|
|
10119
10284
|
# Corresponds to the JSON property `scopes`
|
|
10120
10285
|
# @return [Array<String>]
|
|
10121
10286
|
attr_accessor :scopes
|
|
@@ -14170,6 +14335,31 @@ module Google
|
|
|
14170
14335
|
end
|
|
14171
14336
|
end
|
|
14172
14337
|
|
|
14338
|
+
# Request for DataStoreService.DeletePatientFilters method.
|
|
14339
|
+
class GoogleCloudDiscoveryengineV1alphaDeletePatientFiltersRequest
|
|
14340
|
+
include Google::Apis::Core::Hashable
|
|
14341
|
+
|
|
14342
|
+
# Required. Full resource name of DataStore, such as `projects/`project`/
|
|
14343
|
+
# locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
|
|
14344
|
+
# If the caller does not have permission to access the DataStore, regardless of
|
|
14345
|
+
# whether or not it exists, a PERMISSION_DENIED error is returned. If the
|
|
14346
|
+
# requested DataStore does not exist, a NOT_FOUND error is returned. If the
|
|
14347
|
+
# requested DataStore does not have a patient filter, a NOT_FOUND error will be
|
|
14348
|
+
# returned.
|
|
14349
|
+
# Corresponds to the JSON property `dataStore`
|
|
14350
|
+
# @return [String]
|
|
14351
|
+
attr_accessor :data_store
|
|
14352
|
+
|
|
14353
|
+
def initialize(**args)
|
|
14354
|
+
update!(**args)
|
|
14355
|
+
end
|
|
14356
|
+
|
|
14357
|
+
# Update properties of this object
|
|
14358
|
+
def update!(**args)
|
|
14359
|
+
@data_store = args[:data_store] if args.key?(:data_store)
|
|
14360
|
+
end
|
|
14361
|
+
end
|
|
14362
|
+
|
|
14173
14363
|
# Metadata for DeleteSchema LRO.
|
|
14174
14364
|
class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
|
|
14175
14365
|
include Google::Apis::Core::Hashable
|
|
@@ -15188,9 +15378,10 @@ module Google
|
|
|
15188
15378
|
# settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
|
|
15189
15379
|
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
|
15190
15380
|
# org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
|
|
15191
|
-
# personalization-memory` * `
|
|
15192
|
-
# * `disable-
|
|
15193
|
-
# content` * `disable-google-drive-
|
|
15381
|
+
# personalization-memory` * `personalization-suggested-highlights` * `disable-
|
|
15382
|
+
# agent-sharing` * `disable-image-generation` * `disable-video-generation` * `
|
|
15383
|
+
# disable-onedrive-upload` * `disable-talk-to-content` * `disable-google-drive-
|
|
15384
|
+
# upload` * `disable-welcome-emails`
|
|
15194
15385
|
# Corresponds to the JSON property `features`
|
|
15195
15386
|
# @return [Hash<String,String>]
|
|
15196
15387
|
attr_accessor :features
|
|
@@ -15202,6 +15393,11 @@ module Google
|
|
|
15202
15393
|
# @return [String]
|
|
15203
15394
|
attr_accessor :industry_vertical
|
|
15204
15395
|
|
|
15396
|
+
# Configuration message for the Knowledge Graph.
|
|
15397
|
+
# Corresponds to the JSON property `knowledgeGraphConfig`
|
|
15398
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig]
|
|
15399
|
+
attr_accessor :knowledge_graph_config
|
|
15400
|
+
|
|
15205
15401
|
# Additional config specs for a Media Recommendation engine.
|
|
15206
15402
|
# Corresponds to the JSON property `mediaRecommendationEngineConfig`
|
|
15207
15403
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig]
|
|
@@ -15270,6 +15466,7 @@ module Google
|
|
|
15270
15466
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
15271
15467
|
@features = args[:features] if args.key?(:features)
|
|
15272
15468
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
|
15469
|
+
@knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
|
|
15273
15470
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
15274
15471
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
15275
15472
|
@name = args[:name] if args.key?(:name)
|
|
@@ -15415,6 +15612,98 @@ module Google
|
|
|
15415
15612
|
end
|
|
15416
15613
|
end
|
|
15417
15614
|
|
|
15615
|
+
# Configuration message for the Knowledge Graph.
|
|
15616
|
+
class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig
|
|
15617
|
+
include Google::Apis::Core::Hashable
|
|
15618
|
+
|
|
15619
|
+
# Specify entity types to support.
|
|
15620
|
+
# Corresponds to the JSON property `cloudKnowledgeGraphTypes`
|
|
15621
|
+
# @return [Array<String>]
|
|
15622
|
+
attr_accessor :cloud_knowledge_graph_types
|
|
15623
|
+
|
|
15624
|
+
# Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false
|
|
15625
|
+
# if not specified.
|
|
15626
|
+
# Corresponds to the JSON property `enableCloudKnowledgeGraph`
|
|
15627
|
+
# @return [Boolean]
|
|
15628
|
+
attr_accessor :enable_cloud_knowledge_graph
|
|
15629
|
+
alias_method :enable_cloud_knowledge_graph?, :enable_cloud_knowledge_graph
|
|
15630
|
+
|
|
15631
|
+
# Whether to enable the Private Knowledge Graph for the engine. Defaults to
|
|
15632
|
+
# false if not specified.
|
|
15633
|
+
# Corresponds to the JSON property `enablePrivateKnowledgeGraph`
|
|
15634
|
+
# @return [Boolean]
|
|
15635
|
+
attr_accessor :enable_private_knowledge_graph
|
|
15636
|
+
alias_method :enable_private_knowledge_graph?, :enable_private_knowledge_graph
|
|
15637
|
+
|
|
15638
|
+
# Feature config for the Knowledge Graph.
|
|
15639
|
+
# Corresponds to the JSON property `featureConfig`
|
|
15640
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig]
|
|
15641
|
+
attr_accessor :feature_config
|
|
15642
|
+
|
|
15643
|
+
# Specify entity types to support.
|
|
15644
|
+
# Corresponds to the JSON property `privateKnowledgeGraphTypes`
|
|
15645
|
+
# @return [Array<String>]
|
|
15646
|
+
attr_accessor :private_knowledge_graph_types
|
|
15647
|
+
|
|
15648
|
+
def initialize(**args)
|
|
15649
|
+
update!(**args)
|
|
15650
|
+
end
|
|
15651
|
+
|
|
15652
|
+
# Update properties of this object
|
|
15653
|
+
def update!(**args)
|
|
15654
|
+
@cloud_knowledge_graph_types = args[:cloud_knowledge_graph_types] if args.key?(:cloud_knowledge_graph_types)
|
|
15655
|
+
@enable_cloud_knowledge_graph = args[:enable_cloud_knowledge_graph] if args.key?(:enable_cloud_knowledge_graph)
|
|
15656
|
+
@enable_private_knowledge_graph = args[:enable_private_knowledge_graph] if args.key?(:enable_private_knowledge_graph)
|
|
15657
|
+
@feature_config = args[:feature_config] if args.key?(:feature_config)
|
|
15658
|
+
@private_knowledge_graph_types = args[:private_knowledge_graph_types] if args.key?(:private_knowledge_graph_types)
|
|
15659
|
+
end
|
|
15660
|
+
end
|
|
15661
|
+
|
|
15662
|
+
# Feature config for the Knowledge Graph.
|
|
15663
|
+
class GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig
|
|
15664
|
+
include Google::Apis::Core::Hashable
|
|
15665
|
+
|
|
15666
|
+
# Whether to disable the private KG auto complete for the engine. Defaults to
|
|
15667
|
+
# false if not specified.
|
|
15668
|
+
# Corresponds to the JSON property `disablePrivateKgAutoComplete`
|
|
15669
|
+
# @return [Boolean]
|
|
15670
|
+
attr_accessor :disable_private_kg_auto_complete
|
|
15671
|
+
alias_method :disable_private_kg_auto_complete?, :disable_private_kg_auto_complete
|
|
15672
|
+
|
|
15673
|
+
# Whether to disable the private KG enrichment for the engine. Defaults to false
|
|
15674
|
+
# if not specified.
|
|
15675
|
+
# Corresponds to the JSON property `disablePrivateKgEnrichment`
|
|
15676
|
+
# @return [Boolean]
|
|
15677
|
+
attr_accessor :disable_private_kg_enrichment
|
|
15678
|
+
alias_method :disable_private_kg_enrichment?, :disable_private_kg_enrichment
|
|
15679
|
+
|
|
15680
|
+
# Whether to disable the private KG for query UI chips. Defaults to false if not
|
|
15681
|
+
# specified.
|
|
15682
|
+
# Corresponds to the JSON property `disablePrivateKgQueryUiChips`
|
|
15683
|
+
# @return [Boolean]
|
|
15684
|
+
attr_accessor :disable_private_kg_query_ui_chips
|
|
15685
|
+
alias_method :disable_private_kg_query_ui_chips?, :disable_private_kg_query_ui_chips
|
|
15686
|
+
|
|
15687
|
+
# Whether to disable the private KG query understanding for the engine. Defaults
|
|
15688
|
+
# to false if not specified.
|
|
15689
|
+
# Corresponds to the JSON property `disablePrivateKgQueryUnderstanding`
|
|
15690
|
+
# @return [Boolean]
|
|
15691
|
+
attr_accessor :disable_private_kg_query_understanding
|
|
15692
|
+
alias_method :disable_private_kg_query_understanding?, :disable_private_kg_query_understanding
|
|
15693
|
+
|
|
15694
|
+
def initialize(**args)
|
|
15695
|
+
update!(**args)
|
|
15696
|
+
end
|
|
15697
|
+
|
|
15698
|
+
# Update properties of this object
|
|
15699
|
+
def update!(**args)
|
|
15700
|
+
@disable_private_kg_auto_complete = args[:disable_private_kg_auto_complete] if args.key?(:disable_private_kg_auto_complete)
|
|
15701
|
+
@disable_private_kg_enrichment = args[:disable_private_kg_enrichment] if args.key?(:disable_private_kg_enrichment)
|
|
15702
|
+
@disable_private_kg_query_ui_chips = args[:disable_private_kg_query_ui_chips] if args.key?(:disable_private_kg_query_ui_chips)
|
|
15703
|
+
@disable_private_kg_query_understanding = args[:disable_private_kg_query_understanding] if args.key?(:disable_private_kg_query_understanding)
|
|
15704
|
+
end
|
|
15705
|
+
end
|
|
15706
|
+
|
|
15418
15707
|
# Additional config specs for a Media Recommendation engine.
|
|
15419
15708
|
class GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig
|
|
15420
15709
|
include Google::Apis::Core::Hashable
|
|
@@ -16794,6 +17083,16 @@ module Google
|
|
|
16794
17083
|
attr_accessor :enable_static_indexing_for_batch_ingestion
|
|
16795
17084
|
alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
|
|
16796
17085
|
|
|
17086
|
+
# Optional. Names of the Group resources to use as a basis for the initial
|
|
17087
|
+
# patient filter, in format `projects/`project_id`/locations/`location_id`/
|
|
17088
|
+
# datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. The
|
|
17089
|
+
# filter group must be a FHIR resource name of type Group, and the filter will
|
|
17090
|
+
# be constructed from the direct members of the group which are Patient
|
|
17091
|
+
# resources.
|
|
17092
|
+
# Corresponds to the JSON property `initialFilterGroups`
|
|
17093
|
+
# @return [Array<String>]
|
|
17094
|
+
attr_accessor :initial_filter_groups
|
|
17095
|
+
|
|
16797
17096
|
def initialize(**args)
|
|
16798
17097
|
update!(**args)
|
|
16799
17098
|
end
|
|
@@ -16802,6 +17101,7 @@ module Google
|
|
|
16802
17101
|
def update!(**args)
|
|
16803
17102
|
@enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
|
|
16804
17103
|
@enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
|
|
17104
|
+
@initial_filter_groups = args[:initial_filter_groups] if args.key?(:initial_filter_groups)
|
|
16805
17105
|
end
|
|
16806
17106
|
end
|
|
16807
17107
|
|
|
@@ -18662,7 +18962,7 @@ module Google
|
|
|
18662
18962
|
end
|
|
18663
18963
|
end
|
|
18664
18964
|
|
|
18665
|
-
# Response message for UserLicenseService.
|
|
18965
|
+
# Response message for UserLicenseService.ListLicenseConfigsUsageStats method.
|
|
18666
18966
|
class GoogleCloudDiscoveryengineV1alphaListLicenseConfigsUsageStatsResponse
|
|
18667
18967
|
include Google::Apis::Core::Hashable
|
|
18668
18968
|
|
|
@@ -19204,6 +19504,45 @@ module Google
|
|
|
19204
19504
|
end
|
|
19205
19505
|
end
|
|
19206
19506
|
|
|
19507
|
+
# Metadata related to the progress of the various patient filter operations.
|
|
19508
|
+
# This will be returned by the google.longrunning.Operation.metadata field.
|
|
19509
|
+
class GoogleCloudDiscoveryengineV1alphaPatientFilterOperationMetadata
|
|
19510
|
+
include Google::Apis::Core::Hashable
|
|
19511
|
+
|
|
19512
|
+
# Operation create time.
|
|
19513
|
+
# Corresponds to the JSON property `createTime`
|
|
19514
|
+
# @return [String]
|
|
19515
|
+
attr_accessor :create_time
|
|
19516
|
+
|
|
19517
|
+
# The number of patient IDs added to the patient filter.
|
|
19518
|
+
# Corresponds to the JSON property `filtersAddedCount`
|
|
19519
|
+
# @return [Fixnum]
|
|
19520
|
+
attr_accessor :filters_added_count
|
|
19521
|
+
|
|
19522
|
+
# The number of patient IDs removed from the patient filter.
|
|
19523
|
+
# Corresponds to the JSON property `filtersRemovedCount`
|
|
19524
|
+
# @return [Fixnum]
|
|
19525
|
+
attr_accessor :filters_removed_count
|
|
19526
|
+
|
|
19527
|
+
# Operation last update time. If the operation is done, this is also the finish
|
|
19528
|
+
# time.
|
|
19529
|
+
# Corresponds to the JSON property `updateTime`
|
|
19530
|
+
# @return [String]
|
|
19531
|
+
attr_accessor :update_time
|
|
19532
|
+
|
|
19533
|
+
def initialize(**args)
|
|
19534
|
+
update!(**args)
|
|
19535
|
+
end
|
|
19536
|
+
|
|
19537
|
+
# Update properties of this object
|
|
19538
|
+
def update!(**args)
|
|
19539
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
19540
|
+
@filters_added_count = args[:filters_added_count] if args.key?(:filters_added_count)
|
|
19541
|
+
@filters_removed_count = args[:filters_removed_count] if args.key?(:filters_removed_count)
|
|
19542
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
19543
|
+
end
|
|
19544
|
+
end
|
|
19545
|
+
|
|
19207
19546
|
# Request for pausing training of an engine.
|
|
19208
19547
|
class GoogleCloudDiscoveryengineV1alphaPauseEngineRequest
|
|
19209
19548
|
include Google::Apis::Core::Hashable
|
|
@@ -20830,6 +21169,47 @@ module Google
|
|
|
20830
21169
|
end
|
|
20831
21170
|
end
|
|
20832
21171
|
|
|
21172
|
+
# Request for DataStoreService.RemovePatientFilter method.
|
|
21173
|
+
class GoogleCloudDiscoveryengineV1alphaRemovePatientFilterRequest
|
|
21174
|
+
include Google::Apis::Core::Hashable
|
|
21175
|
+
|
|
21176
|
+
# Required. Full resource name of DataStore, such as `projects/`project`/
|
|
21177
|
+
# locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
|
|
21178
|
+
# If the caller does not have permission to access the DataStore, regardless of
|
|
21179
|
+
# whether or not it exists, a PERMISSION_DENIED error is returned. If the
|
|
21180
|
+
# requested DataStore does not exist, a NOT_FOUND error is returned. If the
|
|
21181
|
+
# requested DataStore does not have a patient filter, a NOT_FOUND error will be
|
|
21182
|
+
# returned
|
|
21183
|
+
# Corresponds to the JSON property `dataStore`
|
|
21184
|
+
# @return [String]
|
|
21185
|
+
attr_accessor :data_store
|
|
21186
|
+
|
|
21187
|
+
# Required. Names of the Group resources to use as a basis for the list of
|
|
21188
|
+
# patients to remove from the patient filter, in format `projects/`project_id`/
|
|
21189
|
+
# locations/`location_id`/datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/
|
|
21190
|
+
# Group/`group_id``. if the caller does not have permission to access the FHIR
|
|
21191
|
+
# store, regardless of whether it exists, PERMISSION_DENIED error is returned.
|
|
21192
|
+
# If the discovery engine service account does not have permission to access the
|
|
21193
|
+
# FHIR store, regardless of whether or not it exists, a PERMISSION_DENIED error
|
|
21194
|
+
# is returned. If the group is not found at the location, a RESOURCE_NOT_FOUND
|
|
21195
|
+
# error will be returned. The filter group must be a FHIR resource name of type
|
|
21196
|
+
# Group, and the list of IDs to remove will be constructed from the direct
|
|
21197
|
+
# members of the group which are Patient resources.
|
|
21198
|
+
# Corresponds to the JSON property `filterGroups`
|
|
21199
|
+
# @return [Array<String>]
|
|
21200
|
+
attr_accessor :filter_groups
|
|
21201
|
+
|
|
21202
|
+
def initialize(**args)
|
|
21203
|
+
update!(**args)
|
|
21204
|
+
end
|
|
21205
|
+
|
|
21206
|
+
# Update properties of this object
|
|
21207
|
+
def update!(**args)
|
|
21208
|
+
@data_store = args[:data_store] if args.key?(:data_store)
|
|
21209
|
+
@filter_groups = args[:filter_groups] if args.key?(:filter_groups)
|
|
21210
|
+
end
|
|
21211
|
+
end
|
|
21212
|
+
|
|
20833
21213
|
# Request message for CompletionService.RemoveSuggestion method.
|
|
20834
21214
|
class GoogleCloudDiscoveryengineV1alphaRemoveSuggestionRequest
|
|
20835
21215
|
include Google::Apis::Core::Hashable
|
|
@@ -20894,6 +21274,47 @@ module Google
|
|
|
20894
21274
|
end
|
|
20895
21275
|
end
|
|
20896
21276
|
|
|
21277
|
+
# Request for DataStoreService.ReplacePatientFilter method.
|
|
21278
|
+
class GoogleCloudDiscoveryengineV1alphaReplacePatientFilterRequest
|
|
21279
|
+
include Google::Apis::Core::Hashable
|
|
21280
|
+
|
|
21281
|
+
# Required. Full resource name of DataStore, such as `projects/`project`/
|
|
21282
|
+
# locations/`location`/collections/`collection_id`/dataStores/`data_store_id``.
|
|
21283
|
+
# If the caller does not have permission to access the DataStore, regardless of
|
|
21284
|
+
# whether or not it exists, a PERMISSION_DENIED error is returned. If the
|
|
21285
|
+
# requested DataStore does not exist, a NOT_FOUND error is returned. If the
|
|
21286
|
+
# requested DataStore already has a patient filter, an ALREADY_EXISTS error will
|
|
21287
|
+
# be returned.
|
|
21288
|
+
# Corresponds to the JSON property `dataStore`
|
|
21289
|
+
# @return [String]
|
|
21290
|
+
attr_accessor :data_store
|
|
21291
|
+
|
|
21292
|
+
# Required. Names of the Group resources to use as a basis for the list of
|
|
21293
|
+
# patients for the new patient filter, in format `projects/`project_id`/
|
|
21294
|
+
# locations/`location_id`/datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/
|
|
21295
|
+
# Group/`group_id``. if the caller does not have permission to access the FHIR
|
|
21296
|
+
# store, regardless of whether it exists, PERMISSION_DENIED error is returned.
|
|
21297
|
+
# If the discovery engine service account does not have permission to access the
|
|
21298
|
+
# FHIR store, regardless of whether or not it exists, a PERMISSION_DENIED error
|
|
21299
|
+
# is returned. If the group is not found at the location, a RESOURCE_NOT_FOUND
|
|
21300
|
+
# error will be returned. The filter group must be a FHIR resource name of type
|
|
21301
|
+
# Group, and the new filter will be constructed from the direct members of the
|
|
21302
|
+
# group which are Patient resources.
|
|
21303
|
+
# Corresponds to the JSON property `filterGroups`
|
|
21304
|
+
# @return [Array<String>]
|
|
21305
|
+
attr_accessor :filter_groups
|
|
21306
|
+
|
|
21307
|
+
def initialize(**args)
|
|
21308
|
+
update!(**args)
|
|
21309
|
+
end
|
|
21310
|
+
|
|
21311
|
+
# Update properties of this object
|
|
21312
|
+
def update!(**args)
|
|
21313
|
+
@data_store = args[:data_store] if args.key?(:data_store)
|
|
21314
|
+
@filter_groups = args[:filter_groups] if args.key?(:filter_groups)
|
|
21315
|
+
end
|
|
21316
|
+
end
|
|
21317
|
+
|
|
20897
21318
|
# Defines a reply message to user.
|
|
20898
21319
|
class GoogleCloudDiscoveryengineV1alphaReply
|
|
20899
21320
|
include Google::Apis::Core::Hashable
|
|
@@ -21751,15 +22172,15 @@ module Google
|
|
|
21751
22172
|
|
|
21752
22173
|
# Optional. The categories associated with a category page. Must be set for
|
|
21753
22174
|
# category navigation queries to achieve good search quality. The format should
|
|
21754
|
-
# be the same as
|
|
21755
|
-
#
|
|
21756
|
-
#
|
|
21757
|
-
#
|
|
21758
|
-
#
|
|
21759
|
-
#
|
|
21760
|
-
#
|
|
21761
|
-
#
|
|
21762
|
-
#
|
|
22175
|
+
# be the same as PageInfo.page_category. This field is the equivalent of the
|
|
22176
|
+
# query for browse (navigation) queries. It's used by the browse model when the
|
|
22177
|
+
# query is empty. If the field is empty, it will not be used by the browse model.
|
|
22178
|
+
# If the field contains more than one element, only the first element will be
|
|
22179
|
+
# used. To represent full path of a category, use '>' character to separate
|
|
22180
|
+
# different hierarchies. If '>' is part of the category name, replace it with
|
|
22181
|
+
# other character(s). For example, `Graphics Cards > RTX>4090 > Founders Edition`
|
|
22182
|
+
# where "RTX > 4090" represents one level, can be rewritten as `Graphics Cards >
|
|
22183
|
+
# RTX_4090 > Founders Edition`
|
|
21763
22184
|
# Corresponds to the JSON property `pageCategories`
|
|
21764
22185
|
# @return [Array<String>]
|
|
21765
22186
|
attr_accessor :page_categories
|
|
@@ -22898,8 +23319,8 @@ module Google
|
|
|
22898
23319
|
# search, the default is `HARD_FILTER`. For multi-datastore search, the default
|
|
22899
23320
|
# behavior is `SOFT_BOOST`. Location-based filters are always applied as hard
|
|
22900
23321
|
# filters, and the `SOFT_BOOST` setting will not affect them. This field is only
|
|
22901
|
-
# used if SearchRequest.
|
|
22902
|
-
#
|
|
23322
|
+
# used if SearchRequest.NaturalLanguageQueryUnderstandingSpec.
|
|
23323
|
+
# FilterExtractionCondition is set to FilterExtractionCondition.ENABLED.
|
|
22903
23324
|
# Corresponds to the JSON property `extractedFilterBehavior`
|
|
22904
23325
|
# @return [String]
|
|
22905
23326
|
attr_accessor :extracted_filter_behavior
|
|
@@ -26819,7 +27240,7 @@ module Google
|
|
|
26819
27240
|
|
|
26820
27241
|
# The name of the collection. It should be collection resource name. Format: `
|
|
26821
27242
|
# projects/`project`/locations/`location`/collections/`collection_id``. For APIs
|
|
26822
|
-
# under WidgetService, such as WidgetService.
|
|
27243
|
+
# under WidgetService, such as WidgetService.LookupWidgetConfig, the project
|
|
26823
27244
|
# number and location part is erased in this field.
|
|
26824
27245
|
# Corresponds to the JSON property `name`
|
|
26825
27246
|
# @return [String]
|
|
@@ -26896,7 +27317,7 @@ module Google
|
|
|
26896
27317
|
# The name of the data store. It should be data store resource name Format: `
|
|
26897
27318
|
# projects/`project`/locations/`location`/collections/`collection_id`/dataStores/
|
|
26898
27319
|
# `data_store_id``. For APIs under WidgetService, such as WidgetService.
|
|
26899
|
-
#
|
|
27320
|
+
# LookupWidgetConfig, the project number and location part is erased in this
|
|
26900
27321
|
# field.
|
|
26901
27322
|
# Corresponds to the JSON property `name`
|
|
26902
27323
|
# @return [String]
|
|
@@ -26952,7 +27373,7 @@ module Google
|
|
|
26952
27373
|
# The name of the data store. It should be data store resource name Format: `
|
|
26953
27374
|
# projects/`project`/locations/`location`/collections/`collection_id`/dataStores/
|
|
26954
27375
|
# `data_store_id``. For APIs under WidgetService, such as WidgetService.
|
|
26955
|
-
#
|
|
27376
|
+
# LookupWidgetConfig, the project number and location part is erased in this
|
|
26956
27377
|
# field.
|
|
26957
27378
|
# Corresponds to the JSON property `name`
|
|
26958
27379
|
# @return [String]
|
|
@@ -27191,9 +27612,10 @@ module Google
|
|
|
27191
27612
|
# Supported keys: * `agent-gallery` * `no-code-agent-builder` * `prompt-gallery`
|
|
27192
27613
|
# * `model-selector` * `notebook-lm` * `people-search` * `people-search-org-
|
|
27193
27614
|
# chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
|
|
27194
|
-
# personalization-memory` * `
|
|
27195
|
-
# * `disable-
|
|
27196
|
-
# content` * `disable-google-drive-
|
|
27615
|
+
# personalization-memory` * `personalization-suggested-highlights` * `disable-
|
|
27616
|
+
# agent-sharing` * `disable-image-generation` * `disable-video-generation` * `
|
|
27617
|
+
# disable-onedrive-upload` * `disable-talk-to-content` * `disable-google-drive-
|
|
27618
|
+
# upload` * `disable-welcome-emails`
|
|
27197
27619
|
# Corresponds to the JSON property `features`
|
|
27198
27620
|
# @return [Hash<String,String>]
|
|
27199
27621
|
attr_accessor :features
|
|
@@ -29094,9 +29516,10 @@ module Google
|
|
|
29094
29516
|
# settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
|
|
29095
29517
|
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
|
29096
29518
|
# org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
|
|
29097
|
-
# personalization-memory` * `
|
|
29098
|
-
# * `disable-
|
|
29099
|
-
# content` * `disable-google-drive-
|
|
29519
|
+
# personalization-memory` * `personalization-suggested-highlights` * `disable-
|
|
29520
|
+
# agent-sharing` * `disable-image-generation` * `disable-video-generation` * `
|
|
29521
|
+
# disable-onedrive-upload` * `disable-talk-to-content` * `disable-google-drive-
|
|
29522
|
+
# upload` * `disable-welcome-emails`
|
|
29100
29523
|
# Corresponds to the JSON property `features`
|
|
29101
29524
|
# @return [Hash<String,String>]
|
|
29102
29525
|
attr_accessor :features
|
|
@@ -29108,6 +29531,11 @@ module Google
|
|
|
29108
29531
|
# @return [String]
|
|
29109
29532
|
attr_accessor :industry_vertical
|
|
29110
29533
|
|
|
29534
|
+
# Configuration message for the Knowledge Graph.
|
|
29535
|
+
# Corresponds to the JSON property `knowledgeGraphConfig`
|
|
29536
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig]
|
|
29537
|
+
attr_accessor :knowledge_graph_config
|
|
29538
|
+
|
|
29111
29539
|
# Additional config specs for a Media Recommendation engine.
|
|
29112
29540
|
# Corresponds to the JSON property `mediaRecommendationEngineConfig`
|
|
29113
29541
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig]
|
|
@@ -29166,6 +29594,7 @@ module Google
|
|
|
29166
29594
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
29167
29595
|
@features = args[:features] if args.key?(:features)
|
|
29168
29596
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
|
29597
|
+
@knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
|
|
29169
29598
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
29170
29599
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
29171
29600
|
@name = args[:name] if args.key?(:name)
|
|
@@ -29309,6 +29738,98 @@ module Google
|
|
|
29309
29738
|
end
|
|
29310
29739
|
end
|
|
29311
29740
|
|
|
29741
|
+
# Configuration message for the Knowledge Graph.
|
|
29742
|
+
class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig
|
|
29743
|
+
include Google::Apis::Core::Hashable
|
|
29744
|
+
|
|
29745
|
+
# Specify entity types to support.
|
|
29746
|
+
# Corresponds to the JSON property `cloudKnowledgeGraphTypes`
|
|
29747
|
+
# @return [Array<String>]
|
|
29748
|
+
attr_accessor :cloud_knowledge_graph_types
|
|
29749
|
+
|
|
29750
|
+
# Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false
|
|
29751
|
+
# if not specified.
|
|
29752
|
+
# Corresponds to the JSON property `enableCloudKnowledgeGraph`
|
|
29753
|
+
# @return [Boolean]
|
|
29754
|
+
attr_accessor :enable_cloud_knowledge_graph
|
|
29755
|
+
alias_method :enable_cloud_knowledge_graph?, :enable_cloud_knowledge_graph
|
|
29756
|
+
|
|
29757
|
+
# Whether to enable the Private Knowledge Graph for the engine. Defaults to
|
|
29758
|
+
# false if not specified.
|
|
29759
|
+
# Corresponds to the JSON property `enablePrivateKnowledgeGraph`
|
|
29760
|
+
# @return [Boolean]
|
|
29761
|
+
attr_accessor :enable_private_knowledge_graph
|
|
29762
|
+
alias_method :enable_private_knowledge_graph?, :enable_private_knowledge_graph
|
|
29763
|
+
|
|
29764
|
+
# Feature config for the Knowledge Graph.
|
|
29765
|
+
# Corresponds to the JSON property `featureConfig`
|
|
29766
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig]
|
|
29767
|
+
attr_accessor :feature_config
|
|
29768
|
+
|
|
29769
|
+
# Specify entity types to support.
|
|
29770
|
+
# Corresponds to the JSON property `privateKnowledgeGraphTypes`
|
|
29771
|
+
# @return [Array<String>]
|
|
29772
|
+
attr_accessor :private_knowledge_graph_types
|
|
29773
|
+
|
|
29774
|
+
def initialize(**args)
|
|
29775
|
+
update!(**args)
|
|
29776
|
+
end
|
|
29777
|
+
|
|
29778
|
+
# Update properties of this object
|
|
29779
|
+
def update!(**args)
|
|
29780
|
+
@cloud_knowledge_graph_types = args[:cloud_knowledge_graph_types] if args.key?(:cloud_knowledge_graph_types)
|
|
29781
|
+
@enable_cloud_knowledge_graph = args[:enable_cloud_knowledge_graph] if args.key?(:enable_cloud_knowledge_graph)
|
|
29782
|
+
@enable_private_knowledge_graph = args[:enable_private_knowledge_graph] if args.key?(:enable_private_knowledge_graph)
|
|
29783
|
+
@feature_config = args[:feature_config] if args.key?(:feature_config)
|
|
29784
|
+
@private_knowledge_graph_types = args[:private_knowledge_graph_types] if args.key?(:private_knowledge_graph_types)
|
|
29785
|
+
end
|
|
29786
|
+
end
|
|
29787
|
+
|
|
29788
|
+
# Feature config for the Knowledge Graph.
|
|
29789
|
+
class GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig
|
|
29790
|
+
include Google::Apis::Core::Hashable
|
|
29791
|
+
|
|
29792
|
+
# Whether to disable the private KG auto complete for the engine. Defaults to
|
|
29793
|
+
# false if not specified.
|
|
29794
|
+
# Corresponds to the JSON property `disablePrivateKgAutoComplete`
|
|
29795
|
+
# @return [Boolean]
|
|
29796
|
+
attr_accessor :disable_private_kg_auto_complete
|
|
29797
|
+
alias_method :disable_private_kg_auto_complete?, :disable_private_kg_auto_complete
|
|
29798
|
+
|
|
29799
|
+
# Whether to disable the private KG enrichment for the engine. Defaults to false
|
|
29800
|
+
# if not specified.
|
|
29801
|
+
# Corresponds to the JSON property `disablePrivateKgEnrichment`
|
|
29802
|
+
# @return [Boolean]
|
|
29803
|
+
attr_accessor :disable_private_kg_enrichment
|
|
29804
|
+
alias_method :disable_private_kg_enrichment?, :disable_private_kg_enrichment
|
|
29805
|
+
|
|
29806
|
+
# Whether to disable the private KG for query UI chips. Defaults to false if not
|
|
29807
|
+
# specified.
|
|
29808
|
+
# Corresponds to the JSON property `disablePrivateKgQueryUiChips`
|
|
29809
|
+
# @return [Boolean]
|
|
29810
|
+
attr_accessor :disable_private_kg_query_ui_chips
|
|
29811
|
+
alias_method :disable_private_kg_query_ui_chips?, :disable_private_kg_query_ui_chips
|
|
29812
|
+
|
|
29813
|
+
# Whether to disable the private KG query understanding for the engine. Defaults
|
|
29814
|
+
# to false if not specified.
|
|
29815
|
+
# Corresponds to the JSON property `disablePrivateKgQueryUnderstanding`
|
|
29816
|
+
# @return [Boolean]
|
|
29817
|
+
attr_accessor :disable_private_kg_query_understanding
|
|
29818
|
+
alias_method :disable_private_kg_query_understanding?, :disable_private_kg_query_understanding
|
|
29819
|
+
|
|
29820
|
+
def initialize(**args)
|
|
29821
|
+
update!(**args)
|
|
29822
|
+
end
|
|
29823
|
+
|
|
29824
|
+
# Update properties of this object
|
|
29825
|
+
def update!(**args)
|
|
29826
|
+
@disable_private_kg_auto_complete = args[:disable_private_kg_auto_complete] if args.key?(:disable_private_kg_auto_complete)
|
|
29827
|
+
@disable_private_kg_enrichment = args[:disable_private_kg_enrichment] if args.key?(:disable_private_kg_enrichment)
|
|
29828
|
+
@disable_private_kg_query_ui_chips = args[:disable_private_kg_query_ui_chips] if args.key?(:disable_private_kg_query_ui_chips)
|
|
29829
|
+
@disable_private_kg_query_understanding = args[:disable_private_kg_query_understanding] if args.key?(:disable_private_kg_query_understanding)
|
|
29830
|
+
end
|
|
29831
|
+
end
|
|
29832
|
+
|
|
29312
29833
|
# Additional config specs for a Media Recommendation engine.
|
|
29313
29834
|
class GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig
|
|
29314
29835
|
include Google::Apis::Core::Hashable
|
|
@@ -29631,6 +30152,16 @@ module Google
|
|
|
29631
30152
|
attr_accessor :enable_static_indexing_for_batch_ingestion
|
|
29632
30153
|
alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
|
|
29633
30154
|
|
|
30155
|
+
# Optional. Names of the Group resources to use as a basis for the initial
|
|
30156
|
+
# patient filter, in format `projects/`project_id`/locations/`location_id`/
|
|
30157
|
+
# datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/Group/`group_id``. The
|
|
30158
|
+
# filter group must be a FHIR resource name of type Group, and the filter will
|
|
30159
|
+
# be constructed from the direct members of the group which are Patient
|
|
30160
|
+
# resources.
|
|
30161
|
+
# Corresponds to the JSON property `initialFilterGroups`
|
|
30162
|
+
# @return [Array<String>]
|
|
30163
|
+
attr_accessor :initial_filter_groups
|
|
30164
|
+
|
|
29634
30165
|
def initialize(**args)
|
|
29635
30166
|
update!(**args)
|
|
29636
30167
|
end
|
|
@@ -29639,6 +30170,7 @@ module Google
|
|
|
29639
30170
|
def update!(**args)
|
|
29640
30171
|
@enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
|
|
29641
30172
|
@enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
|
|
30173
|
+
@initial_filter_groups = args[:initial_filter_groups] if args.key?(:initial_filter_groups)
|
|
29642
30174
|
end
|
|
29643
30175
|
end
|
|
29644
30176
|
|
|
@@ -31102,15 +31634,15 @@ module Google
|
|
|
31102
31634
|
|
|
31103
31635
|
# Optional. The categories associated with a category page. Must be set for
|
|
31104
31636
|
# category navigation queries to achieve good search quality. The format should
|
|
31105
|
-
# be the same as
|
|
31106
|
-
#
|
|
31107
|
-
#
|
|
31108
|
-
#
|
|
31109
|
-
#
|
|
31110
|
-
#
|
|
31111
|
-
#
|
|
31112
|
-
#
|
|
31113
|
-
#
|
|
31637
|
+
# be the same as PageInfo.page_category. This field is the equivalent of the
|
|
31638
|
+
# query for browse (navigation) queries. It's used by the browse model when the
|
|
31639
|
+
# query is empty. If the field is empty, it will not be used by the browse model.
|
|
31640
|
+
# If the field contains more than one element, only the first element will be
|
|
31641
|
+
# used. To represent full path of a category, use '>' character to separate
|
|
31642
|
+
# different hierarchies. If '>' is part of the category name, replace it with
|
|
31643
|
+
# other character(s). For example, `Graphics Cards > RTX>4090 > Founders Edition`
|
|
31644
|
+
# where "RTX > 4090" represents one level, can be rewritten as `Graphics Cards >
|
|
31645
|
+
# RTX_4090 > Founders Edition`
|
|
31114
31646
|
# Corresponds to the JSON property `pageCategories`
|
|
31115
31647
|
# @return [Array<String>]
|
|
31116
31648
|
attr_accessor :page_categories
|
|
@@ -32238,8 +32770,8 @@ module Google
|
|
|
32238
32770
|
# search, the default is `HARD_FILTER`. For multi-datastore search, the default
|
|
32239
32771
|
# behavior is `SOFT_BOOST`. Location-based filters are always applied as hard
|
|
32240
32772
|
# filters, and the `SOFT_BOOST` setting will not affect them. This field is only
|
|
32241
|
-
# used if SearchRequest.
|
|
32242
|
-
#
|
|
32773
|
+
# used if SearchRequest.NaturalLanguageQueryUnderstandingSpec.
|
|
32774
|
+
# FilterExtractionCondition is set to FilterExtractionCondition.ENABLED.
|
|
32243
32775
|
# Corresponds to the JSON property `extractedFilterBehavior`
|
|
32244
32776
|
# @return [String]
|
|
32245
32777
|
attr_accessor :extracted_filter_behavior
|
|
@@ -33329,7 +33861,7 @@ module Google
|
|
|
33329
33861
|
end
|
|
33330
33862
|
end
|
|
33331
33863
|
|
|
33332
|
-
# Request for
|
|
33864
|
+
# Request for BatchDeleteSourcesRequest method.
|
|
33333
33865
|
class GoogleCloudNotebooklmV1alphaBatchDeleteSourcesRequest
|
|
33334
33866
|
include Google::Apis::Core::Hashable
|
|
33335
33867
|
|