@google-cloud/discoveryengine 1.8.0 → 1.9.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 (199) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +33 -4
  3. package/build/protos/google/cloud/discoveryengine/v1/answer.proto +337 -0
  4. package/build/protos/google/cloud/discoveryengine/v1/common.proto +33 -0
  5. package/build/protos/google/cloud/discoveryengine/v1/control.proto +214 -0
  6. package/build/protos/google/cloud/discoveryengine/v1/control_service.proto +236 -0
  7. package/build/protos/google/cloud/discoveryengine/v1/conversation.proto +2 -2
  8. package/build/protos/google/cloud/discoveryengine/v1/conversational_search_service.proto +569 -0
  9. package/build/protos/google/cloud/discoveryengine/v1/data_store.proto +4 -0
  10. package/build/protos/google/cloud/discoveryengine/v1/data_store_service.proto +2 -2
  11. package/build/protos/google/cloud/discoveryengine/v1/document_processing_config.proto +92 -0
  12. package/build/protos/google/cloud/discoveryengine/v1/document_service.proto +6 -6
  13. package/build/protos/google/cloud/discoveryengine/v1/engine.proto +4 -4
  14. package/build/protos/google/cloud/discoveryengine/v1/grounded_generation_service.proto +149 -0
  15. package/build/protos/google/cloud/discoveryengine/v1/grounding.proto +58 -0
  16. package/build/protos/google/cloud/discoveryengine/v1/import_config.proto +4 -4
  17. package/build/protos/google/cloud/discoveryengine/v1/project.proto +103 -0
  18. package/build/protos/google/cloud/discoveryengine/v1/project_service.proto +90 -0
  19. package/build/protos/google/cloud/discoveryengine/v1/rank_service.proto +131 -0
  20. package/build/protos/google/cloud/discoveryengine/v1/recommendation_service.proto +20 -19
  21. package/build/protos/google/cloud/discoveryengine/v1/schema_service.proto +5 -5
  22. package/build/protos/google/cloud/discoveryengine/v1/search_service.proto +23 -18
  23. package/build/protos/google/cloud/discoveryengine/v1/session.proto +97 -0
  24. package/build/protos/google/cloud/discoveryengine/v1/site_search_engine.proto +3 -0
  25. package/build/protos/google/cloud/discoveryengine/v1/user_event.proto +28 -3
  26. package/build/protos/google/cloud/discoveryengine/v1/user_event_service.proto +18 -2
  27. package/build/protos/google/cloud/discoveryengine/v1alpha/answer.proto +9 -0
  28. package/build/protos/google/cloud/discoveryengine/v1alpha/chunk.proto +7 -0
  29. package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +16 -0
  30. package/build/protos/google/cloud/discoveryengine/v1alpha/control.proto +217 -0
  31. package/build/protos/google/cloud/discoveryengine/v1alpha/control_service.proto +236 -0
  32. package/build/protos/google/cloud/discoveryengine/v1alpha/conversation.proto +2 -2
  33. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +19 -3
  34. package/build/protos/google/cloud/discoveryengine/v1alpha/custom_tuning_model.proto +87 -0
  35. package/build/protos/google/cloud/discoveryengine/v1alpha/data_store_service.proto +2 -2
  36. package/build/protos/google/cloud/discoveryengine/v1alpha/document_processing_config.proto +1 -0
  37. package/build/protos/google/cloud/discoveryengine/v1alpha/document_service.proto +12 -9
  38. package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +4 -4
  39. package/build/protos/google/cloud/discoveryengine/v1alpha/grounded_generation_service.proto +30 -1
  40. package/build/protos/google/cloud/discoveryengine/v1alpha/grounding.proto +3 -0
  41. package/build/protos/google/cloud/discoveryengine/v1alpha/import_config.proto +4 -4
  42. package/build/protos/google/cloud/discoveryengine/v1alpha/project.proto +1 -0
  43. package/build/protos/google/cloud/discoveryengine/v1alpha/project_service.proto +2 -0
  44. package/build/protos/google/cloud/discoveryengine/v1alpha/rank_service.proto +19 -0
  45. package/build/protos/google/cloud/discoveryengine/v1alpha/recommendation_service.proto +20 -19
  46. package/build/protos/google/cloud/discoveryengine/v1alpha/schema.proto +37 -2
  47. package/build/protos/google/cloud/discoveryengine/v1alpha/schema_service.proto +6 -6
  48. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +28 -31
  49. package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +39 -0
  50. package/build/protos/google/cloud/discoveryengine/v1alpha/session.proto +3 -0
  51. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine.proto +3 -0
  52. package/build/protos/google/cloud/discoveryengine/v1alpha/user_event.proto +29 -3
  53. package/build/protos/google/cloud/discoveryengine/v1alpha/user_event_service.proto +18 -2
  54. package/build/protos/google/cloud/discoveryengine/v1beta/answer.proto +10 -1
  55. package/build/protos/google/cloud/discoveryengine/v1beta/common.proto +16 -0
  56. package/build/protos/google/cloud/discoveryengine/v1beta/control.proto +216 -0
  57. package/build/protos/google/cloud/discoveryengine/v1beta/control_service.proto +236 -0
  58. package/build/protos/google/cloud/discoveryengine/v1beta/conversation.proto +2 -2
  59. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +19 -3
  60. package/build/protos/google/cloud/discoveryengine/v1beta/custom_tuning_model.proto +87 -0
  61. package/build/protos/google/cloud/discoveryengine/v1beta/data_store_service.proto +2 -2
  62. package/build/protos/google/cloud/discoveryengine/v1beta/document_processing_config.proto +1 -0
  63. package/build/protos/google/cloud/discoveryengine/v1beta/document_service.proto +7 -8
  64. package/build/protos/google/cloud/discoveryengine/v1beta/engine.proto +4 -4
  65. package/build/protos/google/cloud/discoveryengine/v1beta/grounded_generation_service.proto +30 -1
  66. package/build/protos/google/cloud/discoveryengine/v1beta/grounding.proto +3 -0
  67. package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +4 -4
  68. package/build/protos/google/cloud/discoveryengine/v1beta/project.proto +103 -0
  69. package/build/protos/google/cloud/discoveryengine/v1beta/project_service.proto +90 -0
  70. package/build/protos/google/cloud/discoveryengine/v1beta/rank_service.proto +19 -0
  71. package/build/protos/google/cloud/discoveryengine/v1beta/recommendation_service.proto +20 -19
  72. package/build/protos/google/cloud/discoveryengine/v1beta/schema_service.proto +5 -5
  73. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +30 -24
  74. package/build/protos/google/cloud/discoveryengine/v1beta/search_tuning_service.proto +39 -0
  75. package/build/protos/google/cloud/discoveryengine/v1beta/session.proto +4 -1
  76. package/build/protos/google/cloud/discoveryengine/v1beta/site_search_engine.proto +3 -0
  77. package/build/protos/google/cloud/discoveryengine/v1beta/user_event.proto +28 -3
  78. package/build/protos/google/cloud/discoveryengine/v1beta/user_event_service.proto +18 -2
  79. package/build/protos/protos.d.ts +52350 -38733
  80. package/build/protos/protos.js +136479 -103212
  81. package/build/protos/protos.json +9460 -5916
  82. package/build/src/index.d.ts +13 -1
  83. package/build/src/index.js +13 -1
  84. package/build/src/v1/completion_service_client.d.ts +549 -0
  85. package/build/src/v1/completion_service_client.js +771 -0
  86. package/build/src/v1/control_service_client.d.ts +1623 -0
  87. package/build/src/v1/control_service_client.js +2218 -0
  88. package/build/src/v1/control_service_client_config.json +63 -0
  89. package/build/src/v1/conversational_search_service_client.d.ts +893 -0
  90. package/build/src/v1/conversational_search_service_client.js +1040 -14
  91. package/build/src/v1/conversational_search_service_client_config.json +35 -0
  92. package/build/src/v1/data_store_service_client.d.ts +555 -6
  93. package/build/src/v1/data_store_service_client.js +775 -4
  94. package/build/src/v1/document_service_client.d.ts +557 -8
  95. package/build/src/v1/document_service_client.js +773 -2
  96. package/build/src/v1/engine_service_client.d.ts +549 -0
  97. package/build/src/v1/engine_service_client.js +771 -0
  98. package/build/src/v1/grounded_generation_service_client.d.ts +1439 -0
  99. package/build/src/v1/grounded_generation_service_client.js +2036 -0
  100. package/build/src/v1/grounded_generation_service_client_config.json +43 -0
  101. package/build/src/v1/index.d.ts +4 -0
  102. package/build/src/v1/index.js +9 -1
  103. package/build/src/v1/project_service_client.d.ts +1533 -0
  104. package/build/src/v1/project_service_client.js +2255 -0
  105. package/build/src/v1/project_service_client_config.json +43 -0
  106. package/build/src/v1/rank_service_client.d.ts +1449 -0
  107. package/build/src/v1/rank_service_client.js +2037 -0
  108. package/build/src/v1/rank_service_client_config.json +43 -0
  109. package/build/src/v1/recommendation_service_client.d.ts +568 -18
  110. package/build/src/v1/recommendation_service_client.js +756 -0
  111. package/build/src/v1/schema_service_client.d.ts +558 -9
  112. package/build/src/v1/schema_service_client.js +775 -4
  113. package/build/src/v1/search_service_client.d.ts +579 -21
  114. package/build/src/v1/search_service_client.js +776 -14
  115. package/build/src/v1/site_search_engine_service_client.d.ts +549 -0
  116. package/build/src/v1/site_search_engine_service_client.js +771 -0
  117. package/build/src/v1/user_event_service_client.d.ts +562 -2
  118. package/build/src/v1/user_event_service_client.js +771 -0
  119. package/build/src/v1alpha/acl_config_service_client.d.ts +237 -0
  120. package/build/src/v1alpha/acl_config_service_client.js +326 -0
  121. package/build/src/v1alpha/chunk_service_client.d.ts +237 -0
  122. package/build/src/v1alpha/chunk_service_client.js +326 -0
  123. package/build/src/v1alpha/completion_service_client.d.ts +237 -0
  124. package/build/src/v1alpha/completion_service_client.js +340 -0
  125. package/build/src/v1alpha/control_service_client.d.ts +2013 -0
  126. package/build/src/v1alpha/control_service_client.js +2757 -0
  127. package/build/src/v1alpha/control_service_client_config.json +63 -0
  128. package/build/src/v1alpha/conversational_search_service_client.d.ts +239 -2
  129. package/build/src/v1alpha/conversational_search_service_client.js +326 -0
  130. package/build/src/v1alpha/data_store_service_client.d.ts +243 -6
  131. package/build/src/v1alpha/data_store_service_client.js +344 -4
  132. package/build/src/v1alpha/document_service_client.d.ts +246 -9
  133. package/build/src/v1alpha/document_service_client.js +342 -2
  134. package/build/src/v1alpha/engine_service_client.d.ts +237 -0
  135. package/build/src/v1alpha/engine_service_client.js +340 -0
  136. package/build/src/v1alpha/estimate_billing_service_client.d.ts +237 -0
  137. package/build/src/v1alpha/estimate_billing_service_client.js +340 -0
  138. package/build/src/v1alpha/grounded_generation_service_client.d.ts +256 -1
  139. package/build/src/v1alpha/grounded_generation_service_client.js +326 -0
  140. package/build/src/v1alpha/index.d.ts +1 -0
  141. package/build/src/v1alpha/index.js +3 -1
  142. package/build/src/v1alpha/project_service_client.d.ts +239 -0
  143. package/build/src/v1alpha/project_service_client.js +340 -0
  144. package/build/src/v1alpha/project_service_client_config.json +21 -6
  145. package/build/src/v1alpha/rank_service_client.d.ts +255 -0
  146. package/build/src/v1alpha/rank_service_client.js +326 -0
  147. package/build/src/v1alpha/recommendation_service_client.d.ts +256 -18
  148. package/build/src/v1alpha/recommendation_service_client.js +326 -0
  149. package/build/src/v1alpha/schema_service_client.d.ts +247 -10
  150. package/build/src/v1alpha/schema_service_client.js +344 -4
  151. package/build/src/v1alpha/search_service_client.d.ts +267 -21
  152. package/build/src/v1alpha/search_service_client.js +346 -14
  153. package/build/src/v1alpha/search_tuning_service_client.d.ts +265 -0
  154. package/build/src/v1alpha/search_tuning_service_client.js +365 -1
  155. package/build/src/v1alpha/search_tuning_service_client_config.json +4 -0
  156. package/build/src/v1alpha/serving_config_service_client.d.ts +237 -0
  157. package/build/src/v1alpha/serving_config_service_client.js +326 -0
  158. package/build/src/v1alpha/site_search_engine_service_client.d.ts +237 -0
  159. package/build/src/v1alpha/site_search_engine_service_client.js +340 -0
  160. package/build/src/v1alpha/user_event_service_client.d.ts +250 -2
  161. package/build/src/v1alpha/user_event_service_client.js +340 -0
  162. package/build/src/v1beta/completion_service_client.d.ts +252 -0
  163. package/build/src/v1beta/completion_service_client.js +359 -0
  164. package/build/src/v1beta/control_service_client.d.ts +1860 -0
  165. package/build/src/v1beta/control_service_client.js +2545 -0
  166. package/build/src/v1beta/control_service_client_config.json +63 -0
  167. package/build/src/v1beta/conversational_search_service_client.d.ts +254 -2
  168. package/build/src/v1beta/conversational_search_service_client.js +348 -0
  169. package/build/src/v1beta/data_store_service_client.d.ts +258 -6
  170. package/build/src/v1beta/data_store_service_client.js +363 -4
  171. package/build/src/v1beta/document_service_client.d.ts +261 -10
  172. package/build/src/v1beta/document_service_client.js +361 -2
  173. package/build/src/v1beta/engine_service_client.d.ts +252 -0
  174. package/build/src/v1beta/engine_service_client.js +359 -0
  175. package/build/src/v1beta/grounded_generation_service_client.d.ts +271 -1
  176. package/build/src/v1beta/grounded_generation_service_client.js +348 -0
  177. package/build/src/v1beta/index.d.ts +2 -0
  178. package/build/src/v1beta/index.js +5 -1
  179. package/build/src/v1beta/project_service_client.d.ts +1770 -0
  180. package/build/src/v1beta/project_service_client.js +2576 -0
  181. package/build/src/v1beta/project_service_client_config.json +43 -0
  182. package/build/src/v1beta/rank_service_client.d.ts +270 -0
  183. package/build/src/v1beta/rank_service_client.js +348 -0
  184. package/build/src/v1beta/recommendation_service_client.d.ts +271 -18
  185. package/build/src/v1beta/recommendation_service_client.js +348 -0
  186. package/build/src/v1beta/schema_service_client.d.ts +261 -9
  187. package/build/src/v1beta/schema_service_client.js +363 -4
  188. package/build/src/v1beta/search_service_client.d.ts +282 -21
  189. package/build/src/v1beta/search_service_client.js +368 -14
  190. package/build/src/v1beta/search_tuning_service_client.d.ts +280 -0
  191. package/build/src/v1beta/search_tuning_service_client.js +384 -1
  192. package/build/src/v1beta/search_tuning_service_client_config.json +4 -0
  193. package/build/src/v1beta/serving_config_service_client.d.ts +237 -0
  194. package/build/src/v1beta/serving_config_service_client.js +326 -0
  195. package/build/src/v1beta/site_search_engine_service_client.d.ts +252 -0
  196. package/build/src/v1beta/site_search_engine_service_client.js +359 -0
  197. package/build/src/v1beta/user_event_service_client.d.ts +265 -2
  198. package/build/src/v1beta/user_event_service_client.js +359 -0
  199. package/package.json +2 -2
