Skip to content

Commit 4b5d19b

Browse files
feat: [google-cloud-discoveryengine] add CMEK config service (#13972)
BEGIN_COMMIT_OVERRIDE feat: add CMEK config service feat: add identity mapping service feat: add user license config service feat: add HealthcareFhirConfig to FHIR data store feat: add ConnectorRunErrorContext to error log feat: support structured content for chunk feat: support ACL data store and document feat: add more options for layout parser config feat: support media recommendation engine feat: enable claim level score for grounding feat: add custom search operators for Workspace search feat: add more indexing state for site search engine docs: keep the API doc up-to-date with recent changes END_COMMIT_OVERRIDE feat: add identity mapping service feat: add user license config service feat: add HealthcareFhirConfig to FHIR data store feat: add ConnectorRunErrorContext to error log feat: support structured content for chunk feat: support ACL data store and document feat: add more options for layout parser config feat: support media recommendation engine feat: enable claim level score for grounding feat: add custom search operators for Workspace search feat: add more indexing state for site search engine docs: keep the API doc up-to-date with recent changes PiperOrigin-RevId: 766759284 Source-Link: googleapis/googleapis@9953dde Source-Link: googleapis/googleapis-gen@2a4efee Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpc2NvdmVyeWVuZ2luZS8uT3dsQm90LnlhbWwiLCJoIjoiMmE0ZWZlZTc3MGMzMjg0MDAyNmEwMjJlM2E5Mzg4NTBmNjA5Y2FhZCJ9 --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 134af69 commit 4b5d19b

File tree

124 files changed

+47692
-3059
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+47692
-3059
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
CmekConfigService
2+
-----------------------------------
3+
4+
.. automodule:: google.cloud.discoveryengine_v1.services.cmek_config_service
5+
:members:
6+
:inherited-members:
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
IdentityMappingStoreService
2+
---------------------------------------------
3+
4+
.. automodule:: google.cloud.discoveryengine_v1.services.identity_mapping_store_service
5+
:members:
6+
:inherited-members:
7+
8+
.. automodule:: google.cloud.discoveryengine_v1.services.identity_mapping_store_service.pagers
9+
:members:
10+
:inherited-members:

packages/google-cloud-discoveryengine/docs/discoveryengine_v1/services_.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ Services for Google Cloud Discoveryengine v1 API
33
.. toctree::
44
:maxdepth: 2
55

6+
cmek_config_service
67
completion_service
78
control_service
89
conversational_search_service
910
data_store_service
1011
document_service
1112
engine_service
1213
grounded_generation_service
14+
identity_mapping_store_service
1315
project_service
1416
rank_service
1517
recommendation_service
@@ -19,3 +21,4 @@ Services for Google Cloud Discoveryengine v1 API
1921
serving_config_service
2022
site_search_engine_service
2123
user_event_service
24+
user_license_service
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
UserLicenseService
2+
------------------------------------
3+
4+
.. automodule:: google.cloud.discoveryengine_v1.services.user_license_service
5+
:members:
6+
:inherited-members:
7+
8+
.. automodule:: google.cloud.discoveryengine_v1.services.user_license_service.pagers
9+
:members:
10+
:inherited-members:

packages/google-cloud-discoveryengine/google/cloud/discoveryengine_v1/__init__.py

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
__version__ = package_version.__version__
1919

2020

21+
from .services.cmek_config_service import (
22+
CmekConfigServiceAsyncClient,
23+
CmekConfigServiceClient,
24+
)
2125
from .services.completion_service import (
2226
CompletionServiceAsyncClient,
2327
CompletionServiceClient,
@@ -37,6 +41,10 @@
3741
GroundedGenerationServiceAsyncClient,
3842
GroundedGenerationServiceClient,
3943
)
44+
from .services.identity_mapping_store_service import (
45+
IdentityMappingStoreServiceAsyncClient,
46+
IdentityMappingStoreServiceClient,
47+
)
4048
from .services.project_service import ProjectServiceAsyncClient, ProjectServiceClient
4149
from .services.rank_service import RankServiceAsyncClient, RankServiceClient
4250
from .services.recommendation_service import (
@@ -61,13 +69,30 @@
6169
UserEventServiceAsyncClient,
6270
UserEventServiceClient,
6371
)
72+
from .services.user_license_service import (
73+
UserLicenseServiceAsyncClient,
74+
UserLicenseServiceClient,
75+
)
6476
from .types.answer import Answer
6577
from .types.chunk import Chunk
78+
from .types.cmek_config_service import (
79+
CmekConfig,
80+
DeleteCmekConfigMetadata,
81+
DeleteCmekConfigRequest,
82+
GetCmekConfigRequest,
83+
ListCmekConfigsRequest,
84+
ListCmekConfigsResponse,
85+
SingleRegionKey,
86+
UpdateCmekConfigMetadata,
87+
UpdateCmekConfigRequest,
88+
)
6689
from .types.common import (
6790
CustomAttribute,
6891
DoubleList,
92+
HealthcareFhirConfig,
6993
IndustryVertical,
7094
Interval,
95+
Principal,
7196
SearchAddOn,
7297
SearchLinkPromotion,
7398
SearchTier,
@@ -156,6 +181,21 @@
156181
GroundedGenerationContent,
157182
)
158183
from .types.grounding import FactChunk, GroundingFact
184+
from .types.identity_mapping_store import IdentityMappingEntry, IdentityMappingStore
185+
from .types.identity_mapping_store_service import (
186+
CreateIdentityMappingStoreRequest,
187+
DeleteIdentityMappingStoreMetadata,
188+
DeleteIdentityMappingStoreRequest,
189+
GetIdentityMappingStoreRequest,
190+
IdentityMappingEntryOperationMetadata,
191+
ImportIdentityMappingsRequest,
192+
ImportIdentityMappingsResponse,
193+
ListIdentityMappingsRequest,
194+
ListIdentityMappingsResponse,
195+
ListIdentityMappingStoresRequest,
196+
ListIdentityMappingStoresResponse,
197+
PurgeIdentityMappingsRequest,
198+
)
159199
from .types.import_config import (
160200
AlloyDbSource,
161201
BigQuerySource,
@@ -275,15 +315,25 @@
275315
UserEvent,
276316
)
277317
from .types.user_event_service import CollectUserEventRequest, WriteUserEventRequest
318+
from .types.user_license import UserLicense
319+
from .types.user_license_service import (
320+
BatchUpdateUserLicensesMetadata,
321+
BatchUpdateUserLicensesRequest,
322+
BatchUpdateUserLicensesResponse,
323+
ListUserLicensesRequest,
324+
ListUserLicensesResponse,
325+
)
278326

279327
__all__ = (
328+
"CmekConfigServiceAsyncClient",
280329
"CompletionServiceAsyncClient",
281330
"ControlServiceAsyncClient",
282331
"ConversationalSearchServiceAsyncClient",
283332
"DataStoreServiceAsyncClient",
284333
"DocumentServiceAsyncClient",
285334
"EngineServiceAsyncClient",
286335
"GroundedGenerationServiceAsyncClient",
336+
"IdentityMappingStoreServiceAsyncClient",
287337
"ProjectServiceAsyncClient",
288338
"RankServiceAsyncClient",
289339
"RecommendationServiceAsyncClient",
@@ -293,6 +343,7 @@
293343
"ServingConfigServiceAsyncClient",
294344
"SiteSearchEngineServiceAsyncClient",
295345
"UserEventServiceAsyncClient",
346+
"UserLicenseServiceAsyncClient",
296347
"AdvancedSiteSearchConfig",
297348
"AlloyDbSource",
298349
"Answer",
@@ -303,6 +354,9 @@
303354
"BatchCreateTargetSitesResponse",
304355
"BatchGetDocumentsMetadataRequest",
305356
"BatchGetDocumentsMetadataResponse",
357+
"BatchUpdateUserLicensesMetadata",
358+
"BatchUpdateUserLicensesRequest",
359+
"BatchUpdateUserLicensesResponse",
306360
"BatchVerifyTargetSitesMetadata",
307361
"BatchVerifyTargetSitesRequest",
308362
"BatchVerifyTargetSitesResponse",
@@ -314,6 +368,8 @@
314368
"CheckGroundingSpec",
315369
"Chunk",
316370
"CloudSqlSource",
371+
"CmekConfig",
372+
"CmekConfigServiceClient",
317373
"CollectUserEventRequest",
318374
"CompleteQueryRequest",
319375
"CompleteQueryResponse",
@@ -336,6 +392,7 @@
336392
"CreateDocumentRequest",
337393
"CreateEngineMetadata",
338394
"CreateEngineRequest",
395+
"CreateIdentityMappingStoreRequest",
339396
"CreateSchemaMetadata",
340397
"CreateSchemaRequest",
341398
"CreateSessionRequest",
@@ -347,13 +404,17 @@
347404
"CustomTuningModel",
348405
"DataStore",
349406
"DataStoreServiceClient",
407+
"DeleteCmekConfigMetadata",
408+
"DeleteCmekConfigRequest",
350409
"DeleteControlRequest",
351410
"DeleteConversationRequest",
352411
"DeleteDataStoreMetadata",
353412
"DeleteDataStoreRequest",
354413
"DeleteDocumentRequest",
355414
"DeleteEngineMetadata",
356415
"DeleteEngineRequest",
416+
"DeleteIdentityMappingStoreMetadata",
417+
"DeleteIdentityMappingStoreRequest",
357418
"DeleteSchemaMetadata",
358419
"DeleteSchemaRequest",
359420
"DeleteSessionRequest",
@@ -385,11 +446,13 @@
385446
"GenerateGroundedContentRequest",
386447
"GenerateGroundedContentResponse",
387448
"GetAnswerRequest",
449+
"GetCmekConfigRequest",
388450
"GetControlRequest",
389451
"GetConversationRequest",
390452
"GetDataStoreRequest",
391453
"GetDocumentRequest",
392454
"GetEngineRequest",
455+
"GetIdentityMappingStoreRequest",
393456
"GetSchemaRequest",
394457
"GetSessionRequest",
395458
"GetSiteSearchEngineRequest",
@@ -398,13 +461,20 @@
398461
"GroundedGenerationServiceClient",
399462
"GroundingFact",
400463
"HarmCategory",
464+
"HealthcareFhirConfig",
465+
"IdentityMappingEntry",
466+
"IdentityMappingEntryOperationMetadata",
467+
"IdentityMappingStore",
468+
"IdentityMappingStoreServiceClient",
401469
"ImportCompletionSuggestionsMetadata",
402470
"ImportCompletionSuggestionsRequest",
403471
"ImportCompletionSuggestionsResponse",
404472
"ImportDocumentsMetadata",
405473
"ImportDocumentsRequest",
406474
"ImportDocumentsResponse",
407475
"ImportErrorConfig",
476+
"ImportIdentityMappingsRequest",
477+
"ImportIdentityMappingsResponse",
408478
"ImportSuggestionDenyListEntriesMetadata",
409479
"ImportSuggestionDenyListEntriesRequest",
410480
"ImportSuggestionDenyListEntriesResponse",
@@ -413,6 +483,8 @@
413483
"ImportUserEventsResponse",
414484
"IndustryVertical",
415485
"Interval",
486+
"ListCmekConfigsRequest",
487+
"ListCmekConfigsResponse",
416488
"ListControlsRequest",
417489
"ListControlsResponse",
418490
"ListConversationsRequest",
@@ -425,15 +497,22 @@
425497
"ListDocumentsResponse",
426498
"ListEnginesRequest",
427499
"ListEnginesResponse",
500+
"ListIdentityMappingStoresRequest",
501+
"ListIdentityMappingStoresResponse",
502+
"ListIdentityMappingsRequest",
503+
"ListIdentityMappingsResponse",
428504
"ListSchemasRequest",
429505
"ListSchemasResponse",
430506
"ListSessionsRequest",
431507
"ListSessionsResponse",
432508
"ListTargetSitesRequest",
433509
"ListTargetSitesResponse",
510+
"ListUserLicensesRequest",
511+
"ListUserLicensesResponse",
434512
"MediaInfo",
435513
"PageInfo",
436514
"PanelInfo",
515+
"Principal",
437516
"Project",
438517
"ProjectServiceClient",
439518
"ProvisionProjectMetadata",
@@ -445,6 +524,7 @@
445524
"PurgeDocumentsRequest",
446525
"PurgeDocumentsResponse",
447526
"PurgeErrorConfig",
527+
"PurgeIdentityMappingsRequest",
448528
"PurgeSuggestionDenyListEntriesMetadata",
449529
"PurgeSuggestionDenyListEntriesRequest",
450530
"PurgeSuggestionDenyListEntriesResponse",
@@ -478,6 +558,7 @@
478558
"ServingConfig",
479559
"ServingConfigServiceClient",
480560
"Session",
561+
"SingleRegionKey",
481562
"SiteSearchEngine",
482563
"SiteSearchEngineServiceClient",
483564
"SiteVerificationInfo",
@@ -491,6 +572,8 @@
491572
"TrainCustomModelRequest",
492573
"TrainCustomModelResponse",
493574
"TransactionInfo",
575+
"UpdateCmekConfigMetadata",
576+
"UpdateCmekConfigRequest",
494577
"UpdateControlRequest",
495578
"UpdateConversationRequest",
496579
"UpdateDataStoreRequest",
@@ -505,6 +588,8 @@
505588
"UserEvent",
506589
"UserEventServiceClient",
507590
"UserInfo",
591+
"UserLicense",
592+
"UserLicenseServiceClient",
508593
"WorkspaceConfig",
509594
"WriteUserEventRequest",
510595
)

0 commit comments

Comments
 (0)