@google-cloud/discoveryengine 0.3.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -140,8 +140,10 @@ class DocumentServiceClient {
140
140
  // identifiers to uniquely identify resources within the API.
141
141
  // Create useful helper objects for these.
142
142
  this.pathTemplates = {
143
- branchPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}'),
144
- documentPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}/documents/{document}'),
143
+ projectLocationCollectionDataStoreBranchPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}'),
144
+ projectLocationCollectionDataStoreBranchDocumentPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}/documents/{document}'),
145
+ projectLocationDataStoreBranchPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}'),
146
+ projectLocationDataStoreBranchDocumentPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}/documents/{document}'),
145
147
  };
146
148
  // Some of the methods on this service return "paged" results,
147
149
  // (e.g. 50 results at a time, with tokens to get subsequent
@@ -162,8 +164,20 @@ class DocumentServiceClient {
162
164
  lroOptions.httpRules = [
163
165
  {
164
166
  selector: 'google.longrunning.Operations.GetOperation',
165
- get: '/v1beta/{name=projects/*/locations/*/dataStores/*/branches/*/operations/*}',
167
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/dataStores/*/branches/*/operations/*}',
166
168
  additional_bindings: [
169
+ {
170
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/dataStores/*/models/*/operations/*}',
171
+ },
172
+ {
173
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/dataStores/*/operations/*}',
174
+ },
175
+ {
176
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/operations/*}',
177
+ },
178
+ {
179
+ get: '/v1beta/{name=projects/*/locations/*/dataStores/*/branches/*/operations/*}',
180
+ },
167
181
  {
168
182
  get: '/v1beta/{name=projects/*/locations/*/dataStores/*/models/*/operations/*}',
169
183
  },
@@ -176,8 +190,20 @@ class DocumentServiceClient {
176
190
  },
177
191
  {
178
192
  selector: 'google.longrunning.Operations.ListOperations',
179
- get: '/v1beta/{name=projects/*/locations/*/dataStores/*/branches/*}/operations',
193
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/dataStores/*/branches/*}/operations',
180
194
  additional_bindings: [
195
+ {
196
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/dataStores/*/models/*}/operations',
197
+ },
198
+ {
199
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/dataStores/*}/operations',
200
+ },
201
+ {
202
+ get: '/v1beta/{name=projects/*/locations/*/collections/*}/operations',
203
+ },
204
+ {
205
+ get: '/v1beta/{name=projects/*/locations/*/dataStores/*/branches/*}/operations',
206
+ },
181
207
  {
182
208
  get: '/v1beta/{name=projects/*/locations/*/dataStores/*/models/*}/operations',
183
209
  },
@@ -449,7 +475,7 @@ class DocumentServiceClient {
449
475
  * The request object that will be sent.
450
476
  * @param {string} request.parent
451
477
  * Required. The parent branch resource name, such as
452
- * `projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}`.
478
+ * `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}`.
453
479
  * Use `default_branch` as the branch ID, to list documents under the default
454
480
  * branch.
455
481
  *
@@ -508,7 +534,7 @@ class DocumentServiceClient {
508
534
  * The request object that will be sent.
509
535
  * @param {string} request.parent
510
536
  * Required. The parent branch resource name, such as
511
- * `projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}`.
537
+ * `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}`.
512
538
  * Use `default_branch` as the branch ID, to list documents under the default
513
539
  * branch.
514
540
  *
@@ -692,7 +718,157 @@ class DocumentServiceClient {
692
718
  // -- Path templates --
693
719
  // --------------------
694
720
  /**
695
- * Return a fully-qualified branch resource name string.
721
+ * Return a fully-qualified projectLocationCollectionDataStoreBranch resource name string.
722
+ *
723
+ * @param {string} project
724
+ * @param {string} location
725
+ * @param {string} collection
726
+ * @param {string} data_store
727
+ * @param {string} branch
728
+ * @returns {string} Resource name string.
729
+ */
730
+ projectLocationCollectionDataStoreBranchPath(project, location, collection, dataStore, branch) {
731
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchPathTemplate.render({
732
+ project: project,
733
+ location: location,
734
+ collection: collection,
735
+ data_store: dataStore,
736
+ branch: branch,
737
+ });
738
+ }
739
+ /**
740
+ * Parse the project from ProjectLocationCollectionDataStoreBranch resource.
741
+ *
742
+ * @param {string} projectLocationCollectionDataStoreBranchName
743
+ * A fully-qualified path representing project_location_collection_data_store_branch resource.
744
+ * @returns {string} A string representing the project.
745
+ */
746
+ matchProjectFromProjectLocationCollectionDataStoreBranchName(projectLocationCollectionDataStoreBranchName) {
747
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchPathTemplate.match(projectLocationCollectionDataStoreBranchName).project;
748
+ }
749
+ /**
750
+ * Parse the location from ProjectLocationCollectionDataStoreBranch resource.
751
+ *
752
+ * @param {string} projectLocationCollectionDataStoreBranchName
753
+ * A fully-qualified path representing project_location_collection_data_store_branch resource.
754
+ * @returns {string} A string representing the location.
755
+ */
756
+ matchLocationFromProjectLocationCollectionDataStoreBranchName(projectLocationCollectionDataStoreBranchName) {
757
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchPathTemplate.match(projectLocationCollectionDataStoreBranchName).location;
758
+ }
759
+ /**
760
+ * Parse the collection from ProjectLocationCollectionDataStoreBranch resource.
761
+ *
762
+ * @param {string} projectLocationCollectionDataStoreBranchName
763
+ * A fully-qualified path representing project_location_collection_data_store_branch resource.
764
+ * @returns {string} A string representing the collection.
765
+ */
766
+ matchCollectionFromProjectLocationCollectionDataStoreBranchName(projectLocationCollectionDataStoreBranchName) {
767
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchPathTemplate.match(projectLocationCollectionDataStoreBranchName).collection;
768
+ }
769
+ /**
770
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranch resource.
771
+ *
772
+ * @param {string} projectLocationCollectionDataStoreBranchName
773
+ * A fully-qualified path representing project_location_collection_data_store_branch resource.
774
+ * @returns {string} A string representing the data_store.
775
+ */
776
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchName(projectLocationCollectionDataStoreBranchName) {
777
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchPathTemplate.match(projectLocationCollectionDataStoreBranchName).data_store;
778
+ }
779
+ /**
780
+ * Parse the branch from ProjectLocationCollectionDataStoreBranch resource.
781
+ *
782
+ * @param {string} projectLocationCollectionDataStoreBranchName
783
+ * A fully-qualified path representing project_location_collection_data_store_branch resource.
784
+ * @returns {string} A string representing the branch.
785
+ */
786
+ matchBranchFromProjectLocationCollectionDataStoreBranchName(projectLocationCollectionDataStoreBranchName) {
787
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchPathTemplate.match(projectLocationCollectionDataStoreBranchName).branch;
788
+ }
789
+ /**
790
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocument resource name string.
791
+ *
792
+ * @param {string} project
793
+ * @param {string} location
794
+ * @param {string} collection
795
+ * @param {string} data_store
796
+ * @param {string} branch
797
+ * @param {string} document
798
+ * @returns {string} Resource name string.
799
+ */
800
+ projectLocationCollectionDataStoreBranchDocumentPath(project, location, collection, dataStore, branch, document) {
801
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.render({
802
+ project: project,
803
+ location: location,
804
+ collection: collection,
805
+ data_store: dataStore,
806
+ branch: branch,
807
+ document: document,
808
+ });
809
+ }
810
+ /**
811
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocument resource.
812
+ *
813
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
814
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
815
+ * @returns {string} A string representing the project.
816
+ */
817
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName) {
818
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.match(projectLocationCollectionDataStoreBranchDocumentName).project;
819
+ }
820
+ /**
821
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocument resource.
822
+ *
823
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
824
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
825
+ * @returns {string} A string representing the location.
826
+ */
827
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName) {
828
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.match(projectLocationCollectionDataStoreBranchDocumentName).location;
829
+ }
830
+ /**
831
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocument resource.
832
+ *
833
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
834
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
835
+ * @returns {string} A string representing the collection.
836
+ */
837
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName) {
838
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.match(projectLocationCollectionDataStoreBranchDocumentName).collection;
839
+ }
840
+ /**
841
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocument resource.
842
+ *
843
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
844
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
845
+ * @returns {string} A string representing the data_store.
846
+ */
847
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName) {
848
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.match(projectLocationCollectionDataStoreBranchDocumentName).data_store;
849
+ }
850
+ /**
851
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocument resource.
852
+ *
853
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
854
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
855
+ * @returns {string} A string representing the branch.
856
+ */
857
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName) {
858
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.match(projectLocationCollectionDataStoreBranchDocumentName).branch;
859
+ }
860
+ /**
861
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocument resource.
862
+ *
863
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
864
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
865
+ * @returns {string} A string representing the document.
866
+ */
867
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName) {
868
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.match(projectLocationCollectionDataStoreBranchDocumentName).document;
869
+ }
870
+ /**
871
+ * Return a fully-qualified projectLocationDataStoreBranch resource name string.
696
872
  *
697
873
  * @param {string} project
698
874
  * @param {string} location
@@ -700,8 +876,8 @@ class DocumentServiceClient {
700
876
  * @param {string} branch
701
877
  * @returns {string} Resource name string.
702
878
  */
