@google-cloud/discoveryengine 1.3.1 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +51 -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/v1beta/common.proto +59 -8
  20. package/build/protos/google/cloud/discoveryengine/v1beta/completion.proto +52 -0
  21. package/build/protos/google/cloud/discoveryengine/v1beta/completion_service.proto +51 -4
  22. package/build/protos/google/cloud/discoveryengine/v1beta/conversation.proto +3 -0
  23. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +40 -1
  24. package/build/protos/google/cloud/discoveryengine/v1beta/data_store.proto +98 -0
  25. package/build/protos/google/cloud/discoveryengine/v1beta/data_store_service.proto +306 -0
  26. package/build/protos/google/cloud/discoveryengine/v1beta/document.proto +1 -1
  27. package/build/protos/google/cloud/discoveryengine/v1beta/engine.proto +220 -0
  28. package/build/protos/google/cloud/discoveryengine/v1beta/engine_service.proto +244 -0
  29. package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +64 -0
  30. package/build/protos/google/cloud/discoveryengine/v1beta/purge_config.proto +38 -0
  31. package/build/protos/google/cloud/discoveryengine/v1beta/recommendation_service.proto +26 -3
  32. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +150 -11
  33. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config.proto +264 -0
  34. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config_service.proto +147 -0
  35. package/build/protos/google/cloud/discoveryengine/v1beta/site_search_engine.proto +170 -0
  36. package/build/protos/google/cloud/discoveryengine/v1beta/site_search_engine_service.proto +695 -0
  37. package/build/protos/google/cloud/discoveryengine/v1beta/user_event.proto +4 -3
  38. package/build/protos/protos.d.ts +41157 -23655
  39. package/build/protos/protos.js +103188 -62466
  40. package/build/protos/protos.json +10400 -6075
  41. package/build/src/index.d.ts +10 -1
  42. package/build/src/index.js +10 -1
  43. package/build/src/v1/completion_service_client.d.ts +489 -7
  44. package/build/src/v1/completion_service_client.js +715 -11
  45. package/build/src/v1/completion_service_client_config.json +10 -0
  46. package/build/src/v1/conversational_search_service_client.d.ts +341 -3
  47. package/build/src/v1/conversational_search_service_client.js +466 -9
  48. package/build/src/v1/data_store_service_client.d.ts +1286 -0
  49. package/build/src/v1/data_store_service_client.js +1768 -0
  50. package/build/src/v1/data_store_service_client_config.json +46 -0
  51. package/build/src/v1/document_service_client.d.ts +347 -2
  52. package/build/src/v1/document_service_client.js +506 -9
  53. package/build/src/v1/engine_service_client.d.ts +1211 -0
  54. package/build/src/v1/engine_service_client.js +1731 -0
  55. package/build/src/v1/engine_service_client_config.json +46 -0
  56. package/build/src/v1/index.d.ts +3 -0
  57. package/build/src/v1/index.js +7 -1
  58. package/build/src/v1/schema_service_client.d.ts +272 -2
  59. package/build/src/v1/schema_service_client.js +402 -9
  60. package/build/src/v1/search_service_client.d.ts +515 -11
  61. package/build/src/v1/search_service_client.js +648 -15
  62. package/build/src/v1/site_search_engine_service_client.d.ts +1564 -0
  63. package/build/src/v1/site_search_engine_service_client.js +2075 -0
  64. package/build/src/v1/site_search_engine_service_client_config.json +74 -0
  65. package/build/src/v1/user_event_service_client.d.ts +272 -2
  66. package/build/src/v1/user_event_service_client.js +402 -9
  67. package/build/src/v1alpha/completion_service_client.d.ts +11 -2
  68. package/build/src/v1alpha/completion_service_client.js +37 -10
  69. package/build/src/v1alpha/conversational_search_service_client.d.ts +11 -2
  70. package/build/src/v1alpha/conversational_search_service_client.js +37 -10
  71. package/build/src/v1alpha/data_store_service_client.d.ts +11 -2
  72. package/build/src/v1alpha/data_store_service_client.js +37 -10
  73. package/build/src/v1alpha/document_service_client.d.ts +11 -2
  74. package/build/src/v1alpha/document_service_client.js +37 -10
  75. package/build/src/v1alpha/engine_service_client.d.ts +11 -2
  76. package/build/src/v1alpha/engine_service_client.js +37 -10
  77. package/build/src/v1alpha/index.js +1 -1
  78. package/build/src/v1alpha/recommendation_service_client.d.ts +11 -2
  79. package/build/src/v1alpha/recommendation_service_client.js +37 -10
  80. package/build/src/v1alpha/schema_service_client.d.ts +11 -2
  81. package/build/src/v1alpha/schema_service_client.js +37 -10
  82. package/build/src/v1alpha/search_service_client.d.ts +11 -2
  83. package/build/src/v1alpha/search_service_client.js +37 -10
  84. package/build/src/v1alpha/search_tuning_service_client.d.ts +11 -2
  85. package/build/src/v1alpha/search_tuning_service_client.js +37 -10
  86. package/build/src/v1alpha/site_search_engine_service_client.d.ts +11 -2
  87. package/build/src/v1alpha/site_search_engine_service_client.js +37 -10
  88. package/build/src/v1alpha/user_event_service_client.d.ts +11 -2
  89. package/build/src/v1alpha/user_event_service_client.js +37 -10
  90. package/build/src/v1beta/completion_service_client.d.ts +633 -7
  91. package/build/src/v1beta/completion_service_client.js +911 -11
  92. package/build/src/v1beta/completion_service_client_config.json +10 -0
  93. package/build/src/v1beta/conversational_search_service_client.d.ts +341 -3
  94. package/build/src/v1beta/conversational_search_service_client.js +466 -9
  95. package/build/src/v1beta/data_store_service_client.d.ts +1433 -0
  96. package/build/src/v1beta/data_store_service_client.js +1966 -0
  97. package/build/src/v1beta/data_store_service_client_config.json +46 -0
  98. package/build/src/v1beta/document_service_client.d.ts +491 -2
  99. package/build/src/v1beta/document_service_client.js +706 -11
  100. package/build/src/v1beta/engine_service_client.d.ts +1357 -0
  101. package/build/src/v1beta/engine_service_client.js +1928 -0
  102. package/build/src/v1beta/engine_service_client_config.json +46 -0
  103. package/build/src/v1beta/index.d.ts +4 -0
  104. package/build/src/v1beta/index.js +9 -1
  105. package/build/src/v1beta/recommendation_service_client.d.ts +420 -5
  106. package/build/src/v1beta/recommendation_service_client.js +570 -9
  107. package/build/src/v1beta/schema_service_client.d.ts +416 -2
  108. package/build/src/v1beta/schema_service_client.js +602 -11
  109. package/build/src/v1beta/search_service_client.d.ts +539 -29
  110. package/build/src/v1beta/search_service_client.js +664 -27
  111. package/build/src/v1beta/serving_config_service_client.d.ts +1102 -0
  112. package/build/src/v1beta/serving_config_service_client.js +1563 -0
  113. package/build/src/v1beta/serving_config_service_client_config.json +38 -0
  114. package/build/src/v1beta/site_search_engine_service_client.d.ts +1712 -0
  115. package/build/src/v1beta/site_search_engine_service_client.js +2271 -0
  116. package/build/src/v1beta/site_search_engine_service_client_config.json +74 -0
  117. package/build/src/v1beta/user_event_service_client.d.ts +416 -2
  118. package/build/src/v1beta/user_event_service_client.js +602 -11
  119. package/package.json +2 -2
