@google-cloud/discoveryengine 1.9.0 → 1.11.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 (160) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +32 -0
  3. package/build/protos/google/cloud/discoveryengine/v1/answer.proto +13 -0
  4. package/build/protos/google/cloud/discoveryengine/v1/chunk.proto +119 -0
  5. package/build/protos/google/cloud/discoveryengine/v1/common.proto +0 -5
  6. package/build/protos/google/cloud/discoveryengine/v1/completion.proto +31 -0
  7. package/build/protos/google/cloud/discoveryengine/v1/completion_service.proto +38 -0
  8. package/build/protos/google/cloud/discoveryengine/v1/conversational_search_service.proto +35 -0
  9. package/build/protos/google/cloud/discoveryengine/v1/document.proto +1 -1
  10. package/build/protos/google/cloud/discoveryengine/v1/document_processing_config.proto +37 -2
  11. package/build/protos/google/cloud/discoveryengine/v1/import_config.proto +108 -0
  12. package/build/protos/google/cloud/discoveryengine/v1/purge_config.proto +38 -0
  13. package/build/protos/google/cloud/discoveryengine/v1/search_service.proto +200 -4
  14. package/build/protos/google/cloud/discoveryengine/v1/user_event_service.proto +3 -0
  15. package/build/protos/google/cloud/discoveryengine/v1alpha/evaluation.proto +232 -0
  16. package/build/protos/google/cloud/discoveryengine/v1alpha/evaluation_service.proto +252 -0
  17. package/build/protos/google/cloud/discoveryengine/v1alpha/import_config.proto +83 -0
  18. package/build/protos/google/cloud/discoveryengine/v1alpha/sample_query.proto +86 -0
  19. package/build/protos/google/cloud/discoveryengine/v1alpha/sample_query_service.proto +264 -0
  20. package/build/protos/google/cloud/discoveryengine/v1alpha/sample_query_set.proto +64 -0
  21. package/build/protos/google/cloud/discoveryengine/v1alpha/sample_query_set_service.proto +258 -0
  22. package/build/protos/google/cloud/discoveryengine/v1beta/chunk.proto +119 -0
  23. package/build/protos/google/cloud/discoveryengine/v1beta/common.proto +0 -5
  24. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +10 -2
  25. package/build/protos/google/cloud/discoveryengine/v1beta/document.proto +1 -1
  26. package/build/protos/google/cloud/discoveryengine/v1beta/document_processing_config.proto +37 -2
  27. package/build/protos/google/cloud/discoveryengine/v1beta/evaluation.proto +231 -0
  28. package/build/protos/google/cloud/discoveryengine/v1beta/evaluation_service.proto +252 -0
  29. package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +83 -0
  30. package/build/protos/google/cloud/discoveryengine/v1beta/sample_query.proto +86 -0
  31. package/build/protos/google/cloud/discoveryengine/v1beta/sample_query_service.proto +264 -0
  32. package/build/protos/google/cloud/discoveryengine/v1beta/sample_query_set.proto +64 -0
  33. package/build/protos/google/cloud/discoveryengine/v1beta/sample_query_set_service.proto +256 -0
  34. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +67 -8
  35. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config.proto +11 -5
  36. package/build/protos/protos.d.ts +31310 -20211
  37. package/build/protos/protos.js +86710 -60571
  38. package/build/protos/protos.json +7720 -5011
  39. package/build/src/v1/completion_service_client.d.ts +220 -0
  40. package/build/src/v1/completion_service_client.js +260 -0
  41. package/build/src/v1/completion_service_client_config.json +10 -0
  42. package/build/src/v1/control_service_client.d.ts +129 -1
  43. package/build/src/v1/control_service_client.js +176 -0
  44. package/build/src/v1/conversational_search_service_client.d.ts +147 -1
  45. package/build/src/v1/conversational_search_service_client.js +176 -0
  46. package/build/src/v1/data_store_service_client.d.ts +129 -1
  47. package/build/src/v1/data_store_service_client.js +176 -0
  48. package/build/src/v1/document_service_client.d.ts +131 -1
  49. package/build/src/v1/document_service_client.js +176 -0
  50. package/build/src/v1/engine_service_client.d.ts +129 -1
  51. package/build/src/v1/engine_service_client.js +176 -0
  52. package/build/src/v1/grounded_generation_service_client.d.ts +129 -0
  53. package/build/src/v1/grounded_generation_service_client.js +176 -0
  54. package/build/src/v1/project_service_client.d.ts +129 -0
  55. package/build/src/v1/project_service_client.js +176 -0
  56. package/build/src/v1/rank_service_client.d.ts +129 -0
  57. package/build/src/v1/rank_service_client.js +176 -0
  58. package/build/src/v1/recommendation_service_client.d.ts +129 -0
  59. package/build/src/v1/recommendation_service_client.js +176 -0
  60. package/build/src/v1/schema_service_client.d.ts +129 -1
  61. package/build/src/v1/schema_service_client.js +176 -0
  62. package/build/src/v1/search_service_client.d.ts +252 -1
  63. package/build/src/v1/search_service_client.js +258 -0
  64. package/build/src/v1/site_search_engine_service_client.d.ts +129 -1
  65. package/build/src/v1/site_search_engine_service_client.js +176 -0
  66. package/build/src/v1/user_event_service_client.d.ts +129 -0
  67. package/build/src/v1/user_event_service_client.js +176 -0
  68. package/build/src/v1alpha/acl_config_service_client.d.ts +108 -0
  69. package/build/src/v1alpha/acl_config_service_client.js +157 -0
  70. package/build/src/v1alpha/chunk_service_client.d.ts +108 -1
  71. package/build/src/v1alpha/chunk_service_client.js +157 -0
  72. package/build/src/v1alpha/completion_service_client.d.ts +108 -0
  73. package/build/src/v1alpha/completion_service_client.js +157 -0
  74. package/build/src/v1alpha/control_service_client.d.ts +108 -1
  75. package/build/src/v1alpha/control_service_client.js +157 -0
  76. package/build/src/v1alpha/conversational_search_service_client.d.ts +108 -1
  77. package/build/src/v1alpha/conversational_search_service_client.js +157 -0
  78. package/build/src/v1alpha/data_store_service_client.d.ts +108 -1
  79. package/build/src/v1alpha/data_store_service_client.js +157 -0
  80. package/build/src/v1alpha/document_service_client.d.ts +108 -1
  81. package/build/src/v1alpha/document_service_client.js +157 -0
  82. package/build/src/v1alpha/engine_service_client.d.ts +108 -1
  83. package/build/src/v1alpha/engine_service_client.js +157 -0
  84. package/build/src/v1alpha/estimate_billing_service_client.d.ts +108 -0
  85. package/build/src/v1alpha/estimate_billing_service_client.js +157 -0
  86. package/build/src/v1alpha/evaluation_service_client.d.ts +2349 -0
  87. package/build/src/v1alpha/evaluation_service_client.js +3288 -0
  88. package/build/src/v1alpha/evaluation_service_client_config.json +58 -0
  89. package/build/src/v1alpha/grounded_generation_service_client.d.ts +108 -0
  90. package/build/src/v1alpha/grounded_generation_service_client.js +157 -0
  91. package/build/src/v1alpha/index.d.ts +3 -0
  92. package/build/src/v1alpha/index.js +7 -1
  93. package/build/src/v1alpha/project_service_client.d.ts +108 -0
  94. package/build/src/v1alpha/project_service_client.js +157 -0
  95. package/build/src/v1alpha/rank_service_client.d.ts +108 -0
  96. package/build/src/v1alpha/rank_service_client.js +157 -0
  97. package/build/src/v1alpha/recommendation_service_client.d.ts +108 -0
  98. package/build/src/v1alpha/recommendation_service_client.js +157 -0
  99. package/build/src/v1alpha/sample_query_service_client.d.ts +2317 -0
  100. package/build/src/v1alpha/sample_query_service_client.js +3186 -0
  101. package/build/src/v1alpha/sample_query_service_client_config.json +68 -0
  102. package/build/src/v1alpha/sample_query_set_service_client.d.ts +2176 -0
  103. package/build/src/v1alpha/sample_query_set_service_client.js +2931 -0
  104. package/build/src/v1alpha/sample_query_set_service_client_config.json +63 -0
  105. package/build/src/v1alpha/schema_service_client.d.ts +108 -1
  106. package/build/src/v1alpha/schema_service_client.js +157 -0
  107. package/build/src/v1alpha/search_service_client.d.ts +108 -1
  108. package/build/src/v1alpha/search_service_client.js +157 -0
  109. package/build/src/v1alpha/search_tuning_service_client.d.ts +108 -0
  110. package/build/src/v1alpha/search_tuning_service_client.js +157 -0
  111. package/build/src/v1alpha/serving_config_service_client.d.ts +108 -1
  112. package/build/src/v1alpha/serving_config_service_client.js +157 -0
  113. package/build/src/v1alpha/site_search_engine_service_client.d.ts +108 -1
  114. package/build/src/v1alpha/site_search_engine_service_client.js +157 -0
  115. package/build/src/v1alpha/user_event_service_client.d.ts +108 -0
  116. package/build/src/v1alpha/user_event_service_client.js +157 -0
  117. package/build/src/v1beta/completion_service_client.d.ts +237 -0
  118. package/build/src/v1beta/completion_service_client.js +339 -0
  119. package/build/src/v1beta/control_service_client.d.ts +237 -1
  120. package/build/src/v1beta/control_service_client.js +333 -0
  121. package/build/src/v1beta/conversational_search_service_client.d.ts +237 -1
  122. package/build/src/v1beta/conversational_search_service_client.js +333 -0
  123. package/build/src/v1beta/data_store_service_client.d.ts +237 -1
  124. package/build/src/v1beta/data_store_service_client.js +339 -0
  125. package/build/src/v1beta/document_service_client.d.ts +237 -1
  126. package/build/src/v1beta/document_service_client.js +339 -0
  127. package/build/src/v1beta/engine_service_client.d.ts +237 -1
  128. package/build/src/v1beta/engine_service_client.js +339 -0
  129. package/build/src/v1beta/evaluation_service_client.d.ts +2325 -0
  130. package/build/src/v1beta/evaluation_service_client.js +3252 -0
  131. package/build/src/v1beta/evaluation_service_client_config.json +58 -0
  132. package/build/src/v1beta/grounded_generation_service_client.d.ts +237 -0
  133. package/build/src/v1beta/grounded_generation_service_client.js +333 -0
  134. package/build/src/v1beta/index.d.ts +3 -0
  135. package/build/src/v1beta/index.js +7 -1
  136. package/build/src/v1beta/project_service_client.d.ts +237 -0
  137. package/build/src/v1beta/project_service_client.js +339 -0
  138. package/build/src/v1beta/rank_service_client.d.ts +237 -0
  139. package/build/src/v1beta/rank_service_client.js +333 -0
  140. package/build/src/v1beta/recommendation_service_client.d.ts +237 -0
  141. package/build/src/v1beta/recommendation_service_client.js +333 -0
  142. package/build/src/v1beta/sample_query_service_client.d.ts +2293 -0
  143. package/build/src/v1beta/sample_query_service_client.js +3150 -0
  144. package/build/src/v1beta/sample_query_service_client_config.json +68 -0
  145. package/build/src/v1beta/sample_query_set_service_client.d.ts +2150 -0
  146. package/build/src/v1beta/sample_query_set_service_client.js +2895 -0
  147. package/build/src/v1beta/sample_query_set_service_client_config.json +63 -0
  148. package/build/src/v1beta/schema_service_client.d.ts +237 -1
  149. package/build/src/v1beta/schema_service_client.js +339 -0
  150. package/build/src/v1beta/search_service_client.d.ts +267 -13
  151. package/build/src/v1beta/search_service_client.js +353 -8
  152. package/build/src/v1beta/search_tuning_service_client.d.ts +237 -0
  153. package/build/src/v1beta/search_tuning_service_client.js +339 -0
  154. package/build/src/v1beta/serving_config_service_client.d.ts +237 -1
  155. package/build/src/v1beta/serving_config_service_client.js +333 -0
  156. package/build/src/v1beta/site_search_engine_service_client.d.ts +237 -1
  157. package/build/src/v1beta/site_search_engine_service_client.js +339 -0
  158. package/build/src/v1beta/user_event_service_client.d.ts +237 -0
  159. package/build/src/v1beta/user_event_service_client.js +339 -0
  160. package/package.json +1 -1