@@ -470,6 +470,57 @@ export declare class AclConfigServiceClient {
470
470
  * @returns {string} A string representing the chunk.
471
471
  */
472
472
  matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
473
+ /**
474
+ * Return a fully-qualified projectLocationCollectionDataStoreControl resource name string.
475
+ *
476
+ * @param {string} project
477
+ * @param {string} location
478
+ * @param {string} collection
479
+ * @param {string} data_store
480
+ * @param {string} control
481
+ * @returns {string} Resource name string.
482
+ */
483
+ projectLocationCollectionDataStoreControlPath(project: string, location: string, collection: string, dataStore: string, control: string): string;
484
+ /**
485
+ * Parse the project from ProjectLocationCollectionDataStoreControl resource.
486
+ *
487
+ * @param {string} projectLocationCollectionDataStoreControlName
488
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
489
+ * @returns {string} A string representing the project.
490
+ */
491
+ matchProjectFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
492
+ /**
493
+ * Parse the location from ProjectLocationCollectionDataStoreControl resource.
494
+ *
495
+ * @param {string} projectLocationCollectionDataStoreControlName
496
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
497
+ * @returns {string} A string representing the location.
498
+ */
499
+ matchLocationFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
500
+ /**
501
+ * Parse the collection from ProjectLocationCollectionDataStoreControl resource.
502
+ *
503
+ * @param {string} projectLocationCollectionDataStoreControlName
504
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
505
+ * @returns {string} A string representing the collection.
506
+ */
507
+ matchCollectionFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
508
+ /**
509
+ * Parse the data_store from ProjectLocationCollectionDataStoreControl resource.
510
+ *
511
+ * @param {string} projectLocationCollectionDataStoreControlName
512
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
513
+ * @returns {string} A string representing the data_store.
514
+ */
515
+ matchDataStoreFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
516
+ /**
517
+ * Parse the control from ProjectLocationCollectionDataStoreControl resource.
518
+ *
519
+ * @param {string} projectLocationCollectionDataStoreControlName
520
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
521
+ * @returns {string} A string representing the control.
522
+ */
523
+ matchControlFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
473
524
  /**
474
525
  * Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
475
526
  *
@@ -521,6 +572,57 @@ export declare class AclConfigServiceClient {
521
572
  * @returns {string} A string representing the conversation.
522
573
  */
523
574
  matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
575
+ /**
576
+ * Return a fully-qualified projectLocationCollectionDataStoreCustomTuningModel resource name string.
577
+ *
578
+ * @param {string} project
579
+ * @param {string} location
580
+ * @param {string} collection
581
+ * @param {string} data_store
582
+ * @param {string} custom_tuning_model
583
+ * @returns {string} Resource name string.
584
+ */
585
+ projectLocationCollectionDataStoreCustomTuningModelPath(project: string, location: string, collection: string, dataStore: string, customTuningModel: string): string;
586
+ /**
587
+ * Parse the project from ProjectLocationCollectionDataStoreCustomTuningModel resource.
588
+ *
589
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
590
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
591
+ * @returns {string} A string representing the project.
592
+ */
593
+ matchProjectFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName: string): string | number;
594
+ /**
595
+ * Parse the location from ProjectLocationCollectionDataStoreCustomTuningModel resource.
596
+ *
597
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
598
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
599
+ * @returns {string} A string representing the location.
600
+ */
601
+ matchLocationFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName: string): string | number;
602
+ /**
603
+ * Parse the collection from ProjectLocationCollectionDataStoreCustomTuningModel resource.
604
+ *
605
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
606
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
607
+ * @returns {string} A string representing the collection.
608
+ */
609
+ matchCollectionFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName: string): string | number;
610
+ /**
611
+ * Parse the data_store from ProjectLocationCollectionDataStoreCustomTuningModel resource.
612
+ *
613
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
614
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
615
+ * @returns {string} A string representing the data_store.
616
+ */
617
+ matchDataStoreFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName: string): string | number;
618
+ /**
619
+ * Parse the custom_tuning_model from ProjectLocationCollectionDataStoreCustomTuningModel resource.
620
+ *
621
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
622
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
623
+ * @returns {string} A string representing the custom_tuning_model.
624
+ */
625
+ matchCustomTuningModelFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName: string): string | number;
524
626
  /**
525
627
  * Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
526
628
  *
@@ -869,6 +971,57 @@ export declare class AclConfigServiceClient {
869
971
  * @returns {string} A string representing the target_site.
870
972
  */