703
- branchPath(project, location, dataStore, branch) {
704
- return this.pathTemplates.branchPathTemplate.render({
879
+ projectLocationDataStoreBranchPath(project, location, dataStore, branch) {
880
+ return this.pathTemplates.projectLocationDataStoreBranchPathTemplate.render({
705
881
  project: project,
706
882
  location: location,
707
883
  data_store: dataStore,
@@ -709,47 +885,47 @@ class DocumentServiceClient {
709
885
  });
710
886
  }
711
887
  /**
712
- * Parse the project from Branch resource.
888
+ * Parse the project from ProjectLocationDataStoreBranch resource.
713
889
  *
714
- * @param {string} branchName
715
- * A fully-qualified path representing Branch resource.
890
+ * @param {string} projectLocationDataStoreBranchName
891
+ * A fully-qualified path representing project_location_data_store_branch resource.
716
892
  * @returns {string} A string representing the project.
717
893
  */
718
- matchProjectFromBranchName(branchName) {
719
- return this.pathTemplates.branchPathTemplate.match(branchName).project;
894
+ matchProjectFromProjectLocationDataStoreBranchName(projectLocationDataStoreBranchName) {
895
+ return this.pathTemplates.projectLocationDataStoreBranchPathTemplate.match(projectLocationDataStoreBranchName).project;
720
896
  }
721
897
  /**
722
- * Parse the location from Branch resource.
898
+ * Parse the location from ProjectLocationDataStoreBranch resource.
723
899
  *
724
- * @param {string} branchName
725
- * A fully-qualified path representing Branch resource.
900
+ * @param {string} projectLocationDataStoreBranchName
901
+ * A fully-qualified path representing project_location_data_store_branch resource.
726
902
  * @returns {string} A string representing the location.
727
903
  */
728
- matchLocationFromBranchName(branchName) {
729
- return this.pathTemplates.branchPathTemplate.match(branchName).location;
904
+ matchLocationFromProjectLocationDataStoreBranchName(projectLocationDataStoreBranchName) {
905
+ return this.pathTemplates.projectLocationDataStoreBranchPathTemplate.match(projectLocationDataStoreBranchName).location;
730
906
  }
731
907
  /**
732
- * Parse the data_store from Branch resource.
908
+ * Parse the data_store from ProjectLocationDataStoreBranch resource.
733
909
  *
734
- * @param {string} branchName
735
- * A fully-qualified path representing Branch resource.
910
+ * @param {string} projectLocationDataStoreBranchName
911
+ * A fully-qualified path representing project_location_data_store_branch resource.
736
912
  * @returns {string} A string representing the data_store.
737
913
  */
738
- matchDataStoreFromBranchName(branchName) {
739
- return this.pathTemplates.branchPathTemplate.match(branchName).data_store;
914
+ matchDataStoreFromProjectLocationDataStoreBranchName(projectLocationDataStoreBranchName) {
915
+ return this.pathTemplates.projectLocationDataStoreBranchPathTemplate.match(projectLocationDataStoreBranchName).data_store;
740
916
  }
741
917
  /**
742
- * Parse the branch from Branch resource.
918
+ * Parse the branch from ProjectLocationDataStoreBranch resource.
743
919
  *
744
- * @param {string} branchName
745
- * A fully-qualified path representing Branch resource.
920
+ * @param {string} projectLocationDataStoreBranchName
921
+ * A fully-qualified path representing project_location_data_store_branch resource.
746
922
  * @returns {string} A string representing the branch.
747
923
  */
748
- matchBranchFromBranchName(branchName) {
749
- return this.pathTemplates.branchPathTemplate.match(branchName).branch;
924
+ matchBranchFromProjectLocationDataStoreBranchName(projectLocationDataStoreBranchName) {
925
+ return this.pathTemplates.projectLocationDataStoreBranchPathTemplate.match(projectLocationDataStoreBranchName).branch;
750
926
  }
751
927
  /**
752
- * Return a fully-qualified document resource name string.
928
+ * Return a fully-qualified projectLocationDataStoreBranchDocument resource name string.
753
929
  *
754
930
  * @param {string} project
755
931
  * @param {string} location
@@ -758,8 +934,8 @@ class DocumentServiceClient {
758
934
  * @param {string} document
759
935
  * @returns {string} Resource name string.
760
936
  */
761
- documentPath(project, location, dataStore, branch, document) {
762
- return this.pathTemplates.documentPathTemplate.render({
937
+ projectLocationDataStoreBranchDocumentPath(project, location, dataStore, branch, document) {
938
+ return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.render({
763
939
  project: project,
764
940
  location: location,
765
941
  data_store: dataStore,
@@ -768,55 +944,54 @@ class DocumentServiceClient {
768
944
  });
769
945
  }
770
946
  /**
771
- * Parse the project from Document resource.
947
+ * Parse the project from ProjectLocationDataStoreBranchDocument resource.
772
948
  *
773
- * @param {string} documentName
774
- * A fully-qualified path representing Document resource.
949
+ * @param {string} projectLocationDataStoreBranchDocumentName
950
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
775
951
  * @returns {string} A string representing the project.
776
952
  */
777
- matchProjectFromDocumentName(documentName) {
778
- return this.pathTemplates.documentPathTemplate.match(documentName).project;
953
+ matchProjectFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
954
+ return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).project;
779
955
  }
780
956
  /**
781
- * Parse the location from Document resource.
957
+ * Parse the location from ProjectLocationDataStoreBranchDocument resource.
782
958
  *
783
- * @param {string} documentName
784
- * A fully-qualified path representing Document resource.
959
+ * @param {string} projectLocationDataStoreBranchDocumentName
960
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
785
961
  * @returns {string} A string representing the location.
786
962
  */
787
- matchLocationFromDocumentName(documentName) {
788
- return this.pathTemplates.documentPathTemplate.match(documentName).location;
963
+ matchLocationFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
964
+ return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).location;
789
965
  }
790
966
  /**
791
- * Parse the data_store from Document resource.
967
+ * Parse the data_store from ProjectLocationDataStoreBranchDocument resource.
792
968
  *
793
- * @param {string} documentName
794
- * A fully-qualified path representing Document resource.
969
+ * @param {string} projectLocationDataStoreBranchDocumentName
970
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
795
971
  * @returns {string} A string representing the data_store.
796
972
  */
797
- matchDataStoreFromDocumentName(documentName) {
798
- return this.pathTemplates.documentPathTemplate.match(documentName)
799
- .data_store;
973
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
974
+ return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).data_store;
800
975
  }
801
976
  /**
802
- * Parse the branch from Document resource.
977
+ * Parse the branch from ProjectLocationDataStoreBranchDocument resource.
803
978
  *
804
- * @param {string} documentName
805
- * A fully-qualified path representing Document resource.
979
+ * @param {string} projectLocationDataStoreBranchDocumentName
980
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
806
981
  * @returns {string} A string representing the branch.
807
982
  */
808
- matchBranchFromDocumentName(documentName) {
809
- return this.pathTemplates.documentPathTemplate.match(documentName).branch;
983
+ matchBranchFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
984
+ return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).branch;
810
985
  }
811
986
  /**
812
- * Parse the document from Document resource.
987
+ * Parse the document from ProjectLocationDataStoreBranchDocument resource.
813
988
  *
814
- * @param {string} documentName
815
- * A fully-qualified path representing Document resource.
989
+ * @param {string} projectLocationDataStoreBranchDocumentName
990
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
816
991
  * @returns {string} A string representing the document.
817
992
  */
818
- matchDocumentFromDocumentName(documentName) {
819
- return this.pathTemplates.documentPathTemplate.match(documentName).document;
993
+ matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
994
+ return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).document;
820
995
  }
821
996
  /**
822
997
  * Terminate the gRPC channel and close the client.
@@ -1 +1 @@
1
- {"version":3,"file":"document_service_client.js","sourceRoot":"","sources":["../../../src/v1beta/document_service_client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"document_service_client.js","sourceRoot":"","sources":["../../../src/v1beta/document_service_client.ts"],"names":[],"mappings":"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"}