@@ -0,0 +1,46 @@
1
+ {
2
+ "interfaces": {
3
+ "google.cloud.discoveryengine.v1.EngineService": {
4
+ "retry_codes": {
5
+ "non_idempotent": [],
6
+ "idempotent": [
7
+ "DEADLINE_EXCEEDED",
8
+ "UNAVAILABLE"
9
+ ]
10
+ },
11
+ "retry_params": {
12
+ "default": {
13
+ "initial_retry_delay_millis": 100,
14
+ "retry_delay_multiplier": 1.3,
15
+ "max_retry_delay_millis": 60000,
16
+ "initial_rpc_timeout_millis": 60000,
17
+ "rpc_timeout_multiplier": 1,
18
+ "max_rpc_timeout_millis": 60000,
19
+ "total_timeout_millis": 600000
20
+ }
21
+ },
22
+ "methods": {
23
+ "CreateEngine": {
24
+ "retry_codes_name": "non_idempotent",
25
+ "retry_params_name": "default"
26
+ },
27
+ "DeleteEngine": {
28
+ "retry_codes_name": "non_idempotent",
29
+ "retry_params_name": "default"
30
+ },
31
+ "UpdateEngine": {
32
+ "retry_codes_name": "non_idempotent",
33
+ "retry_params_name": "default"
34
+ },
35
+ "GetEngine": {
36
+ "retry_codes_name": "non_idempotent",
37
+ "retry_params_name": "default"
38
+ },
39
+ "ListEngines": {
40
+ "retry_codes_name": "non_idempotent",
41
+ "retry_params_name": "default"
42
+ }
43
+ }
44
+ }
45
+ }
46
+ }
@@ -1,6 +1,9 @@
1
1
  export { CompletionServiceClient } from './completion_service_client';
