@google-cloud/discoveryengine 0.3.0 → 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.
- package/CHANGELOG.md +14 -0
- package/README.md +4 -5
- package/build/protos/google/cloud/discoveryengine/v1beta/common.proto +4 -1
- package/build/protos/google/cloud/discoveryengine/v1beta/document.proto +5 -4
- package/build/protos/google/cloud/discoveryengine/v1beta/document_service.proto +26 -5
- package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +14 -13
- package/build/protos/google/cloud/discoveryengine/v1beta/recommendation_service.proto +8 -4
- package/build/protos/google/cloud/discoveryengine/v1beta/user_event.proto +16 -10
- package/build/protos/google/cloud/discoveryengine/v1beta/user_event_service.proto +14 -3
- package/build/protos/protos.d.ts +1493 -0
- package/build/protos/protos.js +3853 -0
- package/build/protos/protos.json +362 -21
- package/build/src/v1beta/document_service_client.d.ts +180 -71
- package/build/src/v1beta/document_service_client.js +249 -76
- package/build/src/v1beta/document_service_client.js.map +1 -1
- package/build/src/v1beta/recommendation_service_client.d.ts +155 -44
- package/build/src/v1beta/recommendation_service_client.js +205 -58
- package/build/src/v1beta/recommendation_service_client.js.map +1 -1
- package/build/src/v1beta/user_event_service_client.d.ts +158 -58
- package/build/src/v1beta/user_event_service_client.js +228 -70
- package/build/src/v1beta/user_event_service_client.js.map +1 -1
- package/package.json +1 -1
@@ -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
|
-
|
142
|
-
|
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
|
},
|
@@ -376,20 +402,18 @@ class UserEventServiceClient {
|
|
376
402
|
* @param {string} request.name - The name of the operation resource.
|
377
403
|
* @param {Object=} options
|
378
404
|
* Optional parameters. You can override the default settings for this call,
|
379
|
-
* e.g, timeout, retries, paginations, etc. See
|
380
|
-
* https://googleapis.github.io/gax-nodejs/global.html#CallOptions
|
381
|
-
* details.
|
405
|
+
* e.g, timeout, retries, paginations, etc. See {@link
|
406
|
+
* https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions}
|
407
|
+
* for the details.
|
382
408
|
* @param {function(?Error, ?Object)=} callback
|
383
409
|
* The function which will be called with the result of the API call.
|
384
410
|
*
|
385
411
|
* The second parameter to the callback is an object representing
|
386
|
-
*
|
387
|
-
* external:"google.longrunning.Operation"}.
|
412
|
+
* {@link google.longrunning.Operation | google.longrunning.Operation}.
|
388
413
|
* @return {Promise} - The promise which resolves to an array.
|
389
414
|
* The first element of the array is an object representing
|
390
|
-
*
|
391
|
-
*
|
392
|
-
* "cancel" which cancels the ongoing API call.
|
415
|
+
* {@link google.longrunning.Operation | google.longrunning.Operation}.
|
416
|
+
* The promise has a method named "cancel" which cancels the ongoing API call.
|
393
417
|
*
|
394
418
|
* @example
|
395
419
|
* ```
|
@@ -419,11 +443,11 @@ class UserEventServiceClient {
|
|
419
443
|
* resources in a page.
|
420
444
|
* @param {Object=} options
|
421
445
|
* Optional parameters. You can override the default settings for this call,
|
422
|
-
* e.g, timeout, retries, paginations, etc. See
|
423
|
-
* https://googleapis.github.io/gax-nodejs/global.html#CallOptions} for the
|
446
|
+
* e.g, timeout, retries, paginations, etc. See {@link
|
447
|
+
* https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions} for the
|
424
448
|
* details.
|
425
449
|
* @returns {Object}
|
426
|
-
* An iterable Object that conforms to @link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols.
|
450
|
+
* An iterable Object that conforms to {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | iteration protocols}.
|
427
451
|
*
|
428
452
|
* @example
|
429
453
|
* ```
|
@@ -451,8 +475,8 @@ class UserEventServiceClient {
|
|
451
475
|
* @param {string} request.name - The name of the operation resource to be cancelled.
|
452
476
|
* @param {Object=} options
|
453
477
|
* Optional parameters. You can override the default settings for this call,
|
454
|
-
* e.g, timeout, retries, paginations, etc. See
|
455
|
-
* https://googleapis.github.io/gax-nodejs/global.html#CallOptions} for the
|
478
|
+
* e.g, timeout, retries, paginations, etc. See {@link
|
479
|
+
* https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions} for the
|
456
480
|
* details.
|
457
481
|
* @param {function(?Error)=} callback
|
458
482
|
* The function which will be called with the result of the API call.
|
@@ -479,9 +503,9 @@ class UserEventServiceClient {
|
|
479
503
|
* @param {string} request.name - The name of the operation resource to be deleted.
|
480
504
|
* @param {Object=} options
|
481
505
|
* Optional parameters. You can override the default settings for this call,
|
482
|
-
* e.g, timeout, retries, paginations, etc. See
|
483
|
-
* https://googleapis.github.io/gax-nodejs/global.html#CallOptions
|
484
|
-
* details.
|
506
|
+
* e.g, timeout, retries, paginations, etc. See {@link
|
507
|
+
* https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions}
|
508
|
+
* for the details.
|
485
509
|
* @param {function(?Error)=} callback
|
486
510
|
* The function which will be called with the result of the API call.
|
487
511
|
* @return {Promise} - The promise which resolves when API call finishes.
|
@@ -501,55 +525,190 @@ class UserEventServiceClient {
|
|
501
525
|
// -- Path templates --
|
502
526
|
// --------------------
|
503
527
|
/**
|
504
|
-
* Return a fully-qualified
|
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.
|
505
667
|
*
|
506
668
|
* @param {string} project
|
507
669
|
* @param {string} location
|
508
670
|
* @param {string} data_store
|
509
671
|
* @returns {string} Resource name string.
|
510
672
|
*/
|
511
|
-
|
512
|
-
return this.pathTemplates.
|
673
|
+
projectLocationDataStorePath(project, location, dataStore) {
|
674
|
+
return this.pathTemplates.projectLocationDataStorePathTemplate.render({
|
513
675
|
project: project,
|
514
676
|
location: location,
|
515
677
|
data_store: dataStore,
|
516
678
|
});
|
517
679
|
}
|
518
680
|
/**
|
519
|
-
* Parse the project from
|
681
|
+
* Parse the project from ProjectLocationDataStore resource.
|
520
682
|
*
|
521
|
-
* @param {string}
|
522
|
-
* A fully-qualified path representing
|
683
|
+
* @param {string} projectLocationDataStoreName
|
684
|
+
* A fully-qualified path representing project_location_data_store resource.
|
523
685
|
* @returns {string} A string representing the project.
|
524
686
|
*/
|
525
|
-
|
526
|
-
return this.pathTemplates.
|
527
|
-
.project;
|
687
|
+
matchProjectFromProjectLocationDataStoreName(projectLocationDataStoreName) {
|
688
|
+
return this.pathTemplates.projectLocationDataStorePathTemplate.match(projectLocationDataStoreName).project;
|
528
689
|
}
|
529
690
|
/**
|
530
|
-
* Parse the location from
|
691
|
+
* Parse the location from ProjectLocationDataStore resource.
|
531
692
|
*
|
532
|
-
* @param {string}
|
533
|
-
* A fully-qualified path representing
|
693
|
+
* @param {string} projectLocationDataStoreName
|
694
|
+
* A fully-qualified path representing project_location_data_store resource.
|
534
695
|
* @returns {string} A string representing the location.
|
535
696
|
*/
|
536
|
-
|
537
|
-
return this.pathTemplates.
|
538
|
-
.location;
|
697
|
+
matchLocationFromProjectLocationDataStoreName(projectLocationDataStoreName) {
|
698
|
+
return this.pathTemplates.projectLocationDataStorePathTemplate.match(projectLocationDataStoreName).location;
|
539
699
|
}
|
540
700
|
/**
|
541
|
-
* Parse the data_store from
|
701
|
+
* Parse the data_store from ProjectLocationDataStore resource.
|
542
702
|
*
|
543
|
-
* @param {string}
|
544
|
-
* A fully-qualified path representing
|
703
|
+
* @param {string} projectLocationDataStoreName
|
704
|
+
* A fully-qualified path representing project_location_data_store resource.
|
545
705
|
* @returns {string} A string representing the data_store.
|
546
706
|
*/
|
547
|
-
|
548
|
-
return this.pathTemplates.
|
549
|
-
.data_store;
|
707
|
+
matchDataStoreFromProjectLocationDataStoreName(projectLocationDataStoreName) {
|
708
|
+
return this.pathTemplates.projectLocationDataStorePathTemplate.match(projectLocationDataStoreName).data_store;
|
550
709
|
}
|
551
710
|
/**
|
552
|
-
* Return a fully-qualified
|
711
|
+
* Return a fully-qualified projectLocationDataStoreBranchDocument resource name string.
|
553
712
|
*
|
554
713
|
* @param {string} project
|
555
714
|
* @param {string} location
|
@@ -558,8 +717,8 @@ class UserEventServiceClient {
|
|
558
717
|
* @param {string} document
|
559
718
|
* @returns {string} Resource name string.
|
560
719
|
*/
|
561
|
-
|
562
|
-
return this.pathTemplates.
|
720
|
+
projectLocationDataStoreBranchDocumentPath(project, location, dataStore, branch, document) {
|
721
|
+
return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.render({
|
563
722
|
project: project,
|
564
723
|
location: location,
|
565
724
|
data_store: dataStore,
|
@@ -568,55 +727,54 @@ class UserEventServiceClient {
|
|
568
727
|
});
|
569
728
|
}
|
570
729
|
/**
|
571
|
-
* Parse the project from
|
730
|
+
* Parse the project from ProjectLocationDataStoreBranchDocument resource.
|
572
731
|
*
|
573
|
-
* @param {string}
|
574
|
-
* A fully-qualified path representing
|
732
|
+
* @param {string} projectLocationDataStoreBranchDocumentName
|
733
|
+
* A fully-qualified path representing project_location_data_store_branch_document resource.
|
575
734
|
* @returns {string} A string representing the project.
|
576
735
|
*/
|
577
|
-
|
578
|
-
return this.pathTemplates.
|
736
|
+
matchProjectFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
|
737
|
+
return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).project;
|
579
738
|
}
|
580
739
|
/**
|
581
|
-
* Parse the location from
|
740
|
+
* Parse the location from ProjectLocationDataStoreBranchDocument resource.
|
582
741
|
*
|
583
|
-
* @param {string}
|
584
|
-
* A fully-qualified path representing
|
742
|
+
* @param {string} projectLocationDataStoreBranchDocumentName
|
743
|
+
* A fully-qualified path representing project_location_data_store_branch_document resource.
|
585
744
|
* @returns {string} A string representing the location.
|
586
745
|
*/
|
587
|
-
|
588
|
-
return this.pathTemplates.
|
746
|
+
matchLocationFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
|
747
|
+
return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).location;
|
589
748
|
}
|
590
749
|
/**
|
591
|
-
* Parse the data_store from
|
750
|
+
* Parse the data_store from ProjectLocationDataStoreBranchDocument resource.
|
592
751
|
*
|
593
|
-
* @param {string}
|
594
|
-
* A fully-qualified path representing
|
752
|
+
* @param {string} projectLocationDataStoreBranchDocumentName
|
753
|
+
* A fully-qualified path representing project_location_data_store_branch_document resource.
|
595
754
|
* @returns {string} A string representing the data_store.
|
596
755
|
*/
|
597
|
-
|
598
|
-
return this.pathTemplates.
|
599
|
-
.data_store;
|
756
|
+
matchDataStoreFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
|
757
|
+
return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).data_store;
|
600
758
|
}
|
601
759
|
/**
|
602
|
-
* Parse the branch from
|
760
|
+
* Parse the branch from ProjectLocationDataStoreBranchDocument resource.
|
603
761
|
*
|
604
|
-
* @param {string}
|
605
|
-
* A fully-qualified path representing
|
762
|
+
* @param {string} projectLocationDataStoreBranchDocumentName
|
763
|
+
* A fully-qualified path representing project_location_data_store_branch_document resource.
|
606
764
|
* @returns {string} A string representing the branch.
|
607
765
|
*/
|
608
|
-
|
609
|
-
return this.pathTemplates.
|
766
|
+
matchBranchFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
|
767
|
+
return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).branch;
|
610
768
|
}
|
611
769
|
/**
|
612
|
-
* Parse the document from
|
770
|
+
* Parse the document from ProjectLocationDataStoreBranchDocument resource.
|
613
771
|
*
|
614
|
-
* @param {string}
|
615
|
-
* A fully-qualified path representing
|
772
|
+
* @param {string} projectLocationDataStoreBranchDocumentName
|
773
|
+
* A fully-qualified path representing project_location_data_store_branch_document resource.
|
616
774
|
* @returns {string} A string representing the document.
|
617
775
|
*/
|
618
|
-
|
619
|
-
return this.pathTemplates.
|
776
|
+
matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName) {
|
777
|
+
return this.pathTemplates.projectLocationDataStoreBranchDocumentPathTemplate.match(projectLocationDataStoreBranchDocumentName).document;
|
620
778
|
}
|
621
779
|
/**
|
622
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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"}
|