@@ -0,0 +1,63 @@
1
+ {
2
+ "interfaces": {
3
+ "google.cloud.discoveryengine.v1beta.SampleQuerySetService": {
4
+ "retry_codes": {
5
+ "non_idempotent": [],
6
+ "idempotent": [
7
+ "DEADLINE_EXCEEDED",
8
+ "UNAVAILABLE"
9
+ ],
10
+ "unavailable": [
11
+ "UNAVAILABLE"
12
+ ]
13
+ },
14
+ "retry_params": {
15
+ "default": {
16
+ "initial_retry_delay_millis": 100,
17
+ "retry_delay_multiplier": 1.3,
18
+ "max_retry_delay_millis": 60000,
19
+ "initial_rpc_timeout_millis": 60000,
20
+ "rpc_timeout_multiplier": 1,
21
+ "max_rpc_timeout_millis": 60000,
22
+ "total_timeout_millis": 600000
23
+ },
24
+ "ce5b960a6ed052e690863808e4f0deff3dc7d49f": {
25
+ "initial_retry_delay_millis": 1000,
26
+ "retry_delay_multiplier": 1.3,
27
+ "max_retry_delay_millis": 10000,
28
+ "initial_rpc_timeout_millis": 60000,
29
+ "rpc_timeout_multiplier": 1,
30
+ "max_rpc_timeout_millis": 60000,
31
+ "total_timeout_millis": 600000
32
+ }
33
+ },
34
+ "methods": {
35
+ "GetSampleQuerySet": {
36
+ "timeout_millis": 30000,
37
+ "retry_codes_name": "unavailable",
38
+ "retry_params_name": "ce5b960a6ed052e690863808e4f0deff3dc7d49f"
39
+ },
40
+ "ListSampleQuerySets": {
41
+ "timeout_millis": 30000,
42
+ "retry_codes_name": "unavailable",
43
+ "retry_params_name": "ce5b960a6ed052e690863808e4f0deff3dc7d49f"
44
+ },
45
+ "CreateSampleQuerySet": {
46
+ "timeout_millis": 30000,
47
+ "retry_codes_name": "unavailable",
48
+ "retry_params_name": "ce5b960a6ed052e690863808e4f0deff3dc7d49f"
49
+ },
50
+ "UpdateSampleQuerySet": {
51
+ "timeout_millis": 30000,
52
+ "retry_codes_name": "unavailable",
53
+ "retry_params_name": "ce5b960a6ed052e690863808e4f0deff3dc7d49f"
54
+ },
55
+ "DeleteSampleQuerySet": {
56
+ "timeout_millis": 30000,
57
+ "retry_codes_name": "unavailable",
58
+ "retry_params_name": "ce5b960a6ed052e690863808e4f0deff3dc7d49f"
59
+ }
60
+ }
61
+ }
62
+ }
63
+ }
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import type * as gax from 'google-gax';
3
2
  import type { Callback, CallOptions, Descriptors, ClientOptions, LROperation, PaginationCallback, LocationsClient, LocationProtos } from 'google-gax';