2
2
  export { ConversationalSearchServiceClient } from './conversational_search_service_client';
3
+ export { DataStoreServiceClient } from './data_store_service_client';
3
4
  export { DocumentServiceClient } from './document_service_client';
5
+ export { EngineServiceClient } from './engine_service_client';
4
6
  export { SchemaServiceClient } from './schema_service_client';
5
7
  export { SearchServiceClient } from './search_service_client';
8
+ export { SiteSearchEngineServiceClient } from './site_search_engine_service_client';
6
9
  export { UserEventServiceClient } from './user_event_service_client';
@@ -17,17 +17,23 @@
17
17
  // ** https://github.com/googleapis/gapic-generator-typescript **
18
18
  // ** All changes to this file may be overwritten. **
19
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
- exports.UserEventServiceClient = exports.SearchServiceClient = exports.SchemaServiceClient = exports.DocumentServiceClient = exports.ConversationalSearchServiceClient = exports.CompletionServiceClient = void 0;
20
+ exports.UserEventServiceClient = exports.SiteSearchEngineServiceClient = exports.SearchServiceClient = exports.SchemaServiceClient = exports.EngineServiceClient = exports.DocumentServiceClient = exports.DataStoreServiceClient = exports.ConversationalSearchServiceClient = exports.CompletionServiceClient = void 0;
21
21
  var completion_service_client_1 = require("./completion_service_client");
22
22
  Object.defineProperty(exports, "CompletionServiceClient", { enumerable: true, get: function () { return completion_service_client_1.CompletionServiceClient; } });
23
23
  var conversational_search_service_client_1 = require("./conversational_search_service_client");
24
24
  Object.defineProperty(exports, "ConversationalSearchServiceClient", { enumerable: true, get: function () { return conversational_search_service_client_1.ConversationalSearchServiceClient; } });
25
+ var data_store_service_client_1 = require("./data_store_service_client");
26
+ Object.defineProperty(exports, "DataStoreServiceClient", { enumerable: true, get: function () { return data_store_service_client_1.DataStoreServiceClient; } });
25
27
  var document_service_client_1 = require("./document_service_client");
26
28
  Object.defineProperty(exports, "DocumentServiceClient", { enumerable: true, get: function () { return document_service_client_1.DocumentServiceClient; } });
29
+ var engine_service_client_1 = require("./engine_service_client");
30
+ Object.defineProperty(exports, "EngineServiceClient", { enumerable: true, get: function () { return engine_service_client_1.EngineServiceClient; } });
27
31
  var schema_service_client_1 = require("./schema_service_client");
28
32
  Object.defineProperty(exports, "SchemaServiceClient", { enumerable: true, get: function () { return schema_service_client_1.SchemaServiceClient; } });
29
33
  var search_service_client_1 = require("./search_service_client");
30
34
  Object.defineProperty(exports, "SearchServiceClient", { enumerable: true, get: function () { return search_service_client_1.SearchServiceClient; } });
35
+ var site_search_engine_service_client_1 = require("./site_search_engine_service_client");
36
+ Object.defineProperty(exports, "SiteSearchEngineServiceClient", { enumerable: true, get: function () { return site_search_engine_service_client_1.SiteSearchEngineServiceClient; } });
31
37
  var user_event_service_client_1 = require("./user_event_service_client");
32
38
  Object.defineProperty(exports, "UserEventServiceClient", { enumerable: true, get: function () { return user_event_service_client_1.UserEventServiceClient; } });
