@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.
@@ -138,8 +138,10 @@ class UserEventServiceClient {
138
138
  // identifiers to uniquely identify resources within the API.
139
139
  // Create useful helper objects for these.
140
140
  this.pathTemplates = {
141
- dataStorePathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}'),
142
- documentPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}/documents/{document}'),
141
+ projectLocationCollectionDataStorePathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}'),
142
+ projectLocationCollectionDataStoreBranchDocumentPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}/documents/{document}'),
143
+ projectLocationDataStorePathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}'),
144
+ projectLocationDataStoreBranchDocumentPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}/documents/{document}'),
143
145
  };
144
146
  const protoFilesRoot = this._gaxModule.protobuf.Root.fromJSON(jsonProtos);
145
147
  // This API contains "long-running operations", which return a
@@ -154,8 +156,20 @@ class UserEventServiceClient {
154
156
  lroOptions.httpRules = [
155
157
  {
156
158
  selector: 'google.longrunning.Operations.GetOperation',
157
- get: '/v1beta/{name=projects/*/locations/*/dataStores/*/branches/*/operations/*}',
159
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/dataStores/*/branches/*/operations/*}',
158
160
  additional_bindings: [
161
+ {
162
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/dataStores/*/models/*/operations/*}',
163
+ },
164
+ {
165
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/dataStores/*/operations/*}',
166
+ },
167
+ {
168
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/operations/*}',
169
+ },
170
+ {
171
+ get: '/v1beta/{name=projects/*/locations/*/dataStores/*/branches/*/operations/*}',
172
+ },
159
173
  {
160
174
  get: '/v1beta/{name=projects/*/locations/*/dataStores/*/models/*/operations/*}',
161
175
  },
@@ -168,8 +182,20 @@ class UserEventServiceClient {
168
182
  },
169
183
  {
170
184
  selector: 'google.longrunning.Operations.ListOperations',
171
- get: '/v1beta/{name=projects/*/locations/*/dataStores/*/branches/*}/operations',
185
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/dataStores/*/branches/*}/operations',
172
186
  additional_bindings: [
187
+ {
188
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/dataStores/*/models/*}/operations',
189
+ },
190
+ {
191
+ get: '/v1beta/{name=projects/*/locations/*/collections/*/dataStores/*}/operations',
192
+ },
193
+ {
194
+ get: '/v1beta/{name=projects/*/locations/*/collections/*}/operations',
195
+ },
196
+ {
197
+ get: '/v1beta/{name=projects/*/locations/*/dataStores/*/branches/*}/operations',
198
+ },
173
199
  {
174
200
  get: '/v1beta/{name=projects/*/locations/*/dataStores/*/models/*}/operations',
175
201
  },
@@ -499,55 +525,190 @@ class UserEventServiceClient {
499
525
  // -- Path templates --
500
526
  // --------------------
501
527
  /**
502
- * Return a fully-qualified dataStore resource name string.
528
+ * Return a fully-qualified projectLocationCollectionDataStore resource name string.
529
+ *
530
+ * @param {string} project
531
+ * @param {string} location
532
+ * @param {string} collection
533
+ * @param {string} data_store
534
+ * @returns {string} Resource name string.
535
+ */
536
+ projectLocationCollectionDataStorePath(project, location, collection, dataStore) {
537
+ return this.pathTemplates.projectLocationCollectionDataStorePathTemplate.render({
538
+ project: project,
539
+ location: location,
540
+ collection: collection,
541
+ data_store: dataStore,
542
+ });
543
+ }
544
+ /**
545
+ * Parse the project from ProjectLocationCollectionDataStore resource.
546
+ *
547
+ * @param {string} projectLocationCollectionDataStoreName
548
+ * A fully-qualified path representing project_location_collection_data_store resource.
549
+ * @returns {string} A string representing the project.
550
+ */
551
+ matchProjectFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName) {
552
+ return this.pathTemplates.projectLocationCollectionDataStorePathTemplate.match(projectLocationCollectionDataStoreName).project;
553
+ }
554
+ /**
555
+ * Parse the location from ProjectLocationCollectionDataStore resource.
556
+ *
557
+ * @param {string} projectLocationCollectionDataStoreName
558
+ * A fully-qualified path representing project_location_collection_data_store resource.
559
+ * @returns {string} A string representing the location.
560
+ */
561
+ matchLocationFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName) {
562
+ return this.pathTemplates.projectLocationCollectionDataStorePathTemplate.match(projectLocationCollectionDataStoreName).location;
563
+ }
564
+ /**
565
+ * Parse the collection from ProjectLocationCollectionDataStore resource.
566
+ *
567
+ * @param {string} projectLocationCollectionDataStoreName
568
+ * A fully-qualified path representing project_location_collection_data_store resource.
569
+ * @returns {string} A string representing the collection.
570
+ */
571
+ matchCollectionFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName) {
572
+ return this.pathTemplates.projectLocationCollectionDataStorePathTemplate.match(projectLocationCollectionDataStoreName).collection;
573
+ }
574
+ /**
575
+ * Parse the data_store from ProjectLocationCollectionDataStore resource.
576
+ *
577
+ * @param {string} projectLocationCollectionDataStoreName
578
+ * A fully-qualified path representing project_location_collection_data_store resource.
579
+ * @returns {string} A string representing the data_store.
580
+ */
581
+ matchDataStoreFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName) {
582
+ return this.pathTemplates.projectLocationCollectionDataStorePathTemplate.match(projectLocationCollectionDataStoreName).data_store;
583
+ }
584
+ /**
585
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocument resource name string.
586
+ *
587
+ * @param {string} project
588
+ * @param {string} location
589
+ * @param {string} collection
590
+ * @param {string} data_store
591
+ * @param {string} branch
592
+ * @param {string} document
593
+ * @returns {string} Resource name string.
594
+ */
595
+ projectLocationCollectionDataStoreBranchDocumentPath(project, location, collection, dataStore, branch, document) {
596
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.render({
597
+ project: project,
598
+ location: location,
599
+ collection: collection,
600
+ data_store: dataStore,
601
+ branch: branch,
602
+ document: document,
603
+ });
604
+ }
605
+ /**
606
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocument resource.
607
+ *
608
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
609
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
610
+ * @returns {string} A string representing the project.
611
+ */
612
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName) {
613
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.match(projectLocationCollectionDataStoreBranchDocumentName).project;
614
+ }
615
+ /**
616
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocument resource.
617
+ *
618
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
619
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
620
+ * @returns {string} A string representing the location.
621
+ */
622
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName) {
623
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.match(projectLocationCollectionDataStoreBranchDocumentName).location;
624
+ }
625
+ /**
626
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocument resource.
627
+ *
628
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
629
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
630
+ * @returns {string} A string representing the collection.
631
+ */
632
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName) {
633
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.match(projectLocationCollectionDataStoreBranchDocumentName).collection;
634
+ }
635
+ /**
636
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocument resource.
637
+ *
638
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
639
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
640
+ * @returns {string} A string representing the data_store.
641
+ */
642
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName) {
643
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.match(projectLocationCollectionDataStoreBranchDocumentName).data_store;
644
+ }
645
+ /**
646
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocument resource.
647
+ *
648
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
649
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
650
+ * @returns {string} A string representing the branch.
651
+ */
652
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName) {
653
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.match(projectLocationCollectionDataStoreBranchDocumentName).branch;
654
+ }
655
+ /**
656
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocument resource.
657
+ *
658
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
659
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
660
+ * @returns {string} A string representing the document.
661
+ */
662
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName) {
663
+ return this.pathTemplates.projectLocationCollectionDataStoreBranchDocumentPathTemplate.match(projectLocationCollectionDataStoreBranchDocumentName).document;
664
+ }
665
+ /**
666
+ * Return a fully-qualified projectLocationDataStore resource name string.
503
667
  *
504
668
  * @param {string} project
505
669
  * @param {string} location
506
670
  * @param {string} data_store
507
671
  * @returns {string} Resource name string.
508
672
  */
