@google-cloud/vectorsearch 0.1.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 (34) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +134 -0
  3. package/build/protos/google/cloud/vectorsearch/v1beta/common.proto +34 -0
  4. package/build/protos/google/cloud/vectorsearch/v1beta/data_object.proto +92 -0
  5. package/build/protos/google/cloud/vectorsearch/v1beta/data_object_search_service.proto +428 -0
  6. package/build/protos/google/cloud/vectorsearch/v1beta/data_object_service.proto +233 -0
  7. package/build/protos/google/cloud/vectorsearch/v1beta/embedding_config.proto +71 -0
  8. package/build/protos/google/cloud/vectorsearch/v1beta/vectorsearch_service.proto +631 -0
  9. package/build/protos/protos.d.ts +15049 -0
  10. package/build/protos/protos.js +39060 -0
  11. package/build/protos/protos.json +4174 -0
  12. package/build/src/index.d.ts +17 -0
  13. package/build/src/index.js +32 -0
  14. package/build/src/index.js.map +1 -0
  15. package/build/src/v1beta/data_object_search_service_client.d.ts +574 -0
  16. package/build/src/v1beta/data_object_search_service_client.js +849 -0
  17. package/build/src/v1beta/data_object_search_service_client.js.map +1 -0
  18. package/build/src/v1beta/data_object_search_service_client_config.json +58 -0
  19. package/build/src/v1beta/data_object_search_service_proto_list.json +8 -0
  20. package/build/src/v1beta/data_object_service_client.d.ts +486 -0
  21. package/build/src/v1beta/data_object_service_client.js +767 -0
  22. package/build/src/v1beta/data_object_service_client.js.map +1 -0
  23. package/build/src/v1beta/data_object_service_client_config.json +73 -0
  24. package/build/src/v1beta/data_object_service_proto_list.json +8 -0
  25. package/build/src/v1beta/gapic_metadata.json +277 -0
  26. package/build/src/v1beta/index.d.ts +3 -0
  27. package/build/src/v1beta/index.js +27 -0
  28. package/build/src/v1beta/index.js.map +1 -0
  29. package/build/src/v1beta/vector_search_service_client.d.ts +1020 -0
  30. package/build/src/v1beta/vector_search_service_client.js +1387 -0
  31. package/build/src/v1beta/vector_search_service_client.js.map +1 -0
  32. package/build/src/v1beta/vector_search_service_client_config.json +88 -0
  33. package/build/src/v1beta/vector_search_service_proto_list.json +8 -0
  34. package/package.json +70 -0