871
973
  matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
974
+ /**
975
+ * Return a fully-qualified projectLocationCollectionEngineControl resource name string.
976
+ *
977
+ * @param {string} project
978
+ * @param {string} location
979
+ * @param {string} collection
980
+ * @param {string} engine
981
+ * @param {string} control
982
+ * @returns {string} Resource name string.
983
+ */
984
+ projectLocationCollectionEngineControlPath(project: string, location: string, collection: string, engine: string, control: string): string;
985
+ /**
986
+ * Parse the project from ProjectLocationCollectionEngineControl resource.
987
+ *
988
+ * @param {string} projectLocationCollectionEngineControlName
989
+ * A fully-qualified path representing project_location_collection_engine_control resource.
990
+ * @returns {string} A string representing the project.
991
+ */
992
+ matchProjectFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
993
+ /**
994
+ * Parse the location from ProjectLocationCollectionEngineControl resource.
995
+ *
996
+ * @param {string} projectLocationCollectionEngineControlName
997
+ * A fully-qualified path representing project_location_collection_engine_control resource.
998
+ * @returns {string} A string representing the location.
999
+ */
1000
+ matchLocationFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
1001
+ /**
1002
+ * Parse the collection from ProjectLocationCollectionEngineControl resource.
1003
+ *
1004
+ * @param {string} projectLocationCollectionEngineControlName
1005
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1006
+ * @returns {string} A string representing the collection.
1007
+ */
1008
+ matchCollectionFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
1009
+ /**
1010
+ * Parse the engine from ProjectLocationCollectionEngineControl resource.
1011
+ *
1012
+ * @param {string} projectLocationCollectionEngineControlName
1013
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1014
+ * @returns {string} A string representing the engine.
1015
+ */
1016
+ matchEngineFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
1017
+ /**
1018
+ * Parse the control from ProjectLocationCollectionEngineControl resource.
1019
+ *
1020
+ * @param {string} projectLocationCollectionEngineControlName
1021
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1022
+ * @returns {string} A string representing the control.
1023
+ */
1024
+ matchControlFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
872
1025
  /**
873
1026
  * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
874
1027
  *
@@ -1226,6 +1379,48 @@ export declare class AclConfigServiceClient {
1226
1379
  * @returns {string} A string representing the chunk.
1227
1380
  */