33
39
  //# sourceMappingURL=index.js.map
@@ -16,6 +16,8 @@ export declare class SchemaServiceClient {
16
16
  private _gaxGrpc;
17
17
  private _protos;
18
18
  private _defaults;
19
+ private _universeDomain;
20
+ private _servicePath;
19
21
  auth: gax.GoogleAuth;
20
22
  descriptors: Descriptors;
21
23
  warn: (code: string, message: string, warnType?: string) => void;
@@ -86,15 +88,22 @@ export declare class SchemaServiceClient {
86
88
  }>;
87
89
  /**
88
90
  * The DNS address for this API service.
91
+ * @deprecated Use the apiEndpoint method of the client instance.
89
92
  * @returns {string} The DNS address for this service.
90
93
  */
91
94
  static get servicePath(): string;
92
95
  /**
93
- * The DNS address for this API service - same as servicePath(),
94
- * exists for compatibility reasons.
96
+ * The DNS address for this API service - same as servicePath.
97
+ * @deprecated Use the apiEndpoint method of the client instance.
95
98
  * @returns {string} The DNS address for this service.
96
99
  */
97
100
  static get apiEndpoint(): string;
101
+ /**
102
+ * The DNS address for this API service.
103
+ * @returns {string} The DNS address for this service.
104
+ */
105
+ get apiEndpoint(): string;
106
+ get universeDomain(): string;
98
107
  /**
99
108
  * The port for this API service.
100
109
  * @returns {number} The default port for this service.
@@ -547,6 +556,48 @@ export declare class SchemaServiceClient {
547
556
  * ```
548
557
  */
549
558
  deleteOperation(request: protos.google.longrunning.DeleteOperationRequest, options?: gax.CallOptions | Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>, callback?: Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>): Promise<protos.google.protobuf.Empty>;
559
+ /**
560
+ * Return a fully-qualified engine resource name string.
561
+ *
562
+ * @param {string} project
563
+ * @param {string} location
564
+ * @param {string} collection
565
+ * @param {string} engine
566
+ * @returns {string} Resource name string.
567
+ */
568
+ enginePath(project: string, location: string, collection: string, engine: string): string;
569
+ /**
570
+ * Parse the project from Engine resource.
571
+ *
572
+ * @param {string} engineName
573
+ * A fully-qualified path representing Engine resource.
574
+ * @returns {string} A string representing the project.
575
+ */
576
+ matchProjectFromEngineName(engineName: string): string | number;
577
+ /**
578
+ * Parse the location from Engine resource.
579
+ *
580
+ * @param {string} engineName
581
+ * A fully-qualified path representing Engine resource.
582
+ * @returns {string} A string representing the location.
583
+ */
584
+ matchLocationFromEngineName(engineName: string): string | number;
585
+ /**
586
+ * Parse the collection from Engine resource.
587
+ *
588
+ * @param {string} engineName
589
+ * A fully-qualified path representing Engine resource.
590
+ * @returns {string} A string representing the collection.
591
+ */
592
+ matchCollectionFromEngineName(engineName: string): string | number;
593
+ /**
594
+ * Parse the engine from Engine resource.
595
+ *
596
+ * @param {string} engineName
597
+ * A fully-qualified path representing Engine resource.
598
+ * @returns {string} A string representing the engine.
599
+ */
600
+ matchEngineFromEngineName(engineName: string): string | number;
550
601
  /**
551
602
  * Return a fully-qualified projectLocationCollectionDataStore resource name string.
552
603
  *
@@ -751,6 +802,150 @@ export declare class SchemaServiceClient {
751
802
  * @returns {string} A string representing the schema.
752
803
  */
753
804
  matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
805
+ /**
806
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
807
+ *
808
+ * @param {string} project
809
+ * @param {string} location
810
+ * @param {string} collection
811
+ * @param {string} data_store
812
+ * @returns {string} Resource name string.
813
+ */
814
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
815
+ /**
816
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
817
+ *
818
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
819
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
820
+ * @returns {string} A string representing the project.
821
+ */
822
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
823
+ /**
824
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
825
+ *
826
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
827
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
828
+ * @returns {string} A string representing the location.
829
+ */
830
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
831
+ /**
832
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
833
+ *
834
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
835
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
836
+ * @returns {string} A string representing the collection.
837
+ */
838
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
839
+ /**
840
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
841
+ *
842
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
843
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
844
+ * @returns {string} A string representing the data_store.
845
+ */
846
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
847
+ /**
848
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
849
+ *
850
+ * @param {string} project
851
+ * @param {string} location
852
+ * @param {string} collection
853
+ * @param {string} data_store
854
+ * @param {string} target_site
855
+ * @returns {string} Resource name string.
856
+ */
857
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
858
+ /**
859
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
860
+ *
861
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
862
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
863
+ * @returns {string} A string representing the project.
864
+ */
865
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
866
+ /**
867
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
868
+ *
869
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
870
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
871
+ * @returns {string} A string representing the location.
872
+ */
873
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
874
+ /**
875
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
876
+ *
877
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
878
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
879
+ * @returns {string} A string representing the collection.
880
+ */
881
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
882
+ /**
883
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
884
+ *
885
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
886
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
887
+ * @returns {string} A string representing the data_store.
888
+ */
889
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
890
+ /**
891
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
892
+ *
893
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
894
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
895
+ * @returns {string} A string representing the target_site.
896
+ */
897
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
898
+ /**
899
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
900
+ *
901
+ * @param {string} project
902
+ * @param {string} location
903
+ * @param {string} collection
904
+ * @param {string} engine
905
+ * @param {string} conversation
906
+ * @returns {string} Resource name string.
907
+ */
908
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
909
+ /**
910
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
911
+ *
912
+ * @param {string} projectLocationCollectionEngineConversationName
913
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
914
+ * @returns {string} A string representing the project.
915
+ */
916
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
917
+ /**
918
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
919
+ *
920
+ * @param {string} projectLocationCollectionEngineConversationName
921
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
922
+ * @returns {string} A string representing the location.
923
+ */
924
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
925
+ /**
926
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
927
+ *
928
+ * @param {string} projectLocationCollectionEngineConversationName
929
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
930
+ * @returns {string} A string representing the collection.
931
+ */
932
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
933
+ /**
934
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
935
+ *
936
+ * @param {string} projectLocationCollectionEngineConversationName
937
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
938
+ * @returns {string} A string representing the engine.
939
+ */
940
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
941
+ /**
942
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
943
+ *
944
+ * @param {string} projectLocationCollectionEngineConversationName
945
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
946
+ * @returns {string} A string representing the conversation.
947
+ */
948
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
754
949
  /**
755
950
  * Return a fully-qualified projectLocationDataStore resource name string.
756
951
  *
@@ -919,6 +1114,81 @@ export declare class SchemaServiceClient {
919
1114
  * @returns {string} A string representing the schema.
920
1115
  */
921
1116
  matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1117
+ /**
1118
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1119
+ *
1120
+ * @param {string} project
1121
+ * @param {string} location
1122
+ * @param {string} data_store
1123
+ * @returns {string} Resource name string.
1124
+ */
1125
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1126
+ /**
1127
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1128
+ *
1129
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1130
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1131
+ * @returns {string} A string representing the project.
1132
+ */
1133
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1134
+ /**
1135
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1136
+ *
1137
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1138
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1139
+ * @returns {string} A string representing the location.
1140
+ */
1141
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1142
+ /**
1143
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1144
+ *
1145
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1146
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1147
+ * @returns {string} A string representing the data_store.
1148
+ */
1149
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1150
+ /**
1151
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1152
+ *
1153
+ * @param {string} project
1154
+ * @param {string} location
1155
+ * @param {string} data_store
1156
+ * @param {string} target_site
1157
+ * @returns {string} Resource name string.
1158
+ */
1159
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1160
+ /**
1161
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1162
+ *
1163
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1164
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1165
+ * @returns {string} A string representing the project.
1166
+ */
1167
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1168
+ /**
1169
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1170
+ *
1171
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1172
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1173
+ * @returns {string} A string representing the location.
1174
+ */
1175
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1176
+ /**
1177
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1178
+ *
1179
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1180
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1181
+ * @returns {string} A string representing the data_store.
1182
+ */
1183
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1184
+ /**
1185
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1186
+ *
1187
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1188
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1189
+ * @returns {string} A string representing the target_site.
1190
+ */
1191
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
922
1192
  /**
923
1193
  * Terminate the gRPC channel and close the client.
924
1194
  *