@@ -0,0 +1,4174 @@
1
+ {
2
+ "nested": {
3
+ "google": {
4
+ "nested": {
5
+ "cloud": {
6
+ "nested": {
7
+ "vectorsearch": {
8
+ "nested": {
9
+ "v1beta": {
10
+ "options": {
11
+ "go_package": "cloud.google.com/go/vectorsearch/apiv1beta/vectorsearchpb;vectorsearchpb",
12
+ "java_multiple_files": true,
13
+ "java_outer_classname": "VectorSearchServiceProto",
14
+ "java_package": "com.google.cloud.vectorsearch.v1beta"
15
+ },
16
+ "nested": {
17
+ "DistanceMetric": {
18
+ "values": {
19
+ "DISTANCE_METRIC_UNSPECIFIED": 0,
20
+ "DOT_PRODUCT": 1,
21
+ "COSINE_DISTANCE": 2
22
+ }
23
+ },
24
+ "DataObject": {
25
+ "options": {
26
+ "(google.api.resource).type": "vectorsearch.googleapis.com/DataObject",
27
+ "(google.api.resource).pattern": "projects/{project}/locations/{location}/collections/{collection}/dataObjects/{dataObject}"
28
+ },
29
+ "fields": {
30
+ "name": {
31
+ "type": "string",
32
+ "id": 1,
33
+ "options": {
34
+ "(google.api.field_behavior)": "IMMUTABLE"
35
+ }
36
+ },
37
+ "dataObjectId": {
38
+ "type": "string",
39
+ "id": 2,
40
+ "options": {
41
+ "deprecated": true,
42
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
43
+ }
44
+ },
45
+ "createTime": {
46
+ "type": "google.protobuf.Timestamp",
47
+ "id": 4,
48
+ "options": {
49
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
50
+ }
51
+ },
52
+ "updateTime": {
53
+ "type": "google.protobuf.Timestamp",
54
+ "id": 5,
55
+ "options": {
56
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
57
+ }
58
+ },
59
+ "data": {
60
+ "type": "google.protobuf.Struct",
61
+ "id": 6,
62
+ "options": {
63
+ "(google.api.field_behavior)": "OPTIONAL"
64
+ }
65
+ },
66
+ "vectors": {
67
+ "keyType": "string",
68
+ "type": "Vector",
69
+ "id": 7,
70
+ "options": {
71
+ "(google.api.field_behavior)": "OPTIONAL"
72
+ }
73
+ }
74
+ }
75
+ },
76
+ "Vector": {
77
+ "oneofs": {
78
+ "vectorType": {
79
+ "oneof": [
80
+ "dense",
81
+ "sparse"
82
+ ]
83
+ }
84
+ },
85
+ "fields": {
86
+ "dense": {
87
+ "type": "DenseVector",
88
+ "id": 2
89
+ },
90
+ "sparse": {
91
+ "type": "SparseVector",
92
+ "id": 3
93
+ },
94
+ "values": {
95
+ "rule": "repeated",
96
+ "type": "float",
97
+ "id": 1,
98
+ "options": {
99
+ "deprecated": true
100
+ }
101
+ }
102
+ }
103
+ },
104
+ "DenseVector": {
105
+ "fields": {
106
+ "values": {
107
+ "rule": "repeated",
108
+ "type": "float",
109
+ "id": 1,
110
+ "options": {
111
+ "(google.api.field_behavior)": "REQUIRED"
112
+ }
113
+ }
114
+ }
115
+ },
116
+ "SparseVector": {
117
+ "fields": {
118
+ "values": {
119
+ "rule": "repeated",
120
+ "type": "float",
121
+ "id": 1,
122
+ "options": {
123
+ "(google.api.field_behavior)": "REQUIRED"
124
+ }
125
+ },
126
+ "indices": {
127
+ "rule": "repeated",
128
+ "type": "int32",
129
+ "id": 2,
130
+ "options": {
131
+ "(google.api.field_behavior)": "REQUIRED"
132
+ }
133
+ }
134
+ }
135
+ },
136
+ "DataObjectSearchService": {
137
+ "options": {
138
+ "(google.api.default_host)": "vectorsearch.googleapis.com",
139
+ "(google.api.oauth_scopes)": "https://www.googleapis.com/auth/cloud-platform"
140
+ },
141
+ "methods": {
142
+ "SearchDataObjects": {
143
+ "requestType": "SearchDataObjectsRequest",
144
+ "responseType": "SearchDataObjectsResponse",
145
+ "options": {
146
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:search",
147
+ "(google.api.http).body": "*"
148
+ },
149
+ "parsedOptions": [
150
+ {
151
+ "(google.api.http)": {
152
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:search",
153
+ "body": "*"
154
+ }
155
+ }
156
+ ]
157
+ },
158
+ "QueryDataObjects": {
159
+ "requestType": "QueryDataObjectsRequest",
160
+ "responseType": "QueryDataObjectsResponse",
161
+ "options": {
162
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:query",
163
+ "(google.api.http).body": "*"
164
+ },
165
+ "parsedOptions": [
166
+ {
167
+ "(google.api.http)": {
168
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:query",
169
+ "body": "*"
170
+ }
171
+ }
172
+ ]
173
+ },
174
+ "AggregateDataObjects": {
175
+ "requestType": "AggregateDataObjectsRequest",
176
+ "responseType": "AggregateDataObjectsResponse",
177
+ "options": {
178
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:aggregate",
179
+ "(google.api.http).body": "*"
180
+ },
181
+ "parsedOptions": [
182
+ {
183
+ "(google.api.http)": {
184
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:aggregate",
185
+ "body": "*"
186
+ }
187
+ }
188
+ ]
189
+ },
190
+ "BatchSearchDataObjects": {
191
+ "requestType": "BatchSearchDataObjectsRequest",
192
+ "responseType": "BatchSearchDataObjectsResponse",
193
+ "options": {
194
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:batchSearch",
195
+ "(google.api.http).body": "*"
196
+ },
197
+ "parsedOptions": [
198
+ {
199
+ "(google.api.http)": {
200
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:batchSearch",
201
+ "body": "*"
202
+ }
203
+ }
204
+ ]
205
+ }
206
+ }
207
+ },
208
+ "AggregationMethod": {
209
+ "values": {
210
+ "AGGREGATION_METHOD_UNSPECIFIED": 0,
211
+ "COUNT": 1
212
+ }
213
+ },
214
+ "OutputFields": {
215
+ "fields": {
216
+ "dataFields": {
217
+ "rule": "repeated",
218
+ "type": "string",
219
+ "id": 1,
220
+ "options": {
221
+ "(google.api.field_behavior)": "OPTIONAL"
222
+ }
223
+ },
224
+ "vectorFields": {
225
+ "rule": "repeated",
226
+ "type": "string",
227
+ "id": 2,
228
+ "options": {
229
+ "(google.api.field_behavior)": "OPTIONAL"
230
+ }
231
+ },
232
+ "metadataFields": {
233
+ "rule": "repeated",
234
+ "type": "string",
235
+ "id": 3,
236
+ "options": {
237
+ "(google.api.field_behavior)": "OPTIONAL"
238
+ }
239
+ }
240
+ }
241
+ },
242
+ "SearchHint": {
243
+ "oneofs": {
244
+ "indexType": {
245
+ "oneof": [
246
+ "useIndex",
247
+ "useKnn"
248
+ ]
249
+ }
250
+ },
251
+ "fields": {
252
+ "useIndex": {
253
+ "type": "IndexHint",
254
+ "id": 1
255
+ },
256
+ "useKnn": {
257
+ "type": "bool",
258
+ "id": 2
259
+ }
260
+ },
261
+ "nested": {
262
+ "IndexHint": {
263
+ "fields": {
264
+ "name": {
265
+ "type": "string",
266
+ "id": 1,
267
+ "options": {
268
+ "(google.api.field_behavior)": "REQUIRED"
269
+ }
270
+ }
271
+ }
272
+ }
273
+ }
274
+ },
275
+ "Search": {
276
+ "oneofs": {
277
+ "searchType": {
278
+ "oneof": [
279
+ "vectorSearch",
280
+ "semanticSearch",
281
+ "textSearch"
282
+ ]
283
+ }
284
+ },
285
+ "fields": {
286
+ "vectorSearch": {
287
+ "type": "VectorSearch",
288
+ "id": 1
289
+ },
290
+ "semanticSearch": {
291
+ "type": "SemanticSearch",
292
+ "id": 2
293
+ },
294
+ "textSearch": {
295
+ "type": "TextSearch",
296
+ "id": 3
297
+ }
298
+ }
299
+ },
300
+ "VectorSearch": {
301
+ "oneofs": {
302
+ "vectorType": {
303
+ "oneof": [
304
+ "vector",
305
+ "sparseVector"
306
+ ]
307
+ },
308
+ "_topK": {
309
+ "oneof": [
310
+ "topK"
311
+ ]
312
+ }
313
+ },
314
+ "fields": {
315
+ "vector": {
316
+ "type": "DenseVector",
317
+ "id": 1
318
+ },
319
+ "sparseVector": {
320
+ "type": "SparseVector",
321
+ "id": 2
322
+ },
323
+ "searchField": {
324
+ "type": "string",
325
+ "id": 8,
326
+ "options": {
327
+ "(google.api.field_behavior)": "REQUIRED"
328
+ }
329
+ },
330
+ "filter": {
331
+ "type": "google.protobuf.Struct",
332
+ "id": 4,
333
+ "options": {
334
+ "(google.api.field_behavior)": "OPTIONAL"
335
+ }
336
+ },
337
+ "topK": {
338
+ "type": "int32",
339
+ "id": 5,
340
+ "options": {
341
+ "(google.api.field_behavior)": "OPTIONAL",
342
+ "proto3_optional": true
343
+ }
344
+ },
345
+ "outputFields": {
346
+ "type": "OutputFields",
347
+ "id": 7,
348
+ "options": {
349
+ "(google.api.field_behavior)": "OPTIONAL"
350
+ }
351
+ },
352
+ "searchHint": {
353
+ "type": "SearchHint",
354
+ "id": 9,
355
+ "options": {
356
+ "(google.api.field_behavior)": "OPTIONAL"
357
+ }
358
+ },
359
+ "distanceMetric": {
360
+ "type": "DistanceMetric",
361
+ "id": 11,
362
+ "options": {
363
+ "(google.api.field_behavior)": "OPTIONAL"
364
+ }
365
+ }
366
+ }
367
+ },
368
+ "SemanticSearch": {
369
+ "oneofs": {
370
+ "_topK": {
371
+ "oneof": [
372
+ "topK"
373
+ ]
374
+ }
375
+ },
376
+ "fields": {
377
+ "searchText": {
378
+ "type": "string",
379
+ "id": 1,
380
+ "options": {
381
+ "(google.api.field_behavior)": "REQUIRED"
382
+ }
383
+ },
384
+ "searchField": {
385
+ "type": "string",
386
+ "id": 2,
387
+ "options": {
388
+ "(google.api.field_behavior)": "REQUIRED"
389
+ }
390
+ },
391
+ "taskType": {
392
+ "type": "EmbeddingTaskType",
393
+ "id": 5,
394
+ "options": {
395
+ "(google.api.field_behavior)": "OPTIONAL"
396
+ }
397
+ },
398
+ "outputFields": {
399
+ "type": "OutputFields",
400
+ "id": 3,
401
+ "options": {
402
+ "(google.api.field_behavior)": "OPTIONAL"
403
+ }
404
+ },
405
+ "filter": {
406
+ "type": "google.protobuf.Struct",
407
+ "id": 6,
408
+ "options": {
409
+ "(google.api.field_behavior)": "OPTIONAL"
410
+ }
411
+ },
412
+ "topK": {
413
+ "type": "int32",
414
+ "id": 4,
415
+ "options": {
416
+ "(google.api.field_behavior)": "OPTIONAL",
417
+ "proto3_optional": true
418
+ }
419
+ }
420
+ }
421
+ },
422
+ "TextSearch": {
423
+ "oneofs": {
424
+ "_topK": {
425
+ "oneof": [
426
+ "topK"
427
+ ]
428
+ }
429
+ },
430
+ "fields": {
431
+ "searchText": {
432
+ "type": "string",
433
+ "id": 1,
434
+ "options": {
435
+ "(google.api.field_behavior)": "REQUIRED"
436
+ }
437
+ },
438
+ "dataFieldNames": {
439
+ "rule": "repeated",
440
+ "type": "string",
441
+ "id": 2,
442
+ "options": {
443
+ "(google.api.field_behavior)": "REQUIRED"
444
+ }
445
+ },
446
+ "outputFields": {
447
+ "type": "OutputFields",
448
+ "id": 3,
449
+ "options": {
450
+ "(google.api.field_behavior)": "OPTIONAL"
451
+ }
452
+ },
453
+ "topK": {
454
+ "type": "int32",
455
+ "id": 4,
456
+ "options": {
457
+ "(google.api.field_behavior)": "OPTIONAL",
458
+ "proto3_optional": true
459
+ }
460
+ }
461
+ }
462
+ },
463
+ "SearchDataObjectsRequest": {
464
+ "oneofs": {
465
+ "searchType": {
466
+ "oneof": [
467
+ "vectorSearch",
468
+ "semanticSearch",
469
+ "textSearch"
470
+ ]
471
+ }
472
+ },
473
+ "fields": {
474
+ "vectorSearch": {
475
+ "type": "VectorSearch",
476
+ "id": 2
477
+ },
478
+ "semanticSearch": {
479
+ "type": "SemanticSearch",
480
+ "id": 4
481
+ },
482
+ "textSearch": {
483
+ "type": "TextSearch",
484
+ "id": 7,
485
+ "options": {
486
+ "(google.api.field_behavior)": "OPTIONAL"
487
+ }
488
+ },
489
+ "parent": {
490
+ "type": "string",
491
+ "id": 1,
492
+ "options": {
493
+ "(google.api.field_behavior)": "REQUIRED",
494
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Collection"
495
+ }
496
+ },
497
+ "pageSize": {
498
+ "type": "int32",
499
+ "id": 5,
500
+ "options": {
501
+ "(google.api.field_behavior)": "OPTIONAL"
502
+ }
503
+ },
504
+ "pageToken": {
505
+ "type": "string",
506
+ "id": 6,
507
+ "options": {
508
+ "(google.api.field_behavior)": "OPTIONAL"
509
+ }
510
+ }
511
+ }
512
+ },
513
+ "SearchResult": {
514
+ "oneofs": {
515
+ "_distance": {
516
+ "oneof": [
517
+ "distance"
518
+ ]
519
+ }
520
+ },
521
+ "fields": {
522
+ "dataObject": {
523
+ "type": "DataObject",
524
+ "id": 1,
525
+ "options": {
526
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
527
+ }
528
+ },
529
+ "distance": {
530
+ "type": "double",
531
+ "id": 2,
532
+ "options": {
533
+ "(google.api.field_behavior)": "OUTPUT_ONLY",
534
+ "proto3_optional": true
535
+ }
536
+ }
537
+ }
538
+ },
539
+ "SearchResponseMetadata": {
540
+ "oneofs": {
541
+ "indexType": {
542
+ "oneof": [
543
+ "usedIndex",
544
+ "usedKnn"
545
+ ]
546
+ }
547
+ },
548
+ "fields": {
549
+ "usedIndex": {
550
+ "type": "IndexInfo",
551
+ "id": 1
552
+ },
553
+ "usedKnn": {
554
+ "type": "bool",
555
+ "id": 2,
556
+ "options": {
557
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
558
+ }
559
+ }
560
+ },
561
+ "nested": {
562
+ "IndexInfo": {
563
+ "fields": {
564
+ "name": {
565
+ "type": "string",
566
+ "id": 1,
567
+ "options": {
568
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
569
+ }
570
+ }
571
+ }
572
+ }
573
+ }
574
+ },
575
+ "SearchDataObjectsResponse": {
576
+ "fields": {
577
+ "results": {
578
+ "rule": "repeated",
579
+ "type": "SearchResult",
580
+ "id": 1,
581
+ "options": {
582
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
583
+ }
584
+ },
585
+ "nextPageToken": {
586
+ "type": "string",
587
+ "id": 2,
588
+ "options": {
589
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
590
+ }
591
+ },
592
+ "searchResponseMetadata": {
593
+ "type": "SearchResponseMetadata",
594
+ "id": 3,
595
+ "options": {
596
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
597
+ }
598
+ }
599
+ }
600
+ },
601
+ "AggregateDataObjectsRequest": {
602
+ "fields": {
603
+ "parent": {
604
+ "type": "string",
605
+ "id": 1,
606
+ "options": {
607
+ "(google.api.field_behavior)": "REQUIRED",
608
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Collection"
609
+ }
610
+ },
611
+ "filter": {
612
+ "type": "google.protobuf.Struct",
613
+ "id": 2,
614
+ "options": {
615
+ "(google.api.field_behavior)": "OPTIONAL"
616
+ }
617
+ },
618
+ "aggregate": {
619
+ "type": "AggregationMethod",
620
+ "id": 3,
621
+ "options": {
622
+ "(google.api.field_behavior)": "REQUIRED"
623
+ }
624
+ }
625
+ }
626
+ },
627
+ "AggregateDataObjectsResponse": {
628
+ "fields": {
629
+ "aggregateResults": {
630
+ "rule": "repeated",
631
+ "type": "google.protobuf.Struct",
632
+ "id": 1
633
+ }
634
+ }
635
+ },
636
+ "QueryDataObjectsRequest": {
637
+ "fields": {
638
+ "parent": {
639
+ "type": "string",
640
+ "id": 1,
641
+ "options": {
642
+ "(google.api.field_behavior)": "REQUIRED",
643
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Collection"
644
+ }
645
+ },
646
+ "filter": {
647
+ "type": "google.protobuf.Struct",
648
+ "id": 2,
649
+ "options": {
650
+ "(google.api.field_behavior)": "OPTIONAL"
651
+ }
652
+ },
653
+ "outputFields": {
654
+ "type": "OutputFields",
655
+ "id": 7,
656
+ "options": {
657
+ "(google.api.field_behavior)": "OPTIONAL"
658
+ }
659
+ },
660
+ "pageSize": {
661
+ "type": "int32",
662
+ "id": 5,
663
+ "options": {
664
+ "(google.api.field_behavior)": "OPTIONAL"
665
+ }
666
+ },
667
+ "pageToken": {
668
+ "type": "string",
669
+ "id": 6,
670
+ "options": {
671
+ "(google.api.field_behavior)": "OPTIONAL"
672
+ }
673
+ }
674
+ }
675
+ },
676
+ "QueryDataObjectsResponse": {
677
+ "fields": {
678
+ "dataObjects": {
679
+ "rule": "repeated",
680
+ "type": "DataObject",
681
+ "id": 4
682
+ },
683
+ "nextPageToken": {
684
+ "type": "string",
685
+ "id": 3
686
+ }
687
+ }
688
+ },
689
+ "BatchSearchDataObjectsRequest": {
690
+ "fields": {
691
+ "parent": {
692
+ "type": "string",
693
+ "id": 1,
694
+ "options": {
695
+ "(google.api.field_behavior)": "REQUIRED",
696
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Collection"
697
+ }
698
+ },
699
+ "searches": {
700
+ "rule": "repeated",
701
+ "type": "Search",
702
+ "id": 2,
703
+ "options": {
704
+ "(google.api.field_behavior)": "REQUIRED"
705
+ }
706
+ },
707
+ "combine": {
708
+ "type": "CombineResultsOptions",
709
+ "id": 3,
710
+ "options": {
711
+ "(google.api.field_behavior)": "OPTIONAL"
712
+ }
713
+ }
714
+ },
715
+ "nested": {
716
+ "CombineResultsOptions": {
717
+ "fields": {
718
+ "ranker": {
719
+ "type": "Ranker",
720
+ "id": 1,
721
+ "options": {
722
+ "(google.api.field_behavior)": "REQUIRED"
723
+ }
724
+ },
725
+ "outputFields": {
726
+ "type": "OutputFields",
727
+ "id": 2,
728
+ "options": {
729
+ "(google.api.field_behavior)": "OPTIONAL"
730
+ }
731
+ },
732
+ "topK": {
733
+ "type": "int32",
734
+ "id": 3,
735
+ "options": {
736
+ "(google.api.field_behavior)": "OPTIONAL"
737
+ }
738
+ }
739
+ }
740
+ }
741
+ }
742
+ },
743
+ "Ranker": {
744
+ "oneofs": {
745
+ "ranker": {
746
+ "oneof": [
747
+ "rrf",
748
+ "vertex"
749
+ ]
750
+ }
751
+ },
752
+ "fields": {
753
+ "rrf": {
754
+ "type": "ReciprocalRankFusion",
755
+ "id": 1
756
+ },
757
+ "vertex": {
758
+ "type": "VertexRanker",
759
+ "id": 2
760
+ }
761
+ }
762
+ },
763
+ "ReciprocalRankFusion": {
764
+ "fields": {
765
+ "weights": {
766
+ "rule": "repeated",
767
+ "type": "double",
768
+ "id": 1,
769
+ "options": {
770
+ "(google.api.field_behavior)": "REQUIRED"
771
+ }
772
+ }
773
+ }
774
+ },
775
+ "VertexRanker": {
776
+ "fields": {
777
+ "query": {
778
+ "type": "string",
779
+ "id": 1,
780
+ "options": {
781
+ "(google.api.field_behavior)": "REQUIRED"
782
+ }
783
+ },
784
+ "titleTemplate": {
785
+ "type": "string",
786
+ "id": 2,
787
+ "options": {
788
+ "(google.api.field_behavior)": "OPTIONAL"
789
+ }
790
+ },
791
+ "contentTemplate": {
792
+ "type": "string",
793
+ "id": 3,
794
+ "options": {
795
+ "(google.api.field_behavior)": "OPTIONAL"
796
+ }
797
+ },
798
+ "model": {
799
+ "type": "string",
800
+ "id": 4,
801
+ "options": {
802
+ "(google.api.field_behavior)": "REQUIRED"
803
+ }
804
+ }
805
+ }
806
+ },
807
+ "BatchSearchDataObjectsResponse": {
808
+ "fields": {
809
+ "results": {
810
+ "rule": "repeated",
811
+ "type": "SearchDataObjectsResponse",
812
+ "id": 1,
813
+ "options": {
814
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
815
+ }
816
+ }
817
+ }
818
+ },
819
+ "EmbeddingTaskType": {
820
+ "values": {
821
+ "EMBEDDING_TASK_TYPE_UNSPECIFIED": 0,
822
+ "RETRIEVAL_QUERY": 1,
823
+ "RETRIEVAL_DOCUMENT": 2,
824
+ "SEMANTIC_SIMILARITY": 3,
825
+ "CLASSIFICATION": 4,
826
+ "CLUSTERING": 5,
827
+ "QUESTION_ANSWERING": 6,
828
+ "FACT_VERIFICATION": 7,
829
+ "CODE_RETRIEVAL_QUERY": 8
830
+ }
831
+ },
832
+ "VertexEmbeddingConfig": {
833
+ "fields": {
834
+ "modelId": {
835
+ "type": "string",
836
+ "id": 1,
837
+ "options": {
838
+ "(google.api.field_behavior)": "REQUIRED"
839
+ }
840
+ },
841
+ "textTemplate": {
842
+ "type": "string",
843
+ "id": 2,
844
+ "options": {
845
+ "(google.api.field_behavior)": "REQUIRED"
846
+ }
847
+ },
848
+ "taskType": {
849
+ "type": "EmbeddingTaskType",
850
+ "id": 3,
851
+ "options": {
852
+ "(google.api.field_behavior)": "REQUIRED"
853
+ }
854
+ }
855
+ }
856
+ },
857
+ "DataObjectService": {
858
+ "options": {
859
+ "(google.api.default_host)": "vectorsearch.googleapis.com",
860
+ "(google.api.oauth_scopes)": "https://www.googleapis.com/auth/cloud-platform"
861
+ },
862
+ "methods": {
863
+ "CreateDataObject": {
864
+ "requestType": "CreateDataObjectRequest",
865
+ "responseType": "DataObject",
866
+ "options": {
867
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects",
868
+ "(google.api.http).body": "data_object",
869
+ "(google.api.method_signature)": "parent,data_object,data_object_id"
870
+ },
871
+ "parsedOptions": [
872
+ {
873
+ "(google.api.http)": {
874
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects",
875
+ "body": "data_object"
876
+ }
877
+ },
878
+ {
879
+ "(google.api.method_signature)": "parent,data_object,data_object_id"
880
+ }
881
+ ]
882
+ },
883
+ "BatchCreateDataObjects": {
884
+ "requestType": "BatchCreateDataObjectsRequest",
885
+ "responseType": "BatchCreateDataObjectsResponse",
886
+ "options": {
887
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:batchCreate",
888
+ "(google.api.http).body": "*"
889
+ },
890
+ "parsedOptions": [
891
+ {
892
+ "(google.api.http)": {
893
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:batchCreate",
894
+ "body": "*"
895
+ }
896
+ }
897
+ ]
898
+ },
899
+ "GetDataObject": {
900
+ "requestType": "GetDataObjectRequest",
901
+ "responseType": "DataObject",
902
+ "options": {
903
+ "(google.api.http).get": "/v1beta/{name=projects/*/locations/*/collections/*/dataObjects/*}",
904
+ "(google.api.method_signature)": "name"
905
+ },
906
+ "parsedOptions": [
907
+ {
908
+ "(google.api.http)": {
909
+ "get": "/v1beta/{name=projects/*/locations/*/collections/*/dataObjects/*}"
910
+ }
911
+ },
912
+ {
913
+ "(google.api.method_signature)": "name"
914
+ }
915
+ ]
916
+ },
917
+ "UpdateDataObject": {
918
+ "requestType": "UpdateDataObjectRequest",
919
+ "responseType": "DataObject",
920
+ "options": {
921
+ "(google.api.http).patch": "/v1beta/{data_object.name=projects/*/locations/*/collections/*/dataObjects/*}",
922
+ "(google.api.http).body": "data_object",
923
+ "(google.api.method_signature)": "data_object,update_mask"
924
+ },
925
+ "parsedOptions": [
926
+ {
927
+ "(google.api.http)": {
928
+ "patch": "/v1beta/{data_object.name=projects/*/locations/*/collections/*/dataObjects/*}",
929
+ "body": "data_object"
930
+ }
931
+ },
932
+ {
933
+ "(google.api.method_signature)": "data_object,update_mask"
934
+ }
935
+ ]
936
+ },
937
+ "BatchUpdateDataObjects": {
938
+ "requestType": "BatchUpdateDataObjectsRequest",
939
+ "responseType": "BatchUpdateDataObjectsResponse",
940
+ "options": {
941
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:batchUpdate",
942
+ "(google.api.http).body": "*",
943
+ "(google.api.method_signature)": "parent,requests"
944
+ },
945
+ "parsedOptions": [
946
+ {
947
+ "(google.api.http)": {
948
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:batchUpdate",
949
+ "body": "*"
950
+ }
951
+ },
952
+ {
953
+ "(google.api.method_signature)": "parent,requests"
954
+ }
955
+ ]
956
+ },
957
+ "DeleteDataObject": {
958
+ "requestType": "DeleteDataObjectRequest",
959
+ "responseType": "google.protobuf.Empty",
960
+ "options": {
961
+ "(google.api.http).delete": "/v1beta/{name=projects/*/locations/*/collections/*/dataObjects/*}",
962
+ "(google.api.method_signature)": "name"
963
+ },
964
+ "parsedOptions": [
965
+ {
966
+ "(google.api.http)": {
967
+ "delete": "/v1beta/{name=projects/*/locations/*/collections/*/dataObjects/*}"
968
+ }
969
+ },
970
+ {
971
+ "(google.api.method_signature)": "name"
972
+ }
973
+ ]
974
+ },
975
+ "BatchDeleteDataObjects": {
976
+ "requestType": "BatchDeleteDataObjectsRequest",
977
+ "responseType": "google.protobuf.Empty",
978
+ "options": {
979
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:batchDelete",
980
+ "(google.api.http).body": "*",
981
+ "(google.api.method_signature)": "parent,requests"
982
+ },
983
+ "parsedOptions": [
984
+ {
985
+ "(google.api.http)": {
986
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*}/dataObjects:batchDelete",
987
+ "body": "*"
988
+ }
989
+ },
990
+ {
991
+ "(google.api.method_signature)": "parent,requests"
992
+ }
993
+ ]
994
+ }
995
+ }
996
+ },
997
+ "CreateDataObjectRequest": {
998
+ "fields": {
999
+ "parent": {
1000
+ "type": "string",
1001
+ "id": 1,
1002
+ "options": {
1003
+ "(google.api.field_behavior)": "REQUIRED",
1004
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Collection"
1005
+ }
1006
+ },
1007
+ "dataObjectId": {
1008
+ "type": "string",
1009
+ "id": 2,
1010
+ "options": {
1011
+ "(google.api.field_behavior)": "REQUIRED"
1012
+ }
1013
+ },
1014
+ "dataObject": {
1015
+ "type": "DataObject",
1016
+ "id": 3,
1017
+ "options": {
1018
+ "(google.api.field_behavior)": "REQUIRED"
1019
+ }
1020
+ }
1021
+ }
1022
+ },
1023
+ "BatchCreateDataObjectsRequest": {
1024
+ "fields": {
1025
+ "parent": {
1026
+ "type": "string",
1027
+ "id": 1,
1028
+ "options": {
1029
+ "(google.api.field_behavior)": "REQUIRED",
1030
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Collection"
1031
+ }
1032
+ },
1033
+ "requests": {
1034
+ "rule": "repeated",
1035
+ "type": "CreateDataObjectRequest",
1036
+ "id": 2,
1037
+ "options": {
1038
+ "(google.api.field_behavior)": "REQUIRED"
1039
+ }
1040
+ }
1041
+ }
1042
+ },
1043
+ "BatchCreateDataObjectsResponse": {
1044
+ "fields": {
1045
+ "dataObjects": {
1046
+ "rule": "repeated",
1047
+ "type": "DataObject",
1048
+ "id": 1
1049
+ }
1050
+ }
1051
+ },
1052
+ "GetDataObjectRequest": {
1053
+ "fields": {
1054
+ "name": {
1055
+ "type": "string",
1056
+ "id": 1,
1057
+ "options": {
1058
+ "(google.api.field_behavior)": "REQUIRED",
1059
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/DataObject"
1060
+ }
1061
+ }
1062
+ }
1063
+ },
1064
+ "UpdateDataObjectRequest": {
1065
+ "fields": {
1066
+ "dataObject": {
1067
+ "type": "DataObject",
1068
+ "id": 1,
1069
+ "options": {
1070
+ "(google.api.field_behavior)": "REQUIRED"
1071
+ }
1072
+ },
1073
+ "updateMask": {
1074
+ "type": "google.protobuf.FieldMask",
1075
+ "id": 2,
1076
+ "options": {
1077
+ "(google.api.field_behavior)": "OPTIONAL"
1078
+ }
1079
+ }
1080
+ }
1081
+ },
1082
+ "BatchUpdateDataObjectsRequest": {
1083
+ "fields": {
1084
+ "parent": {
1085
+ "type": "string",
1086
+ "id": 1,
1087
+ "options": {
1088
+ "(google.api.field_behavior)": "REQUIRED",
1089
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Collection"
1090
+ }
1091
+ },
1092
+ "requests": {
1093
+ "rule": "repeated",
1094
+ "type": "UpdateDataObjectRequest",
1095
+ "id": 2,
1096
+ "options": {
1097
+ "(google.api.field_behavior)": "REQUIRED"
1098
+ }
1099
+ }
1100
+ }
1101
+ },
1102
+ "BatchUpdateDataObjectsResponse": {
1103
+ "fields": {}
1104
+ },
1105
+ "DeleteDataObjectRequest": {
1106
+ "fields": {
1107
+ "name": {
1108
+ "type": "string",
1109
+ "id": 1,
1110
+ "options": {
1111
+ "(google.api.field_behavior)": "REQUIRED",
1112
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/DataObject"
1113
+ }
1114
+ }
1115
+ }
1116
+ },
1117
+ "BatchDeleteDataObjectsRequest": {
1118
+ "fields": {
1119
+ "parent": {
1120
+ "type": "string",
1121
+ "id": 1,
1122
+ "options": {
1123
+ "(google.api.field_behavior)": "REQUIRED",
1124
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Collection"
1125
+ }
1126
+ },
1127
+ "requests": {
1128
+ "rule": "repeated",
1129
+ "type": "DeleteDataObjectRequest",
1130
+ "id": 3,
1131
+ "options": {
1132
+ "(google.api.field_behavior)": "REQUIRED"
1133
+ }
1134
+ }
1135
+ }
1136
+ },
1137
+ "VectorSearchService": {
1138
+ "options": {
1139
+ "(google.api.default_host)": "vectorsearch.googleapis.com",
1140
+ "(google.api.oauth_scopes)": "https://www.googleapis.com/auth/cloud-platform"
1141
+ },
1142
+ "methods": {
1143
+ "ListCollections": {
1144
+ "requestType": "ListCollectionsRequest",
1145
+ "responseType": "ListCollectionsResponse",
1146
+ "options": {
1147
+ "(google.api.http).get": "/v1beta/{parent=projects/*/locations/*}/collections",
1148
+ "(google.api.method_signature)": "parent"
1149
+ },
1150
+ "parsedOptions": [
1151
+ {
1152
+ "(google.api.http)": {
1153
+ "get": "/v1beta/{parent=projects/*/locations/*}/collections"
1154
+ }
1155
+ },
1156
+ {
1157
+ "(google.api.method_signature)": "parent"
1158
+ }
1159
+ ]
1160
+ },
1161
+ "GetCollection": {
1162
+ "requestType": "GetCollectionRequest",
1163
+ "responseType": "Collection",
1164
+ "options": {
1165
+ "(google.api.http).get": "/v1beta/{name=projects/*/locations/*/collections/*}",
1166
+ "(google.api.method_signature)": "name"
1167
+ },
1168
+ "parsedOptions": [
1169
+ {
1170
+ "(google.api.http)": {
1171
+ "get": "/v1beta/{name=projects/*/locations/*/collections/*}"
1172
+ }
1173
+ },
1174
+ {
1175
+ "(google.api.method_signature)": "name"
1176
+ }
1177
+ ]
1178
+ },
1179
+ "CreateCollection": {
1180
+ "requestType": "CreateCollectionRequest",
1181
+ "responseType": "google.longrunning.Operation",
1182
+ "options": {
1183
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*}/collections",
1184
+ "(google.api.http).body": "collection",
1185
+ "(google.api.method_signature)": "parent,collection,collection_id",
1186
+ "(google.longrunning.operation_info).response_type": "Collection",
1187
+ "(google.longrunning.operation_info).metadata_type": "OperationMetadata"
1188
+ },
1189
+ "parsedOptions": [
1190
+ {
1191
+ "(google.api.http)": {
1192
+ "post": "/v1beta/{parent=projects/*/locations/*}/collections",
1193
+ "body": "collection"
1194
+ }
1195
+ },
1196
+ {
1197
+ "(google.api.method_signature)": "parent,collection,collection_id"
1198
+ },
1199
+ {
1200
+ "(google.longrunning.operation_info)": {
1201
+ "response_type": "Collection",
1202
+ "metadata_type": "OperationMetadata"
1203
+ }
1204
+ }
1205
+ ]
1206
+ },
1207
+ "UpdateCollection": {
1208
+ "requestType": "UpdateCollectionRequest",
1209
+ "responseType": "google.longrunning.Operation",
1210
+ "options": {
1211
+ "(google.api.http).patch": "/v1beta/{collection.name=projects/*/locations/*/collections/*}",
1212
+ "(google.api.http).body": "collection",
1213
+ "(google.api.method_signature)": "collection,update_mask",
1214
+ "(google.longrunning.operation_info).response_type": "Collection",
1215
+ "(google.longrunning.operation_info).metadata_type": "OperationMetadata"
1216
+ },
1217
+ "parsedOptions": [
1218
+ {
1219
+ "(google.api.http)": {
1220
+ "patch": "/v1beta/{collection.name=projects/*/locations/*/collections/*}",
1221
+ "body": "collection"
1222
+ }
1223
+ },
1224
+ {
1225
+ "(google.api.method_signature)": "collection,update_mask"
1226
+ },
1227
+ {
1228
+ "(google.longrunning.operation_info)": {
1229
+ "response_type": "Collection",
1230
+ "metadata_type": "OperationMetadata"
1231
+ }
1232
+ }
1233
+ ]
1234
+ },
1235
+ "DeleteCollection": {
1236
+ "requestType": "DeleteCollectionRequest",
1237
+ "responseType": "google.longrunning.Operation",
1238
+ "options": {
1239
+ "(google.api.http).delete": "/v1beta/{name=projects/*/locations/*/collections/*}",
1240
+ "(google.api.method_signature)": "name",
1241
+ "(google.longrunning.operation_info).response_type": "google.protobuf.Empty",
1242
+ "(google.longrunning.operation_info).metadata_type": "OperationMetadata"
1243
+ },
1244
+ "parsedOptions": [
1245
+ {
1246
+ "(google.api.http)": {
1247
+ "delete": "/v1beta/{name=projects/*/locations/*/collections/*}"
1248
+ }
1249
+ },
1250
+ {
1251
+ "(google.api.method_signature)": "name"
1252
+ },
1253
+ {
1254
+ "(google.longrunning.operation_info)": {
1255
+ "response_type": "google.protobuf.Empty",
1256
+ "metadata_type": "OperationMetadata"
1257
+ }
1258
+ }
1259
+ ]
1260
+ },
1261
+ "ListIndexes": {
1262
+ "requestType": "ListIndexesRequest",
1263
+ "responseType": "ListIndexesResponse",
1264
+ "options": {
1265
+ "(google.api.http).get": "/v1beta/{parent=projects/*/locations/*/collections/*}/indexes",
1266
+ "(google.api.method_signature)": "parent"
1267
+ },
1268
+ "parsedOptions": [
1269
+ {
1270
+ "(google.api.http)": {
1271
+ "get": "/v1beta/{parent=projects/*/locations/*/collections/*}/indexes"
1272
+ }
1273
+ },
1274
+ {
1275
+ "(google.api.method_signature)": "parent"
1276
+ }
1277
+ ]
1278
+ },
1279
+ "GetIndex": {
1280
+ "requestType": "GetIndexRequest",
1281
+ "responseType": "Index",
1282
+ "options": {
1283
+ "(google.api.http).get": "/v1beta/{name=projects/*/locations/*/collections/*/indexes/*}",
1284
+ "(google.api.method_signature)": "name"
1285
+ },
1286
+ "parsedOptions": [
1287
+ {
1288
+ "(google.api.http)": {
1289
+ "get": "/v1beta/{name=projects/*/locations/*/collections/*/indexes/*}"
1290
+ }
1291
+ },
1292
+ {
1293
+ "(google.api.method_signature)": "name"
1294
+ }
1295
+ ]
1296
+ },
1297
+ "CreateIndex": {
1298
+ "requestType": "CreateIndexRequest",
1299
+ "responseType": "google.longrunning.Operation",
1300
+ "options": {
1301
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*}/indexes",
1302
+ "(google.api.http).body": "index",
1303
+ "(google.api.method_signature)": "parent,index,index_id",
1304
+ "(google.longrunning.operation_info).response_type": "Index",
1305
+ "(google.longrunning.operation_info).metadata_type": "OperationMetadata"
1306
+ },
1307
+ "parsedOptions": [
1308
+ {
1309
+ "(google.api.http)": {
1310
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*}/indexes",
1311
+ "body": "index"
1312
+ }
1313
+ },
1314
+ {
1315
+ "(google.api.method_signature)": "parent,index,index_id"
1316
+ },
1317
+ {
1318
+ "(google.longrunning.operation_info)": {
1319
+ "response_type": "Index",
1320
+ "metadata_type": "OperationMetadata"
1321
+ }
1322
+ }
1323
+ ]
1324
+ },
1325
+ "DeleteIndex": {
1326
+ "requestType": "DeleteIndexRequest",
1327
+ "responseType": "google.longrunning.Operation",
1328
+ "options": {
1329
+ "(google.api.http).delete": "/v1beta/{name=projects/*/locations/*/collections/*/indexes/*}",
1330
+ "(google.api.method_signature)": "name",
1331
+ "(google.longrunning.operation_info).response_type": "google.protobuf.Empty",
1332
+ "(google.longrunning.operation_info).metadata_type": "OperationMetadata"
1333
+ },
1334
+ "parsedOptions": [
1335
+ {
1336
+ "(google.api.http)": {
1337
+ "delete": "/v1beta/{name=projects/*/locations/*/collections/*/indexes/*}"
1338
+ }
1339
+ },
1340
+ {
1341
+ "(google.api.method_signature)": "name"
1342
+ },
1343
+ {
1344
+ "(google.longrunning.operation_info)": {
1345
+ "response_type": "google.protobuf.Empty",
1346
+ "metadata_type": "OperationMetadata"
1347
+ }
1348
+ }
1349
+ ]
1350
+ },
1351
+ "ImportDataObjects": {
1352
+ "requestType": "ImportDataObjectsRequest",
1353
+ "responseType": "google.longrunning.Operation",
1354
+ "options": {
1355
+ "(google.api.http).post": "/v1beta/{name=projects/*/locations/*/collections/*}:importDataObjects",
1356
+ "(google.api.http).body": "*",
1357
+ "(google.longrunning.operation_info).response_type": "ImportDataObjectsResponse",
1358
+ "(google.longrunning.operation_info).metadata_type": "ImportDataObjectsMetadata"
1359
+ },
1360
+ "parsedOptions": [
1361
+ {
1362
+ "(google.api.http)": {
1363
+ "post": "/v1beta/{name=projects/*/locations/*/collections/*}:importDataObjects",
1364
+ "body": "*"
1365
+ }
1366
+ },
1367
+ {
1368
+ "(google.longrunning.operation_info)": {
1369
+ "response_type": "ImportDataObjectsResponse",
1370
+ "metadata_type": "ImportDataObjectsMetadata"
1371
+ }
1372
+ }
1373
+ ]
1374
+ }
1375
+ }
1376
+ },
1377
+ "Collection": {
1378
+ "options": {
1379
+ "(google.api.resource).type": "vectorsearch.googleapis.com/Collection",
1380
+ "(google.api.resource).pattern": "projects/{project}/locations/{location}/collections/{collection}",
1381
+ "(google.api.resource).plural": "collections",
1382
+ "(google.api.resource).singular": "collection"
1383
+ },
1384
+ "fields": {
1385
+ "name": {
1386
+ "type": "string",
1387
+ "id": 1,
1388
+ "options": {
1389
+ "(google.api.field_behavior)": "IDENTIFIER"
1390
+ }
1391
+ },
1392
+ "displayName": {
1393
+ "type": "string",
1394
+ "id": 8,
1395
+ "options": {
1396
+ "(google.api.field_behavior)": "OPTIONAL"
1397
+ }
1398
+ },
1399
+ "description": {
1400
+ "type": "string",
1401
+ "id": 9,
1402
+ "options": {
1403
+ "(google.api.field_behavior)": "OPTIONAL"
1404
+ }
1405
+ },
1406
+ "createTime": {
1407
+ "type": "google.protobuf.Timestamp",
1408
+ "id": 2,
1409
+ "options": {
1410
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
1411
+ }
1412
+ },
1413
+ "updateTime": {
1414
+ "type": "google.protobuf.Timestamp",
1415
+ "id": 3,
1416
+ "options": {
1417
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
1418
+ }
1419
+ },
1420
+ "labels": {
1421
+ "keyType": "string",
1422
+ "type": "string",
1423
+ "id": 4,
1424
+ "options": {
1425
+ "(google.api.field_behavior)": "OPTIONAL"
1426
+ }
1427
+ },
1428
+ "schema": {
1429
+ "type": "google.protobuf.Struct",
1430
+ "id": 5,
1431
+ "options": {
1432
+ "deprecated": true,
1433
+ "(google.api.field_behavior)": "OPTIONAL"
1434
+ }
1435
+ },
1436
+ "vectorSchema": {
1437
+ "keyType": "string",
1438
+ "type": "VectorField",
1439
+ "id": 7,
1440
+ "options": {
1441
+ "(google.api.field_behavior)": "OPTIONAL"
1442
+ }
1443
+ },
1444
+ "dataSchema": {
1445
+ "type": "google.protobuf.Struct",
1446
+ "id": 10,
1447
+ "options": {
1448
+ "(google.api.field_behavior)": "OPTIONAL"
1449
+ }
1450
+ }
1451
+ }
1452
+ },
1453
+ "VectorField": {
1454
+ "oneofs": {
1455
+ "vectorTypeConfig": {
1456
+ "oneof": [
1457
+ "denseVector",
1458
+ "sparseVector"
1459
+ ]
1460
+ }
1461
+ },
1462
+ "fields": {
1463
+ "denseVector": {
1464
+ "type": "DenseVectorField",
1465
+ "id": 3
1466
+ },
1467
+ "sparseVector": {
1468
+ "type": "SparseVectorField",
1469
+ "id": 4
1470
+ }
1471
+ }
1472
+ },
1473
+ "DenseVectorField": {
1474
+ "fields": {
1475
+ "dimensions": {
1476
+ "type": "int32",
1477
+ "id": 1
1478
+ },
1479
+ "vertexEmbeddingConfig": {
1480
+ "type": "VertexEmbeddingConfig",
1481
+ "id": 3,
1482
+ "options": {
1483
+ "(google.api.field_behavior)": "OPTIONAL"
1484
+ }
1485
+ }
1486
+ }
1487
+ },
1488
+ "SparseVectorField": {
1489
+ "fields": {}
1490
+ },
1491
+ "ListCollectionsRequest": {
1492
+ "fields": {
1493
+ "parent": {
1494
+ "type": "string",
1495
+ "id": 1,
1496
+ "options": {
1497
+ "(google.api.field_behavior)": "REQUIRED",
1498
+ "(google.api.resource_reference).child_type": "vectorsearch.googleapis.com/Collection"
1499
+ }
1500
+ },
1501
+ "pageSize": {
1502
+ "type": "int32",
1503
+ "id": 2,
1504
+ "options": {
1505
+ "(google.api.field_behavior)": "OPTIONAL"
1506
+ }
1507
+ },
1508
+ "pageToken": {
1509
+ "type": "string",
1510
+ "id": 3,
1511
+ "options": {
1512
+ "(google.api.field_behavior)": "OPTIONAL"
1513
+ }
1514
+ },
1515
+ "filter": {
1516
+ "type": "string",
1517
+ "id": 4,
1518
+ "options": {
1519
+ "(google.api.field_behavior)": "OPTIONAL"
1520
+ }
1521
+ },
1522
+ "orderBy": {
1523
+ "type": "string",
1524
+ "id": 5,
1525
+ "options": {
1526
+ "(google.api.field_behavior)": "OPTIONAL"
1527
+ }
1528
+ }
1529
+ }
1530
+ },
1531
+ "ListCollectionsResponse": {
1532
+ "fields": {
1533
+ "collections": {
1534
+ "rule": "repeated",
1535
+ "type": "Collection",
1536
+ "id": 1
1537
+ },
1538
+ "nextPageToken": {
1539
+ "type": "string",
1540
+ "id": 2
1541
+ },
1542
+ "unreachable": {
1543
+ "rule": "repeated",
1544
+ "type": "string",
1545
+ "id": 3,
1546
+ "options": {
1547
+ "(google.api.field_behavior)": "UNORDERED_LIST"
1548
+ }
1549
+ }
1550
+ }
1551
+ },
1552
+ "GetCollectionRequest": {
1553
+ "fields": {
1554
+ "name": {
1555
+ "type": "string",
1556
+ "id": 1,
1557
+ "options": {
1558
+ "(google.api.field_behavior)": "REQUIRED",
1559
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Collection"
1560
+ }
1561
+ }
1562
+ }
1563
+ },
1564
+ "CreateCollectionRequest": {
1565
+ "fields": {
1566
+ "parent": {
1567
+ "type": "string",
1568
+ "id": 1,
1569
+ "options": {
1570
+ "(google.api.field_behavior)": "REQUIRED",
1571
+ "(google.api.resource_reference).child_type": "vectorsearch.googleapis.com/Collection"
1572
+ }
1573
+ },
1574
+ "collectionId": {
1575
+ "type": "string",
1576
+ "id": 2,
1577
+ "options": {
1578
+ "(google.api.field_behavior)": "REQUIRED"
1579
+ }
1580
+ },
1581
+ "collection": {
1582
+ "type": "Collection",
1583
+ "id": 3,
1584
+ "options": {
1585
+ "(google.api.field_behavior)": "REQUIRED"
1586
+ }
1587
+ },
1588
+ "requestId": {
1589
+ "type": "string",
1590
+ "id": 4,
1591
+ "options": {
1592
+ "(google.api.field_info).format": "UUID4",
1593
+ "(google.api.field_behavior)": "OPTIONAL"
1594
+ }
1595
+ }
1596
+ }
1597
+ },
1598
+ "UpdateCollectionRequest": {
1599
+ "fields": {
1600
+ "updateMask": {
1601
+ "type": "google.protobuf.FieldMask",
1602
+ "id": 1,
1603
+ "options": {
1604
+ "(google.api.field_behavior)": "OPTIONAL"
1605
+ }
1606
+ },
1607
+ "collection": {
1608
+ "type": "Collection",
1609
+ "id": 2,
1610
+ "options": {
1611
+ "(google.api.field_behavior)": "REQUIRED"
1612
+ }
1613
+ },
1614
+ "requestId": {
1615
+ "type": "string",
1616
+ "id": 3,
1617
+ "options": {
1618
+ "(google.api.field_info).format": "UUID4",
1619
+ "(google.api.field_behavior)": "OPTIONAL"
1620
+ }
1621
+ }
1622
+ }
1623
+ },
1624
+ "DeleteCollectionRequest": {
1625
+ "fields": {
1626
+ "name": {
1627
+ "type": "string",
1628
+ "id": 1,
1629
+ "options": {
1630
+ "(google.api.field_behavior)": "REQUIRED",
1631
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Collection"
1632
+ }
1633
+ },
1634
+ "requestId": {
1635
+ "type": "string",
1636
+ "id": 2,
1637
+ "options": {
1638
+ "(google.api.field_info).format": "UUID4",
1639
+ "(google.api.field_behavior)": "OPTIONAL"
1640
+ }
1641
+ }
1642
+ }
1643
+ },
1644
+ "Index": {
1645
+ "options": {
1646
+ "(google.api.resource).type": "vectorsearch.googleapis.com/Index",
1647
+ "(google.api.resource).pattern": "projects/{project}/locations/{location}/collections/{collection}/indexes/{index}",
1648
+ "(google.api.resource).plural": "indexes",
1649
+ "(google.api.resource).singular": "index"
1650
+ },
1651
+ "fields": {
1652
+ "name": {
1653
+ "type": "string",
1654
+ "id": 1,
1655
+ "options": {
1656
+ "(google.api.field_behavior)": "IDENTIFIER"
1657
+ }
1658
+ },
1659
+ "displayName": {
1660
+ "type": "string",
1661
+ "id": 8,
1662
+ "options": {
1663
+ "(google.api.field_behavior)": "OPTIONAL"
1664
+ }
1665
+ },
1666
+ "description": {
1667
+ "type": "string",
1668
+ "id": 9,
1669
+ "options": {
1670
+ "(google.api.field_behavior)": "OPTIONAL"
1671
+ }
1672
+ },
1673
+ "labels": {
1674
+ "keyType": "string",
1675
+ "type": "string",
1676
+ "id": 10,
1677
+ "options": {
1678
+ "(google.api.field_behavior)": "OPTIONAL"
1679
+ }
1680
+ },
1681
+ "createTime": {
1682
+ "type": "google.protobuf.Timestamp",
1683
+ "id": 2,
1684
+ "options": {
1685
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
1686
+ }
1687
+ },
1688
+ "updateTime": {
1689
+ "type": "google.protobuf.Timestamp",
1690
+ "id": 3,
1691
+ "options": {
1692
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
1693
+ }
1694
+ },
1695
+ "distanceMetric": {
1696
+ "type": "DistanceMetric",
1697
+ "id": 4,
1698
+ "options": {
1699
+ "(google.api.field_behavior)": "OPTIONAL"
1700
+ }
1701
+ },
1702
+ "indexField": {
1703
+ "type": "string",
1704
+ "id": 5,
1705
+ "options": {
1706
+ "(google.api.field_behavior)": "REQUIRED"
1707
+ }
1708
+ },
1709
+ "filterFields": {
1710
+ "rule": "repeated",
1711
+ "type": "string",
1712
+ "id": 6,
1713
+ "options": {
1714
+ "(google.api.field_behavior)": "OPTIONAL"
1715
+ }
1716
+ },
1717
+ "storeFields": {
1718
+ "rule": "repeated",
1719
+ "type": "string",
1720
+ "id": 7,
1721
+ "options": {
1722
+ "(google.api.field_behavior)": "OPTIONAL"
1723
+ }
1724
+ }
1725
+ }
1726
+ },
1727
+ "CreateIndexRequest": {
1728
+ "fields": {
1729
+ "parent": {
1730
+ "type": "string",
1731
+ "id": 1,
1732
+ "options": {
1733
+ "(google.api.field_behavior)": "REQUIRED",
1734
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Collection"
1735
+ }
1736
+ },
1737
+ "indexId": {
1738
+ "type": "string",
1739
+ "id": 2,
1740
+ "options": {
1741
+ "(google.api.field_behavior)": "REQUIRED"
1742
+ }
1743
+ },
1744
+ "index": {
1745
+ "type": "Index",
1746
+ "id": 3,
1747
+ "options": {
1748
+ "(google.api.field_behavior)": "REQUIRED"
1749
+ }
1750
+ },
1751
+ "requestId": {
1752
+ "type": "string",
1753
+ "id": 4,
1754
+ "options": {
1755
+ "(google.api.field_info).format": "UUID4",
1756
+ "(google.api.field_behavior)": "OPTIONAL"
1757
+ }
1758
+ }
1759
+ }
1760
+ },
1761
+ "DeleteIndexRequest": {
1762
+ "fields": {
1763
+ "name": {
1764
+ "type": "string",
1765
+ "id": 1,
1766
+ "options": {
1767
+ "(google.api.field_behavior)": "REQUIRED",
1768
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Index"
1769
+ }
1770
+ },
1771
+ "requestId": {
1772
+ "type": "string",
1773
+ "id": 2,
1774
+ "options": {
1775
+ "(google.api.field_info).format": "UUID4",
1776
+ "(google.api.field_behavior)": "OPTIONAL"
1777
+ }
1778
+ }
1779
+ }
1780
+ },
1781
+ "ListIndexesRequest": {
1782
+ "fields": {
1783
+ "parent": {
1784
+ "type": "string",
1785
+ "id": 1,
1786
+ "options": {
1787
+ "(google.api.field_behavior)": "REQUIRED",
1788
+ "(google.api.resource_reference).child_type": "vectorsearch.googleapis.com/Index"
1789
+ }
1790
+ },
1791
+ "pageSize": {
1792
+ "type": "int32",
1793
+ "id": 2,
1794
+ "options": {
1795
+ "(google.api.field_behavior)": "OPTIONAL"
1796
+ }
1797
+ },
1798
+ "pageToken": {
1799
+ "type": "string",
1800
+ "id": 3,
1801
+ "options": {
1802
+ "(google.api.field_behavior)": "OPTIONAL"
1803
+ }
1804
+ },
1805
+ "filter": {
1806
+ "type": "string",
1807
+ "id": 4,
1808
+ "options": {
1809
+ "(google.api.field_behavior)": "OPTIONAL"
1810
+ }
1811
+ },
1812
+ "orderBy": {
1813
+ "type": "string",
1814
+ "id": 5,
1815
+ "options": {
1816
+ "(google.api.field_behavior)": "OPTIONAL"
1817
+ }
1818
+ }
1819
+ }
1820
+ },
1821
+ "ListIndexesResponse": {
1822
+ "fields": {
1823
+ "indexes": {
1824
+ "rule": "repeated",
1825
+ "type": "Index",
1826
+ "id": 1
1827
+ },
1828
+ "nextPageToken": {
1829
+ "type": "string",
1830
+ "id": 2
1831
+ }
1832
+ }
1833
+ },
1834
+ "GetIndexRequest": {
1835
+ "fields": {
1836
+ "name": {
1837
+ "type": "string",
1838
+ "id": 1,
1839
+ "options": {
1840
+ "(google.api.field_behavior)": "REQUIRED",
1841
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Index"
1842
+ }
1843
+ }
1844
+ }
1845
+ },
1846
+ "OperationMetadata": {
1847
+ "fields": {
1848
+ "createTime": {
1849
+ "type": "google.protobuf.Timestamp",
1850
+ "id": 1,
1851
+ "options": {
1852
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
1853
+ }
1854
+ },
1855
+ "endTime": {
1856
+ "type": "google.protobuf.Timestamp",
1857
+ "id": 2,
1858
+ "options": {
1859
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
1860
+ }
1861
+ },
1862
+ "target": {
1863
+ "type": "string",
1864
+ "id": 3,
1865
+ "options": {
1866
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
1867
+ }
1868
+ },
1869
+ "verb": {
1870
+ "type": "string",
1871
+ "id": 4,
1872
+ "options": {
1873
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
1874
+ }
1875
+ },
1876
+ "statusMessage": {
1877
+ "type": "string",
1878
+ "id": 5,
1879
+ "options": {
1880
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
1881
+ }
1882
+ },
1883
+ "requestedCancellation": {
1884
+ "type": "bool",
1885
+ "id": 6,
1886
+ "options": {
1887
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
1888
+ }
1889
+ },
1890
+ "apiVersion": {
1891
+ "type": "string",
1892
+ "id": 7,
1893
+ "options": {
1894
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
1895
+ }
1896
+ }
1897
+ }
1898
+ },
1899
+ "ImportDataObjectsRequest": {
1900
+ "oneofs": {
1901
+ "config": {
1902
+ "oneof": [
1903
+ "gcsImport"
1904
+ ]
1905
+ }
1906
+ },
1907
+ "fields": {
1908
+ "gcsImport": {
1909
+ "type": "GcsImportConfig",
1910
+ "id": 2
1911
+ },
1912
+ "name": {
1913
+ "type": "string",
1914
+ "id": 1,
1915
+ "options": {
1916
+ "(google.api.field_behavior)": "REQUIRED",
1917
+ "(google.api.resource_reference).type": "vectorsearch.googleapis.com/Collection"
1918
+ }
1919
+ }
1920
+ },
1921
+ "nested": {
1922
+ "GcsImportConfig": {
1923
+ "fields": {
1924
+ "contentsUri": {
1925
+ "type": "string",
1926
+ "id": 1,
1927
+ "options": {
1928
+ "(google.api.field_behavior)": "REQUIRED"
1929
+ }
1930
+ },
1931
+ "errorUri": {
1932
+ "type": "string",
1933
+ "id": 2,
1934
+ "options": {
1935
+ "(google.api.field_behavior)": "REQUIRED"
1936
+ }
1937
+ }
1938
+ }
1939
+ }
1940
+ }
1941
+ },
1942
+ "ImportDataObjectsMetadata": {
1943
+ "fields": {
1944
+ "createTime": {
1945
+ "type": "google.protobuf.Timestamp",
1946
+ "id": 1
1947
+ },
1948
+ "updateTime": {
1949
+ "type": "google.protobuf.Timestamp",
1950
+ "id": 2
1951
+ },
1952
+ "successCount": {
1953
+ "type": "int64",
1954
+ "id": 3
1955
+ },
1956
+ "failureCount": {
1957
+ "type": "int64",
1958
+ "id": 4
1959
+ }
1960
+ }
1961
+ },
1962
+ "ImportDataObjectsResponse": {
1963
+ "fields": {
1964
+ "status": {
1965
+ "type": "google.rpc.Status",
1966
+ "id": 1
1967
+ }
1968
+ }
1969
+ }
1970
+ }
1971
+ }
1972
+ }
1973
+ }
1974
+ }
1975
+ },
1976
+ "api": {
1977
+ "options": {
1978
+ "go_package": "google.golang.org/genproto/googleapis/api/annotations;annotations",
1979
+ "java_multiple_files": true,
1980
+ "java_outer_classname": "FieldInfoProto",
1981
+ "java_package": "com.google.api",
1982
+ "objc_class_prefix": "GAPI",
1983
+ "cc_enable_arenas": true
1984
+ },
1985
+ "nested": {
1986
+ "fieldBehavior": {
1987
+ "rule": "repeated",
1988
+ "type": "google.api.FieldBehavior",
1989
+ "id": 1052,
1990
+ "extend": "google.protobuf.FieldOptions",
1991
+ "options": {
1992
+ "packed": false
1993
+ }
1994
+ },
1995
+ "FieldBehavior": {
1996
+ "values": {
1997
+ "FIELD_BEHAVIOR_UNSPECIFIED": 0,
1998
+ "OPTIONAL": 1,
1999
+ "REQUIRED": 2,
2000
+ "OUTPUT_ONLY": 3,
2001
+ "INPUT_ONLY": 4,
2002
+ "IMMUTABLE": 5,
2003
+ "UNORDERED_LIST": 6,
2004
+ "NON_EMPTY_DEFAULT": 7,
2005
+ "IDENTIFIER": 8
2006
+ }
2007
+ },
2008
+ "resourceReference": {
2009
+ "type": "google.api.ResourceReference",
2010
+ "id": 1055,
2011
+ "extend": "google.protobuf.FieldOptions"
2012
+ },
2013
+ "resourceDefinition": {
2014
+ "rule": "repeated",
2015
+ "type": "google.api.ResourceDescriptor",
2016
+ "id": 1053,
2017
+ "extend": "google.protobuf.FileOptions"
2018
+ },
2019
+ "resource": {
2020
+ "type": "google.api.ResourceDescriptor",
2021
+ "id": 1053,
2022
+ "extend": "google.protobuf.MessageOptions"
2023
+ },
2024
+ "ResourceDescriptor": {
2025
+ "fields": {
2026
+ "type": {
2027
+ "type": "string",
2028
+ "id": 1
2029
+ },
2030
+ "pattern": {
2031
+ "rule": "repeated",
2032
+ "type": "string",
2033
+ "id": 2
2034
+ },
2035
+ "nameField": {
2036
+ "type": "string",
2037
+ "id": 3
2038
+ },
2039
+ "history": {
2040
+ "type": "History",
2041
+ "id": 4
2042
+ },
2043
+ "plural": {
2044
+ "type": "string",
2045
+ "id": 5
2046
+ },
2047
+ "singular": {
2048
+ "type": "string",
2049
+ "id": 6
2050
+ },
2051
+ "style": {
2052
+ "rule": "repeated",
2053
+ "type": "Style",
2054
+ "id": 10
2055
+ }
2056
+ },
2057
+ "nested": {
2058
+ "History": {
2059
+ "values": {
2060
+ "HISTORY_UNSPECIFIED": 0,
2061
+ "ORIGINALLY_SINGLE_PATTERN": 1,
2062
+ "FUTURE_MULTI_PATTERN": 2
2063
+ }
2064
+ },
2065
+ "Style": {
2066
+ "values": {
2067
+ "STYLE_UNSPECIFIED": 0,
2068
+ "DECLARATIVE_FRIENDLY": 1
2069
+ }
2070
+ }
2071
+ }
2072
+ },
2073
+ "ResourceReference": {
2074
+ "fields": {
2075
+ "type": {
2076
+ "type": "string",
2077
+ "id": 1
2078
+ },
2079
+ "childType": {
2080
+ "type": "string",
2081
+ "id": 2
2082
+ }
2083
+ }
2084
+ },
2085
+ "http": {
2086
+ "type": "HttpRule",
2087
+ "id": 72295728,
2088
+ "extend": "google.protobuf.MethodOptions"
2089
+ },
2090
+ "Http": {
2091
+ "fields": {
2092
+ "rules": {
2093
+ "rule": "repeated",
2094
+ "type": "HttpRule",
2095
+ "id": 1
2096
+ },
2097
+ "fullyDecodeReservedExpansion": {
2098
+ "type": "bool",
2099
+ "id": 2
2100
+ }
2101
+ }
2102
+ },
2103
+ "HttpRule": {
2104
+ "oneofs": {
2105
+ "pattern": {
2106
+ "oneof": [
2107
+ "get",
2108
+ "put",
2109
+ "post",
2110
+ "delete",
2111
+ "patch",
2112
+ "custom"
2113
+ ]
2114
+ }
2115
+ },
2116
+ "fields": {
2117
+ "selector": {
2118
+ "type": "string",
2119
+ "id": 1
2120
+ },
2121
+ "get": {
2122
+ "type": "string",
2123
+ "id": 2
2124
+ },
2125
+ "put": {
2126
+ "type": "string",
2127
+ "id": 3
2128
+ },
2129
+ "post": {
2130
+ "type": "string",
2131
+ "id": 4
2132
+ },
2133
+ "delete": {
2134
+ "type": "string",
2135
+ "id": 5
2136
+ },
2137
+ "patch": {
2138
+ "type": "string",
2139
+ "id": 6
2140
+ },
2141
+ "custom": {
2142
+ "type": "CustomHttpPattern",
2143
+ "id": 8
2144
+ },
2145
+ "body": {
2146
+ "type": "string",
2147
+ "id": 7
2148
+ },
2149
+ "responseBody": {
2150
+ "type": "string",
2151
+ "id": 12
2152
+ },
2153
+ "additionalBindings": {
2154
+ "rule": "repeated",
2155
+ "type": "HttpRule",
2156
+ "id": 11
2157
+ }
2158
+ }
2159
+ },
2160
+ "CustomHttpPattern": {
2161
+ "fields": {
2162
+ "kind": {
2163
+ "type": "string",
2164
+ "id": 1
2165
+ },
2166
+ "path": {
2167
+ "type": "string",
2168
+ "id": 2
2169
+ }
2170
+ }
2171
+ },
2172
+ "methodSignature": {
2173
+ "rule": "repeated",
2174
+ "type": "string",
2175
+ "id": 1051,
2176
+ "extend": "google.protobuf.MethodOptions"
2177
+ },
2178
+ "defaultHost": {
2179
+ "type": "string",
2180
+ "id": 1049,
2181
+ "extend": "google.protobuf.ServiceOptions"
2182
+ },
2183
+ "oauthScopes": {
2184
+ "type": "string",
2185
+ "id": 1050,
2186
+ "extend": "google.protobuf.ServiceOptions"
2187
+ },
2188
+ "apiVersion": {
2189
+ "type": "string",
2190
+ "id": 525000001,
2191
+ "extend": "google.protobuf.ServiceOptions"
2192
+ },
2193
+ "CommonLanguageSettings": {
2194
+ "fields": {
2195
+ "referenceDocsUri": {
2196
+ "type": "string",
2197
+ "id": 1,
2198
+ "options": {
2199
+ "deprecated": true
2200
+ }
2201
+ },
2202
+ "destinations": {
2203
+ "rule": "repeated",
2204
+ "type": "ClientLibraryDestination",
2205
+ "id": 2
2206
+ }
2207
+ }
2208
+ },
2209
+ "ClientLibrarySettings": {
2210
+ "fields": {
2211
+ "version": {
2212
+ "type": "string",
2213
+ "id": 1
2214
+ },
2215
+ "launchStage": {
2216
+ "type": "LaunchStage",
2217
+ "id": 2
2218
+ },
2219
+ "restNumericEnums": {
2220
+ "type": "bool",
2221
+ "id": 3
2222
+ },
2223
+ "javaSettings": {
2224
+ "type": "JavaSettings",
2225
+ "id": 21
2226
+ },
2227
+ "cppSettings": {
2228
+ "type": "CppSettings",
2229
+ "id": 22
2230
+ },
2231
+ "phpSettings": {
2232
+ "type": "PhpSettings",
2233
+ "id": 23
2234
+ },
2235
+ "pythonSettings": {
2236
+ "type": "PythonSettings",
2237
+ "id": 24
2238
+ },
2239
+ "nodeSettings": {
2240
+ "type": "NodeSettings",
2241
+ "id": 25
2242
+ },
2243
+ "dotnetSettings": {
2244
+ "type": "DotnetSettings",
2245
+ "id": 26
2246
+ },
2247
+ "rubySettings": {
2248
+ "type": "RubySettings",
2249
+ "id": 27
2250
+ },
2251
+ "goSettings": {
2252
+ "type": "GoSettings",
2253
+ "id": 28
2254
+ }
2255
+ }
2256
+ },
2257
+ "Publishing": {
2258
+ "fields": {
2259
+ "methodSettings": {
2260
+ "rule": "repeated",
2261
+ "type": "MethodSettings",
2262
+ "id": 2
2263
+ },
2264
+ "newIssueUri": {
2265
+ "type": "string",
2266
+ "id": 101
2267
+ },
2268
+ "documentationUri": {
2269
+ "type": "string",
2270
+ "id": 102
2271
+ },
2272
+ "apiShortName": {
2273
+ "type": "string",
2274
+ "id": 103
2275
+ },
2276
+ "githubLabel": {
2277
+ "type": "string",
2278
+ "id": 104
2279
+ },
2280
+ "codeownerGithubTeams": {
2281
+ "rule": "repeated",
2282
+ "type": "string",
2283
+ "id": 105
2284
+ },
2285
+ "docTagPrefix": {
2286
+ "type": "string",
2287
+ "id": 106
2288
+ },
2289
+ "organization": {
2290
+ "type": "ClientLibraryOrganization",
2291
+ "id": 107
2292
+ },
2293
+ "librarySettings": {
2294
+ "rule": "repeated",
2295
+ "type": "ClientLibrarySettings",
2296
+ "id": 109
2297
+ },
2298
+ "protoReferenceDocumentationUri": {
2299
+ "type": "string",
2300
+ "id": 110
2301
+ },
2302
+ "restReferenceDocumentationUri": {
2303
+ "type": "string",
2304
+ "id": 111
2305
+ }
2306
+ }
2307
+ },
2308
+ "JavaSettings": {
2309
+ "fields": {
2310
+ "libraryPackage": {
2311
+ "type": "string",
2312
+ "id": 1
2313
+ },
2314
+ "serviceClassNames": {
2315
+ "keyType": "string",
2316
+ "type": "string",
2317
+ "id": 2
2318
+ },
2319
+ "common": {
2320
+ "type": "CommonLanguageSettings",
2321
+ "id": 3
2322
+ }
2323
+ }
2324
+ },
2325
+ "CppSettings": {
2326
+ "fields": {
2327
+ "common": {
2328
+ "type": "CommonLanguageSettings",
2329
+ "id": 1
2330
+ }
2331
+ }
2332
+ },
2333
+ "PhpSettings": {
2334
+ "fields": {
2335
+ "common": {
2336
+ "type": "CommonLanguageSettings",
2337
+ "id": 1
2338
+ }
2339
+ }
2340
+ },
2341
+ "PythonSettings": {
2342
+ "fields": {
2343
+ "common": {
2344
+ "type": "CommonLanguageSettings",
2345
+ "id": 1
2346
+ }
2347
+ }
2348
+ },
2349
+ "NodeSettings": {
2350
+ "fields": {
2351
+ "common": {
2352
+ "type": "CommonLanguageSettings",
2353
+ "id": 1
2354
+ }
2355
+ }
2356
+ },
2357
+ "DotnetSettings": {
2358
+ "fields": {
2359
+ "common": {
2360
+ "type": "CommonLanguageSettings",
2361
+ "id": 1
2362
+ },
2363
+ "renamedServices": {
2364
+ "keyType": "string",
2365
+ "type": "string",
2366
+ "id": 2
2367
+ },
2368
+ "renamedResources": {
2369
+ "keyType": "string",
2370
+ "type": "string",
2371
+ "id": 3
2372
+ },
2373
+ "ignoredResources": {
2374
+ "rule": "repeated",
2375
+ "type": "string",
2376
+ "id": 4
2377
+ },
2378
+ "forcedNamespaceAliases": {
2379
+ "rule": "repeated",
2380
+ "type": "string",
2381
+ "id": 5
2382
+ },
2383
+ "handwrittenSignatures": {
2384
+ "rule": "repeated",
2385
+ "type": "string",
2386
+ "id": 6
2387
+ }
2388
+ }
2389
+ },
2390
+ "RubySettings": {
2391
+ "fields": {
2392
+ "common": {
2393
+ "type": "CommonLanguageSettings",
2394
+ "id": 1
2395
+ }
2396
+ }
2397
+ },
2398
+ "GoSettings": {
2399
+ "fields": {
2400
+ "common": {
2401
+ "type": "CommonLanguageSettings",
2402
+ "id": 1
2403
+ }
2404
+ }
2405
+ },
2406
+ "MethodSettings": {
2407
+ "fields": {
2408
+ "selector": {
2409
+ "type": "string",
2410
+ "id": 1
2411
+ },
2412
+ "longRunning": {
2413
+ "type": "LongRunning",
2414
+ "id": 2
2415
+ },
2416
+ "autoPopulatedFields": {
2417
+ "rule": "repeated",
2418
+ "type": "string",
2419
+ "id": 3
2420
+ }
2421
+ },
2422
+ "nested": {
2423
+ "LongRunning": {
2424
+ "fields": {
2425
+ "initialPollDelay": {
2426
+ "type": "google.protobuf.Duration",
2427
+ "id": 1
2428
+ },
2429
+ "pollDelayMultiplier": {
2430
+ "type": "float",
2431
+ "id": 2
2432
+ },
2433
+ "maxPollDelay": {
2434
+ "type": "google.protobuf.Duration",
2435
+ "id": 3
2436
+ },
2437
+ "totalPollTimeout": {
2438
+ "type": "google.protobuf.Duration",
2439
+ "id": 4
2440
+ }
2441
+ }
2442
+ }
2443
+ }
2444
+ },
2445
+ "ClientLibraryOrganization": {
2446
+ "values": {
2447
+ "CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED": 0,
2448
+ "CLOUD": 1,
2449
+ "ADS": 2,
2450
+ "PHOTOS": 3,
2451
+ "STREET_VIEW": 4,
2452
+ "SHOPPING": 5,
2453
+ "GEO": 6,
2454
+ "GENERATIVE_AI": 7
2455
+ }
2456
+ },
2457
+ "ClientLibraryDestination": {
2458
+ "values": {
2459
+ "CLIENT_LIBRARY_DESTINATION_UNSPECIFIED": 0,
2460
+ "GITHUB": 10,
2461
+ "PACKAGE_MANAGER": 20
2462
+ }
2463
+ },
2464
+ "LaunchStage": {
2465
+ "values": {
2466
+ "LAUNCH_STAGE_UNSPECIFIED": 0,
2467
+ "UNIMPLEMENTED": 6,
2468
+ "PRELAUNCH": 7,
2469
+ "EARLY_ACCESS": 1,
2470
+ "ALPHA": 2,
2471
+ "BETA": 3,
2472
+ "GA": 4,
2473
+ "DEPRECATED": 5
2474
+ }
2475
+ },
2476
+ "fieldInfo": {
2477
+ "type": "google.api.FieldInfo",
2478
+ "id": 291403980,
2479
+ "extend": "google.protobuf.FieldOptions"
2480
+ },
2481
+ "FieldInfo": {
2482
+ "fields": {
2483
+ "format": {
2484
+ "type": "Format",
2485
+ "id": 1
2486
+ }
2487
+ },
2488
+ "nested": {
2489
+ "Format": {
2490
+ "values": {
2491
+ "FORMAT_UNSPECIFIED": 0,
2492
+ "UUID4": 1,
2493
+ "IPV4": 2,
2494
+ "IPV6": 3,
2495
+ "IPV4_OR_IPV6": 4
2496
+ }
2497
+ }
2498
+ }
2499
+ }
2500
+ }
2501
+ },
2502
+ "protobuf": {
2503
+ "options": {
2504
+ "go_package": "google.golang.org/protobuf/types/descriptorpb",
2505
+ "java_package": "com.google.protobuf",
2506
+ "java_outer_classname": "DescriptorProtos",
2507
+ "csharp_namespace": "Google.Protobuf.Reflection",
2508
+ "objc_class_prefix": "GPB",
2509
+ "cc_enable_arenas": true,
2510
+ "optimize_for": "SPEED"
2511
+ },
2512
+ "nested": {
2513
+ "FileDescriptorSet": {
2514
+ "edition": "proto2",
2515
+ "fields": {
2516
+ "file": {
2517
+ "rule": "repeated",
2518
+ "type": "FileDescriptorProto",
2519
+ "id": 1
2520
+ }
2521
+ }
2522
+ },
2523
+ "Edition": {
2524
+ "edition": "proto2",
2525
+ "values": {
2526
+ "EDITION_UNKNOWN": 0,
2527
+ "EDITION_PROTO2": 998,
2528
+ "EDITION_PROTO3": 999,
2529
+ "EDITION_2023": 1000,
2530
+ "EDITION_2024": 1001,
2531
+ "EDITION_1_TEST_ONLY": 1,
2532
+ "EDITION_2_TEST_ONLY": 2,
2533
+ "EDITION_99997_TEST_ONLY": 99997,
2534
+ "EDITION_99998_TEST_ONLY": 99998,
2535
+ "EDITION_99999_TEST_ONLY": 99999,
2536
+ "EDITION_MAX": 2147483647
2537
+ }
2538
+ },
2539
+ "FileDescriptorProto": {
2540
+ "edition": "proto2",
2541
+ "fields": {
2542
+ "name": {
2543
+ "type": "string",
2544
+ "id": 1
2545
+ },
2546
+ "package": {
2547
+ "type": "string",
2548
+ "id": 2
2549
+ },
2550
+ "dependency": {
2551
+ "rule": "repeated",
2552
+ "type": "string",
2553
+ "id": 3
2554
+ },
2555
+ "publicDependency": {
2556
+ "rule": "repeated",
2557
+ "type": "int32",
2558
+ "id": 10
2559
+ },
2560
+ "weakDependency": {
2561
+ "rule": "repeated",
2562
+ "type": "int32",
2563
+ "id": 11
2564
+ },
2565
+ "messageType": {
2566
+ "rule": "repeated",
2567
+ "type": "DescriptorProto",
2568
+ "id": 4
2569
+ },
2570
+ "enumType": {
2571
+ "rule": "repeated",
2572
+ "type": "EnumDescriptorProto",
2573
+ "id": 5
2574
+ },
2575
+ "service": {
2576
+ "rule": "repeated",
2577
+ "type": "ServiceDescriptorProto",
2578
+ "id": 6
2579
+ },
2580
+ "extension": {
2581
+ "rule": "repeated",
2582
+ "type": "FieldDescriptorProto",
2583
+ "id": 7
2584
+ },
2585
+ "options": {
2586
+ "type": "FileOptions",
2587
+ "id": 8
2588
+ },
2589
+ "sourceCodeInfo": {
2590
+ "type": "SourceCodeInfo",
2591
+ "id": 9
2592
+ },
2593
+ "syntax": {
2594
+ "type": "string",
2595
+ "id": 12
2596
+ },
2597
+ "edition": {
2598
+ "type": "Edition",
2599
+ "id": 14
2600
+ }
2601
+ }
2602
+ },
2603
+ "DescriptorProto": {
2604
+ "edition": "proto2",
2605
+ "fields": {
2606
+ "name": {
2607
+ "type": "string",
2608
+ "id": 1
2609
+ },
2610
+ "field": {
2611
+ "rule": "repeated",
2612
+ "type": "FieldDescriptorProto",
2613
+ "id": 2
2614
+ },
2615
+ "extension": {
2616
+ "rule": "repeated",
2617
+ "type": "FieldDescriptorProto",
2618
+ "id": 6
2619
+ },
2620
+ "nestedType": {
2621
+ "rule": "repeated",
2622
+ "type": "DescriptorProto",
2623
+ "id": 3
2624
+ },
2625
+ "enumType": {
2626
+ "rule": "repeated",
2627
+ "type": "EnumDescriptorProto",
2628
+ "id": 4
2629
+ },
2630
+ "extensionRange": {
2631
+ "rule": "repeated",
2632
+ "type": "ExtensionRange",
2633
+ "id": 5
2634
+ },
2635
+ "oneofDecl": {
2636
+ "rule": "repeated",
2637
+ "type": "OneofDescriptorProto",
2638
+ "id": 8
2639
+ },
2640
+ "options": {
2641
+ "type": "MessageOptions",
2642
+ "id": 7
2643
+ },
2644
+ "reservedRange": {
2645
+ "rule": "repeated",
2646
+ "type": "ReservedRange",
2647
+ "id": 9
2648
+ },
2649
+ "reservedName": {
2650
+ "rule": "repeated",
2651
+ "type": "string",
2652
+ "id": 10
2653
+ }
2654
+ },
2655
+ "nested": {
2656
+ "ExtensionRange": {
2657
+ "fields": {
2658
+ "start": {
2659
+ "type": "int32",
2660
+ "id": 1
2661
+ },
2662
+ "end": {
2663
+ "type": "int32",
2664
+ "id": 2
2665
+ },
2666
+ "options": {
2667
+ "type": "ExtensionRangeOptions",
2668
+ "id": 3
2669
+ }
2670
+ }
2671
+ },
2672
+ "ReservedRange": {
2673
+ "fields": {
2674
+ "start": {
2675
+ "type": "int32",
2676
+ "id": 1
2677
+ },
2678
+ "end": {
2679
+ "type": "int32",
2680
+ "id": 2
2681
+ }
2682
+ }
2683
+ }
2684
+ }
2685
+ },
2686
+ "ExtensionRangeOptions": {
2687
+ "edition": "proto2",
2688
+ "fields": {
2689
+ "uninterpretedOption": {
2690
+ "rule": "repeated",
2691
+ "type": "UninterpretedOption",
2692
+ "id": 999
2693
+ },
2694
+ "declaration": {
2695
+ "rule": "repeated",
2696
+ "type": "Declaration",
2697
+ "id": 2,
2698
+ "options": {
2699
+ "retention": "RETENTION_SOURCE"
2700
+ }
2701
+ },
2702
+ "features": {
2703
+ "type": "FeatureSet",
2704
+ "id": 50
2705
+ },
2706
+ "verification": {
2707
+ "type": "VerificationState",
2708
+ "id": 3,
2709
+ "options": {
2710
+ "default": "UNVERIFIED",
2711
+ "retention": "RETENTION_SOURCE"
2712
+ }
2713
+ }
2714
+ },
2715
+ "extensions": [
2716
+ [
2717
+ 1000,
2718
+ 536870911
2719
+ ]
2720
+ ],
2721
+ "nested": {
2722
+ "Declaration": {
2723
+ "fields": {
2724
+ "number": {
2725
+ "type": "int32",
2726
+ "id": 1
2727
+ },
2728
+ "fullName": {
2729
+ "type": "string",
2730
+ "id": 2
2731
+ },
2732
+ "type": {
2733
+ "type": "string",
2734
+ "id": 3
2735
+ },
2736
+ "reserved": {
2737
+ "type": "bool",
2738
+ "id": 5
2739
+ },
2740
+ "repeated": {
2741
+ "type": "bool",
2742
+ "id": 6
2743
+ }
2744
+ },
2745
+ "reserved": [
2746
+ [
2747
+ 4,
2748
+ 4
2749
+ ]
2750
+ ]
2751
+ },
2752
+ "VerificationState": {
2753
+ "values": {
2754
+ "DECLARATION": 0,
2755
+ "UNVERIFIED": 1
2756
+ }
2757
+ }
2758
+ }
2759
+ },
2760
+ "FieldDescriptorProto": {
2761
+ "edition": "proto2",
2762
+ "fields": {
2763
+ "name": {
2764
+ "type": "string",
2765
+ "id": 1
2766
+ },
2767
+ "number": {
2768
+ "type": "int32",
2769
+ "id": 3
2770
+ },
2771
+ "label": {
2772
+ "type": "Label",
2773
+ "id": 4
2774
+ },
2775
+ "type": {
2776
+ "type": "Type",
2777
+ "id": 5
2778
+ },
2779
+ "typeName": {
2780
+ "type": "string",
2781
+ "id": 6
2782
+ },
2783
+ "extendee": {
2784
+ "type": "string",
2785
+ "id": 2
2786
+ },
2787
+ "defaultValue": {
2788
+ "type": "string",
2789
+ "id": 7
2790
+ },
2791
+ "oneofIndex": {
2792
+ "type": "int32",
2793
+ "id": 9
2794
+ },
2795
+ "jsonName": {
2796
+ "type": "string",
2797
+ "id": 10
2798
+ },
2799
+ "options": {
2800
+ "type": "FieldOptions",
2801
+ "id": 8
2802
+ },
2803
+ "proto3Optional": {
2804
+ "type": "bool",
2805
+ "id": 17
2806
+ }
2807
+ },
2808
+ "nested": {
2809
+ "Type": {
2810
+ "values": {
2811
+ "TYPE_DOUBLE": 1,
2812
+ "TYPE_FLOAT": 2,
2813
+ "TYPE_INT64": 3,
2814
+ "TYPE_UINT64": 4,
2815
+ "TYPE_INT32": 5,
2816
+ "TYPE_FIXED64": 6,
2817
+ "TYPE_FIXED32": 7,
2818
+ "TYPE_BOOL": 8,
2819
+ "TYPE_STRING": 9,
2820
+ "TYPE_GROUP": 10,
2821
+ "TYPE_MESSAGE": 11,
2822
+ "TYPE_BYTES": 12,
2823
+ "TYPE_UINT32": 13,
2824
+ "TYPE_ENUM": 14,
2825
+ "TYPE_SFIXED32": 15,
2826
+ "TYPE_SFIXED64": 16,
2827
+ "TYPE_SINT32": 17,
2828
+ "TYPE_SINT64": 18
2829
+ }
2830
+ },
2831
+ "Label": {
2832
+ "values": {
2833
+ "LABEL_OPTIONAL": 1,
2834
+ "LABEL_REPEATED": 3,
2835
+ "LABEL_REQUIRED": 2
2836
+ }
2837
+ }
2838
+ }
2839
+ },
2840
+ "OneofDescriptorProto": {
2841
+ "edition": "proto2",
2842
+ "fields": {
2843
+ "name": {
2844
+ "type": "string",
2845
+ "id": 1
2846
+ },
2847
+ "options": {
2848
+ "type": "OneofOptions",
2849
+ "id": 2
2850
+ }
2851
+ }
2852
+ },
2853
+ "EnumDescriptorProto": {
2854
+ "edition": "proto2",
2855
+ "fields": {
2856
+ "name": {
2857
+ "type": "string",
2858
+ "id": 1
2859
+ },
2860
+ "value": {
2861
+ "rule": "repeated",
2862
+ "type": "EnumValueDescriptorProto",
2863
+ "id": 2
2864
+ },
2865
+ "options": {
2866
+ "type": "EnumOptions",
2867
+ "id": 3
2868
+ },
2869
+ "reservedRange": {
2870
+ "rule": "repeated",
2871
+ "type": "EnumReservedRange",
2872
+ "id": 4
2873
+ },
2874
+ "reservedName": {
2875
+ "rule": "repeated",
2876
+ "type": "string",
2877
+ "id": 5
2878
+ }
2879
+ },
2880
+ "nested": {
2881
+ "EnumReservedRange": {
2882
+ "fields": {
2883
+ "start": {
2884
+ "type": "int32",
2885
+ "id": 1
2886
+ },
2887
+ "end": {
2888
+ "type": "int32",
2889
+ "id": 2
2890
+ }
2891
+ }
2892
+ }
2893
+ }
2894
+ },
2895
+ "EnumValueDescriptorProto": {
2896
+ "edition": "proto2",
2897
+ "fields": {
2898
+ "name": {
2899
+ "type": "string",
2900
+ "id": 1
2901
+ },
2902
+ "number": {
2903
+ "type": "int32",
2904
+ "id": 2
2905
+ },
2906
+ "options": {
2907
+ "type": "EnumValueOptions",
2908
+ "id": 3
2909
+ }
2910
+ }
2911
+ },
2912
+ "ServiceDescriptorProto": {
2913
+ "edition": "proto2",
2914
+ "fields": {
2915
+ "name": {
2916
+ "type": "string",
2917
+ "id": 1
2918
+ },
2919
+ "method": {
2920
+ "rule": "repeated",
2921
+ "type": "MethodDescriptorProto",
2922
+ "id": 2
2923
+ },
2924
+ "options": {
2925
+ "type": "ServiceOptions",
2926
+ "id": 3
2927
+ }
2928
+ }
2929
+ },
2930
+ "MethodDescriptorProto": {
2931
+ "edition": "proto2",
2932
+ "fields": {
2933
+ "name": {
2934
+ "type": "string",
2935
+ "id": 1
2936
+ },
2937
+ "inputType": {
2938
+ "type": "string",
2939
+ "id": 2
2940
+ },
2941
+ "outputType": {
2942
+ "type": "string",
2943
+ "id": 3
2944
+ },
2945
+ "options": {
2946
+ "type": "MethodOptions",
2947
+ "id": 4
2948
+ },
2949
+ "clientStreaming": {
2950
+ "type": "bool",
2951
+ "id": 5,
2952
+ "options": {
2953
+ "default": false
2954
+ }
2955
+ },
2956
+ "serverStreaming": {
2957
+ "type": "bool",
2958
+ "id": 6,
2959
+ "options": {
2960
+ "default": false
2961
+ }
2962
+ }
2963
+ }
2964
+ },
2965
+ "FileOptions": {
2966
+ "edition": "proto2",
2967
+ "fields": {
2968
+ "javaPackage": {
2969
+ "type": "string",
2970
+ "id": 1
2971
+ },
2972
+ "javaOuterClassname": {
2973
+ "type": "string",
2974
+ "id": 8
2975
+ },
2976
+ "javaMultipleFiles": {
2977
+ "type": "bool",
2978
+ "id": 10,
2979
+ "options": {
2980
+ "default": false
2981
+ }
2982
+ },
2983
+ "javaGenerateEqualsAndHash": {
2984
+ "type": "bool",
2985
+ "id": 20,
2986
+ "options": {
2987
+ "deprecated": true
2988
+ }
2989
+ },
2990
+ "javaStringCheckUtf8": {
2991
+ "type": "bool",
2992
+ "id": 27,
2993
+ "options": {
2994
+ "default": false
2995
+ }
2996
+ },
2997
+ "optimizeFor": {
2998
+ "type": "OptimizeMode",
2999
+ "id": 9,
3000
+ "options": {
3001
+ "default": "SPEED"
3002
+ }
3003
+ },
3004
+ "goPackage": {
3005
+ "type": "string",
3006
+ "id": 11
3007
+ },
3008
+ "ccGenericServices": {
3009
+ "type": "bool",
3010
+ "id": 16,
3011
+ "options": {
3012
+ "default": false
3013
+ }
3014
+ },
3015
+ "javaGenericServices": {
3016
+ "type": "bool",
3017
+ "id": 17,
3018
+ "options": {
3019
+ "default": false
3020
+ }
3021
+ },
3022
+ "pyGenericServices": {
3023
+ "type": "bool",
3024
+ "id": 18,
3025
+ "options": {
3026
+ "default": false
3027
+ }
3028
+ },
3029
+ "deprecated": {
3030
+ "type": "bool",
3031
+ "id": 23,
3032
+ "options": {
3033
+ "default": false
3034
+ }
3035
+ },
3036
+ "ccEnableArenas": {
3037
+ "type": "bool",
3038
+ "id": 31,
3039
+ "options": {
3040
+ "default": true
3041
+ }
3042
+ },
3043
+ "objcClassPrefix": {
3044
+ "type": "string",
3045
+ "id": 36
3046
+ },
3047
+ "csharpNamespace": {
3048
+ "type": "string",
3049
+ "id": 37
3050
+ },
3051
+ "swiftPrefix": {
3052
+ "type": "string",
3053
+ "id": 39
3054
+ },
3055
+ "phpClassPrefix": {
3056
+ "type": "string",
3057
+ "id": 40
3058
+ },
3059
+ "phpNamespace": {
3060
+ "type": "string",
3061
+ "id": 41
3062
+ },
3063
+ "phpMetadataNamespace": {
3064
+ "type": "string",
3065
+ "id": 44
3066
+ },
3067
+ "rubyPackage": {
3068
+ "type": "string",
3069
+ "id": 45
3070
+ },
3071
+ "features": {
3072
+ "type": "FeatureSet",
3073
+ "id": 50
3074
+ },
3075
+ "uninterpretedOption": {
3076
+ "rule": "repeated",
3077
+ "type": "UninterpretedOption",
3078
+ "id": 999
3079
+ }
3080
+ },
3081
+ "extensions": [
3082
+ [
3083
+ 1000,
3084
+ 536870911
3085
+ ]
3086
+ ],
3087
+ "reserved": [
3088
+ [
3089
+ 42,
3090
+ 42
3091
+ ],
3092
+ [
3093
+ 38,
3094
+ 38
3095
+ ]
3096
+ ],
3097
+ "nested": {
3098
+ "OptimizeMode": {
3099
+ "values": {
3100
+ "SPEED": 1,
3101
+ "CODE_SIZE": 2,
3102
+ "LITE_RUNTIME": 3
3103
+ }
3104
+ }
3105
+ }
3106
+ },
3107
+ "MessageOptions": {
3108
+ "edition": "proto2",
3109
+ "fields": {
3110
+ "messageSetWireFormat": {
3111
+ "type": "bool",
3112
+ "id": 1,
3113
+ "options": {
3114
+ "default": false
3115
+ }
3116
+ },
3117
+ "noStandardDescriptorAccessor": {
3118
+ "type": "bool",
3119
+ "id": 2,
3120
+ "options": {
3121
+ "default": false
3122
+ }
3123
+ },
3124
+ "deprecated": {
3125
+ "type": "bool",
3126
+ "id": 3,
3127
+ "options": {
3128
+ "default": false
3129
+ }
3130
+ },
3131
+ "mapEntry": {
3132
+ "type": "bool",
3133
+ "id": 7
3134
+ },
3135
+ "deprecatedLegacyJsonFieldConflicts": {
3136
+ "type": "bool",
3137
+ "id": 11,
3138
+ "options": {
3139
+ "deprecated": true
3140
+ }
3141
+ },
3142
+ "features": {
3143
+ "type": "FeatureSet",
3144
+ "id": 12
3145
+ },
3146
+ "uninterpretedOption": {
3147
+ "rule": "repeated",
3148
+ "type": "UninterpretedOption",
3149
+ "id": 999
3150
+ }
3151
+ },
3152
+ "extensions": [
3153
+ [
3154
+ 1000,
3155
+ 536870911
3156
+ ]
3157
+ ],
3158
+ "reserved": [
3159
+ [
3160
+ 4,
3161
+ 4
3162
+ ],
3163
+ [
3164
+ 5,
3165
+ 5
3166
+ ],
3167
+ [
3168
+ 6,
3169
+ 6
3170
+ ],
3171
+ [
3172
+ 8,
3173
+ 8
3174
+ ],
3175
+ [
3176
+ 9,
3177
+ 9
3178
+ ]
3179
+ ]
3180
+ },
3181
+ "FieldOptions": {
3182
+ "edition": "proto2",
3183
+ "fields": {
3184
+ "ctype": {
3185
+ "type": "CType",
3186
+ "id": 1,
3187
+ "options": {
3188
+ "default": "STRING"
3189
+ }
3190
+ },
3191
+ "packed": {
3192
+ "type": "bool",
3193
+ "id": 2
3194
+ },
3195
+ "jstype": {
3196
+ "type": "JSType",
3197
+ "id": 6,
3198
+ "options": {
3199
+ "default": "JS_NORMAL"
3200
+ }
3201
+ },
3202
+ "lazy": {
3203
+ "type": "bool",
3204
+ "id": 5,
3205
+ "options": {
3206
+ "default": false
3207
+ }
3208
+ },
3209
+ "unverifiedLazy": {
3210
+ "type": "bool",
3211
+ "id": 15,
3212
+ "options": {
3213
+ "default": false
3214
+ }
3215
+ },
3216
+ "deprecated": {
3217
+ "type": "bool",
3218
+ "id": 3,
3219
+ "options": {
3220
+ "default": false
3221
+ }
3222
+ },
3223
+ "weak": {
3224
+ "type": "bool",
3225
+ "id": 10,
3226
+ "options": {
3227
+ "default": false
3228
+ }
3229
+ },
3230
+ "debugRedact": {
3231
+ "type": "bool",
3232
+ "id": 16,
3233
+ "options": {
3234
+ "default": false
3235
+ }
3236
+ },
3237
+ "retention": {
3238
+ "type": "OptionRetention",
3239
+ "id": 17
3240
+ },
3241
+ "targets": {
3242
+ "rule": "repeated",
3243
+ "type": "OptionTargetType",
3244
+ "id": 19
3245
+ },
3246
+ "editionDefaults": {
3247
+ "rule": "repeated",
3248
+ "type": "EditionDefault",
3249
+ "id": 20
3250
+ },
3251
+ "features": {
3252
+ "type": "FeatureSet",
3253
+ "id": 21
3254
+ },
3255
+ "uninterpretedOption": {
3256
+ "rule": "repeated",
3257
+ "type": "UninterpretedOption",
3258
+ "id": 999
3259
+ }
3260
+ },
3261
+ "extensions": [
3262
+ [
3263
+ 1000,
3264
+ 536870911
3265
+ ]
3266
+ ],
3267
+ "reserved": [
3268
+ [
3269
+ 4,
3270
+ 4
3271
+ ],
3272
+ [
3273
+ 18,
3274
+ 18
3275
+ ]
3276
+ ],
3277
+ "nested": {
3278
+ "CType": {
3279
+ "values": {
3280
+ "STRING": 0,
3281
+ "CORD": 1,
3282
+ "STRING_PIECE": 2
3283
+ }
3284
+ },
3285
+ "JSType": {
3286
+ "values": {
3287
+ "JS_NORMAL": 0,
3288
+ "JS_STRING": 1,
3289
+ "JS_NUMBER": 2
3290
+ }
3291
+ },
3292
+ "OptionRetention": {
3293
+ "values": {
3294
+ "RETENTION_UNKNOWN": 0,
3295
+ "RETENTION_RUNTIME": 1,
3296
+ "RETENTION_SOURCE": 2
3297
+ }
3298
+ },
3299
+ "OptionTargetType": {
3300
+ "values": {
3301
+ "TARGET_TYPE_UNKNOWN": 0,
3302
+ "TARGET_TYPE_FILE": 1,
3303
+ "TARGET_TYPE_EXTENSION_RANGE": 2,
3304
+ "TARGET_TYPE_MESSAGE": 3,
3305
+ "TARGET_TYPE_FIELD": 4,
3306
+ "TARGET_TYPE_ONEOF": 5,
3307
+ "TARGET_TYPE_ENUM": 6,
3308
+ "TARGET_TYPE_ENUM_ENTRY": 7,
3309
+ "TARGET_TYPE_SERVICE": 8,
3310
+ "TARGET_TYPE_METHOD": 9
3311
+ }
3312
+ },
3313
+ "EditionDefault": {
3314
+ "fields": {
3315
+ "edition": {
3316
+ "type": "Edition",
3317
+ "id": 3
3318
+ },
3319
+ "value": {
3320
+ "type": "string",
3321
+ "id": 2
3322
+ }
3323
+ }
3324
+ }
3325
+ }
3326
+ },
3327
+ "OneofOptions": {
3328
+ "edition": "proto2",
3329
+ "fields": {
3330
+ "features": {
3331
+ "type": "FeatureSet",
3332
+ "id": 1
3333
+ },
3334
+ "uninterpretedOption": {
3335
+ "rule": "repeated",
3336
+ "type": "UninterpretedOption",
3337
+ "id": 999
3338
+ }
3339
+ },
3340
+ "extensions": [
3341
+ [
3342
+ 1000,
3343
+ 536870911
3344
+ ]
3345
+ ]
3346
+ },
3347
+ "EnumOptions": {
3348
+ "edition": "proto2",
3349
+ "fields": {
3350
+ "allowAlias": {
3351
+ "type": "bool",
3352
+ "id": 2
3353
+ },
3354
+ "deprecated": {
3355
+ "type": "bool",
3356
+ "id": 3,
3357
+ "options": {
3358
+ "default": false
3359
+ }
3360
+ },
3361
+ "deprecatedLegacyJsonFieldConflicts": {
3362
+ "type": "bool",
3363
+ "id": 6,
3364
+ "options": {
3365
+ "deprecated": true
3366
+ }
3367
+ },
3368
+ "features": {
3369
+ "type": "FeatureSet",
3370
+ "id": 7
3371
+ },
3372
+ "uninterpretedOption": {
3373
+ "rule": "repeated",
3374
+ "type": "UninterpretedOption",
3375
+ "id": 999
3376
+ }
3377
+ },
3378
+ "extensions": [
3379
+ [
3380
+ 1000,
3381
+ 536870911
3382
+ ]
3383
+ ],
3384
+ "reserved": [
3385
+ [
3386
+ 5,
3387
+ 5
3388
+ ]
3389
+ ]
3390
+ },
3391
+ "EnumValueOptions": {
3392
+ "edition": "proto2",
3393
+ "fields": {
3394
+ "deprecated": {
3395
+ "type": "bool",
3396
+ "id": 1,
3397
+ "options": {
3398
+ "default": false
3399
+ }
3400
+ },
3401
+ "features": {
3402
+ "type": "FeatureSet",
3403
+ "id": 2
3404
+ },
3405
+ "debugRedact": {
3406
+ "type": "bool",
3407
+ "id": 3,
3408
+ "options": {
3409
+ "default": false
3410
+ }
3411
+ },
3412
+ "uninterpretedOption": {
3413
+ "rule": "repeated",
3414
+ "type": "UninterpretedOption",
3415
+ "id": 999
3416
+ }
3417
+ },
3418
+ "extensions": [
3419
+ [
3420
+ 1000,
3421
+ 536870911
3422
+ ]
3423
+ ]
3424
+ },
3425
+ "ServiceOptions": {
3426
+ "edition": "proto2",
3427
+ "fields": {
3428
+ "features": {
3429
+ "type": "FeatureSet",
3430
+ "id": 34
3431
+ },
3432
+ "deprecated": {
3433
+ "type": "bool",
3434
+ "id": 33,
3435
+ "options": {
3436
+ "default": false
3437
+ }
3438
+ },
3439
+ "uninterpretedOption": {
3440
+ "rule": "repeated",
3441
+ "type": "UninterpretedOption",
3442
+ "id": 999
3443
+ }
3444
+ },
3445
+ "extensions": [
3446
+ [
3447
+ 1000,
3448
+ 536870911
3449
+ ]
3450
+ ]
3451
+ },
3452
+ "MethodOptions": {
3453
+ "edition": "proto2",
3454
+ "fields": {
3455
+ "deprecated": {
3456
+ "type": "bool",
3457
+ "id": 33,
3458
+ "options": {
3459
+ "default": false
3460
+ }
3461
+ },
3462
+ "idempotencyLevel": {
3463
+ "type": "IdempotencyLevel",
3464
+ "id": 34,
3465
+ "options": {
3466
+ "default": "IDEMPOTENCY_UNKNOWN"
3467
+ }
3468
+ },
3469
+ "features": {
3470
+ "type": "FeatureSet",
3471
+ "id": 35
3472
+ },
3473
+ "uninterpretedOption": {
3474
+ "rule": "repeated",
3475
+ "type": "UninterpretedOption",
3476
+ "id": 999
3477
+ }
3478
+ },
3479
+ "extensions": [
3480
+ [
3481
+ 1000,
3482
+ 536870911
3483
+ ]
3484
+ ],
3485
+ "nested": {
3486
+ "IdempotencyLevel": {
3487
+ "values": {
3488
+ "IDEMPOTENCY_UNKNOWN": 0,
3489
+ "NO_SIDE_EFFECTS": 1,
3490
+ "IDEMPOTENT": 2
3491
+ }
3492
+ }
3493
+ }
3494
+ },
3495
+ "UninterpretedOption": {
3496
+ "edition": "proto2",
3497
+ "fields": {
3498
+ "name": {
3499
+ "rule": "repeated",
3500
+ "type": "NamePart",
3501
+ "id": 2
3502
+ },
3503
+ "identifierValue": {
3504
+ "type": "string",
3505
+ "id": 3
3506
+ },
3507
+ "positiveIntValue": {
3508
+ "type": "uint64",
3509
+ "id": 4
3510
+ },
3511
+ "negativeIntValue": {
3512
+ "type": "int64",
3513
+ "id": 5
3514
+ },
3515
+ "doubleValue": {
3516
+ "type": "double",
3517
+ "id": 6
3518
+ },
3519
+ "stringValue": {
3520
+ "type": "bytes",
3521
+ "id": 7
3522
+ },
3523
+ "aggregateValue": {
3524
+ "type": "string",
3525
+ "id": 8
3526
+ }
3527
+ },
3528
+ "nested": {
3529
+ "NamePart": {
3530
+ "fields": {
3531
+ "namePart": {
3532
+ "rule": "required",
3533
+ "type": "string",
3534
+ "id": 1
3535
+ },
3536
+ "isExtension": {
3537
+ "rule": "required",
3538
+ "type": "bool",
3539
+ "id": 2
3540
+ }
3541
+ }
3542
+ }
3543
+ }
3544
+ },
3545
+ "FeatureSet": {
3546
+ "edition": "proto2",
3547
+ "fields": {
3548
+ "fieldPresence": {
3549
+ "type": "FieldPresence",
3550
+ "id": 1,
3551
+ "options": {
3552
+ "retention": "RETENTION_RUNTIME",
3553
+ "targets": "TARGET_TYPE_FILE",
3554
+ "edition_defaults.edition": "EDITION_2023",
3555
+ "edition_defaults.value": "EXPLICIT"
3556
+ }
3557
+ },
3558
+ "enumType": {
3559
+ "type": "EnumType",
3560
+ "id": 2,
3561
+ "options": {
3562
+ "retention": "RETENTION_RUNTIME",
3563
+ "targets": "TARGET_TYPE_FILE",
3564
+ "edition_defaults.edition": "EDITION_PROTO3",
3565
+ "edition_defaults.value": "OPEN"
3566
+ }
3567
+ },
3568
+ "repeatedFieldEncoding": {
3569
+ "type": "RepeatedFieldEncoding",
3570
+ "id": 3,
3571
+ "options": {
3572
+ "retention": "RETENTION_RUNTIME",
3573
+ "targets": "TARGET_TYPE_FILE",
3574
+ "edition_defaults.edition": "EDITION_PROTO3",
3575
+ "edition_defaults.value": "PACKED"
3576
+ }
3577
+ },
3578
+ "utf8Validation": {
3579
+ "type": "Utf8Validation",
3580
+ "id": 4,
3581
+ "options": {
3582
+ "retention": "RETENTION_RUNTIME",
3583
+ "targets": "TARGET_TYPE_FILE",
3584
+ "edition_defaults.edition": "EDITION_PROTO3",
3585
+ "edition_defaults.value": "VERIFY"
3586
+ }
3587
+ },
3588
+ "messageEncoding": {
3589
+ "type": "MessageEncoding",
3590
+ "id": 5,
3591
+ "options": {
3592
+ "retention": "RETENTION_RUNTIME",
3593
+ "targets": "TARGET_TYPE_FILE",
3594
+ "edition_defaults.edition": "EDITION_PROTO2",
3595
+ "edition_defaults.value": "LENGTH_PREFIXED"
3596
+ }
3597
+ },
3598
+ "jsonFormat": {
3599
+ "type": "JsonFormat",
3600
+ "id": 6,
3601
+ "options": {
3602
+ "retention": "RETENTION_RUNTIME",
3603
+ "targets": "TARGET_TYPE_FILE",
3604
+ "edition_defaults.edition": "EDITION_PROTO3",
3605
+ "edition_defaults.value": "ALLOW"
3606
+ }
3607
+ }
3608
+ },
3609
+ "extensions": [
3610
+ [
3611
+ 1000,
3612
+ 1000
3613
+ ],
3614
+ [
3615
+ 1001,
3616
+ 1001
3617
+ ],
3618
+ [
3619
+ 1002,
3620
+ 1002
3621
+ ],
3622
+ [
3623
+ 9990,
3624
+ 9990
3625
+ ],
3626
+ [
3627
+ 9995,
3628
+ 9999
3629
+ ],
3630
+ [
3631
+ 10000,
3632
+ 10000
3633
+ ]
3634
+ ],
3635
+ "reserved": [
3636
+ [
3637
+ 999,
3638
+ 999
3639
+ ]
3640
+ ],
3641
+ "nested": {
3642
+ "FieldPresence": {
3643
+ "values": {
3644
+ "FIELD_PRESENCE_UNKNOWN": 0,
3645
+ "EXPLICIT": 1,
3646
+ "IMPLICIT": 2,
3647
+ "LEGACY_REQUIRED": 3
3648
+ }
3649
+ },
3650
+ "EnumType": {
3651
+ "values": {
3652
+ "ENUM_TYPE_UNKNOWN": 0,
3653
+ "OPEN": 1,
3654
+ "CLOSED": 2
3655
+ }
3656
+ },
3657
+ "RepeatedFieldEncoding": {
3658
+ "values": {
3659
+ "REPEATED_FIELD_ENCODING_UNKNOWN": 0,
3660
+ "PACKED": 1,
3661
+ "EXPANDED": 2
3662
+ }
3663
+ },
3664
+ "Utf8Validation": {
3665
+ "values": {
3666
+ "UTF8_VALIDATION_UNKNOWN": 0,
3667
+ "VERIFY": 2,
3668
+ "NONE": 3
3669
+ }
3670
+ },
3671
+ "MessageEncoding": {
3672
+ "values": {
3673
+ "MESSAGE_ENCODING_UNKNOWN": 0,
3674
+ "LENGTH_PREFIXED": 1,
3675
+ "DELIMITED": 2
3676
+ }
3677
+ },
3678
+ "JsonFormat": {
3679
+ "values": {
3680
+ "JSON_FORMAT_UNKNOWN": 0,
3681
+ "ALLOW": 1,
3682
+ "LEGACY_BEST_EFFORT": 2
3683
+ }
3684
+ }
3685
+ }
3686
+ },
3687
+ "FeatureSetDefaults": {
3688
+ "edition": "proto2",
3689
+ "fields": {
3690
+ "defaults": {
3691
+ "rule": "repeated",
3692
+ "type": "FeatureSetEditionDefault",
3693
+ "id": 1
3694
+ },
3695
+ "minimumEdition": {
3696
+ "type": "Edition",
3697
+ "id": 4
3698
+ },
3699
+ "maximumEdition": {
3700
+ "type": "Edition",
3701
+ "id": 5
3702
+ }
3703
+ },
3704
+ "nested": {
3705
+ "FeatureSetEditionDefault": {
3706
+ "fields": {
3707
+ "edition": {
3708
+ "type": "Edition",
3709
+ "id": 3
3710
+ },
3711
+ "features": {
3712
+ "type": "FeatureSet",
3713
+ "id": 2
3714
+ }
3715
+ }
3716
+ }
3717
+ }
3718
+ },
3719
+ "SourceCodeInfo": {
3720
+ "edition": "proto2",
3721
+ "fields": {
3722
+ "location": {
3723
+ "rule": "repeated",
3724
+ "type": "Location",
3725
+ "id": 1
3726
+ }
3727
+ },
3728
+ "nested": {
3729
+ "Location": {
3730
+ "fields": {
3731
+ "path": {
3732
+ "rule": "repeated",
3733
+ "type": "int32",
3734
+ "id": 1,
3735
+ "options": {
3736
+ "packed": true
3737
+ }
3738
+ },
3739
+ "span": {
3740
+ "rule": "repeated",
3741
+ "type": "int32",
3742
+ "id": 2,
3743
+ "options": {
3744
+ "packed": true
3745
+ }
3746
+ },
3747
+ "leadingComments": {
3748
+ "type": "string",
3749
+ "id": 3
3750
+ },
3751
+ "trailingComments": {
3752
+ "type": "string",
3753
+ "id": 4
3754
+ },
3755
+ "leadingDetachedComments": {
3756
+ "rule": "repeated",
3757
+ "type": "string",
3758
+ "id": 6
3759
+ }
3760
+ }
3761
+ }
3762
+ }
3763
+ },
3764
+ "GeneratedCodeInfo": {
3765
+ "edition": "proto2",
3766
+ "fields": {
3767
+ "annotation": {
3768
+ "rule": "repeated",
3769
+ "type": "Annotation",
3770
+ "id": 1
3771
+ }
3772
+ },
3773
+ "nested": {
3774
+ "Annotation": {
3775
+ "fields": {
3776
+ "path": {
3777
+ "rule": "repeated",
3778
+ "type": "int32",
3779
+ "id": 1,
3780
+ "options": {
3781
+ "packed": true
3782
+ }
3783
+ },
3784
+ "sourceFile": {
3785
+ "type": "string",
3786
+ "id": 2
3787
+ },
3788
+ "begin": {
3789
+ "type": "int32",
3790
+ "id": 3
3791
+ },
3792
+ "end": {
3793
+ "type": "int32",
3794
+ "id": 4
3795
+ },
3796
+ "semantic": {
3797
+ "type": "Semantic",
3798
+ "id": 5
3799
+ }
3800
+ },
3801
+ "nested": {
3802
+ "Semantic": {
3803
+ "values": {
3804
+ "NONE": 0,
3805
+ "SET": 1,
3806
+ "ALIAS": 2
3807
+ }
3808
+ }
3809
+ }
3810
+ }
3811
+ }
3812
+ },
3813
+ "Struct": {
3814
+ "fields": {
3815
+ "fields": {
3816
+ "keyType": "string",
3817
+ "type": "Value",
3818
+ "id": 1
3819
+ }
3820
+ }
3821
+ },
3822
+ "Value": {
3823
+ "oneofs": {
3824
+ "kind": {
3825
+ "oneof": [
3826
+ "nullValue",
3827
+ "numberValue",
3828
+ "stringValue",
3829
+ "boolValue",
3830
+ "structValue",
3831
+ "listValue"
3832
+ ]
3833
+ }
3834
+ },
3835
+ "fields": {
3836
+ "nullValue": {
3837
+ "type": "NullValue",
3838
+ "id": 1
3839
+ },
3840
+ "numberValue": {
3841
+ "type": "double",
3842
+ "id": 2
3843
+ },
3844
+ "stringValue": {
3845
+ "type": "string",
3846
+ "id": 3
3847
+ },
3848
+ "boolValue": {
3849
+ "type": "bool",
3850
+ "id": 4
3851
+ },
3852
+ "structValue": {
3853
+ "type": "Struct",
3854
+ "id": 5
3855
+ },
3856
+ "listValue": {
3857
+ "type": "ListValue",
3858
+ "id": 6
3859
+ }
3860
+ }
3861
+ },
3862
+ "NullValue": {
3863
+ "values": {
3864
+ "NULL_VALUE": 0
3865
+ }
3866
+ },
3867
+ "ListValue": {
3868
+ "fields": {
3869
+ "values": {
3870
+ "rule": "repeated",
3871
+ "type": "Value",
3872
+ "id": 1
3873
+ }
3874
+ }
3875
+ },
3876
+ "Timestamp": {
3877
+ "fields": {
3878
+ "seconds": {
3879
+ "type": "int64",
3880
+ "id": 1
3881
+ },
3882
+ "nanos": {
3883
+ "type": "int32",
3884
+ "id": 2
3885
+ }
3886
+ }
3887
+ },
3888
+ "Duration": {
3889
+ "fields": {
3890
+ "seconds": {
3891
+ "type": "int64",
3892
+ "id": 1
3893
+ },
3894
+ "nanos": {
3895
+ "type": "int32",
3896
+ "id": 2
3897
+ }
3898
+ }
3899
+ },
3900
+ "Empty": {
3901
+ "fields": {}
3902
+ },
3903
+ "FieldMask": {
3904
+ "fields": {
3905
+ "paths": {
3906
+ "rule": "repeated",
3907
+ "type": "string",
3908
+ "id": 1
3909
+ }
3910
+ }
3911
+ },
3912
+ "Any": {
3913
+ "fields": {
3914
+ "type_url": {
3915
+ "type": "string",
3916
+ "id": 1
3917
+ },
3918
+ "value": {
3919
+ "type": "bytes",
3920
+ "id": 2
3921
+ }
3922
+ }
3923
+ }
3924
+ }
3925
+ },
3926
+ "longrunning": {
3927
+ "options": {
3928
+ "cc_enable_arenas": true,
3929
+ "csharp_namespace": "Google.LongRunning",
3930
+ "go_package": "cloud.google.com/go/longrunning/autogen/longrunningpb;longrunningpb",
3931
+ "java_multiple_files": true,
3932
+ "java_outer_classname": "OperationsProto",
3933
+ "java_package": "com.google.longrunning",
3934
+ "php_namespace": "Google\\LongRunning"
3935
+ },
3936
+ "nested": {
3937
+ "operationInfo": {
3938
+ "type": "google.longrunning.OperationInfo",
3939
+ "id": 1049,
3940
+ "extend": "google.protobuf.MethodOptions"
3941
+ },
3942
+ "Operations": {
3943
+ "options": {
3944
+ "(google.api.default_host)": "longrunning.googleapis.com"
3945
+ },
3946
+ "methods": {
3947
+ "ListOperations": {
3948
+ "requestType": "ListOperationsRequest",
3949
+ "responseType": "ListOperationsResponse",
3950
+ "options": {
3951
+ "(google.api.http).get": "/v1/{name=operations}",
3952
+ "(google.api.method_signature)": "name,filter"
3953
+ },
3954
+ "parsedOptions": [
3955
+ {
3956
+ "(google.api.http)": {
3957
+ "get": "/v1/{name=operations}"
3958
+ }
3959
+ },
3960
+ {
3961
+ "(google.api.method_signature)": "name,filter"
3962
+ }
3963
+ ]
3964
+ },
3965
+ "GetOperation": {
3966
+ "requestType": "GetOperationRequest",
3967
+ "responseType": "Operation",
3968
+ "options": {
3969
+ "(google.api.http).get": "/v1/{name=operations/**}",
3970
+ "(google.api.method_signature)": "name"
3971
+ },
3972
+ "parsedOptions": [
3973
+ {
3974
+ "(google.api.http)": {
3975
+ "get": "/v1/{name=operations/**}"
3976
+ }
3977
+ },
3978
+ {
3979
+ "(google.api.method_signature)": "name"
3980
+ }
3981
+ ]
3982
+ },
3983
+ "DeleteOperation": {
3984
+ "requestType": "DeleteOperationRequest",
3985
+ "responseType": "google.protobuf.Empty",
3986
+ "options": {
3987
+ "(google.api.http).delete": "/v1/{name=operations/**}",
3988
+ "(google.api.method_signature)": "name"
3989
+ },
3990
+ "parsedOptions": [
3991
+ {
3992
+ "(google.api.http)": {
3993
+ "delete": "/v1/{name=operations/**}"
3994
+ }
3995
+ },
3996
+ {
3997
+ "(google.api.method_signature)": "name"
3998
+ }
3999
+ ]
4000
+ },
4001
+ "CancelOperation": {
4002
+ "requestType": "CancelOperationRequest",
4003
+ "responseType": "google.protobuf.Empty",
4004
+ "options": {
4005
+ "(google.api.http).post": "/v1/{name=operations/**}:cancel",
4006
+ "(google.api.http).body": "*",
4007
+ "(google.api.method_signature)": "name"
4008
+ },
4009
+ "parsedOptions": [
4010
+ {
4011
+ "(google.api.http)": {
4012
+ "post": "/v1/{name=operations/**}:cancel",
4013
+ "body": "*"
4014
+ }
4015
+ },
4016
+ {
4017
+ "(google.api.method_signature)": "name"
4018
+ }
4019
+ ]
4020
+ },
4021
+ "WaitOperation": {
4022
+ "requestType": "WaitOperationRequest",
4023
+ "responseType": "Operation"
4024
+ }
4025
+ }
4026
+ },
4027
+ "Operation": {
4028
+ "oneofs": {
4029
+ "result": {
4030
+ "oneof": [
4031
+ "error",
4032
+ "response"
4033
+ ]
4034
+ }
4035
+ },
4036
+ "fields": {
4037
+ "name": {
4038
+ "type": "string",
4039
+ "id": 1
4040
+ },
4041
+ "metadata": {
4042
+ "type": "google.protobuf.Any",
4043
+ "id": 2
4044
+ },
4045
+ "done": {
4046
+ "type": "bool",
4047
+ "id": 3
4048
+ },
4049
+ "error": {
4050
+ "type": "google.rpc.Status",
4051
+ "id": 4
4052
+ },
4053
+ "response": {
4054
+ "type": "google.protobuf.Any",
4055
+ "id": 5
4056
+ }
4057
+ }
4058
+ },
4059
+ "GetOperationRequest": {
4060
+ "fields": {
4061
+ "name": {
4062
+ "type": "string",
4063
+ "id": 1
4064
+ }
4065
+ }
4066
+ },
4067
+ "ListOperationsRequest": {
4068
+ "fields": {
4069
+ "name": {
4070
+ "type": "string",
4071
+ "id": 4
4072
+ },
4073
+ "filter": {
4074
+ "type": "string",
4075
+ "id": 1
4076
+ },
4077
+ "pageSize": {
4078
+ "type": "int32",
4079
+ "id": 2
4080
+ },
4081
+ "pageToken": {
4082
+ "type": "string",
4083
+ "id": 3
4084
+ }
4085
+ }
4086
+ },
4087
+ "ListOperationsResponse": {
4088
+ "fields": {
4089
+ "operations": {
4090
+ "rule": "repeated",
4091
+ "type": "Operation",
4092
+ "id": 1
4093
+ },
4094
+ "nextPageToken": {
4095
+ "type": "string",
4096
+ "id": 2
4097
+ }
4098
+ }
4099
+ },
4100
+ "CancelOperationRequest": {
4101
+ "fields": {
4102
+ "name": {
4103
+ "type": "string",
4104
+ "id": 1
4105
+ }
4106
+ }
4107
+ },
4108
+ "DeleteOperationRequest": {
4109
+ "fields": {
4110
+ "name": {
4111
+ "type": "string",
4112
+ "id": 1
4113
+ }
4114
+ }
4115
+ },
4116
+ "WaitOperationRequest": {
4117
+ "fields": {
4118
+ "name": {
4119
+ "type": "string",
4120
+ "id": 1
4121
+ },
4122
+ "timeout": {
4123
+ "type": "google.protobuf.Duration",
4124
+ "id": 2
4125
+ }
4126
+ }
4127
+ },
4128
+ "OperationInfo": {
4129
+ "fields": {
4130
+ "responseType": {
4131
+ "type": "string",
4132
+ "id": 1
4133
+ },
4134
+ "metadataType": {
4135
+ "type": "string",
4136
+ "id": 2
4137
+ }
4138
+ }
4139
+ }
4140
+ }
4141
+ },
4142
+ "rpc": {
4143
+ "options": {
4144
+ "cc_enable_arenas": true,
4145
+ "go_package": "google.golang.org/genproto/googleapis/rpc/status;status",
4146
+ "java_multiple_files": true,
4147
+ "java_outer_classname": "StatusProto",
4148
+ "java_package": "com.google.rpc",
4149
+ "objc_class_prefix": "RPC"
4150
+ },
4151
+ "nested": {
4152
+ "Status": {
4153
+ "fields": {
4154
+ "code": {
4155
+ "type": "int32",
4156
+ "id": 1
4157
+ },
4158
+ "message": {
4159
+ "type": "string",
4160
+ "id": 2
4161
+ },
4162
+ "details": {
4163
+ "rule": "repeated",
4164
+ "type": "google.protobuf.Any",
4165
+ "id": 3
4166
+ }
4167
+ }
4168
+ }
4169
+ }
4170
+ }
4171
+ }
4172
+ }
4173
+ }
4174
+ }