@maxim_mazurok/gapi.client.discoveryengine-v1 0.1.20251221 → 0.1.20260112
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.
- package/index.d.ts +113 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://discoveryengine.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260112
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -342,6 +342,12 @@ declare namespace gapi.client {
|
|
|
342
342
|
/** Optional. Whether to use static secrets for the connector. If true, the secrets provided in the action_params will be ignored. */
|
|
343
343
|
useStaticSecrets?: boolean;
|
|
344
344
|
}
|
|
345
|
+
interface GoogleCloudDiscoveryengineV1alphaAddPatientFilterRequest {
|
|
346
|
+
/** Required. Full resource name of DataStore, such as `projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}`. If the caller does not have permission to access the DataStore, regardless of whether or not it exists, a PERMISSION_DENIED error is returned. If the requested DataStore does not exist, a NOT_FOUND error is returned. If the requested DataStore already has a patient filter, an ALREADY_EXISTS error will be returned. */
|
|
347
|
+
dataStore?: string;
|
|
348
|
+
/** Required. Names of the Group resources to use as a basis for the patient filter, in format `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/fhirStores/{fhir_store_id}/fhir/Group/{group_id}`. if the caller does not have permission to access the FHIR store, regardless of whether it exists, PERMISSION_DENIED error is returned. If the discovery engine service account does not have permission to access the FHIR store, regardless of whether or not it exists, a PERMISSION_DENIED error is returned. If the group is not found at the location, a RESOURCE_NOT_FOUND error will be returned. The filter group must be a FHIR resource name of type Group, and the filter will be constructed from the direct members of the group which are Patient resources. */
|
|
349
|
+
filterGroups?: string[];
|
|
350
|
+
}
|
|
345
351
|
interface GoogleCloudDiscoveryengineV1alphaAdvancedSiteSearchConfig {
|
|
346
352
|
/** If set true, automatic refresh is disabled for the DataStore. */
|
|
347
353
|
disableAutomaticRefresh?: boolean;
|
|
@@ -1207,6 +1213,10 @@ declare namespace gapi.client {
|
|
|
1207
1213
|
/** Operation last update time. If the operation is done, this is also the finish time. */
|
|
1208
1214
|
updateTime?: string;
|
|
1209
1215
|
}
|
|
1216
|
+
interface GoogleCloudDiscoveryengineV1alphaDeletePatientFiltersRequest {
|
|
1217
|
+
/** Required. Full resource name of DataStore, such as `projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}`. If the caller does not have permission to access the DataStore, regardless of whether or not it exists, a PERMISSION_DENIED error is returned. If the requested DataStore does not exist, a NOT_FOUND error is returned. If the requested DataStore does not have a patient filter, a NOT_FOUND error will be returned. */
|
|
1218
|
+
dataStore?: string;
|
|
1219
|
+
}
|
|
1210
1220
|
interface GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata {
|
|
1211
1221
|
/** Operation create time. */
|
|
1212
1222
|
createTime?: string;
|
|
@@ -1345,6 +1355,8 @@ declare namespace gapi.client {
|
|
|
1345
1355
|
features?: {[P in string]: string};
|
|
1346
1356
|
/** Optional. The industry vertical that the engine registers. The restriction of the Engine industry vertical is based on DataStore: Vertical on Engine has to match vertical of the DataStore linked to the engine. */
|
|
1347
1357
|
industryVertical?: string;
|
|
1358
|
+
/** Optional. Configurations for the Knowledge Graph. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
|
|
1359
|
+
knowledgeGraphConfig?: GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig;
|
|
1348
1360
|
/** Configurations for the Media Engine. Only applicable on the data stores with solution_type SOLUTION_TYPE_RECOMMENDATION and IndustryVertical.MEDIA vertical. */
|
|
1349
1361
|
mediaRecommendationEngineConfig?: GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig;
|
|
1350
1362
|
/** Optional. Maps a model name to its specific configuration for this engine. This allows admin users to turn on/off individual models. This only stores models whose states are overridden by the admin. When the state is unspecified, or model_configs is empty for this model, the system will decide if this model should be available or not based on the default configuration. For example, a preview model should be disabled by default if the admin has not chosen to enable it. */
|
|
@@ -1388,6 +1400,28 @@ declare namespace gapi.client {
|
|
|
1388
1400
|
/** The name of the company, business or entity that is associated with the engine. Setting this may help improve LLM related features. */
|
|
1389
1401
|
companyName?: string;
|
|
1390
1402
|
}
|
|
1403
|
+
interface GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig {
|
|
1404
|
+
/** Specify entity types to support. */
|
|
1405
|
+
cloudKnowledgeGraphTypes?: string[];
|
|
1406
|
+
/** Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false if not specified. */
|
|
1407
|
+
enableCloudKnowledgeGraph?: boolean;
|
|
1408
|
+
/** Whether to enable the Private Knowledge Graph for the engine. Defaults to false if not specified. */
|
|
1409
|
+
enablePrivateKnowledgeGraph?: boolean;
|
|
1410
|
+
/** Optional. Feature config for the Knowledge Graph. */
|
|
1411
|
+
featureConfig?: GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig;
|
|
1412
|
+
/** Specify entity types to support. */
|
|
1413
|
+
privateKnowledgeGraphTypes?: string[];
|
|
1414
|
+
}
|
|
1415
|
+
interface GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig {
|
|
1416
|
+
/** Whether to disable the private KG auto complete for the engine. Defaults to false if not specified. */
|
|
1417
|
+
disablePrivateKgAutoComplete?: boolean;
|
|
1418
|
+
/** Whether to disable the private KG enrichment for the engine. Defaults to false if not specified. */
|
|
1419
|
+
disablePrivateKgEnrichment?: boolean;
|
|
1420
|
+
/** Whether to disable the private KG for query UI chips. Defaults to false if not specified. */
|
|
1421
|
+
disablePrivateKgQueryUiChips?: boolean;
|
|
1422
|
+
/** Whether to disable the private KG query understanding for the engine. Defaults to false if not specified. */
|
|
1423
|
+
disablePrivateKgQueryUnderstanding?: boolean;
|
|
1424
|
+
}
|
|
1391
1425
|
interface GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig {
|
|
1392
1426
|
/** Optional. Additional engine features config. */
|
|
1393
1427
|
engineFeaturesConfig?: GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfigEngineFeaturesConfig;
|
|
@@ -1527,6 +1561,8 @@ declare namespace gapi.client {
|
|
|
1527
1561
|
enableConfigurableSchema?: boolean;
|
|
1528
1562
|
/** Whether to enable static indexing for `HEALTHCARE_FHIR` batch ingestion. If set to `true`, the batch ingestion will be processed in a static indexing mode which is slower but more capable of handling larger volume. */
|
|
1529
1563
|
enableStaticIndexingForBatchIngestion?: boolean;
|
|
1564
|
+
/** Optional. Names of the Group resources to use as a basis for the initial patient filter, in format `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/fhirStores/{fhir_store_id}/fhir/Group/{group_id}`. The filter group must be a FHIR resource name of type Group, and the filter will be constructed from the direct members of the group which are Patient resources. */
|
|
1565
|
+
initialFilterGroups?: string[];
|
|
1530
1566
|
}
|
|
1531
1567
|
interface GoogleCloudDiscoveryengineV1alphaIdentityMappingEntryOperationMetadata {
|
|
1532
1568
|
/** The number of IdentityMappingEntries that failed to be processed. */
|
|
@@ -1728,6 +1764,16 @@ declare namespace gapi.client {
|
|
|
1728
1764
|
/** Vertex AI's organic crawl rate time series, which is the crawl rate of Google-CloudVertexBot when dedicate crawl is not set. Please refer to https://developers.google.com/search/docs/crawling-indexing/google-common-crawlers#google-cloudvertexbot for more details about Google-CloudVertexBot. */
|
|
1729
1765
|
vertexAiOrganicCrawlRate?: GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries;
|
|
1730
1766
|
}
|
|
1767
|
+
interface GoogleCloudDiscoveryengineV1alphaPatientFilterOperationMetadata {
|
|
1768
|
+
/** Operation create time. */
|
|
1769
|
+
createTime?: string;
|
|
1770
|
+
/** The number of patient IDs added to the patient filter. */
|
|
1771
|
+
filtersAddedCount?: string;
|
|
1772
|
+
/** The number of patient IDs removed from the patient filter. */
|
|
1773
|
+
filtersRemovedCount?: string;
|
|
1774
|
+
/** Operation last update time. If the operation is done, this is also the finish time. */
|
|
1775
|
+
updateTime?: string;
|
|
1776
|
+
}
|
|
1731
1777
|
interface GoogleCloudDiscoveryengineV1alphaProject {
|
|
1732
1778
|
/** Output only. The current status of the project's configurable billing. */
|
|
1733
1779
|
configurableBillingStatus?: GoogleCloudDiscoveryengineV1alphaProjectConfigurableBillingStatus;
|
|
@@ -1921,6 +1967,18 @@ declare namespace gapi.client {
|
|
|
1921
1967
|
/** Output only. The state of the response. */
|
|
1922
1968
|
state?: string;
|
|
1923
1969
|
}
|
|
1970
|
+
interface GoogleCloudDiscoveryengineV1alphaRemovePatientFilterRequest {
|
|
1971
|
+
/** Required. Full resource name of DataStore, such as `projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}`. If the caller does not have permission to access the DataStore, regardless of whether or not it exists, a PERMISSION_DENIED error is returned. If the requested DataStore does not exist, a NOT_FOUND error is returned. If the requested DataStore does not have a patient filter, a NOT_FOUND error will be returned */
|
|
1972
|
+
dataStore?: string;
|
|
1973
|
+
/** Required. Names of the Group resources to use as a basis for the list of patients to remove from the patient filter, in format `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/fhirStores/{fhir_store_id}/fhir/Group/{group_id}`. if the caller does not have permission to access the FHIR store, regardless of whether it exists, PERMISSION_DENIED error is returned. If the discovery engine service account does not have permission to access the FHIR store, regardless of whether or not it exists, a PERMISSION_DENIED error is returned. If the group is not found at the location, a RESOURCE_NOT_FOUND error will be returned. The filter group must be a FHIR resource name of type Group, and the list of IDs to remove will be constructed from the direct members of the group which are Patient resources. */
|
|
1974
|
+
filterGroups?: string[];
|
|
1975
|
+
}
|
|
1976
|
+
interface GoogleCloudDiscoveryengineV1alphaReplacePatientFilterRequest {
|
|
1977
|
+
/** Required. Full resource name of DataStore, such as `projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}`. If the caller does not have permission to access the DataStore, regardless of whether or not it exists, a PERMISSION_DENIED error is returned. If the requested DataStore does not exist, a NOT_FOUND error is returned. If the requested DataStore already has a patient filter, an ALREADY_EXISTS error will be returned. */
|
|
1978
|
+
dataStore?: string;
|
|
1979
|
+
/** Required. Names of the Group resources to use as a basis for the list of patients for the new patient filter, in format `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/fhirStores/{fhir_store_id}/fhir/Group/{group_id}`. if the caller does not have permission to access the FHIR store, regardless of whether it exists, PERMISSION_DENIED error is returned. If the discovery engine service account does not have permission to access the FHIR store, regardless of whether or not it exists, a PERMISSION_DENIED error is returned. If the group is not found at the location, a RESOURCE_NOT_FOUND error will be returned. The filter group must be a FHIR resource name of type Group, and the new filter will be constructed from the direct members of the group which are Patient resources. */
|
|
1980
|
+
filterGroups?: string[];
|
|
1981
|
+
}
|
|
1924
1982
|
interface GoogleCloudDiscoveryengineV1alphaSafetyRating {
|
|
1925
1983
|
/** Output only. Indicates whether the content was filtered out because of this rating. */
|
|
1926
1984
|
blocked?: boolean;
|
|
@@ -2899,6 +2957,8 @@ declare namespace gapi.client {
|
|
|
2899
2957
|
interface GoogleCloudDiscoveryengineV1Assistant {
|
|
2900
2958
|
/** Optional. Customer policy for the assistant. */
|
|
2901
2959
|
customerPolicy?: GoogleCloudDiscoveryengineV1AssistantCustomerPolicy;
|
|
2960
|
+
/** Optional. This field controls the default web grounding toggle for end users if `web_grounding_type` is set to `WEB_GROUNDING_TYPE_GOOGLE_SEARCH` or `WEB_GROUNDING_TYPE_ENTERPRISE_WEB_SEARCH`. By default, this field is set to false. If `web_grounding_type` is `WEB_GROUNDING_TYPE_GOOGLE_SEARCH` or `WEB_GROUNDING_TYPE_ENTERPRISE_WEB_SEARCH`, end users will have web grounding enabled by default on UI. If true, grounding toggle will be disabled by default on UI. End users can still enable web grounding in the UI if web grounding is enabled. */
|
|
2961
|
+
defaultWebGroundingToggleOff?: boolean;
|
|
2902
2962
|
/** Optional. Description for additional information. Expected to be shown on the configuration UI, not to the users of the assistant. */
|
|
2903
2963
|
description?: string;
|
|
2904
2964
|
/** Required. The assistant display name. It must be a UTF-8 encoded string with a length limit of 128 characters. */
|
|
@@ -3508,6 +3568,8 @@ declare namespace gapi.client {
|
|
|
3508
3568
|
features?: {[P in string]: string};
|
|
3509
3569
|
/** Optional. The industry vertical that the engine registers. The restriction of the Engine industry vertical is based on DataStore: Vertical on Engine has to match vertical of the DataStore linked to the engine. */
|
|
3510
3570
|
industryVertical?: string;
|
|
3571
|
+
/** Optional. Configurations for the Knowledge Graph. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
|
|
3572
|
+
knowledgeGraphConfig?: GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig;
|
|
3511
3573
|
/** Configurations for the Media Engine. Only applicable on the data stores with solution_type SOLUTION_TYPE_RECOMMENDATION and IndustryVertical.MEDIA vertical. */
|
|
3512
3574
|
mediaRecommendationEngineConfig?: GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig;
|
|
3513
3575
|
/** Optional. Maps a model name to its specific configuration for this engine. This allows admin users to turn on/off individual models. This only stores models whose states are overridden by the admin. When the state is unspecified, or model_configs is empty for this model, the system will decide if this model should be available or not based on the default configuration. For example, a preview model should be disabled by default if the admin has not chosen to enable it. */
|
|
@@ -3547,6 +3609,28 @@ declare namespace gapi.client {
|
|
|
3547
3609
|
/** The name of the company, business or entity that is associated with the engine. Setting this may help improve LLM related features. */
|
|
3548
3610
|
companyName?: string;
|
|
3549
3611
|
}
|
|
3612
|
+
interface GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig {
|
|
3613
|
+
/** Specify entity types to support. */
|
|
3614
|
+
cloudKnowledgeGraphTypes?: string[];
|
|
3615
|
+
/** Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false if not specified. */
|
|
3616
|
+
enableCloudKnowledgeGraph?: boolean;
|
|
3617
|
+
/** Whether to enable the Private Knowledge Graph for the engine. Defaults to false if not specified. */
|
|
3618
|
+
enablePrivateKnowledgeGraph?: boolean;
|
|
3619
|
+
/** Optional. Feature config for the Knowledge Graph. */
|
|
3620
|
+
featureConfig?: GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig;
|
|
3621
|
+
/** Specify entity types to support. */
|
|
3622
|
+
privateKnowledgeGraphTypes?: string[];
|
|
3623
|
+
}
|
|
3624
|
+
interface GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfigFeatureConfig {
|
|
3625
|
+
/** Whether to disable the private KG auto complete for the engine. Defaults to false if not specified. */
|
|
3626
|
+
disablePrivateKgAutoComplete?: boolean;
|
|
3627
|
+
/** Whether to disable the private KG enrichment for the engine. Defaults to false if not specified. */
|
|
3628
|
+
disablePrivateKgEnrichment?: boolean;
|
|
3629
|
+
/** Whether to disable the private KG for query UI chips. Defaults to false if not specified. */
|
|
3630
|
+
disablePrivateKgQueryUiChips?: boolean;
|
|
3631
|
+
/** Whether to disable the private KG query understanding for the engine. Defaults to false if not specified. */
|
|
3632
|
+
disablePrivateKgQueryUnderstanding?: boolean;
|
|
3633
|
+
}
|
|
3550
3634
|
interface GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig {
|
|
3551
3635
|
/** Optional. Additional engine features config. */
|
|
3552
3636
|
engineFeaturesConfig?: GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfigEngineFeaturesConfig;
|
|
@@ -3620,6 +3704,8 @@ declare namespace gapi.client {
|
|
|
3620
3704
|
enableConfigurableSchema?: boolean;
|
|
3621
3705
|
/** Whether to enable static indexing for `HEALTHCARE_FHIR` batch ingestion. If set to `true`, the batch ingestion will be processed in a static indexing mode which is slower but more capable of handling larger volume. */
|
|
3622
3706
|
enableStaticIndexingForBatchIngestion?: boolean;
|
|
3707
|
+
/** Optional. Names of the Group resources to use as a basis for the initial patient filter, in format `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/fhirStores/{fhir_store_id}/fhir/Group/{group_id}`. The filter group must be a FHIR resource name of type Group, and the filter will be constructed from the direct members of the group which are Patient resources. */
|
|
3708
|
+
initialFilterGroups?: string[];
|
|
3623
3709
|
}
|
|
3624
3710
|
interface GoogleCloudDiscoveryengineV1betaIdentityMappingEntryOperationMetadata {
|
|
3625
3711
|
/** The number of IdentityMappingEntries that failed to be processed. */
|
|
@@ -5251,6 +5337,8 @@ declare namespace gapi.client {
|
|
|
5251
5337
|
features?: {[P in string]: string};
|
|
5252
5338
|
/** Optional. The industry vertical that the engine registers. The restriction of the Engine industry vertical is based on DataStore: Vertical on Engine has to match vertical of the DataStore linked to the engine. */
|
|
5253
5339
|
industryVertical?: string;
|
|
5340
|
+
/** Optional. Configurations for the Knowledge Graph. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
|
|
5341
|
+
knowledgeGraphConfig?: GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig;
|
|
5254
5342
|
/** Configurations for the Media Engine. Only applicable on the data stores with solution_type SOLUTION_TYPE_RECOMMENDATION and IndustryVertical.MEDIA vertical. */
|
|
5255
5343
|
mediaRecommendationEngineConfig?: GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig;
|
|
5256
5344
|
/** Optional. Maps a model name to its specific configuration for this engine. This allows admin users to turn on/off individual models. This only stores models whose states are overridden by the admin. When the state is unspecified, or model_configs is empty for this model, the system will decide if this model should be available or not based on the default configuration. For example, a preview model should be disabled by default if the admin has not chosen to enable it. */
|
|
@@ -5290,6 +5378,28 @@ declare namespace gapi.client {
|
|
|
5290
5378
|
/** The name of the company, business or entity that is associated with the engine. Setting this may help improve LLM related features. */
|
|
5291
5379
|
companyName?: string;
|
|
5292
5380
|
}
|
|
5381
|
+
interface GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig {
|
|
5382
|
+
/** Specify entity types to support. */
|
|
5383
|
+
cloudKnowledgeGraphTypes?: string[];
|
|
5384
|
+
/** Whether to enable the Cloud Knowledge Graph for the engine. Defaults to false if not specified. */
|
|
5385
|
+
enableCloudKnowledgeGraph?: boolean;
|
|
5386
|
+
/** Whether to enable the Private Knowledge Graph for the engine. Defaults to false if not specified. */
|
|
5387
|
+
enablePrivateKnowledgeGraph?: boolean;
|
|
5388
|
+
/** Optional. Feature config for the Knowledge Graph. */
|
|
5389
|
+
featureConfig?: GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig;
|
|
5390
|
+
/** Specify entity types to support. */
|
|
5391
|
+
privateKnowledgeGraphTypes?: string[];
|
|
5392
|
+
}
|
|
5393
|
+
interface GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfigFeatureConfig {
|
|
5394
|
+
/** Whether to disable the private KG auto complete for the engine. Defaults to false if not specified. */
|
|
5395
|
+
disablePrivateKgAutoComplete?: boolean;
|
|
5396
|
+
/** Whether to disable the private KG enrichment for the engine. Defaults to false if not specified. */
|
|
5397
|
+
disablePrivateKgEnrichment?: boolean;
|
|
5398
|
+
/** Whether to disable the private KG for query UI chips. Defaults to false if not specified. */
|
|
5399
|
+
disablePrivateKgQueryUiChips?: boolean;
|
|
5400
|
+
/** Whether to disable the private KG query understanding for the engine. Defaults to false if not specified. */
|
|
5401
|
+
disablePrivateKgQueryUnderstanding?: boolean;
|
|
5402
|
+
}
|
|
5293
5403
|
interface GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig {
|
|
5294
5404
|
/** Optional. Additional engine features config. */
|
|
5295
5405
|
engineFeaturesConfig?: GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfigEngineFeaturesConfig;
|
|
@@ -5399,6 +5509,8 @@ declare namespace gapi.client {
|
|
|
5399
5509
|
enableConfigurableSchema?: boolean;
|
|
5400
5510
|
/** Whether to enable static indexing for `HEALTHCARE_FHIR` batch ingestion. If set to `true`, the batch ingestion will be processed in a static indexing mode which is slower but more capable of handling larger volume. */
|
|
5401
5511
|
enableStaticIndexingForBatchIngestion?: boolean;
|
|
5512
|
+
/** Optional. Names of the Group resources to use as a basis for the initial patient filter, in format `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/fhirStores/{fhir_store_id}/fhir/Group/{group_id}`. The filter group must be a FHIR resource name of type Group, and the filter will be constructed from the direct members of the group which are Patient resources. */
|
|
5513
|
+
initialFilterGroups?: string[];
|
|
5402
5514
|
}
|
|
5403
5515
|
interface GoogleCloudDiscoveryengineV1IdentityMappingEntry {
|
|
5404
5516
|
/** Required. Identity outside the customer identity provider. The length limit of external identity will be of 100 characters. */
|