1228
1381
  matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1382
+ /**
1383
+ * Return a fully-qualified projectLocationDataStoreControl resource name string.
1384
+ *
1385
+ * @param {string} project
1386
+ * @param {string} location
1387
+ * @param {string} data_store
1388
+ * @param {string} control
1389
+ * @returns {string} Resource name string.
1390
+ */
1391
+ projectLocationDataStoreControlPath(project: string, location: string, dataStore: string, control: string): string;
1392
+ /**
1393
+ * Parse the project from ProjectLocationDataStoreControl resource.
1394
+ *
1395
+ * @param {string} projectLocationDataStoreControlName
1396
+ * A fully-qualified path representing project_location_data_store_control resource.
1397
+ * @returns {string} A string representing the project.
1398
+ */
1399
+ matchProjectFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName: string): string | number;
1400
+ /**
1401
+ * Parse the location from ProjectLocationDataStoreControl resource.
1402
+ *
1403
+ * @param {string} projectLocationDataStoreControlName
1404
+ * A fully-qualified path representing project_location_data_store_control resource.
1405
+ * @returns {string} A string representing the location.
1406
+ */
1407
+ matchLocationFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName: string): string | number;
1408
+ /**
1409
+ * Parse the data_store from ProjectLocationDataStoreControl resource.
1410
+ *
1411
+ * @param {string} projectLocationDataStoreControlName
1412
+ * A fully-qualified path representing project_location_data_store_control resource.
1413
+ * @returns {string} A string representing the data_store.
1414
+ */
1415
+ matchDataStoreFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName: string): string | number;
1416
+ /**
1417
+ * Parse the control from ProjectLocationDataStoreControl resource.
1418
+ *
1419
+ * @param {string} projectLocationDataStoreControlName
1420
+ * A fully-qualified path representing project_location_data_store_control resource.
1421
+ * @returns {string} A string representing the control.
1422
+ */
1423
+ matchControlFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName: string): string | number;
1229
1424
  /**
1230
1425
  * Return a fully-qualified projectLocationDataStoreConversation resource name string.
1231
1426
  *
@@ -1268,6 +1463,48 @@ export declare class AclConfigServiceClient {
1268
1463
  * @returns {string} A string representing the conversation.
1269
1464
  */