4
3
  import { Transform } from 'stream';
@@ -601,6 +600,39 @@ export declare class SchemaServiceClient {
601
600
  * @returns {string} A string representing the engine.
602
601
  */
603
602
  matchEngineFromEngineName(engineName: string): string | number;
603
+ /**
604
+ * Return a fully-qualified evaluation resource name string.
605
+ *
606
+ * @param {string} project
607
+ * @param {string} location
608
+ * @param {string} evaluation
609
+ * @returns {string} Resource name string.
610
+ */
611
+ evaluationPath(project: string, location: string, evaluation: string): string;
612
+ /**
613
+ * Parse the project from Evaluation resource.
614
+ *
615
+ * @param {string} evaluationName
616
+ * A fully-qualified path representing Evaluation resource.
617
+ * @returns {string} A string representing the project.
618
+ */
619
+ matchProjectFromEvaluationName(evaluationName: string): string | number;
620
+ /**
621
+ * Parse the location from Evaluation resource.
622
+ *
623
+ * @param {string} evaluationName
624
+ * A fully-qualified path representing Evaluation resource.
625
+ * @returns {string} A string representing the location.
626
+ */
627
+ matchLocationFromEvaluationName(evaluationName: string): string | number;
628
+ /**
629
+ * Parse the evaluation from Evaluation resource.
630
+ *
631
+ * @param {string} evaluationName
632
+ * A fully-qualified path representing Evaluation resource.
633
+ * @returns {string} A string representing the evaluation.
634
+ */
635
+ matchEvaluationFromEvaluationName(evaluationName: string): string | number;
604
636
  /**
605
637
  * Return a fully-qualified project resource name string.
606
638
  *
@@ -718,6 +750,75 @@ export declare class SchemaServiceClient {
718
750
  * @returns {string} A string representing the document.
719
751
  */
720
752
  matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
753
+ /**
754
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
755
+ *
756
+ * @param {string} project
757
+ * @param {string} location
758
+ * @param {string} collection
759
+ * @param {string} data_store
760
+ * @param {string} branch
761
+ * @param {string} document
762
+ * @param {string} chunk
763
+ * @returns {string} Resource name string.
764
+ */
765
+ projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
766
+ /**
767
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
768
+ *
769
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
770
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
771
+ * @returns {string} A string representing the project.
772
+ */
773
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
774
+ /**
775
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
776
+ *
777
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
778
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
779
+ * @returns {string} A string representing the location.
780
+ */
781
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
782
+ /**
783
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
784
+ *
785
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
786
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
787
+ * @returns {string} A string representing the collection.
788
+ */
789
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
790
+ /**
791
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
792
+ *
793
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
794
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
795
+ * @returns {string} A string representing the data_store.
796
+ */
797
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
798
+ /**
799
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
800
+ *
801
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
802
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
803
+ * @returns {string} A string representing the branch.
804
+ */
805
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
806
+ /**
807
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
808
+ *
809
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
810
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
811
+ * @returns {string} A string representing the document.
812
+ */
813
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
814
+ /**
815
+ * Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
816
+ *
817
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
818
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
819
+ * @returns {string} A string representing the chunk.
820
+ */
821
+ matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
721
822
  /**
722
823
  * Return a fully-qualified projectLocationCollectionDataStoreControl resource name string.
723
824
  *
@@ -1567,6 +1668,66 @@ export declare class SchemaServiceClient {
1567
1668
  * @returns {string} A string representing the document.
1568
1669
  */
1569
1670
  matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1671
+ /**
1672
+ * Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
1673
+ *
1674
+ * @param {string} project
1675
+ * @param {string} location
1676
+ * @param {string} data_store
1677
+ * @param {string} branch
1678
+ * @param {string} document
1679
+ * @param {string} chunk
1680
+ * @returns {string} Resource name string.
1681
+ */
1682
+ projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
1683
+ /**
1684
+ * Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
1685
+ *
1686
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1687
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1688
+ * @returns {string} A string representing the project.
1689
+ */
1690
+ matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1691
+ /**
1692
+ * Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
1693
+ *
1694
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1695
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1696
+ * @returns {string} A string representing the location.
1697
+ */
1698
+ matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1699
+ /**
1700
+ * Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
1701
+ *
1702
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1703
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1704
+ * @returns {string} A string representing the data_store.
1705
+ */
1706
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1707
+ /**
1708
+ * Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
1709
+ *
1710
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1711
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1712
+ * @returns {string} A string representing the branch.
1713
+ */
1714
+ matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1715
+ /**
1716
+ * Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
1717
+ *
1718
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1719
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1720
+ * @returns {string} A string representing the document.
1721
+ */
1722
+ matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1723
+ /**
1724
+ * Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
1725
+ *
1726
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1727
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1728
+ * @returns {string} A string representing the chunk.
1729
+ */
1730
+ matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1570
1731
  /**
1571
1732
  * Return a fully-qualified projectLocationDataStoreControl resource name string.
1572
1733
  *
@@ -1978,6 +2139,81 @@ export declare class SchemaServiceClient {
1978
2139
  * @returns {string} A string representing the target_site.
1979
2140
  */
1980
2141
  matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
2142
+ /**
2143
+ * Return a fully-qualified sampleQuery resource name string.
2144
+ *
2145
+ * @param {string} project
2146
+ * @param {string} location
2147
+ * @param {string} sample_query_set
2148
+ * @param {string} sample_query
2149
+ * @returns {string} Resource name string.
2150
+ */
2151
+ sampleQueryPath(project: string, location: string, sampleQuerySet: string, sampleQuery: string): string;
2152
+ /**
2153
+ * Parse the project from SampleQuery resource.
2154
+ *
2155
+ * @param {string} sampleQueryName
2156
+ * A fully-qualified path representing SampleQuery resource.
2157
+ * @returns {string} A string representing the project.
2158
+ */
2159
+ matchProjectFromSampleQueryName(sampleQueryName: string): string | number;
2160
+ /**
2161
+ * Parse the location from SampleQuery resource.
2162
+ *
2163
+ * @param {string} sampleQueryName
2164
+ * A fully-qualified path representing SampleQuery resource.
2165
+ * @returns {string} A string representing the location.
2166
+ */
2167
+ matchLocationFromSampleQueryName(sampleQueryName: string): string | number;
2168
+ /**
2169
+ * Parse the sample_query_set from SampleQuery resource.
2170
+ *
2171
+ * @param {string} sampleQueryName
2172
+ * A fully-qualified path representing SampleQuery resource.
2173
+ * @returns {string} A string representing the sample_query_set.
2174
+ */
2175
+ matchSampleQuerySetFromSampleQueryName(sampleQueryName: string): string | number;
2176
+ /**
2177
+ * Parse the sample_query from SampleQuery resource.
2178
+ *
2179
+ * @param {string} sampleQueryName
2180
+ * A fully-qualified path representing SampleQuery resource.
2181
+ * @returns {string} A string representing the sample_query.
2182
+ */
2183
+ matchSampleQueryFromSampleQueryName(sampleQueryName: string): string | number;
2184
+ /**
2185
+ * Return a fully-qualified sampleQuerySet resource name string.
2186
+ *
2187
+ * @param {string} project
2188
+ * @param {string} location
2189
+ * @param {string} sample_query_set
2190
+ * @returns {string} Resource name string.
2191
+ */
2192
+ sampleQuerySetPath(project: string, location: string, sampleQuerySet: string): string;
2193
+ /**
2194
+ * Parse the project from SampleQuerySet resource.
2195
+ *
2196
+ * @param {string} sampleQuerySetName
2197
+ * A fully-qualified path representing SampleQuerySet resource.
2198
+ * @returns {string} A string representing the project.
2199
+ */
2200
+ matchProjectFromSampleQuerySetName(sampleQuerySetName: string): string | number;
2201
+ /**
2202
+ * Parse the location from SampleQuerySet resource.
2203
+ *
2204
+ * @param {string} sampleQuerySetName
2205
+ * A fully-qualified path representing SampleQuerySet resource.
2206
+ * @returns {string} A string representing the location.
2207
+ */
2208
+ matchLocationFromSampleQuerySetName(sampleQuerySetName: string): string | number;
2209
+ /**
2210
+ * Parse the sample_query_set from SampleQuerySet resource.
2211
+ *
2212
+ * @param {string} sampleQuerySetName
2213
+ * A fully-qualified path representing SampleQuerySet resource.
2214
+ * @returns {string} A string representing the sample_query_set.
2215
+ */
2216
+ matchSampleQuerySetFromSampleQuerySetName(sampleQuerySetName: string): string | number;
1981
2217
  /**
1982
2218
  * Terminate the gRPC channel and close the client.
1983
2219
  *