@google-cloud/discoveryengine 1.3.0 → 1.4.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.
Files changed (131) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +63 -0
  3. package/build/protos/google/cloud/discoveryengine/v1/common.proto +54 -3
  4. package/build/protos/google/cloud/discoveryengine/v1/completion.proto +52 -0
  5. package/build/protos/google/cloud/discoveryengine/v1/completion_service.proto +51 -4
  6. package/build/protos/google/cloud/discoveryengine/v1/conversation.proto +3 -0
  7. package/build/protos/google/cloud/discoveryengine/v1/conversational_search_service.proto +40 -1
  8. package/build/protos/google/cloud/discoveryengine/v1/data_store.proto +98 -0
  9. package/build/protos/google/cloud/discoveryengine/v1/data_store_service.proto +304 -0
  10. package/build/protos/google/cloud/discoveryengine/v1/document.proto +1 -1
  11. package/build/protos/google/cloud/discoveryengine/v1/engine.proto +215 -0
  12. package/build/protos/google/cloud/discoveryengine/v1/engine_service.proto +242 -0
  13. package/build/protos/google/cloud/discoveryengine/v1/import_config.proto +64 -0
  14. package/build/protos/google/cloud/discoveryengine/v1/purge_config.proto +38 -0
  15. package/build/protos/google/cloud/discoveryengine/v1/search_service.proto +137 -4
  16. package/build/protos/google/cloud/discoveryengine/v1/site_search_engine.proto +170 -0
  17. package/build/protos/google/cloud/discoveryengine/v1/site_search_engine_service.proto +691 -0
  18. package/build/protos/google/cloud/discoveryengine/v1/user_event.proto +3 -3
  19. package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +0 -5
  20. package/build/protos/google/cloud/discoveryengine/v1alpha/conversation.proto +3 -0
  21. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +39 -0
  22. package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +1 -1
  23. package/build/protos/google/cloud/discoveryengine/v1alpha/engine_service.proto +1 -1
  24. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +97 -0
  25. package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +147 -0
  26. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine.proto +164 -0
  27. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine_service.proto +540 -0
  28. package/build/protos/google/cloud/discoveryengine/v1beta/common.proto +59 -8
  29. package/build/protos/google/cloud/discoveryengine/v1beta/completion.proto +52 -0
  30. package/build/protos/google/cloud/discoveryengine/v1beta/completion_service.proto +51 -4
  31. package/build/protos/google/cloud/discoveryengine/v1beta/conversation.proto +3 -0
  32. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +40 -1
  33. package/build/protos/google/cloud/discoveryengine/v1beta/data_store.proto +98 -0
  34. package/build/protos/google/cloud/discoveryengine/v1beta/data_store_service.proto +306 -0
  35. package/build/protos/google/cloud/discoveryengine/v1beta/document.proto +1 -1
  36. package/build/protos/google/cloud/discoveryengine/v1beta/engine.proto +220 -0
  37. package/build/protos/google/cloud/discoveryengine/v1beta/engine_service.proto +244 -0
  38. package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +64 -0
  39. package/build/protos/google/cloud/discoveryengine/v1beta/purge_config.proto +38 -0
  40. package/build/protos/google/cloud/discoveryengine/v1beta/recommendation_service.proto +26 -3
  41. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +150 -11
  42. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config.proto +264 -0
  43. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config_service.proto +147 -0
  44. package/build/protos/google/cloud/discoveryengine/v1beta/site_search_engine.proto +170 -0
  45. package/build/protos/google/cloud/discoveryengine/v1beta/site_search_engine_service.proto +695 -0
  46. package/build/protos/google/cloud/discoveryengine/v1beta/user_event.proto +4 -3
  47. package/build/protos/protos.d.ts +42822 -21397
  48. package/build/protos/protos.js +110509 -61572
  49. package/build/protos/protos.json +11779 -6752
  50. package/build/src/index.d.ts +10 -1
  51. package/build/src/index.js +11 -2
  52. package/build/src/v1/completion_service_client.d.ts +489 -7
  53. package/build/src/v1/completion_service_client.js +716 -12
  54. package/build/src/v1/completion_service_client_config.json +10 -0
  55. package/build/src/v1/conversational_search_service_client.d.ts +341 -3
  56. package/build/src/v1/conversational_search_service_client.js +467 -10
  57. package/build/src/v1/data_store_service_client.d.ts +1286 -0
  58. package/build/src/v1/data_store_service_client.js +1768 -0
  59. package/build/src/v1/data_store_service_client_config.json +46 -0
  60. package/build/src/v1/document_service_client.d.ts +347 -2
  61. package/build/src/v1/document_service_client.js +507 -10
  62. package/build/src/v1/engine_service_client.d.ts +1211 -0
  63. package/build/src/v1/engine_service_client.js +1731 -0
  64. package/build/src/v1/engine_service_client_config.json +46 -0
  65. package/build/src/v1/index.d.ts +3 -0
  66. package/build/src/v1/index.js +8 -2
  67. package/build/src/v1/schema_service_client.d.ts +272 -2
  68. package/build/src/v1/schema_service_client.js +403 -10
  69. package/build/src/v1/search_service_client.d.ts +515 -11
  70. package/build/src/v1/search_service_client.js +649 -16
  71. package/build/src/v1/site_search_engine_service_client.d.ts +1564 -0
  72. package/build/src/v1/site_search_engine_service_client.js +2075 -0
  73. package/build/src/v1/site_search_engine_service_client_config.json +74 -0
  74. package/build/src/v1/user_event_service_client.d.ts +272 -2
  75. package/build/src/v1/user_event_service_client.js +403 -10
  76. package/build/src/v1alpha/completion_service_client.d.ts +230 -2
  77. package/build/src/v1alpha/completion_service_client.js +339 -10
  78. package/build/src/v1alpha/conversational_search_service_client.d.ts +247 -2
  79. package/build/src/v1alpha/conversational_search_service_client.js +339 -10
  80. package/build/src/v1alpha/data_store_service_client.d.ts +230 -2
  81. package/build/src/v1alpha/data_store_service_client.js +347 -12
  82. package/build/src/v1alpha/document_service_client.d.ts +230 -2
  83. package/build/src/v1alpha/document_service_client.js +347 -12
  84. package/build/src/v1alpha/engine_service_client.d.ts +231 -3
  85. package/build/src/v1alpha/engine_service_client.js +347 -12
  86. package/build/src/v1alpha/index.d.ts +1 -0
  87. package/build/src/v1alpha/index.js +4 -2
  88. package/build/src/v1alpha/recommendation_service_client.d.ts +230 -2
  89. package/build/src/v1alpha/recommendation_service_client.js +339 -10
  90. package/build/src/v1alpha/schema_service_client.d.ts +230 -2
  91. package/build/src/v1alpha/schema_service_client.js +347 -12
  92. package/build/src/v1alpha/search_service_client.d.ts +269 -2
  93. package/build/src/v1alpha/search_service_client.js +365 -10
  94. package/build/src/v1alpha/search_tuning_service_client.d.ts +977 -0
  95. package/build/src/v1alpha/search_tuning_service_client.js +1479 -0
  96. package/build/src/v1alpha/search_tuning_service_client_config.json +30 -0
  97. package/build/src/v1alpha/site_search_engine_service_client.d.ts +750 -3
  98. package/build/src/v1alpha/site_search_engine_service_client.js +838 -14
  99. package/build/src/v1alpha/site_search_engine_service_client_config.json +44 -0
  100. package/build/src/v1alpha/user_event_service_client.d.ts +230 -2
  101. package/build/src/v1alpha/user_event_service_client.js +347 -12
  102. package/build/src/v1beta/completion_service_client.d.ts +633 -7
  103. package/build/src/v1beta/completion_service_client.js +912 -12
  104. package/build/src/v1beta/completion_service_client_config.json +10 -0
  105. package/build/src/v1beta/conversational_search_service_client.d.ts +341 -3
  106. package/build/src/v1beta/conversational_search_service_client.js +467 -10
  107. package/build/src/v1beta/data_store_service_client.d.ts +1433 -0
  108. package/build/src/v1beta/data_store_service_client.js +1966 -0
  109. package/build/src/v1beta/data_store_service_client_config.json +46 -0
  110. package/build/src/v1beta/document_service_client.d.ts +491 -2
  111. package/build/src/v1beta/document_service_client.js +707 -12
  112. package/build/src/v1beta/engine_service_client.d.ts +1357 -0
  113. package/build/src/v1beta/engine_service_client.js +1928 -0
  114. package/build/src/v1beta/engine_service_client_config.json +46 -0
  115. package/build/src/v1beta/index.d.ts +4 -0
  116. package/build/src/v1beta/index.js +10 -2
  117. package/build/src/v1beta/recommendation_service_client.d.ts +420 -5
  118. package/build/src/v1beta/recommendation_service_client.js +571 -10
  119. package/build/src/v1beta/schema_service_client.d.ts +416 -2
  120. package/build/src/v1beta/schema_service_client.js +603 -12
  121. package/build/src/v1beta/search_service_client.d.ts +539 -29
  122. package/build/src/v1beta/search_service_client.js +665 -28
  123. package/build/src/v1beta/serving_config_service_client.d.ts +1102 -0
  124. package/build/src/v1beta/serving_config_service_client.js +1563 -0
  125. package/build/src/v1beta/serving_config_service_client_config.json +38 -0
  126. package/build/src/v1beta/site_search_engine_service_client.d.ts +1712 -0
  127. package/build/src/v1beta/site_search_engine_service_client.js +2271 -0
  128. package/build/src/v1beta/site_search_engine_service_client_config.json +74 -0
  129. package/build/src/v1beta/user_event_service_client.d.ts +416 -2
  130. package/build/src/v1beta/user_event_service_client.js +603 -12
  131. package/package.json +3 -3