1270
1465
  matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1466
+ /**
1467
+ * Return a fully-qualified projectLocationDataStoreCustomTuningModel resource name string.
1468
+ *
1469
+ * @param {string} project
1470
+ * @param {string} location
1471
+ * @param {string} data_store
1472
+ * @param {string} custom_tuning_model
1473
+ * @returns {string} Resource name string.
1474
+ */
1475
+ projectLocationDataStoreCustomTuningModelPath(project: string, location: string, dataStore: string, customTuningModel: string): string;
1476
+ /**
1477
+ * Parse the project from ProjectLocationDataStoreCustomTuningModel resource.
1478
+ *
1479
+ * @param {string} projectLocationDataStoreCustomTuningModelName
1480
+ * A fully-qualified path representing project_location_data_store_custom_tuning_model resource.
1481
+ * @returns {string} A string representing the project.
1482
+ */
1483
+ matchProjectFromProjectLocationDataStoreCustomTuningModelName(projectLocationDataStoreCustomTuningModelName: string): string | number;
1484
+ /**
1485
+ * Parse the location from ProjectLocationDataStoreCustomTuningModel resource.
1486
+ *
1487
+ * @param {string} projectLocationDataStoreCustomTuningModelName
1488
+ * A fully-qualified path representing project_location_data_store_custom_tuning_model resource.
1489
+ * @returns {string} A string representing the location.
1490
+ */
1491
+ matchLocationFromProjectLocationDataStoreCustomTuningModelName(projectLocationDataStoreCustomTuningModelName: string): string | number;
1492
+ /**
1493
+ * Parse the data_store from ProjectLocationDataStoreCustomTuningModel resource.
1494
+ *
1495
+ * @param {string} projectLocationDataStoreCustomTuningModelName
1496
+ * A fully-qualified path representing project_location_data_store_custom_tuning_model resource.
1497
+ * @returns {string} A string representing the data_store.
1498
+ */
1499
+ matchDataStoreFromProjectLocationDataStoreCustomTuningModelName(projectLocationDataStoreCustomTuningModelName: string): string | number;
1500
+ /**
1501
+ * Parse the custom_tuning_model from ProjectLocationDataStoreCustomTuningModel resource.
1502
+ *
1503
+ * @param {string} projectLocationDataStoreCustomTuningModelName
1504
+ * A fully-qualified path representing project_location_data_store_custom_tuning_model resource.
1505
+ * @returns {string} A string representing the custom_tuning_model.
1506
+ */
1507
+ matchCustomTuningModelFromProjectLocationDataStoreCustomTuningModelName(projectLocationDataStoreCustomTuningModelName: string): string | number;
1271
1508
  /**
1272
1509
  * Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
1273
1510
  *
@@ -155,7 +155,9 @@ class AclConfigServiceClient {
155
155
  projectLocationCollectionDataStorePathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}'),
156
156
  projectLocationCollectionDataStoreBranchDocumentPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}/documents/{document}'),
157
157
  projectLocationCollectionDataStoreBranchDocumentChunkPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}/documents/{document}/chunks/{chunk}'),
158
+ projectLocationCollectionDataStoreControlPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/controls/{control}'),
158
159
  projectLocationCollectionDataStoreConversationPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/conversations/{conversation}'),
160
+ projectLocationCollectionDataStoreCustomTuningModelPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/customTuningModels/{custom_tuning_model}'),
159
161
  projectLocationCollectionDataStoreDocumentProcessingConfigPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/documentProcessingConfig'),
160
162
  projectLocationCollectionDataStoreSchemaPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/schemas/{schema}'),
161
163
  projectLocationCollectionDataStoreServingConfigPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/servingConfigs/{serving_config}'),
@@ -163,6 +165,7 @@ class AclConfigServiceClient {
163
165
  projectLocationCollectionDataStoreSessionAnswerPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/sessions/{session}/answers/{answer}'),
164
166
  projectLocationCollectionDataStoreSiteSearchEnginePathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/siteSearchEngine'),
165
167
  projectLocationCollectionDataStoreSiteSearchEngineTargetSitePathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/siteSearchEngine/targetSites/{target_site}'),
168
+ projectLocationCollectionEngineControlPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/controls/{control}'),
166
169
  projectLocationCollectionEngineConversationPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/conversations/{conversation}'),
167
170
  projectLocationCollectionEngineServingConfigPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/servingConfigs/{serving_config}'),
168
171
  projectLocationCollectionEngineSessionPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}'),
@@ -170,7 +173,9 @@ class AclConfigServiceClient {
170
173
  projectLocationDataStorePathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}'),
171
174
  projectLocationDataStoreBranchDocumentPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}/documents/{document}'),
172
175
  projectLocationDataStoreBranchDocumentChunkPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}/documents/{document}/chunks/{chunk}'),
176
+ projectLocationDataStoreControlPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/controls/{control}'),
173
177
  projectLocationDataStoreConversationPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/conversations/{conversation}'),
178
+ projectLocationDataStoreCustomTuningModelPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/customTuningModels/{custom_tuning_model}'),
174
179
  projectLocationDataStoreDocumentProcessingConfigPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/documentProcessingConfig'),
175
180
  projectLocationDataStoreSchemaPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/schemas/{schema}'),
176
181
  projectLocationDataStoreServingConfigPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/servingConfigs/{serving_config}'),
@@ -734,6 +739,75 @@ class AclConfigServiceClient {
734
739
  matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName) {
735
740
  return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentChunkPathTemplate.match(projectLocationCollectionDataStoreBranchDocumentChunkName).chunk;
736
741
  }
742
+ /**
743
+ * Return a fully-qualified projectLocationCollectionDataStoreControl resource name string.
744
+ *
745
+ * @param {string} project
746
+ * @param {string} location
747
+ * @param {string} collection
748
+ * @param {string} data_store
749
+ * @param {string} control
750
+ * @returns {string} Resource name string.
751
+ */
752
+ projectLocationCollectionDataStoreControlPath(project, location, collection, dataStore, control) {
753
+ return this.pathTemplates.projectLocationCollectionDataStoreControlPathTemplate.render({
754
+ project: project,
755
+ location: location,
756
+ collection: collection,
757
+ data_store: dataStore,
758
+ control: control,
759
+ });
760
+ }
761
+ /**
762
+ * Parse the project from ProjectLocationCollectionDataStoreControl resource.
763
+ *
764
+ * @param {string} projectLocationCollectionDataStoreControlName
765
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
766
+ * @returns {string} A string representing the project.
767
+ */
768
+ matchProjectFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName) {
769
+ return this.pathTemplates.projectLocationCollectionDataStoreControlPathTemplate.match(projectLocationCollectionDataStoreControlName).project;
770
+ }
771
+ /**
772
+ * Parse the location from ProjectLocationCollectionDataStoreControl resource.
773
+ *
774
+ * @param {string} projectLocationCollectionDataStoreControlName
775
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
776
+ * @returns {string} A string representing the location.
777
+ */
778
+ matchLocationFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName) {
779
+ return this.pathTemplates.projectLocationCollectionDataStoreControlPathTemplate.match(projectLocationCollectionDataStoreControlName).location;
780
+ }
781
+ /**
782
+ * Parse the collection from ProjectLocationCollectionDataStoreControl resource.
783
+ *
784
+ * @param {string} projectLocationCollectionDataStoreControlName
785
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
786
+ * @returns {string} A string representing the collection.
787
+ */
788
+ matchCollectionFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName) {
789
+ return this.pathTemplates.projectLocationCollectionDataStoreControlPathTemplate.match(projectLocationCollectionDataStoreControlName).collection;
790
+ }
791
+ /**
792
+ * Parse the data_store from ProjectLocationCollectionDataStoreControl resource.
793
+ *
794
+ * @param {string} projectLocationCollectionDataStoreControlName
795
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
796
+ * @returns {string} A string representing the data_store.
797
+ */
798
+ matchDataStoreFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName) {
799
+ return this.pathTemplates.projectLocationCollectionDataStoreControlPathTemplate.match(projectLocationCollectionDataStoreControlName).data_store;
800
+ }
801
+ /**
802
+ * Parse the control from ProjectLocationCollectionDataStoreControl resource.
803
+ *
804
+ * @param {string} projectLocationCollectionDataStoreControlName
805
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
806
+ * @returns {string} A string representing the control.
807
+ */
808
+ matchControlFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName) {
809
+ return this.pathTemplates.projectLocationCollectionDataStoreControlPathTemplate.match(projectLocationCollectionDataStoreControlName).control;
810
+ }
737
811
  /**
738
812
  * Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
739
813
  *
@@ -803,6 +877,75 @@ class AclConfigServiceClient {
803
877
  matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName) {
804
878
  return this.pathTemplates.projectLocationCollectionDataStoreConversationPathTemplate.match(projectLocationCollectionDataStoreConversationName).conversation;
805
879
  }
880
+ /**
881
+ * Return a fully-qualified projectLocationCollectionDataStoreCustomTuningModel resource name string.
882
+ *
883
+ * @param {string} project
884
+ * @param {string} location
885
+ * @param {string} collection
886
+ * @param {string} data_store
887
+ * @param {string} custom_tuning_model
888
+ * @returns {string} Resource name string.
889
+ */
890
+ projectLocationCollectionDataStoreCustomTuningModelPath(project, location, collection, dataStore, customTuningModel) {
891
+ return this.pathTemplates.projectLocationCollectionDataStoreCustomTuningModelPathTemplate.render({
892
+ project: project,
893
+ location: location,
894
+ collection: collection,
895
+ data_store: dataStore,
896
+ custom_tuning_model: customTuningModel,
897
+ });
898
+ }
899
+ /**
900
+ * Parse the project from ProjectLocationCollectionDataStoreCustomTuningModel resource.
901
+ *
902
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
903
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
904
+ * @returns {string} A string representing the project.
905
+ */
906
+ matchProjectFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName) {
907
+ return this.pathTemplates.projectLocationCollectionDataStoreCustomTuningModelPathTemplate.match(projectLocationCollectionDataStoreCustomTuningModelName).project;
908
+ }
909
+ /**
910
+ * Parse the location from ProjectLocationCollectionDataStoreCustomTuningModel resource.
911
+ *
912
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
913
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
914
+ * @returns {string} A string representing the location.
915
+ */
916
+ matchLocationFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName) {
917
+ return this.pathTemplates.projectLocationCollectionDataStoreCustomTuningModelPathTemplate.match(projectLocationCollectionDataStoreCustomTuningModelName).location;
918
+ }
919
+ /**
920
+ * Parse the collection from ProjectLocationCollectionDataStoreCustomTuningModel resource.
921
+ *
922
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
923
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
924
+ * @returns {string} A string representing the collection.
925
+ */
926
+ matchCollectionFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName) {
927
+ return this.pathTemplates.projectLocationCollectionDataStoreCustomTuningModelPathTemplate.match(projectLocationCollectionDataStoreCustomTuningModelName).collection;
928
+ }
929
+ /**
930
+ * Parse the data_store from ProjectLocationCollectionDataStoreCustomTuningModel resource.
931
+ *
932
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
933
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
934
+ * @returns {string} A string representing the data_store.
935
+ */
936
+ matchDataStoreFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName) {
937
+ return this.pathTemplates.projectLocationCollectionDataStoreCustomTuningModelPathTemplate.match(projectLocationCollectionDataStoreCustomTuningModelName).data_store;
938
+ }
939
+ /**
940
+ * Parse the custom_tuning_model from ProjectLocationCollectionDataStoreCustomTuningModel resource.
941
+ *
942
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
943
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
944
+ * @returns {string} A string representing the custom_tuning_model.
945
+ */
946
+ matchCustomTuningModelFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName) {
947
+ return this.pathTemplates.projectLocationCollectionDataStoreCustomTuningModelPathTemplate.match(projectLocationCollectionDataStoreCustomTuningModelName).custom_tuning_model;
948
+ }
806
949
  /**
807
950
  * Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
808
951
  *
@@ -1274,6 +1417,75 @@ class AclConfigServiceClient {
1274
1417
  matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName) {
1275
1418
  return this.pathTemplates.projectLocationCollectionDataStoreSiteSearchEngineTargetSitePathTemplate.match(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName).target_site;
1276
1419
  }
1420
+ /**
1421
+ * Return a fully-qualified projectLocationCollectionEngineControl resource name string.
1422
+ *
1423
+ * @param {string} project
1424
+ * @param {string} location
1425
+ * @param {string} collection
1426
+ * @param {string} engine
1427
+ * @param {string} control
1428
+ * @returns {string} Resource name string.
1429
+ */
1430
+ projectLocationCollectionEngineControlPath(project, location, collection, engine, control) {
1431
+ return this.pathTemplates.projectLocationCollectionEngineControlPathTemplate.render({
1432
+ project: project,
1433
+ location: location,
1434
+ collection: collection,
1435
+ engine: engine,
1436
+ control: control,
1437
+ });
1438
+ }
1439
+ /**
1440
+ * Parse the project from ProjectLocationCollectionEngineControl resource.
1441
+ *
1442
+ * @param {string} projectLocationCollectionEngineControlName
1443
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1444
+ * @returns {string} A string representing the project.
1445
+ */
1446
+ matchProjectFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName) {
1447
+ return this.pathTemplates.projectLocationCollectionEngineControlPathTemplate.match(projectLocationCollectionEngineControlName).project;
1448
+ }
1449
+ /**
1450
+ * Parse the location from ProjectLocationCollectionEngineControl resource.
1451
+ *
1452
+ * @param {string} projectLocationCollectionEngineControlName
1453
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1454
+ * @returns {string} A string representing the location.
1455
+ */
1456
+ matchLocationFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName) {
1457
+ return this.pathTemplates.projectLocationCollectionEngineControlPathTemplate.match(projectLocationCollectionEngineControlName).location;
1458
+ }
1459
+ /**
1460
+ * Parse the collection from ProjectLocationCollectionEngineControl resource.
1461
+ *
1462
+ * @param {string} projectLocationCollectionEngineControlName
1463
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1464
+ * @returns {string} A string representing the collection.
1465
+ */
1466
+ matchCollectionFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName) {
1467
+ return this.pathTemplates.projectLocationCollectionEngineControlPathTemplate.match(projectLocationCollectionEngineControlName).collection;
1468
+ }
1469
+ /**
1470
+ * Parse the engine from ProjectLocationCollectionEngineControl resource.
1471
+ *
1472
+ * @param {string} projectLocationCollectionEngineControlName
1473
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1474
+ * @returns {string} A string representing the engine.
1475
+ */
1476
+ matchEngineFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName) {
1477
+ return this.pathTemplates.projectLocationCollectionEngineControlPathTemplate.match(projectLocationCollectionEngineControlName).engine;
1478
+ }
1479
+ /**
1480
+ * Parse the control from ProjectLocationCollectionEngineControl resource.
1481
+ *
1482
+ * @param {string} projectLocationCollectionEngineControlName
1483
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1484
+ * @returns {string} A string representing the control.
1485
+ */
1486
+ matchControlFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName) {
1487
+ return this.pathTemplates.projectLocationCollectionEngineControlPathTemplate.match(projectLocationCollectionEngineControlName).control;
1488
+ }
1277
1489
  /**
1278
1490
  * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
1279
1491
  *
@@ -1757,6 +1969,63 @@ class AclConfigServiceClient {
1757
1969
  matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName) {
1758
1970
  return this.pathTemplates.projectLocationDataStoreBranchDocumentChunkPathTemplate.match(projectLocationDataStoreBranchDocumentChunkName).chunk;
1759
1971
  }
1972
+ /**
1973
+ * Return a fully-qualified projectLocationDataStoreControl resource name string.
1974
+ *
1975
+ * @param {string} project
1976
+ * @param {string} location
1977
+ * @param {string} data_store
1978
+ * @param {string} control
1979
+ * @returns {string} Resource name string.
1980
+ */
1981
+ projectLocationDataStoreControlPath(project, location, dataStore, control) {
1982
+ return this.pathTemplates.projectLocationDataStoreControlPathTemplate.render({
1983
+ project: project,
1984
+ location: location,
1985
+ data_store: dataStore,
1986
+ control: control,
1987
+ });
1988
+ }
1989
+ /**
1990
+ * Parse the project from ProjectLocationDataStoreControl resource.
1991
+ *
1992
+ * @param {string} projectLocationDataStoreControlName
1993
+ * A fully-qualified path representing project_location_data_store_control resource.
1994
+ * @returns {string} A string representing the project.
1995
+ */
1996
+ matchProjectFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName) {
1997
+ return this.pathTemplates.projectLocationDataStoreControlPathTemplate.match(projectLocationDataStoreControlName).project;
1998
+ }
1999
+ /**
2000
+ * Parse the location from ProjectLocationDataStoreControl resource.
2001
+ *
2002
+ * @param {string} projectLocationDataStoreControlName
2003
+ * A fully-qualified path representing project_location_data_store_control resource.
2004
+ * @returns {string} A string representing the location.
2005
+ */
2006
+ matchLocationFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName) {
2007
+ return this.pathTemplates.projectLocationDataStoreControlPathTemplate.match(projectLocationDataStoreControlName).location;
2008
+ }
2009
+ /**
2010
+ * Parse the data_store from ProjectLocationDataStoreControl resource.
2011
+ *
2012
+ * @param {string} projectLocationDataStoreControlName
2013
+ * A fully-qualified path representing project_location_data_store_control resource.
2014
+ * @returns {string} A string representing the data_store.
2015
+ */
2016
+ matchDataStoreFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName) {
2017
+ return this.pathTemplates.projectLocationDataStoreControlPathTemplate.match(projectLocationDataStoreControlName).data_store;
2018
+ }
2019
+ /**
2020
+ * Parse the control from ProjectLocationDataStoreControl resource.
2021
+ *
2022
+ * @param {string} projectLocationDataStoreControlName
2023
+ * A fully-qualified path representing project_location_data_store_control resource.
2024
+ * @returns {string} A string representing the control.
2025
+ */
2026
+ matchControlFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName) {
2027
+ return this.pathTemplates.projectLocationDataStoreControlPathTemplate.match(projectLocationDataStoreControlName).control;
2028
+ }
1760
2029
  /**
1761
2030
  * Return a fully-qualified projectLocationDataStoreConversation resource name string.
1762
2031
  *
@@ -1814,6 +2083,63 @@ class AclConfigServiceClient {
1814
2083
  matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName) {
1815
2084
  return this.pathTemplates.projectLocationDataStoreConversationPathTemplate.match(projectLocationDataStoreConversationName).conversation;
1816
2085
  }
2086
+ /**
2087
+ * Return a fully-qualified projectLocationDataStoreCustomTuningModel resource name string.
2088
+ *
2089
+ * @param {string} project
2090
+ * @param {string} location
2091
+ * @param {string} data_store
2092
+ * @param {string} custom_tuning_model
2093
+ * @returns {string} Resource name string.
2094
+ */
2095
+ projectLocationDataStoreCustomTuningModelPath(project, location, dataStore, customTuningModel) {
2096
+ return this.pathTemplates.projectLocationDataStoreCustomTuningModelPathTemplate.render({
2097
+ project: project,
2098
+ location: location,
2099
+ data_store: dataStore,
2100
+ custom_tuning_model: customTuningModel,
2101
+ });
2102
+ }
2103
+ /**
2104
+ * Parse the project from ProjectLocationDataStoreCustomTuningModel resource.
2105
+ *
2106
+ * @param {string} projectLocationDataStoreCustomTuningModelName
2107
+ * A fully-qualified path representing project_location_data_store_custom_tuning_model resource.
2108
+ * @returns {string} A string representing the project.
2109
+ */
2110
+ matchProjectFromProjectLocationDataStoreCustomTuningModelName(projectLocationDataStoreCustomTuningModelName) {
2111
+ return this.pathTemplates.projectLocationDataStoreCustomTuningModelPathTemplate.match(projectLocationDataStoreCustomTuningModelName).project;
2112
+ }
2113
+ /**
2114
+ * Parse the location from ProjectLocationDataStoreCustomTuningModel resource.
2115
+ *
2116
+ * @param {string} projectLocationDataStoreCustomTuningModelName
2117
+ * A fully-qualified path representing project_location_data_store_custom_tuning_model resource.
2118
+ * @returns {string} A string representing the location.
2119
+ */
2120
+ matchLocationFromProjectLocationDataStoreCustomTuningModelName(projectLocationDataStoreCustomTuningModelName) {
2121
+ return this.pathTemplates.projectLocationDataStoreCustomTuningModelPathTemplate.match(projectLocationDataStoreCustomTuningModelName).location;
2122
+ }
2123
+ /**
2124
+ * Parse the data_store from ProjectLocationDataStoreCustomTuningModel resource.
2125
+ *
2126
+ * @param {string} projectLocationDataStoreCustomTuningModelName
2127
+ * A fully-qualified path representing project_location_data_store_custom_tuning_model resource.
2128
+ * @returns {string} A string representing the data_store.
2129
+ */
2130
+ matchDataStoreFromProjectLocationDataStoreCustomTuningModelName(projectLocationDataStoreCustomTuningModelName) {
2131
+ return this.pathTemplates.projectLocationDataStoreCustomTuningModelPathTemplate.match(projectLocationDataStoreCustomTuningModelName).data_store;
2132
+ }
2133
+ /**
2134
+ * Parse the custom_tuning_model from ProjectLocationDataStoreCustomTuningModel resource.
2135
+ *
2136
+ * @param {string} projectLocationDataStoreCustomTuningModelName
2137
+ * A fully-qualified path representing project_location_data_store_custom_tuning_model resource.
2138
+ * @returns {string} A string representing the custom_tuning_model.
2139
+ */
2140
+ matchCustomTuningModelFromProjectLocationDataStoreCustomTuningModelName(projectLocationDataStoreCustomTuningModelName) {
2141
+ return this.pathTemplates.projectLocationDataStoreCustomTuningModelPathTemplate.match(projectLocationDataStoreCustomTuningModelName).custom_tuning_model;
2142
+ }
1817
2143
  /**
1818
2144
  * Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
1819
2145
  *