509
- dataStorePath(project, location, dataStore) {
510
- return this.pathTemplates.dataStorePathTemplate.render({
673
+ projectLocationDataStorePath(project, location, dataStore) {
674
+ return this.pathTemplates.projectLocationDataStorePathTemplate.render({
511
675
  project: project,
512
676
  location: location,
513
677
  data_store: dataStore,
514
678
  });
515
679
  }
516
680
  /**
517
- * Parse the project from DataStore resource.
681
+ * Parse the project from ProjectLocationDataStore resource.
518
682
  *
519
- * @param {string} dataStoreName
520
- * A fully-qualified path representing DataStore resource.
683
+ * @param {string} projectLocationDataStoreName
684
+ * A fully-qualified path representing project_location_data_store resource.
521
685
  * @returns {string} A string representing the project.
522
686
  */
523
- matchProjectFromDataStoreName(dataStoreName) {
524
- return this.pathTemplates.dataStorePathTemplate.match(dataStoreName)
525
- .project;
687
+ matchProjectFromProjectLocationDataStoreName(projectLocationDataStoreName) {
688
+ return this.pathTemplates.projectLocationDataStorePathTemplate.match(projectLocationDataStoreName).project;
526
689
  }
527
690
  /**
528
- * Parse the location from DataStore resource.
691
+ * Parse the location from ProjectLocationDataStore resource.
529
692
  *
530
- * @param {string} dataStoreName
531
- * A fully-qualified path representing DataStore resource.
693
+ * @param {string} projectLocationDataStoreName
694
+ * A fully-qualified path representing project_location_data_store resource.
532
695
  * @returns {string} A string representing the location.
533
696
  */
534
- matchLocationFromDataStoreName(dataStoreName) {
535
- return this.pathTemplates.dataStorePathTemplate.match(dataStoreName)
536
- .location;
697
+ matchLocationFromProjectLocationDataStoreName(projectLocationDataStoreName) {
698
+ return this.pathTemplates.projectLocationDataStorePathTemplate.match(projectLocationDataStoreName).location;
537
699
  }
538
700
  /**
539
- * Parse the data_store from DataStore resource.
701
+ * Parse the data_store from ProjectLocationDataStore resource.
540
702
  *
541
- * @param {string} dataStoreName
542
- * A fully-qualified path representing DataStore resource.
703
+ * @param {string} projectLocationDataStoreName
704
+ * A fully-qualified path representing project_location_data_store resource.
543
705
  * @returns {string} A string representing the data_store.
544
706
  */
545
- matchDataStoreFromDataStoreName(dataStoreName) {
546
- return this.pathTemplates.dataStorePathTemplate.match(dataStoreName)
547
- .data_store;
707
+ matchDataStoreFromProjectLocationDataStoreName(projectLocationDataStoreName) {
708
+ return this.pathTemplates.projectLocationDataStorePathTemplate.match(projectLocationDataStoreName).data_store;
548
709
  }
549
710
  /**
550
- * Return a fully-qualified document resource name string.
711
+ * Return a fully-qualified projectLocationDataStoreBranchDocument resource name string.
551
712
  *
552
713
  * @param {string} project
553
714
  * @param {string} location
@@ -556,8 +717,8 @@ class UserEventServiceClient {
556
717
  * @param {string} document
557
718
  * @returns {string} Resource name string.
558
719
  */
559
- documentPath(project, location, dataStore, branch, document) {
560
- return this.pathTemplates.documentPathTemplate.render({
720
+ projectLocationDataStoreBranchDocumentPath(project, location, dataStore, branch, document) {
721
+ return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.render({
561
722
  project: project,
562
723
  location: location,
563
724
  data_store: dataStore,
@@ -566,55 +727,54 @@ class UserEventServiceClient {
566
727
  });
567
728
  }
568
729
  /**
569
- * Parse the project from Document resource.
730
+ * Parse the project from ProjectLocationDataStoreBranchDocument resource.
570
731
  *
571
- * @param {string} documentName
572
- * A fully-qualified path representing Document resource.
732
+ * @param {string} projectLocationDataStoreBranchDocumentName
733
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
573
734
  * @returns {string} A string representing the project.
574
735
  */
575
- matchProjectFromDocumentName(documentName) {
576
- return this.pathTemplates.documentPathTemplate.match(documentName).project;
736
+ matchProjectFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
737
+ return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).project;
577
738
  }
578
739
  /**
579
- * Parse the location from Document resource.
740
+ * Parse the location from ProjectLocationDataStoreBranchDocument resource.
580
741
  *
581
- * @param {string} documentName
582
- * A fully-qualified path representing Document resource.
742
+ * @param {string} projectLocationDataStoreBranchDocumentName
743
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
583
744
  * @returns {string} A string representing the location.
584
745
  */
585
- matchLocationFromDocumentName(documentName) {
586
- return this.pathTemplates.documentPathTemplate.match(documentName).location;
746
+ matchLocationFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
747
+ return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).location;
587
748
  }
588
749
  /**
589
- * Parse the data_store from Document resource.
750
+ * Parse the data_store from ProjectLocationDataStoreBranchDocument resource.
590
751
  *
591
- * @param {string} documentName
592
- * A fully-qualified path representing Document resource.
752
+ * @param {string} projectLocationDataStoreBranchDocumentName
753
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
593
754
  * @returns {string} A string representing the data_store.
594
755
  */
595
- matchDataStoreFromDocumentName(documentName) {
596
- return this.pathTemplates.documentPathTemplate.match(documentName)
597
- .data_store;
756
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
757
+ return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).data_store;
598
758
  }
599
759
  /**
600
- * Parse the branch from Document resource.
760
+ * Parse the branch from ProjectLocationDataStoreBranchDocument resource.
601
761
  *
602
- * @param {string} documentName
603
- * A fully-qualified path representing Document resource.
762
+ * @param {string} projectLocationDataStoreBranchDocumentName
763
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
604
764
  * @returns {string} A string representing the branch.
605
765
  */
606
- matchBranchFromDocumentName(documentName) {
607
- return this.pathTemplates.documentPathTemplate.match(documentName).branch;
766
+ matchBranchFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
767
+ return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).branch;
608
768
  }
609
769
  /**
610
- * Parse the document from Document resource.
770
+ * Parse the document from ProjectLocationDataStoreBranchDocument resource.
611
771
  *
612
- * @param {string} documentName
613
- * A fully-qualified path representing Document resource.
772
+ * @param {string} projectLocationDataStoreBranchDocumentName
773
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
614
774
  * @returns {string} A string representing the document.
615
775
  */
616
- matchDocumentFromDocumentName(documentName) {
617
- return this.pathTemplates.documentPathTemplate.match(documentName).document;
776
+ matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
777
+ return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).document;
618
778
  }
619
779
  /**
620
780
  * Terminate the gRPC channel and close the client.
@@ -1 +1 @@
1
- {"version":3,"file":"user_event_service_client.js","sourceRoot":"","sources":["../../../src/v1beta/user_event_service_client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"user_event_service_client.js","sourceRoot":"","sources":["../../../src/v1beta/user_event_service_client.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@google-cloud/discoveryengine",
3
- "version": "0.3.1",
3
+ "version": "0.4.0",
4
4
  "description": "Discovery Engine API client for Node.js",
5
5
  "repository": {
6
6
  "type": "git",