@@ -14,6 +14,8 @@ export declare class CompletionServiceClient {
14
14
  private _gaxGrpc;
15
15
  private _protos;
16
16
  private _defaults;
17
+ private _universeDomain;
18
+ private _servicePath;
17
19
  auth: gax.GoogleAuth;
18
20
  descriptors: Descriptors;
19
21
  warn: (code: string, message: string, warnType?: string) => void;
@@ -83,15 +85,22 @@ export declare class CompletionServiceClient {
83
85
  }>;
84
86
  /**
85
87
  * The DNS address for this API service.
88
+ * @deprecated Use the apiEndpoint method of the client instance.
86
89
  * @returns {string} The DNS address for this service.
87
90
  */
88
91
  static get servicePath(): string;
89
92
  /**
90
- * The DNS address for this API service - same as servicePath(),
91
- * exists for compatibility reasons.
93
+ * The DNS address for this API service - same as servicePath.
94
+ * @deprecated Use the apiEndpoint method of the client instance.
92
95
  * @returns {string} The DNS address for this service.
93
96
  */
94
97
  static get apiEndpoint(): string;
98
+ /**
99
+ * The DNS address for this API service.
100
+ * @returns {string} The DNS address for this service.
101
+ */
102
+ get apiEndpoint(): string;
103
+ get universeDomain(): string;
95
104
  /**
96
105
  * The port for this API service.
97
106
  * @returns {number} The default port for this service.
@@ -467,6 +476,150 @@ export declare class CompletionServiceClient {
467
476
  * @returns {string} A string representing the schema.
468
477
  */
469
478
  matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
479
+ /**
480
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
481
+ *
482
+ * @param {string} project
483
+ * @param {string} location
484
+ * @param {string} collection
485
+ * @param {string} data_store
486
+ * @returns {string} Resource name string.
487
+ */
488
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
489
+ /**
490
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
491
+ *
492
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
493
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
494
+ * @returns {string} A string representing the project.
495
+ */
496
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
497
+ /**
498
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
499
+ *
500
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
501
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
502
+ * @returns {string} A string representing the location.
503
+ */
504
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
505
+ /**
506
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
507
+ *
508
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
509
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
510
+ * @returns {string} A string representing the collection.
511
+ */
512
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
513
+ /**
514
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
515
+ *
516
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
517
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
518
+ * @returns {string} A string representing the data_store.
519
+ */
520
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
521
+ /**
522
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
523
+ *
524
+ * @param {string} project
525
+ * @param {string} location
526
+ * @param {string} collection
527
+ * @param {string} data_store
528
+ * @param {string} target_site
529
+ * @returns {string} Resource name string.
530
+ */
531
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
532
+ /**
533
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
534
+ *
535
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
536
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
537
+ * @returns {string} A string representing the project.
538
+ */
539
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
540
+ /**
541
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
542
+ *
543
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
544
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
545
+ * @returns {string} A string representing the location.
546
+ */
547
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
548
+ /**
549
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
550
+ *
551
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
552
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
553
+ * @returns {string} A string representing the collection.
554
+ */
555
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
556
+ /**
557
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
558
+ *
559
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
560
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
561
+ * @returns {string} A string representing the data_store.
562
+ */
563
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
564
+ /**
565
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
566
+ *
567
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
568
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
569
+ * @returns {string} A string representing the target_site.
570
+ */
571
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
572
+ /**
573
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
574
+ *
575
+ * @param {string} project
576
+ * @param {string} location
577
+ * @param {string} collection
578
+ * @param {string} engine
579
+ * @param {string} conversation
580
+ * @returns {string} Resource name string.
581
+ */
582
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
583
+ /**
584
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
585
+ *
586
+ * @param {string} projectLocationCollectionEngineConversationName
587
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
588
+ * @returns {string} A string representing the project.
589
+ */
590
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
591
+ /**
592
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
593
+ *
594
+ * @param {string} projectLocationCollectionEngineConversationName
595
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
596
+ * @returns {string} A string representing the location.
597
+ */
598
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
599
+ /**
600
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
601
+ *
602
+ * @param {string} projectLocationCollectionEngineConversationName
603
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
604
+ * @returns {string} A string representing the collection.
605
+ */
606
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
607
+ /**
608
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
609
+ *
610
+ * @param {string} projectLocationCollectionEngineConversationName
611
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
612
+ * @returns {string} A string representing the engine.
613
+ */
614
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
615
+ /**
616
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
617
+ *
618
+ * @param {string} projectLocationCollectionEngineConversationName
619
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
620
+ * @returns {string} A string representing the conversation.
621
+ */
622
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
470
623
  /**
471
624
  * Return a fully-qualified projectLocationDataStore resource name string.
472
625
  *
@@ -635,6 +788,81 @@ export declare class CompletionServiceClient {
635
788
  * @returns {string} A string representing the schema.
636
789
  */
637
790
  matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
791
+ /**
792
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
793
+ *
794
+ * @param {string} project
795
+ * @param {string} location
796
+ * @param {string} data_store
797
+ * @returns {string} Resource name string.
798
+ */
799
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
800
+ /**
801
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
802
+ *
803
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
804
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
805
+ * @returns {string} A string representing the project.
806
+ */
807
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
808
+ /**
809
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
810
+ *
811
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
812
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
813
+ * @returns {string} A string representing the location.
814
+ */
815
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
816
+ /**
817
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
818
+ *
819
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
820
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
821
+ * @returns {string} A string representing the data_store.
822
+ */
823
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
824
+ /**
825
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
826
+ *
827
+ * @param {string} project
828
+ * @param {string} location
829
+ * @param {string} data_store
830
+ * @param {string} target_site
831
+ * @returns {string} Resource name string.
832
+ */
833
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
834
+ /**
835
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
836
+ *
837
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
838
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
839
+ * @returns {string} A string representing the project.
840
+ */
841
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
842
+ /**
843
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
844
+ *
845
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
846
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
847
+ * @returns {string} A string representing the location.
848
+ */
849
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
850
+ /**
851
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
852
+ *
853
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
854
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
855
+ * @returns {string} A string representing the data_store.
856
+ */
857
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
858
+ /**
859
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
860
+ *
861
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
862
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
863
+ * @returns {string} A string representing the target_site.
864
+ */
865
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
638
866
  /**
639
867
  * Terminate the gRPC channel and close the client.
640
868
  *