@zilliz/milvus2-sdk-node 2.6.13 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -6
- package/dist/milvus/HttpClient.d.ts +2 -2
- package/dist/milvus/MilvusClient.d.ts +28 -1
- package/dist/milvus/MilvusClient.js +61 -1
- package/dist/milvus/MilvusClient.js.map +1 -1
- package/dist/milvus/bulkwriter/VolumeManager.d.ts +27 -0
- package/dist/milvus/bulkwriter/VolumeManager.js +151 -0
- package/dist/milvus/bulkwriter/VolumeManager.js.map +1 -0
- package/dist/milvus/bulkwriter/index.d.ts +1 -0
- package/dist/milvus/bulkwriter/index.js +3 -1
- package/dist/milvus/bulkwriter/index.js.map +1 -1
- package/dist/milvus/const/defaults.d.ts +1 -0
- package/dist/milvus/const/defaults.js +2 -1
- package/dist/milvus/const/defaults.js.map +1 -1
- package/dist/milvus/const/error.d.ts +2 -0
- package/dist/milvus/const/error.js +2 -0
- package/dist/milvus/const/error.js.map +1 -1
- package/dist/milvus/const/milvus.d.ts +13 -0
- package/dist/milvus/const/milvus.js +18 -1
- package/dist/milvus/const/milvus.js.map +1 -1
- package/dist/milvus/grpc/Collection.d.ts +142 -1
- package/dist/milvus/grpc/Collection.js +268 -7
- package/dist/milvus/grpc/Collection.js.map +1 -1
- package/dist/milvus/grpc/Data.d.ts +7 -1
- package/dist/milvus/grpc/Data.js +123 -45
- package/dist/milvus/grpc/Data.js.map +1 -1
- package/dist/milvus/grpc/Database.d.ts +12 -4
- package/dist/milvus/grpc/Database.js +13 -4
- package/dist/milvus/grpc/Database.js.map +1 -1
- package/dist/milvus/grpc/GrpcClient.js +1 -0
- package/dist/milvus/grpc/GrpcClient.js.map +1 -1
- package/dist/milvus/grpc/Resource.d.ts +24 -1
- package/dist/milvus/grpc/Resource.js +45 -0
- package/dist/milvus/grpc/Resource.js.map +1 -1
- package/dist/milvus/http/Import.d.ts +3 -3
- package/dist/milvus/http/Import.js.map +1 -1
- package/dist/milvus/proto-json/milvus.base.d.ts +2150 -154
- package/dist/milvus/proto-json/milvus.base.js +2279 -165
- package/dist/milvus/proto-json/milvus.base.js.map +1 -1
- package/dist/milvus/proto-json/milvus.d.ts +2204 -208
- package/dist/milvus/proto-json/milvus.js +2332 -218
- package/dist/milvus/proto-json/milvus.js.map +1 -1
- package/dist/milvus/proto-json/schema.base.d.ts +1066 -53
- package/dist/milvus/proto-json/schema.base.js +1186 -64
- package/dist/milvus/proto-json/schema.base.js.map +1 -1
- package/dist/milvus/types/Client.d.ts +1 -0
- package/dist/milvus/types/Collection.d.ts +121 -0
- package/dist/milvus/types/Collection.js +16 -0
- package/dist/milvus/types/Collection.js.map +1 -1
- package/dist/milvus/types/Common.d.ts +7 -0
- package/dist/milvus/types/Data.d.ts +12 -1
- package/dist/milvus/types/Database.d.ts +2 -0
- package/dist/milvus/types/Http.d.ts +10 -2
- package/dist/milvus/types/Insert.d.ts +8 -1
- package/dist/milvus/types/Insert.js.map +1 -1
- package/dist/milvus/types/Resource.d.ts +27 -0
- package/dist/milvus/types/Search.d.ts +32 -22
- package/dist/milvus/types/Search.js.map +1 -1
- package/dist/milvus/types/Volume.d.ts +37 -0
- package/dist/milvus/types/Volume.js +9 -0
- package/dist/milvus/types/Volume.js.map +1 -0
- package/dist/milvus/types/index.d.ts +1 -0
- package/dist/milvus/types/index.js +1 -0
- package/dist/milvus/types/index.js.map +1 -1
- package/dist/milvus/types.d.ts +1 -0
- package/dist/milvus/types.js +1 -0
- package/dist/milvus/types.js.map +1 -1
- package/dist/milvus/utils/Bytes.d.ts +2 -2
- package/dist/milvus/utils/Bytes.js +9 -2
- package/dist/milvus/utils/Bytes.js.map +1 -1
- package/dist/milvus/utils/Data.js +43 -6
- package/dist/milvus/utils/Data.js.map +1 -1
- package/dist/milvus/utils/Format.d.ts +2 -1
- package/dist/milvus/utils/Format.js +28 -1
- package/dist/milvus/utils/Format.js.map +1 -1
- package/dist/milvus/utils/Schema.js +21 -6
- package/dist/milvus/utils/Schema.js.map +1 -1
- package/dist/milvus/utils/Search.js +94 -13
- package/dist/milvus/utils/Search.js.map +1 -1
- package/dist/milvus/utils/Validate.d.ts +3 -0
- package/dist/milvus/utils/Validate.js +9 -2
- package/dist/milvus/utils/Validate.js.map +1 -1
- package/dist/sdk.json +1 -1
- package/package.json +8 -3
|
@@ -8,7 +8,7 @@ exports.default = {
|
|
|
8
8
|
"nested": {
|
|
9
9
|
"milvus": {
|
|
10
10
|
"options": {
|
|
11
|
-
"go_package": "github.com/milvus-io/milvus-proto/go-api/
|
|
11
|
+
"go_package": "github.com/milvus-io/milvus-proto/go-api/v3/milvuspb",
|
|
12
12
|
"java_multiple_files": true,
|
|
13
13
|
"java_package": "io.milvus.grpc",
|
|
14
14
|
"java_outer_classname": "MilvusProto",
|
|
@@ -408,7 +408,15 @@ exports.default = {
|
|
|
408
408
|
},
|
|
409
409
|
"ReplicateMessage": {
|
|
410
410
|
"requestType": "ReplicateMessageRequest",
|
|
411
|
-
"responseType": "ReplicateMessageResponse"
|
|
411
|
+
"responseType": "ReplicateMessageResponse",
|
|
412
|
+
"options": {
|
|
413
|
+
"deprecated": true
|
|
414
|
+
},
|
|
415
|
+
"parsedOptions": [
|
|
416
|
+
{
|
|
417
|
+
"deprecated": true
|
|
418
|
+
}
|
|
419
|
+
]
|
|
412
420
|
},
|
|
413
421
|
"BackupRBAC": {
|
|
414
422
|
"requestType": "BackupRBACMetaRequest",
|
|
@@ -500,6 +508,86 @@ exports.default = {
|
|
|
500
508
|
"requestType": "DumpMessagesRequest",
|
|
501
509
|
"responseType": "DumpMessagesResponse",
|
|
502
510
|
"responseStream": true
|
|
511
|
+
},
|
|
512
|
+
"ComputePhraseMatchSlop": {
|
|
513
|
+
"requestType": "ComputePhraseMatchSlopRequest",
|
|
514
|
+
"responseType": "ComputePhraseMatchSlopResponse"
|
|
515
|
+
},
|
|
516
|
+
"CreateSnapshot": {
|
|
517
|
+
"requestType": "CreateSnapshotRequest",
|
|
518
|
+
"responseType": "common.Status"
|
|
519
|
+
},
|
|
520
|
+
"DropSnapshot": {
|
|
521
|
+
"requestType": "DropSnapshotRequest",
|
|
522
|
+
"responseType": "common.Status"
|
|
523
|
+
},
|
|
524
|
+
"ListSnapshots": {
|
|
525
|
+
"requestType": "ListSnapshotsRequest",
|
|
526
|
+
"responseType": "ListSnapshotsResponse"
|
|
527
|
+
},
|
|
528
|
+
"DescribeSnapshot": {
|
|
529
|
+
"requestType": "DescribeSnapshotRequest",
|
|
530
|
+
"responseType": "DescribeSnapshotResponse"
|
|
531
|
+
},
|
|
532
|
+
"RestoreSnapshot": {
|
|
533
|
+
"requestType": "RestoreSnapshotRequest",
|
|
534
|
+
"responseType": "RestoreSnapshotResponse"
|
|
535
|
+
},
|
|
536
|
+
"GetRestoreSnapshotState": {
|
|
537
|
+
"requestType": "GetRestoreSnapshotStateRequest",
|
|
538
|
+
"responseType": "GetRestoreSnapshotStateResponse"
|
|
539
|
+
},
|
|
540
|
+
"ListRestoreSnapshotJobs": {
|
|
541
|
+
"requestType": "ListRestoreSnapshotJobsRequest",
|
|
542
|
+
"responseType": "ListRestoreSnapshotJobsResponse"
|
|
543
|
+
},
|
|
544
|
+
"PinSnapshotData": {
|
|
545
|
+
"requestType": "PinSnapshotDataRequest",
|
|
546
|
+
"responseType": "PinSnapshotDataResponse"
|
|
547
|
+
},
|
|
548
|
+
"UnpinSnapshotData": {
|
|
549
|
+
"requestType": "UnpinSnapshotDataRequest",
|
|
550
|
+
"responseType": "common.Status"
|
|
551
|
+
},
|
|
552
|
+
"AlterCollectionSchema": {
|
|
553
|
+
"requestType": "AlterCollectionSchemaRequest",
|
|
554
|
+
"responseType": "AlterCollectionSchemaResponse"
|
|
555
|
+
},
|
|
556
|
+
"BatchUpdateManifest": {
|
|
557
|
+
"requestType": "BatchUpdateManifestRequest",
|
|
558
|
+
"responseType": "common.Status"
|
|
559
|
+
},
|
|
560
|
+
"RefreshExternalCollection": {
|
|
561
|
+
"requestType": "RefreshExternalCollectionRequest",
|
|
562
|
+
"responseType": "RefreshExternalCollectionResponse"
|
|
563
|
+
},
|
|
564
|
+
"GetRefreshExternalCollectionProgress": {
|
|
565
|
+
"requestType": "GetRefreshExternalCollectionProgressRequest",
|
|
566
|
+
"responseType": "GetRefreshExternalCollectionProgressResponse"
|
|
567
|
+
},
|
|
568
|
+
"ListRefreshExternalCollectionJobs": {
|
|
569
|
+
"requestType": "ListRefreshExternalCollectionJobsRequest",
|
|
570
|
+
"responseType": "ListRefreshExternalCollectionJobsResponse"
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
},
|
|
574
|
+
"ClientTelemetryService": {
|
|
575
|
+
"methods": {
|
|
576
|
+
"ClientHeartbeat": {
|
|
577
|
+
"requestType": "ClientHeartbeatRequest",
|
|
578
|
+
"responseType": "ClientHeartbeatResponse"
|
|
579
|
+
},
|
|
580
|
+
"GetClientTelemetry": {
|
|
581
|
+
"requestType": "GetClientTelemetryRequest",
|
|
582
|
+
"responseType": "GetClientTelemetryResponse"
|
|
583
|
+
},
|
|
584
|
+
"PushClientCommand": {
|
|
585
|
+
"requestType": "PushClientCommandRequest",
|
|
586
|
+
"responseType": "PushClientCommandResponse"
|
|
587
|
+
},
|
|
588
|
+
"DeleteClientCommand": {
|
|
589
|
+
"requestType": "DeleteClientCommandRequest",
|
|
590
|
+
"responseType": "DeleteClientCommandResponse"
|
|
503
591
|
}
|
|
504
592
|
}
|
|
505
593
|
},
|
|
@@ -2060,6 +2148,11 @@ exports.default = {
|
|
|
2060
2148
|
"options": {
|
|
2061
2149
|
"proto3_optional": true
|
|
2062
2150
|
}
|
|
2151
|
+
},
|
|
2152
|
+
"field_ops": {
|
|
2153
|
+
"rule": "repeated",
|
|
2154
|
+
"type": "schema.FieldPartialUpdateOp",
|
|
2155
|
+
"id": 11
|
|
2063
2156
|
}
|
|
2064
2157
|
}
|
|
2065
2158
|
},
|
|
@@ -2310,6 +2403,10 @@ exports.default = {
|
|
|
2310
2403
|
"highlighter": {
|
|
2311
2404
|
"type": "common.Highlighter",
|
|
2312
2405
|
"id": 21
|
|
2406
|
+
},
|
|
2407
|
+
"search_aggregation": {
|
|
2408
|
+
"type": "common.SearchAggregationSpec",
|
|
2409
|
+
"id": 23
|
|
2313
2410
|
}
|
|
2314
2411
|
}
|
|
2315
2412
|
},
|
|
@@ -2569,6 +2666,14 @@ exports.default = {
|
|
|
2569
2666
|
}
|
|
2570
2667
|
}
|
|
2571
2668
|
},
|
|
2669
|
+
"ElementIndices": {
|
|
2670
|
+
"fields": {
|
|
2671
|
+
"indices": {
|
|
2672
|
+
"type": "schema.LongArray",
|
|
2673
|
+
"id": 1
|
|
2674
|
+
}
|
|
2675
|
+
}
|
|
2676
|
+
},
|
|
2572
2677
|
"QueryResults": {
|
|
2573
2678
|
"fields": {
|
|
2574
2679
|
"status": {
|
|
@@ -2596,6 +2701,11 @@ exports.default = {
|
|
|
2596
2701
|
"primary_field_name": {
|
|
2597
2702
|
"type": "string",
|
|
2598
2703
|
"id": 6
|
|
2704
|
+
},
|
|
2705
|
+
"element_indices": {
|
|
2706
|
+
"rule": "repeated",
|
|
2707
|
+
"type": "ElementIndices",
|
|
2708
|
+
"id": 7
|
|
2599
2709
|
}
|
|
2600
2710
|
}
|
|
2601
2711
|
},
|
|
@@ -4864,6 +4974,9 @@ exports.default = {
|
|
|
4864
4974
|
}
|
|
4865
4975
|
},
|
|
4866
4976
|
"ReplicateMessageRequest": {
|
|
4977
|
+
"options": {
|
|
4978
|
+
"deprecated": true
|
|
4979
|
+
},
|
|
4867
4980
|
"fields": {
|
|
4868
4981
|
"base": {
|
|
4869
4982
|
"type": "common.MsgBase",
|
|
@@ -4899,6 +5012,9 @@ exports.default = {
|
|
|
4899
5012
|
}
|
|
4900
5013
|
},
|
|
4901
5014
|
"ReplicateMessageResponse": {
|
|
5015
|
+
"options": {
|
|
5016
|
+
"deprecated": true
|
|
5017
|
+
},
|
|
4902
5018
|
"fields": {
|
|
4903
5019
|
"status": {
|
|
4904
5020
|
"type": "common.Status",
|
|
@@ -5577,172 +5693,1045 @@ exports.default = {
|
|
|
5577
5693
|
"id": 1
|
|
5578
5694
|
}
|
|
5579
5695
|
}
|
|
5580
|
-
}
|
|
5581
|
-
}
|
|
5582
|
-
},
|
|
5583
|
-
"common": {
|
|
5584
|
-
"options": {
|
|
5585
|
-
"go_package": "github.com/milvus-io/milvus-proto/go-api/v2/commonpb",
|
|
5586
|
-
"java_multiple_files": true,
|
|
5587
|
-
"java_package": "io.milvus.grpc",
|
|
5588
|
-
"java_outer_classname": "CommonProto",
|
|
5589
|
-
"java_generate_equals_and_hash": true,
|
|
5590
|
-
"csharp_namespace": "Milvus.Client.Grpc"
|
|
5591
|
-
},
|
|
5592
|
-
"nested": {
|
|
5593
|
-
"ErrorCode": {
|
|
5594
|
-
"options": {
|
|
5595
|
-
"deprecated": true
|
|
5596
|
-
},
|
|
5597
|
-
"values": {
|
|
5598
|
-
"Success": 0,
|
|
5599
|
-
"UnexpectedError": 1,
|
|
5600
|
-
"ConnectFailed": 2,
|
|
5601
|
-
"PermissionDenied": 3,
|
|
5602
|
-
"CollectionNotExists": 4,
|
|
5603
|
-
"IllegalArgument": 5,
|
|
5604
|
-
"IllegalDimension": 7,
|
|
5605
|
-
"IllegalIndexType": 8,
|
|
5606
|
-
"IllegalCollectionName": 9,
|
|
5607
|
-
"IllegalTOPK": 10,
|
|
5608
|
-
"IllegalRowRecord": 11,
|
|
5609
|
-
"IllegalVectorID": 12,
|
|
5610
|
-
"IllegalSearchResult": 13,
|
|
5611
|
-
"FileNotFound": 14,
|
|
5612
|
-
"MetaFailed": 15,
|
|
5613
|
-
"CacheFailed": 16,
|
|
5614
|
-
"CannotCreateFolder": 17,
|
|
5615
|
-
"CannotCreateFile": 18,
|
|
5616
|
-
"CannotDeleteFolder": 19,
|
|
5617
|
-
"CannotDeleteFile": 20,
|
|
5618
|
-
"BuildIndexError": 21,
|
|
5619
|
-
"IllegalNLIST": 22,
|
|
5620
|
-
"IllegalMetricType": 23,
|
|
5621
|
-
"OutOfMemory": 24,
|
|
5622
|
-
"IndexNotExist": 25,
|
|
5623
|
-
"EmptyCollection": 26,
|
|
5624
|
-
"UpdateImportTaskFailure": 27,
|
|
5625
|
-
"CollectionNameNotFound": 28,
|
|
5626
|
-
"CreateCredentialFailure": 29,
|
|
5627
|
-
"UpdateCredentialFailure": 30,
|
|
5628
|
-
"DeleteCredentialFailure": 31,
|
|
5629
|
-
"GetCredentialFailure": 32,
|
|
5630
|
-
"ListCredUsersFailure": 33,
|
|
5631
|
-
"GetUserFailure": 34,
|
|
5632
|
-
"CreateRoleFailure": 35,
|
|
5633
|
-
"DropRoleFailure": 36,
|
|
5634
|
-
"OperateUserRoleFailure": 37,
|
|
5635
|
-
"SelectRoleFailure": 38,
|
|
5636
|
-
"SelectUserFailure": 39,
|
|
5637
|
-
"SelectResourceFailure": 40,
|
|
5638
|
-
"OperatePrivilegeFailure": 41,
|
|
5639
|
-
"SelectGrantFailure": 42,
|
|
5640
|
-
"RefreshPolicyInfoCacheFailure": 43,
|
|
5641
|
-
"ListPolicyFailure": 44,
|
|
5642
|
-
"NotShardLeader": 45,
|
|
5643
|
-
"NoReplicaAvailable": 46,
|
|
5644
|
-
"SegmentNotFound": 47,
|
|
5645
|
-
"ForceDeny": 48,
|
|
5646
|
-
"RateLimit": 49,
|
|
5647
|
-
"NodeIDNotMatch": 50,
|
|
5648
|
-
"UpsertAutoIDTrue": 51,
|
|
5649
|
-
"InsufficientMemoryToLoad": 52,
|
|
5650
|
-
"MemoryQuotaExhausted": 53,
|
|
5651
|
-
"DiskQuotaExhausted": 54,
|
|
5652
|
-
"TimeTickLongDelay": 55,
|
|
5653
|
-
"NotReadyServe": 56,
|
|
5654
|
-
"NotReadyCoordActivating": 57,
|
|
5655
|
-
"CreatePrivilegeGroupFailure": 58,
|
|
5656
|
-
"DropPrivilegeGroupFailure": 59,
|
|
5657
|
-
"ListPrivilegeGroupsFailure": 60,
|
|
5658
|
-
"OperatePrivilegeGroupFailure": 61,
|
|
5659
|
-
"SchemaMismatch": 62,
|
|
5660
|
-
"DataCoordNA": 100,
|
|
5661
|
-
"DDRequestRace": 1000
|
|
5662
|
-
}
|
|
5663
|
-
},
|
|
5664
|
-
"IndexState": {
|
|
5665
|
-
"values": {
|
|
5666
|
-
"IndexStateNone": 0,
|
|
5667
|
-
"Unissued": 1,
|
|
5668
|
-
"InProgress": 2,
|
|
5669
|
-
"Finished": 3,
|
|
5670
|
-
"Failed": 4,
|
|
5671
|
-
"Retry": 5
|
|
5672
|
-
}
|
|
5673
5696
|
},
|
|
5674
|
-
"
|
|
5675
|
-
"
|
|
5676
|
-
"
|
|
5677
|
-
|
|
5678
|
-
|
|
5679
|
-
|
|
5680
|
-
"
|
|
5681
|
-
|
|
5682
|
-
|
|
5683
|
-
|
|
5697
|
+
"ComputePhraseMatchSlopRequest": {
|
|
5698
|
+
"fields": {
|
|
5699
|
+
"base": {
|
|
5700
|
+
"type": "common.MsgBase",
|
|
5701
|
+
"id": 1
|
|
5702
|
+
},
|
|
5703
|
+
"analyzer_params": {
|
|
5704
|
+
"type": "string",
|
|
5705
|
+
"id": 2
|
|
5706
|
+
},
|
|
5707
|
+
"query_text": {
|
|
5708
|
+
"type": "string",
|
|
5709
|
+
"id": 3
|
|
5710
|
+
},
|
|
5711
|
+
"data_texts": {
|
|
5712
|
+
"rule": "repeated",
|
|
5713
|
+
"type": "string",
|
|
5714
|
+
"id": 4
|
|
5715
|
+
}
|
|
5684
5716
|
}
|
|
5685
5717
|
},
|
|
5686
|
-
"
|
|
5687
|
-
"
|
|
5688
|
-
"
|
|
5689
|
-
|
|
5690
|
-
|
|
5691
|
-
|
|
5718
|
+
"ComputePhraseMatchSlopResponse": {
|
|
5719
|
+
"fields": {
|
|
5720
|
+
"status": {
|
|
5721
|
+
"type": "common.Status",
|
|
5722
|
+
"id": 1
|
|
5723
|
+
},
|
|
5724
|
+
"is_match": {
|
|
5725
|
+
"rule": "repeated",
|
|
5726
|
+
"type": "bool",
|
|
5727
|
+
"id": 2
|
|
5728
|
+
},
|
|
5729
|
+
"slops": {
|
|
5730
|
+
"rule": "repeated",
|
|
5731
|
+
"type": "int64",
|
|
5732
|
+
"id": 3
|
|
5733
|
+
}
|
|
5692
5734
|
}
|
|
5693
5735
|
},
|
|
5694
|
-
"
|
|
5736
|
+
"CreateSnapshotRequest": {
|
|
5737
|
+
"options": {
|
|
5738
|
+
"(common.privilege_ext_obj).object_type": "Collection",
|
|
5739
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeCreateSnapshot",
|
|
5740
|
+
"(common.privilege_ext_obj).object_name_index": 5
|
|
5741
|
+
},
|
|
5695
5742
|
"fields": {
|
|
5696
|
-
"
|
|
5697
|
-
"type": "
|
|
5698
|
-
"id": 1
|
|
5699
|
-
"options": {
|
|
5700
|
-
"deprecated": true
|
|
5701
|
-
}
|
|
5743
|
+
"base": {
|
|
5744
|
+
"type": "common.MsgBase",
|
|
5745
|
+
"id": 1
|
|
5702
5746
|
},
|
|
5703
|
-
"
|
|
5747
|
+
"name": {
|
|
5704
5748
|
"type": "string",
|
|
5705
5749
|
"id": 2
|
|
5706
5750
|
},
|
|
5707
|
-
"
|
|
5708
|
-
"type": "
|
|
5751
|
+
"description": {
|
|
5752
|
+
"type": "string",
|
|
5709
5753
|
"id": 3
|
|
5710
5754
|
},
|
|
5711
|
-
"
|
|
5712
|
-
"type": "
|
|
5755
|
+
"db_name": {
|
|
5756
|
+
"type": "string",
|
|
5713
5757
|
"id": 4
|
|
5714
5758
|
},
|
|
5715
|
-
"
|
|
5759
|
+
"collection_name": {
|
|
5716
5760
|
"type": "string",
|
|
5717
5761
|
"id": 5
|
|
5718
5762
|
},
|
|
5719
|
-
"
|
|
5720
|
-
"
|
|
5721
|
-
"type": "string",
|
|
5763
|
+
"compaction_protection_seconds": {
|
|
5764
|
+
"type": "int64",
|
|
5722
5765
|
"id": 6
|
|
5723
5766
|
}
|
|
5724
5767
|
}
|
|
5725
5768
|
},
|
|
5726
|
-
"
|
|
5769
|
+
"DropSnapshotRequest": {
|
|
5770
|
+
"options": {
|
|
5771
|
+
"(common.privilege_ext_obj).object_type": "Collection",
|
|
5772
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeDropSnapshot",
|
|
5773
|
+
"(common.privilege_ext_obj).object_name_index": 4
|
|
5774
|
+
},
|
|
5727
5775
|
"fields": {
|
|
5728
|
-
"
|
|
5729
|
-
"type": "
|
|
5776
|
+
"base": {
|
|
5777
|
+
"type": "common.MsgBase",
|
|
5730
5778
|
"id": 1
|
|
5731
5779
|
},
|
|
5732
|
-
"
|
|
5780
|
+
"name": {
|
|
5733
5781
|
"type": "string",
|
|
5734
5782
|
"id": 2
|
|
5783
|
+
},
|
|
5784
|
+
"db_name": {
|
|
5785
|
+
"type": "string",
|
|
5786
|
+
"id": 3
|
|
5787
|
+
},
|
|
5788
|
+
"collection_name": {
|
|
5789
|
+
"type": "string",
|
|
5790
|
+
"id": 4
|
|
5735
5791
|
}
|
|
5736
5792
|
}
|
|
5737
5793
|
},
|
|
5738
|
-
"
|
|
5794
|
+
"ListSnapshotsRequest": {
|
|
5795
|
+
"options": {
|
|
5796
|
+
"(common.privilege_ext_obj).object_type": "Collection",
|
|
5797
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeListSnapshots",
|
|
5798
|
+
"(common.privilege_ext_obj).object_name_index": 3
|
|
5799
|
+
},
|
|
5739
5800
|
"fields": {
|
|
5740
|
-
"
|
|
5741
|
-
"type": "
|
|
5801
|
+
"base": {
|
|
5802
|
+
"type": "common.MsgBase",
|
|
5742
5803
|
"id": 1
|
|
5743
5804
|
},
|
|
5744
|
-
"
|
|
5745
|
-
"type": "
|
|
5805
|
+
"db_name": {
|
|
5806
|
+
"type": "string",
|
|
5807
|
+
"id": 2
|
|
5808
|
+
},
|
|
5809
|
+
"collection_name": {
|
|
5810
|
+
"type": "string",
|
|
5811
|
+
"id": 3
|
|
5812
|
+
}
|
|
5813
|
+
}
|
|
5814
|
+
},
|
|
5815
|
+
"ListSnapshotsResponse": {
|
|
5816
|
+
"fields": {
|
|
5817
|
+
"status": {
|
|
5818
|
+
"type": "common.Status",
|
|
5819
|
+
"id": 1
|
|
5820
|
+
},
|
|
5821
|
+
"snapshots": {
|
|
5822
|
+
"rule": "repeated",
|
|
5823
|
+
"type": "string",
|
|
5824
|
+
"id": 2
|
|
5825
|
+
}
|
|
5826
|
+
}
|
|
5827
|
+
},
|
|
5828
|
+
"DescribeSnapshotRequest": {
|
|
5829
|
+
"options": {
|
|
5830
|
+
"(common.privilege_ext_obj).object_type": "Collection",
|
|
5831
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeDescribeSnapshot",
|
|
5832
|
+
"(common.privilege_ext_obj).object_name_index": 4
|
|
5833
|
+
},
|
|
5834
|
+
"fields": {
|
|
5835
|
+
"base": {
|
|
5836
|
+
"type": "common.MsgBase",
|
|
5837
|
+
"id": 1
|
|
5838
|
+
},
|
|
5839
|
+
"name": {
|
|
5840
|
+
"type": "string",
|
|
5841
|
+
"id": 2
|
|
5842
|
+
},
|
|
5843
|
+
"db_name": {
|
|
5844
|
+
"type": "string",
|
|
5845
|
+
"id": 3
|
|
5846
|
+
},
|
|
5847
|
+
"collection_name": {
|
|
5848
|
+
"type": "string",
|
|
5849
|
+
"id": 4
|
|
5850
|
+
}
|
|
5851
|
+
}
|
|
5852
|
+
},
|
|
5853
|
+
"DescribeSnapshotResponse": {
|
|
5854
|
+
"fields": {
|
|
5855
|
+
"status": {
|
|
5856
|
+
"type": "common.Status",
|
|
5857
|
+
"id": 1
|
|
5858
|
+
},
|
|
5859
|
+
"name": {
|
|
5860
|
+
"type": "string",
|
|
5861
|
+
"id": 2
|
|
5862
|
+
},
|
|
5863
|
+
"description": {
|
|
5864
|
+
"type": "string",
|
|
5865
|
+
"id": 3
|
|
5866
|
+
},
|
|
5867
|
+
"collection_name": {
|
|
5868
|
+
"type": "string",
|
|
5869
|
+
"id": 4
|
|
5870
|
+
},
|
|
5871
|
+
"partition_names": {
|
|
5872
|
+
"rule": "repeated",
|
|
5873
|
+
"type": "string",
|
|
5874
|
+
"id": 5
|
|
5875
|
+
},
|
|
5876
|
+
"create_ts": {
|
|
5877
|
+
"type": "int64",
|
|
5878
|
+
"id": 6
|
|
5879
|
+
},
|
|
5880
|
+
"s3_location": {
|
|
5881
|
+
"type": "string",
|
|
5882
|
+
"id": 7
|
|
5883
|
+
}
|
|
5884
|
+
}
|
|
5885
|
+
},
|
|
5886
|
+
"RestoreSnapshotRequest": {
|
|
5887
|
+
"options": {
|
|
5888
|
+
"(common.privilege_ext_obj).object_type": "Collection",
|
|
5889
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeRestoreSnapshot",
|
|
5890
|
+
"(common.privilege_ext_obj).object_name_index": 4
|
|
5891
|
+
},
|
|
5892
|
+
"fields": {
|
|
5893
|
+
"base": {
|
|
5894
|
+
"type": "common.MsgBase",
|
|
5895
|
+
"id": 1
|
|
5896
|
+
},
|
|
5897
|
+
"name": {
|
|
5898
|
+
"type": "string",
|
|
5899
|
+
"id": 2
|
|
5900
|
+
},
|
|
5901
|
+
"db_name": {
|
|
5902
|
+
"type": "string",
|
|
5903
|
+
"id": 3
|
|
5904
|
+
},
|
|
5905
|
+
"collection_name": {
|
|
5906
|
+
"type": "string",
|
|
5907
|
+
"id": 4
|
|
5908
|
+
},
|
|
5909
|
+
"rewrite_data": {
|
|
5910
|
+
"type": "bool",
|
|
5911
|
+
"id": 5
|
|
5912
|
+
},
|
|
5913
|
+
"target_db_name": {
|
|
5914
|
+
"type": "string",
|
|
5915
|
+
"id": 6
|
|
5916
|
+
},
|
|
5917
|
+
"target_collection_name": {
|
|
5918
|
+
"type": "string",
|
|
5919
|
+
"id": 7
|
|
5920
|
+
}
|
|
5921
|
+
}
|
|
5922
|
+
},
|
|
5923
|
+
"RestoreSnapshotResponse": {
|
|
5924
|
+
"fields": {
|
|
5925
|
+
"status": {
|
|
5926
|
+
"type": "common.Status",
|
|
5927
|
+
"id": 1
|
|
5928
|
+
},
|
|
5929
|
+
"job_id": {
|
|
5930
|
+
"type": "int64",
|
|
5931
|
+
"id": 2
|
|
5932
|
+
}
|
|
5933
|
+
}
|
|
5934
|
+
},
|
|
5935
|
+
"RestoreSnapshotState": {
|
|
5936
|
+
"values": {
|
|
5937
|
+
"RestoreSnapshotNone": 0,
|
|
5938
|
+
"RestoreSnapshotPending": 1,
|
|
5939
|
+
"RestoreSnapshotExecuting": 2,
|
|
5940
|
+
"RestoreSnapshotCompleted": 3,
|
|
5941
|
+
"RestoreSnapshotFailed": 4
|
|
5942
|
+
}
|
|
5943
|
+
},
|
|
5944
|
+
"RestoreSnapshotInfo": {
|
|
5945
|
+
"fields": {
|
|
5946
|
+
"job_id": {
|
|
5947
|
+
"type": "int64",
|
|
5948
|
+
"id": 1
|
|
5949
|
+
},
|
|
5950
|
+
"snapshot_name": {
|
|
5951
|
+
"type": "string",
|
|
5952
|
+
"id": 2
|
|
5953
|
+
},
|
|
5954
|
+
"db_name": {
|
|
5955
|
+
"type": "string",
|
|
5956
|
+
"id": 3
|
|
5957
|
+
},
|
|
5958
|
+
"collection_name": {
|
|
5959
|
+
"type": "string",
|
|
5960
|
+
"id": 4
|
|
5961
|
+
},
|
|
5962
|
+
"state": {
|
|
5963
|
+
"type": "RestoreSnapshotState",
|
|
5964
|
+
"id": 5
|
|
5965
|
+
},
|
|
5966
|
+
"progress": {
|
|
5967
|
+
"type": "int32",
|
|
5968
|
+
"id": 6
|
|
5969
|
+
},
|
|
5970
|
+
"reason": {
|
|
5971
|
+
"type": "string",
|
|
5972
|
+
"id": 7
|
|
5973
|
+
},
|
|
5974
|
+
"start_time": {
|
|
5975
|
+
"type": "uint64",
|
|
5976
|
+
"id": 8
|
|
5977
|
+
},
|
|
5978
|
+
"time_cost": {
|
|
5979
|
+
"type": "uint64",
|
|
5980
|
+
"id": 9
|
|
5981
|
+
}
|
|
5982
|
+
}
|
|
5983
|
+
},
|
|
5984
|
+
"GetRestoreSnapshotStateRequest": {
|
|
5985
|
+
"fields": {
|
|
5986
|
+
"base": {
|
|
5987
|
+
"type": "common.MsgBase",
|
|
5988
|
+
"id": 1
|
|
5989
|
+
},
|
|
5990
|
+
"job_id": {
|
|
5991
|
+
"type": "int64",
|
|
5992
|
+
"id": 2
|
|
5993
|
+
}
|
|
5994
|
+
}
|
|
5995
|
+
},
|
|
5996
|
+
"GetRestoreSnapshotStateResponse": {
|
|
5997
|
+
"fields": {
|
|
5998
|
+
"status": {
|
|
5999
|
+
"type": "common.Status",
|
|
6000
|
+
"id": 1
|
|
6001
|
+
},
|
|
6002
|
+
"info": {
|
|
6003
|
+
"type": "RestoreSnapshotInfo",
|
|
6004
|
+
"id": 2
|
|
6005
|
+
}
|
|
6006
|
+
}
|
|
6007
|
+
},
|
|
6008
|
+
"ListRestoreSnapshotJobsRequest": {
|
|
6009
|
+
"options": {
|
|
6010
|
+
"(common.privilege_ext_obj).object_type": "Collection",
|
|
6011
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeRestoreSnapshot",
|
|
6012
|
+
"(common.privilege_ext_obj).object_name_index": 3
|
|
6013
|
+
},
|
|
6014
|
+
"fields": {
|
|
6015
|
+
"base": {
|
|
6016
|
+
"type": "common.MsgBase",
|
|
6017
|
+
"id": 1
|
|
6018
|
+
},
|
|
6019
|
+
"db_name": {
|
|
6020
|
+
"type": "string",
|
|
6021
|
+
"id": 2
|
|
6022
|
+
},
|
|
6023
|
+
"collection_name": {
|
|
6024
|
+
"type": "string",
|
|
6025
|
+
"id": 3
|
|
6026
|
+
}
|
|
6027
|
+
}
|
|
6028
|
+
},
|
|
6029
|
+
"ListRestoreSnapshotJobsResponse": {
|
|
6030
|
+
"fields": {
|
|
6031
|
+
"status": {
|
|
6032
|
+
"type": "common.Status",
|
|
6033
|
+
"id": 1
|
|
6034
|
+
},
|
|
6035
|
+
"jobs": {
|
|
6036
|
+
"rule": "repeated",
|
|
6037
|
+
"type": "RestoreSnapshotInfo",
|
|
6038
|
+
"id": 2
|
|
6039
|
+
}
|
|
6040
|
+
}
|
|
6041
|
+
},
|
|
6042
|
+
"PinSnapshotDataRequest": {
|
|
6043
|
+
"options": {
|
|
6044
|
+
"(common.privilege_ext_obj).object_type": "Global",
|
|
6045
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegePinSnapshotData",
|
|
6046
|
+
"(common.privilege_ext_obj).object_name_index": -1
|
|
6047
|
+
},
|
|
6048
|
+
"fields": {
|
|
6049
|
+
"base": {
|
|
6050
|
+
"type": "common.MsgBase",
|
|
6051
|
+
"id": 1
|
|
6052
|
+
},
|
|
6053
|
+
"name": {
|
|
6054
|
+
"type": "string",
|
|
6055
|
+
"id": 2
|
|
6056
|
+
},
|
|
6057
|
+
"db_name": {
|
|
6058
|
+
"type": "string",
|
|
6059
|
+
"id": 3
|
|
6060
|
+
},
|
|
6061
|
+
"collection_name": {
|
|
6062
|
+
"type": "string",
|
|
6063
|
+
"id": 4
|
|
6064
|
+
},
|
|
6065
|
+
"ttl_seconds": {
|
|
6066
|
+
"type": "int64",
|
|
6067
|
+
"id": 5
|
|
6068
|
+
}
|
|
6069
|
+
}
|
|
6070
|
+
},
|
|
6071
|
+
"PinSnapshotDataResponse": {
|
|
6072
|
+
"fields": {
|
|
6073
|
+
"status": {
|
|
6074
|
+
"type": "common.Status",
|
|
6075
|
+
"id": 1
|
|
6076
|
+
},
|
|
6077
|
+
"pin_id": {
|
|
6078
|
+
"type": "int64",
|
|
6079
|
+
"id": 2
|
|
6080
|
+
}
|
|
6081
|
+
}
|
|
6082
|
+
},
|
|
6083
|
+
"UnpinSnapshotDataRequest": {
|
|
6084
|
+
"options": {
|
|
6085
|
+
"(common.privilege_ext_obj).object_type": "Global",
|
|
6086
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeUnpinSnapshotData",
|
|
6087
|
+
"(common.privilege_ext_obj).object_name_index": -1
|
|
6088
|
+
},
|
|
6089
|
+
"fields": {
|
|
6090
|
+
"base": {
|
|
6091
|
+
"type": "common.MsgBase",
|
|
6092
|
+
"id": 1
|
|
6093
|
+
},
|
|
6094
|
+
"pin_id": {
|
|
6095
|
+
"type": "int64",
|
|
6096
|
+
"id": 2
|
|
6097
|
+
}
|
|
6098
|
+
}
|
|
6099
|
+
},
|
|
6100
|
+
"AlterCollectionSchemaRequest": {
|
|
6101
|
+
"options": {
|
|
6102
|
+
"(common.privilege_ext_obj).object_type": "Collection",
|
|
6103
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeAlterCollectionSchema",
|
|
6104
|
+
"(common.privilege_ext_obj).object_name_index": 3
|
|
6105
|
+
},
|
|
6106
|
+
"fields": {
|
|
6107
|
+
"base": {
|
|
6108
|
+
"type": "common.MsgBase",
|
|
6109
|
+
"id": 1
|
|
6110
|
+
},
|
|
6111
|
+
"db_name": {
|
|
6112
|
+
"type": "string",
|
|
6113
|
+
"id": 2
|
|
6114
|
+
},
|
|
6115
|
+
"collection_name": {
|
|
6116
|
+
"type": "string",
|
|
6117
|
+
"id": 3
|
|
6118
|
+
},
|
|
6119
|
+
"collectionID": {
|
|
6120
|
+
"type": "int64",
|
|
6121
|
+
"id": 4
|
|
6122
|
+
},
|
|
6123
|
+
"action": {
|
|
6124
|
+
"type": "Action",
|
|
6125
|
+
"id": 5
|
|
6126
|
+
}
|
|
6127
|
+
},
|
|
6128
|
+
"nested": {
|
|
6129
|
+
"FieldInfo": {
|
|
6130
|
+
"fields": {
|
|
6131
|
+
"field_schema": {
|
|
6132
|
+
"type": "schema.FieldSchema",
|
|
6133
|
+
"id": 1
|
|
6134
|
+
},
|
|
6135
|
+
"index_name": {
|
|
6136
|
+
"type": "string",
|
|
6137
|
+
"id": 2
|
|
6138
|
+
},
|
|
6139
|
+
"extra_params": {
|
|
6140
|
+
"rule": "repeated",
|
|
6141
|
+
"type": "common.KeyValuePair",
|
|
6142
|
+
"id": 3
|
|
6143
|
+
}
|
|
6144
|
+
}
|
|
6145
|
+
},
|
|
6146
|
+
"AddRequest": {
|
|
6147
|
+
"fields": {
|
|
6148
|
+
"field_infos": {
|
|
6149
|
+
"rule": "repeated",
|
|
6150
|
+
"type": "FieldInfo",
|
|
6151
|
+
"id": 1
|
|
6152
|
+
},
|
|
6153
|
+
"func_schema": {
|
|
6154
|
+
"rule": "repeated",
|
|
6155
|
+
"type": "schema.FunctionSchema",
|
|
6156
|
+
"id": 2
|
|
6157
|
+
},
|
|
6158
|
+
"do_physical_backfill": {
|
|
6159
|
+
"type": "bool",
|
|
6160
|
+
"id": 3
|
|
6161
|
+
}
|
|
6162
|
+
}
|
|
6163
|
+
},
|
|
6164
|
+
"DropRequest": {
|
|
6165
|
+
"oneofs": {
|
|
6166
|
+
"identifier": {
|
|
6167
|
+
"oneof": [
|
|
6168
|
+
"field_name",
|
|
6169
|
+
"field_id",
|
|
6170
|
+
"function_name"
|
|
6171
|
+
]
|
|
6172
|
+
}
|
|
6173
|
+
},
|
|
6174
|
+
"fields": {
|
|
6175
|
+
"field_name": {
|
|
6176
|
+
"type": "string",
|
|
6177
|
+
"id": 1
|
|
6178
|
+
},
|
|
6179
|
+
"field_id": {
|
|
6180
|
+
"type": "int64",
|
|
6181
|
+
"id": 2
|
|
6182
|
+
},
|
|
6183
|
+
"function_name": {
|
|
6184
|
+
"type": "string",
|
|
6185
|
+
"id": 3
|
|
6186
|
+
}
|
|
6187
|
+
}
|
|
6188
|
+
},
|
|
6189
|
+
"Action": {
|
|
6190
|
+
"oneofs": {
|
|
6191
|
+
"op": {
|
|
6192
|
+
"oneof": [
|
|
6193
|
+
"add_request",
|
|
6194
|
+
"drop_request"
|
|
6195
|
+
]
|
|
6196
|
+
}
|
|
6197
|
+
},
|
|
6198
|
+
"fields": {
|
|
6199
|
+
"add_request": {
|
|
6200
|
+
"type": "AddRequest",
|
|
6201
|
+
"id": 1
|
|
6202
|
+
},
|
|
6203
|
+
"drop_request": {
|
|
6204
|
+
"type": "DropRequest",
|
|
6205
|
+
"id": 2
|
|
6206
|
+
}
|
|
6207
|
+
}
|
|
6208
|
+
}
|
|
6209
|
+
}
|
|
6210
|
+
},
|
|
6211
|
+
"AlterCollectionSchemaResponse": {
|
|
6212
|
+
"fields": {
|
|
6213
|
+
"alter_status": {
|
|
6214
|
+
"type": "common.Status",
|
|
6215
|
+
"id": 1
|
|
6216
|
+
},
|
|
6217
|
+
"index_status": {
|
|
6218
|
+
"type": "common.Status",
|
|
6219
|
+
"id": 2
|
|
6220
|
+
}
|
|
6221
|
+
}
|
|
6222
|
+
},
|
|
6223
|
+
"BatchUpdateManifestRequest": {
|
|
6224
|
+
"options": {
|
|
6225
|
+
"(common.privilege_ext_obj).object_type": "Collection",
|
|
6226
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeInsert",
|
|
6227
|
+
"(common.privilege_ext_obj).object_name_index": 3
|
|
6228
|
+
},
|
|
6229
|
+
"fields": {
|
|
6230
|
+
"base": {
|
|
6231
|
+
"type": "common.MsgBase",
|
|
6232
|
+
"id": 1
|
|
6233
|
+
},
|
|
6234
|
+
"db_name": {
|
|
6235
|
+
"type": "string",
|
|
6236
|
+
"id": 2
|
|
6237
|
+
},
|
|
6238
|
+
"collection_name": {
|
|
6239
|
+
"type": "string",
|
|
6240
|
+
"id": 3
|
|
6241
|
+
},
|
|
6242
|
+
"field_names": {
|
|
6243
|
+
"rule": "repeated",
|
|
6244
|
+
"type": "string",
|
|
6245
|
+
"id": 4
|
|
6246
|
+
},
|
|
6247
|
+
"items": {
|
|
6248
|
+
"rule": "repeated",
|
|
6249
|
+
"type": "BatchUpdateManifestItem",
|
|
6250
|
+
"id": 5
|
|
6251
|
+
}
|
|
6252
|
+
}
|
|
6253
|
+
},
|
|
6254
|
+
"BatchUpdateManifestItem": {
|
|
6255
|
+
"fields": {
|
|
6256
|
+
"segment_id": {
|
|
6257
|
+
"type": "int64",
|
|
6258
|
+
"id": 1
|
|
6259
|
+
},
|
|
6260
|
+
"manifest_version": {
|
|
6261
|
+
"type": "int64",
|
|
6262
|
+
"id": 2
|
|
6263
|
+
}
|
|
6264
|
+
}
|
|
6265
|
+
},
|
|
6266
|
+
"ClientHeartbeatRequest": {
|
|
6267
|
+
"fields": {
|
|
6268
|
+
"client_info": {
|
|
6269
|
+
"type": "common.ClientInfo",
|
|
6270
|
+
"id": 1
|
|
6271
|
+
},
|
|
6272
|
+
"report_timestamp": {
|
|
6273
|
+
"type": "int64",
|
|
6274
|
+
"id": 2
|
|
6275
|
+
},
|
|
6276
|
+
"metrics": {
|
|
6277
|
+
"rule": "repeated",
|
|
6278
|
+
"type": "common.OperationMetrics",
|
|
6279
|
+
"id": 3
|
|
6280
|
+
},
|
|
6281
|
+
"command_replies": {
|
|
6282
|
+
"rule": "repeated",
|
|
6283
|
+
"type": "common.CommandReply",
|
|
6284
|
+
"id": 4
|
|
6285
|
+
},
|
|
6286
|
+
"config_hash": {
|
|
6287
|
+
"type": "string",
|
|
6288
|
+
"id": 5
|
|
6289
|
+
},
|
|
6290
|
+
"last_command_timestamp": {
|
|
6291
|
+
"type": "int64",
|
|
6292
|
+
"id": 6
|
|
6293
|
+
}
|
|
6294
|
+
}
|
|
6295
|
+
},
|
|
6296
|
+
"ClientHeartbeatResponse": {
|
|
6297
|
+
"fields": {
|
|
6298
|
+
"status": {
|
|
6299
|
+
"type": "common.Status",
|
|
6300
|
+
"id": 1
|
|
6301
|
+
},
|
|
6302
|
+
"server_timestamp": {
|
|
6303
|
+
"type": "int64",
|
|
6304
|
+
"id": 2
|
|
6305
|
+
},
|
|
6306
|
+
"commands": {
|
|
6307
|
+
"rule": "repeated",
|
|
6308
|
+
"type": "common.ClientCommand",
|
|
6309
|
+
"id": 3
|
|
6310
|
+
}
|
|
6311
|
+
}
|
|
6312
|
+
},
|
|
6313
|
+
"GetClientTelemetryRequest": {
|
|
6314
|
+
"fields": {
|
|
6315
|
+
"database": {
|
|
6316
|
+
"type": "string",
|
|
6317
|
+
"id": 1
|
|
6318
|
+
},
|
|
6319
|
+
"client_id": {
|
|
6320
|
+
"type": "string",
|
|
6321
|
+
"id": 2
|
|
6322
|
+
},
|
|
6323
|
+
"include_metrics": {
|
|
6324
|
+
"type": "bool",
|
|
6325
|
+
"id": 3
|
|
6326
|
+
}
|
|
6327
|
+
}
|
|
6328
|
+
},
|
|
6329
|
+
"ClientTelemetry": {
|
|
6330
|
+
"fields": {
|
|
6331
|
+
"client_info": {
|
|
6332
|
+
"type": "common.ClientInfo",
|
|
6333
|
+
"id": 1
|
|
6334
|
+
},
|
|
6335
|
+
"last_heartbeat_time": {
|
|
6336
|
+
"type": "int64",
|
|
6337
|
+
"id": 2
|
|
6338
|
+
},
|
|
6339
|
+
"status": {
|
|
6340
|
+
"type": "string",
|
|
6341
|
+
"id": 3
|
|
6342
|
+
},
|
|
6343
|
+
"databases": {
|
|
6344
|
+
"rule": "repeated",
|
|
6345
|
+
"type": "string",
|
|
6346
|
+
"id": 4
|
|
6347
|
+
},
|
|
6348
|
+
"metrics": {
|
|
6349
|
+
"rule": "repeated",
|
|
6350
|
+
"type": "common.OperationMetrics",
|
|
6351
|
+
"id": 5
|
|
6352
|
+
}
|
|
6353
|
+
}
|
|
6354
|
+
},
|
|
6355
|
+
"GetClientTelemetryResponse": {
|
|
6356
|
+
"fields": {
|
|
6357
|
+
"status": {
|
|
6358
|
+
"type": "common.Status",
|
|
6359
|
+
"id": 1
|
|
6360
|
+
},
|
|
6361
|
+
"clients": {
|
|
6362
|
+
"rule": "repeated",
|
|
6363
|
+
"type": "ClientTelemetry",
|
|
6364
|
+
"id": 2
|
|
6365
|
+
},
|
|
6366
|
+
"aggregated": {
|
|
6367
|
+
"type": "common.Metrics",
|
|
6368
|
+
"id": 3
|
|
6369
|
+
}
|
|
6370
|
+
}
|
|
6371
|
+
},
|
|
6372
|
+
"PushClientCommandRequest": {
|
|
6373
|
+
"fields": {
|
|
6374
|
+
"command_type": {
|
|
6375
|
+
"type": "string",
|
|
6376
|
+
"id": 1
|
|
6377
|
+
},
|
|
6378
|
+
"payload": {
|
|
6379
|
+
"type": "bytes",
|
|
6380
|
+
"id": 2
|
|
6381
|
+
},
|
|
6382
|
+
"target_client_id": {
|
|
6383
|
+
"type": "string",
|
|
6384
|
+
"id": 3
|
|
6385
|
+
},
|
|
6386
|
+
"target_database": {
|
|
6387
|
+
"type": "string",
|
|
6388
|
+
"id": 4
|
|
6389
|
+
},
|
|
6390
|
+
"ttl_seconds": {
|
|
6391
|
+
"type": "int64",
|
|
6392
|
+
"id": 5
|
|
6393
|
+
},
|
|
6394
|
+
"persistent": {
|
|
6395
|
+
"type": "bool",
|
|
6396
|
+
"id": 6
|
|
6397
|
+
}
|
|
6398
|
+
}
|
|
6399
|
+
},
|
|
6400
|
+
"PushClientCommandResponse": {
|
|
6401
|
+
"fields": {
|
|
6402
|
+
"status": {
|
|
6403
|
+
"type": "common.Status",
|
|
6404
|
+
"id": 1
|
|
6405
|
+
},
|
|
6406
|
+
"command_id": {
|
|
6407
|
+
"type": "string",
|
|
6408
|
+
"id": 2
|
|
6409
|
+
}
|
|
6410
|
+
}
|
|
6411
|
+
},
|
|
6412
|
+
"DeleteClientCommandRequest": {
|
|
6413
|
+
"fields": {
|
|
6414
|
+
"command_id": {
|
|
6415
|
+
"type": "string",
|
|
6416
|
+
"id": 1
|
|
6417
|
+
}
|
|
6418
|
+
}
|
|
6419
|
+
},
|
|
6420
|
+
"DeleteClientCommandResponse": {
|
|
6421
|
+
"fields": {
|
|
6422
|
+
"status": {
|
|
6423
|
+
"type": "common.Status",
|
|
6424
|
+
"id": 1
|
|
6425
|
+
}
|
|
6426
|
+
}
|
|
6427
|
+
},
|
|
6428
|
+
"RefreshExternalCollectionState": {
|
|
6429
|
+
"values": {
|
|
6430
|
+
"RefreshPending": 0,
|
|
6431
|
+
"RefreshInProgress": 1,
|
|
6432
|
+
"RefreshCompleted": 2,
|
|
6433
|
+
"RefreshFailed": 3
|
|
6434
|
+
}
|
|
6435
|
+
},
|
|
6436
|
+
"RefreshExternalCollectionRequest": {
|
|
6437
|
+
"options": {
|
|
6438
|
+
"(common.privilege_ext_obj).object_type": "Collection",
|
|
6439
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeRefreshExternalCollection",
|
|
6440
|
+
"(common.privilege_ext_obj).object_name_index": 3
|
|
6441
|
+
},
|
|
6442
|
+
"fields": {
|
|
6443
|
+
"base": {
|
|
6444
|
+
"type": "common.MsgBase",
|
|
6445
|
+
"id": 1
|
|
6446
|
+
},
|
|
6447
|
+
"db_name": {
|
|
6448
|
+
"type": "string",
|
|
6449
|
+
"id": 2
|
|
6450
|
+
},
|
|
6451
|
+
"collection_name": {
|
|
6452
|
+
"type": "string",
|
|
6453
|
+
"id": 3
|
|
6454
|
+
},
|
|
6455
|
+
"external_source": {
|
|
6456
|
+
"type": "string",
|
|
6457
|
+
"id": 4
|
|
6458
|
+
},
|
|
6459
|
+
"external_spec": {
|
|
6460
|
+
"type": "string",
|
|
6461
|
+
"id": 5
|
|
6462
|
+
}
|
|
6463
|
+
}
|
|
6464
|
+
},
|
|
6465
|
+
"RefreshExternalCollectionResponse": {
|
|
6466
|
+
"fields": {
|
|
6467
|
+
"status": {
|
|
6468
|
+
"type": "common.Status",
|
|
6469
|
+
"id": 1
|
|
6470
|
+
},
|
|
6471
|
+
"job_id": {
|
|
6472
|
+
"type": "int64",
|
|
6473
|
+
"id": 2
|
|
6474
|
+
}
|
|
6475
|
+
}
|
|
6476
|
+
},
|
|
6477
|
+
"GetRefreshExternalCollectionProgressRequest": {
|
|
6478
|
+
"fields": {
|
|
6479
|
+
"base": {
|
|
6480
|
+
"type": "common.MsgBase",
|
|
6481
|
+
"id": 1
|
|
6482
|
+
},
|
|
6483
|
+
"job_id": {
|
|
6484
|
+
"type": "int64",
|
|
6485
|
+
"id": 2
|
|
6486
|
+
}
|
|
6487
|
+
}
|
|
6488
|
+
},
|
|
6489
|
+
"RefreshExternalCollectionJobInfo": {
|
|
6490
|
+
"fields": {
|
|
6491
|
+
"job_id": {
|
|
6492
|
+
"type": "int64",
|
|
6493
|
+
"id": 1
|
|
6494
|
+
},
|
|
6495
|
+
"collection_name": {
|
|
6496
|
+
"type": "string",
|
|
6497
|
+
"id": 2
|
|
6498
|
+
},
|
|
6499
|
+
"state": {
|
|
6500
|
+
"type": "RefreshExternalCollectionState",
|
|
6501
|
+
"id": 3
|
|
6502
|
+
},
|
|
6503
|
+
"progress": {
|
|
6504
|
+
"type": "int64",
|
|
6505
|
+
"id": 4
|
|
6506
|
+
},
|
|
6507
|
+
"reason": {
|
|
6508
|
+
"type": "string",
|
|
6509
|
+
"id": 5
|
|
6510
|
+
},
|
|
6511
|
+
"external_source": {
|
|
6512
|
+
"type": "string",
|
|
6513
|
+
"id": 6
|
|
6514
|
+
},
|
|
6515
|
+
"start_time": {
|
|
6516
|
+
"type": "int64",
|
|
6517
|
+
"id": 7
|
|
6518
|
+
},
|
|
6519
|
+
"end_time": {
|
|
6520
|
+
"type": "int64",
|
|
6521
|
+
"id": 8
|
|
6522
|
+
},
|
|
6523
|
+
"external_spec": {
|
|
6524
|
+
"type": "string",
|
|
6525
|
+
"id": 9
|
|
6526
|
+
}
|
|
6527
|
+
}
|
|
6528
|
+
},
|
|
6529
|
+
"GetRefreshExternalCollectionProgressResponse": {
|
|
6530
|
+
"fields": {
|
|
6531
|
+
"status": {
|
|
6532
|
+
"type": "common.Status",
|
|
6533
|
+
"id": 1
|
|
6534
|
+
},
|
|
6535
|
+
"job_info": {
|
|
6536
|
+
"type": "RefreshExternalCollectionJobInfo",
|
|
6537
|
+
"id": 2
|
|
6538
|
+
}
|
|
6539
|
+
}
|
|
6540
|
+
},
|
|
6541
|
+
"ListRefreshExternalCollectionJobsRequest": {
|
|
6542
|
+
"fields": {
|
|
6543
|
+
"base": {
|
|
6544
|
+
"type": "common.MsgBase",
|
|
6545
|
+
"id": 1
|
|
6546
|
+
},
|
|
6547
|
+
"db_name": {
|
|
6548
|
+
"type": "string",
|
|
6549
|
+
"id": 2
|
|
6550
|
+
},
|
|
6551
|
+
"collection_name": {
|
|
6552
|
+
"type": "string",
|
|
6553
|
+
"id": 3
|
|
6554
|
+
}
|
|
6555
|
+
}
|
|
6556
|
+
},
|
|
6557
|
+
"ListRefreshExternalCollectionJobsResponse": {
|
|
6558
|
+
"fields": {
|
|
6559
|
+
"status": {
|
|
6560
|
+
"type": "common.Status",
|
|
6561
|
+
"id": 1
|
|
6562
|
+
},
|
|
6563
|
+
"jobs": {
|
|
6564
|
+
"rule": "repeated",
|
|
6565
|
+
"type": "RefreshExternalCollectionJobInfo",
|
|
6566
|
+
"id": 2
|
|
6567
|
+
}
|
|
6568
|
+
}
|
|
6569
|
+
}
|
|
6570
|
+
}
|
|
6571
|
+
},
|
|
6572
|
+
"common": {
|
|
6573
|
+
"options": {
|
|
6574
|
+
"go_package": "github.com/milvus-io/milvus-proto/go-api/v3/commonpb",
|
|
6575
|
+
"java_multiple_files": true,
|
|
6576
|
+
"java_package": "io.milvus.grpc",
|
|
6577
|
+
"java_outer_classname": "CommonProto",
|
|
6578
|
+
"java_generate_equals_and_hash": true,
|
|
6579
|
+
"csharp_namespace": "Milvus.Client.Grpc"
|
|
6580
|
+
},
|
|
6581
|
+
"nested": {
|
|
6582
|
+
"ErrorCode": {
|
|
6583
|
+
"options": {
|
|
6584
|
+
"deprecated": true
|
|
6585
|
+
},
|
|
6586
|
+
"values": {
|
|
6587
|
+
"Success": 0,
|
|
6588
|
+
"UnexpectedError": 1,
|
|
6589
|
+
"ConnectFailed": 2,
|
|
6590
|
+
"PermissionDenied": 3,
|
|
6591
|
+
"CollectionNotExists": 4,
|
|
6592
|
+
"IllegalArgument": 5,
|
|
6593
|
+
"IllegalDimension": 7,
|
|
6594
|
+
"IllegalIndexType": 8,
|
|
6595
|
+
"IllegalCollectionName": 9,
|
|
6596
|
+
"IllegalTOPK": 10,
|
|
6597
|
+
"IllegalRowRecord": 11,
|
|
6598
|
+
"IllegalVectorID": 12,
|
|
6599
|
+
"IllegalSearchResult": 13,
|
|
6600
|
+
"FileNotFound": 14,
|
|
6601
|
+
"MetaFailed": 15,
|
|
6602
|
+
"CacheFailed": 16,
|
|
6603
|
+
"CannotCreateFolder": 17,
|
|
6604
|
+
"CannotCreateFile": 18,
|
|
6605
|
+
"CannotDeleteFolder": 19,
|
|
6606
|
+
"CannotDeleteFile": 20,
|
|
6607
|
+
"BuildIndexError": 21,
|
|
6608
|
+
"IllegalNLIST": 22,
|
|
6609
|
+
"IllegalMetricType": 23,
|
|
6610
|
+
"OutOfMemory": 24,
|
|
6611
|
+
"IndexNotExist": 25,
|
|
6612
|
+
"EmptyCollection": 26,
|
|
6613
|
+
"UpdateImportTaskFailure": 27,
|
|
6614
|
+
"CollectionNameNotFound": 28,
|
|
6615
|
+
"CreateCredentialFailure": 29,
|
|
6616
|
+
"UpdateCredentialFailure": 30,
|
|
6617
|
+
"DeleteCredentialFailure": 31,
|
|
6618
|
+
"GetCredentialFailure": 32,
|
|
6619
|
+
"ListCredUsersFailure": 33,
|
|
6620
|
+
"GetUserFailure": 34,
|
|
6621
|
+
"CreateRoleFailure": 35,
|
|
6622
|
+
"DropRoleFailure": 36,
|
|
6623
|
+
"OperateUserRoleFailure": 37,
|
|
6624
|
+
"SelectRoleFailure": 38,
|
|
6625
|
+
"SelectUserFailure": 39,
|
|
6626
|
+
"SelectResourceFailure": 40,
|
|
6627
|
+
"OperatePrivilegeFailure": 41,
|
|
6628
|
+
"SelectGrantFailure": 42,
|
|
6629
|
+
"RefreshPolicyInfoCacheFailure": 43,
|
|
6630
|
+
"ListPolicyFailure": 44,
|
|
6631
|
+
"NotShardLeader": 45,
|
|
6632
|
+
"NoReplicaAvailable": 46,
|
|
6633
|
+
"SegmentNotFound": 47,
|
|
6634
|
+
"ForceDeny": 48,
|
|
6635
|
+
"RateLimit": 49,
|
|
6636
|
+
"NodeIDNotMatch": 50,
|
|
6637
|
+
"UpsertAutoIDTrue": 51,
|
|
6638
|
+
"InsufficientMemoryToLoad": 52,
|
|
6639
|
+
"MemoryQuotaExhausted": 53,
|
|
6640
|
+
"DiskQuotaExhausted": 54,
|
|
6641
|
+
"TimeTickLongDelay": 55,
|
|
6642
|
+
"NotReadyServe": 56,
|
|
6643
|
+
"NotReadyCoordActivating": 57,
|
|
6644
|
+
"CreatePrivilegeGroupFailure": 58,
|
|
6645
|
+
"DropPrivilegeGroupFailure": 59,
|
|
6646
|
+
"ListPrivilegeGroupsFailure": 60,
|
|
6647
|
+
"OperatePrivilegeGroupFailure": 61,
|
|
6648
|
+
"SchemaMismatch": 62,
|
|
6649
|
+
"DataCoordNA": 100,
|
|
6650
|
+
"DDRequestRace": 1000
|
|
6651
|
+
}
|
|
6652
|
+
},
|
|
6653
|
+
"IndexState": {
|
|
6654
|
+
"values": {
|
|
6655
|
+
"IndexStateNone": 0,
|
|
6656
|
+
"Unissued": 1,
|
|
6657
|
+
"InProgress": 2,
|
|
6658
|
+
"Finished": 3,
|
|
6659
|
+
"Failed": 4,
|
|
6660
|
+
"Retry": 5
|
|
6661
|
+
}
|
|
6662
|
+
},
|
|
6663
|
+
"SegmentState": {
|
|
6664
|
+
"values": {
|
|
6665
|
+
"SegmentStateNone": 0,
|
|
6666
|
+
"NotExist": 1,
|
|
6667
|
+
"Growing": 2,
|
|
6668
|
+
"Sealed": 3,
|
|
6669
|
+
"Flushed": 4,
|
|
6670
|
+
"Flushing": 5,
|
|
6671
|
+
"Dropped": 6,
|
|
6672
|
+
"Importing": 7
|
|
6673
|
+
}
|
|
6674
|
+
},
|
|
6675
|
+
"SegmentLevel": {
|
|
6676
|
+
"values": {
|
|
6677
|
+
"Legacy": 0,
|
|
6678
|
+
"L0": 1,
|
|
6679
|
+
"L1": 2,
|
|
6680
|
+
"L2": 3
|
|
6681
|
+
}
|
|
6682
|
+
},
|
|
6683
|
+
"Status": {
|
|
6684
|
+
"fields": {
|
|
6685
|
+
"error_code": {
|
|
6686
|
+
"type": "ErrorCode",
|
|
6687
|
+
"id": 1,
|
|
6688
|
+
"options": {
|
|
6689
|
+
"deprecated": true
|
|
6690
|
+
}
|
|
6691
|
+
},
|
|
6692
|
+
"reason": {
|
|
6693
|
+
"type": "string",
|
|
6694
|
+
"id": 2
|
|
6695
|
+
},
|
|
6696
|
+
"code": {
|
|
6697
|
+
"type": "int32",
|
|
6698
|
+
"id": 3
|
|
6699
|
+
},
|
|
6700
|
+
"retriable": {
|
|
6701
|
+
"type": "bool",
|
|
6702
|
+
"id": 4
|
|
6703
|
+
},
|
|
6704
|
+
"detail": {
|
|
6705
|
+
"type": "string",
|
|
6706
|
+
"id": 5
|
|
6707
|
+
},
|
|
6708
|
+
"extra_info": {
|
|
6709
|
+
"keyType": "string",
|
|
6710
|
+
"type": "string",
|
|
6711
|
+
"id": 6
|
|
6712
|
+
}
|
|
6713
|
+
}
|
|
6714
|
+
},
|
|
6715
|
+
"KeyValuePair": {
|
|
6716
|
+
"fields": {
|
|
6717
|
+
"key": {
|
|
6718
|
+
"type": "string",
|
|
6719
|
+
"id": 1
|
|
6720
|
+
},
|
|
6721
|
+
"value": {
|
|
6722
|
+
"type": "string",
|
|
6723
|
+
"id": 2
|
|
6724
|
+
}
|
|
6725
|
+
}
|
|
6726
|
+
},
|
|
6727
|
+
"KeyDataPair": {
|
|
6728
|
+
"fields": {
|
|
6729
|
+
"key": {
|
|
6730
|
+
"type": "string",
|
|
6731
|
+
"id": 1
|
|
6732
|
+
},
|
|
6733
|
+
"data": {
|
|
6734
|
+
"type": "bytes",
|
|
5746
6735
|
"id": 2
|
|
5747
6736
|
}
|
|
5748
6737
|
}
|
|
@@ -5788,6 +6777,10 @@ exports.default = {
|
|
|
5788
6777
|
"rule": "repeated",
|
|
5789
6778
|
"type": "bytes",
|
|
5790
6779
|
"id": 3
|
|
6780
|
+
},
|
|
6781
|
+
"element_level": {
|
|
6782
|
+
"type": "bool",
|
|
6783
|
+
"id": 4
|
|
5791
6784
|
}
|
|
5792
6785
|
}
|
|
5793
6786
|
},
|
|
@@ -5813,6 +6806,11 @@ exports.default = {
|
|
|
5813
6806
|
}
|
|
5814
6807
|
},
|
|
5815
6808
|
"MsgType": {
|
|
6809
|
+
"valuesOptions": {
|
|
6810
|
+
"Replicate": {
|
|
6811
|
+
"deprecated": true
|
|
6812
|
+
}
|
|
6813
|
+
},
|
|
5816
6814
|
"values": {
|
|
5817
6815
|
"Undefined": 0,
|
|
5818
6816
|
"CreateCollection": 100,
|
|
@@ -5936,7 +6934,20 @@ exports.default = {
|
|
|
5936
6934
|
"AlterDatabase": 1804,
|
|
5937
6935
|
"DescribeDatabase": 1805,
|
|
5938
6936
|
"AddCollectionField": 1900,
|
|
5939
|
-
"AlterWAL": 2000
|
|
6937
|
+
"AlterWAL": 2000,
|
|
6938
|
+
"CreateSnapshot": 2100,
|
|
6939
|
+
"DropSnapshot": 2101,
|
|
6940
|
+
"ListSnapshots": 2102,
|
|
6941
|
+
"DescribeSnapshot": 2103,
|
|
6942
|
+
"RestoreSnapshot": 2104,
|
|
6943
|
+
"GetRestoreSnapshotState": 2105,
|
|
6944
|
+
"ListRestoreSnapshotJobs": 2106,
|
|
6945
|
+
"PinSnapshotData": 2107,
|
|
6946
|
+
"UnpinSnapshotData": 2108,
|
|
6947
|
+
"AlterCollectionSchema": 2200,
|
|
6948
|
+
"RefreshExternalCollection": 2300,
|
|
6949
|
+
"GetRefreshExternalCollectionProgress": 2301,
|
|
6950
|
+
"ListRefreshExternalCollectionJobs": 2302
|
|
5940
6951
|
}
|
|
5941
6952
|
},
|
|
5942
6953
|
"MsgBase": {
|
|
@@ -5968,11 +6979,17 @@ exports.default = {
|
|
|
5968
6979
|
},
|
|
5969
6980
|
"replicateInfo": {
|
|
5970
6981
|
"type": "ReplicateInfo",
|
|
5971
|
-
"id": 7
|
|
6982
|
+
"id": 7,
|
|
6983
|
+
"options": {
|
|
6984
|
+
"deprecated": true
|
|
6985
|
+
}
|
|
5972
6986
|
}
|
|
5973
6987
|
}
|
|
5974
6988
|
},
|
|
5975
6989
|
"ReplicateInfo": {
|
|
6990
|
+
"options": {
|
|
6991
|
+
"deprecated": true
|
|
6992
|
+
},
|
|
5976
6993
|
"fields": {
|
|
5977
6994
|
"isReplicate": {
|
|
5978
6995
|
"type": "bool",
|
|
@@ -6126,7 +7143,16 @@ exports.default = {
|
|
|
6126
7143
|
"PrivilegeRemoveFileResource": 73,
|
|
6127
7144
|
"PrivilegeListFileResources": 74,
|
|
6128
7145
|
"PrivilegeUpdateReplicateConfiguration": 78,
|
|
6129
|
-
"
|
|
7146
|
+
"PrivilegeCreateSnapshot": 79,
|
|
7147
|
+
"PrivilegeDropSnapshot": 80,
|
|
7148
|
+
"PrivilegeDescribeSnapshot": 81,
|
|
7149
|
+
"PrivilegeListSnapshots": 82,
|
|
7150
|
+
"PrivilegeRestoreSnapshot": 83,
|
|
7151
|
+
"PrivilegeAlterCollectionSchema": 84,
|
|
7152
|
+
"PrivilegeGetReplicateConfiguration": 85,
|
|
7153
|
+
"PrivilegeRefreshExternalCollection": 86,
|
|
7154
|
+
"PrivilegePinSnapshotData": 87,
|
|
7155
|
+
"PrivilegeUnpinSnapshotData": 88
|
|
6130
7156
|
}
|
|
6131
7157
|
},
|
|
6132
7158
|
"PrivilegeExt": {
|
|
@@ -6212,6 +7238,99 @@ exports.default = {
|
|
|
6212
7238
|
}
|
|
6213
7239
|
}
|
|
6214
7240
|
},
|
|
7241
|
+
"Metrics": {
|
|
7242
|
+
"fields": {
|
|
7243
|
+
"request_count": {
|
|
7244
|
+
"type": "int64",
|
|
7245
|
+
"id": 1
|
|
7246
|
+
},
|
|
7247
|
+
"success_count": {
|
|
7248
|
+
"type": "int64",
|
|
7249
|
+
"id": 2
|
|
7250
|
+
},
|
|
7251
|
+
"error_count": {
|
|
7252
|
+
"type": "int64",
|
|
7253
|
+
"id": 3
|
|
7254
|
+
},
|
|
7255
|
+
"avg_latency_ms": {
|
|
7256
|
+
"type": "double",
|
|
7257
|
+
"id": 4
|
|
7258
|
+
},
|
|
7259
|
+
"p99_latency_ms": {
|
|
7260
|
+
"type": "double",
|
|
7261
|
+
"id": 5
|
|
7262
|
+
},
|
|
7263
|
+
"max_latency_ms": {
|
|
7264
|
+
"type": "double",
|
|
7265
|
+
"id": 6
|
|
7266
|
+
}
|
|
7267
|
+
}
|
|
7268
|
+
},
|
|
7269
|
+
"OperationMetrics": {
|
|
7270
|
+
"fields": {
|
|
7271
|
+
"operation": {
|
|
7272
|
+
"type": "string",
|
|
7273
|
+
"id": 1
|
|
7274
|
+
},
|
|
7275
|
+
"global": {
|
|
7276
|
+
"type": "Metrics",
|
|
7277
|
+
"id": 2
|
|
7278
|
+
},
|
|
7279
|
+
"collection_metrics": {
|
|
7280
|
+
"keyType": "string",
|
|
7281
|
+
"type": "Metrics",
|
|
7282
|
+
"id": 3
|
|
7283
|
+
}
|
|
7284
|
+
}
|
|
7285
|
+
},
|
|
7286
|
+
"ClientCommand": {
|
|
7287
|
+
"fields": {
|
|
7288
|
+
"command_id": {
|
|
7289
|
+
"type": "string",
|
|
7290
|
+
"id": 1
|
|
7291
|
+
},
|
|
7292
|
+
"command_type": {
|
|
7293
|
+
"type": "string",
|
|
7294
|
+
"id": 2
|
|
7295
|
+
},
|
|
7296
|
+
"payload": {
|
|
7297
|
+
"type": "bytes",
|
|
7298
|
+
"id": 3
|
|
7299
|
+
},
|
|
7300
|
+
"create_time": {
|
|
7301
|
+
"type": "int64",
|
|
7302
|
+
"id": 4
|
|
7303
|
+
},
|
|
7304
|
+
"persistent": {
|
|
7305
|
+
"type": "bool",
|
|
7306
|
+
"id": 5
|
|
7307
|
+
},
|
|
7308
|
+
"target_scope": {
|
|
7309
|
+
"type": "string",
|
|
7310
|
+
"id": 6
|
|
7311
|
+
}
|
|
7312
|
+
}
|
|
7313
|
+
},
|
|
7314
|
+
"CommandReply": {
|
|
7315
|
+
"fields": {
|
|
7316
|
+
"command_id": {
|
|
7317
|
+
"type": "string",
|
|
7318
|
+
"id": 1
|
|
7319
|
+
},
|
|
7320
|
+
"success": {
|
|
7321
|
+
"type": "bool",
|
|
7322
|
+
"id": 2
|
|
7323
|
+
},
|
|
7324
|
+
"error_message": {
|
|
7325
|
+
"type": "string",
|
|
7326
|
+
"id": 3
|
|
7327
|
+
},
|
|
7328
|
+
"payload": {
|
|
7329
|
+
"type": "bytes",
|
|
7330
|
+
"id": 4
|
|
7331
|
+
}
|
|
7332
|
+
}
|
|
7333
|
+
},
|
|
6215
7334
|
"ServerInfo": {
|
|
6216
7335
|
"fields": {
|
|
6217
7336
|
"build_tags": {
|
|
@@ -6422,12 +7541,100 @@ exports.default = {
|
|
|
6422
7541
|
"id": 2
|
|
6423
7542
|
}
|
|
6424
7543
|
}
|
|
7544
|
+
},
|
|
7545
|
+
"MetricAggSpec": {
|
|
7546
|
+
"fields": {
|
|
7547
|
+
"op": {
|
|
7548
|
+
"type": "string",
|
|
7549
|
+
"id": 1
|
|
7550
|
+
},
|
|
7551
|
+
"field_name": {
|
|
7552
|
+
"type": "string",
|
|
7553
|
+
"id": 2
|
|
7554
|
+
}
|
|
7555
|
+
}
|
|
7556
|
+
},
|
|
7557
|
+
"SortSpec": {
|
|
7558
|
+
"fields": {
|
|
7559
|
+
"field_name": {
|
|
7560
|
+
"type": "string",
|
|
7561
|
+
"id": 1
|
|
7562
|
+
},
|
|
7563
|
+
"direction": {
|
|
7564
|
+
"type": "string",
|
|
7565
|
+
"id": 2
|
|
7566
|
+
},
|
|
7567
|
+
"null_first": {
|
|
7568
|
+
"type": "bool",
|
|
7569
|
+
"id": 3
|
|
7570
|
+
}
|
|
7571
|
+
}
|
|
7572
|
+
},
|
|
7573
|
+
"TopHitsSpec": {
|
|
7574
|
+
"fields": {
|
|
7575
|
+
"size": {
|
|
7576
|
+
"type": "int64",
|
|
7577
|
+
"id": 1
|
|
7578
|
+
},
|
|
7579
|
+
"sort": {
|
|
7580
|
+
"rule": "repeated",
|
|
7581
|
+
"type": "SortSpec",
|
|
7582
|
+
"id": 2
|
|
7583
|
+
}
|
|
7584
|
+
}
|
|
7585
|
+
},
|
|
7586
|
+
"OrderSpec": {
|
|
7587
|
+
"fields": {
|
|
7588
|
+
"key": {
|
|
7589
|
+
"type": "string",
|
|
7590
|
+
"id": 1
|
|
7591
|
+
},
|
|
7592
|
+
"direction": {
|
|
7593
|
+
"type": "string",
|
|
7594
|
+
"id": 2
|
|
7595
|
+
},
|
|
7596
|
+
"null_first": {
|
|
7597
|
+
"type": "bool",
|
|
7598
|
+
"id": 3
|
|
7599
|
+
}
|
|
7600
|
+
}
|
|
7601
|
+
},
|
|
7602
|
+
"SearchAggregationSpec": {
|
|
7603
|
+
"fields": {
|
|
7604
|
+
"fields": {
|
|
7605
|
+
"rule": "repeated",
|
|
7606
|
+
"type": "string",
|
|
7607
|
+
"id": 1
|
|
7608
|
+
},
|
|
7609
|
+
"size": {
|
|
7610
|
+
"type": "int64",
|
|
7611
|
+
"id": 2
|
|
7612
|
+
},
|
|
7613
|
+
"metrics": {
|
|
7614
|
+
"keyType": "string",
|
|
7615
|
+
"type": "MetricAggSpec",
|
|
7616
|
+
"id": 3
|
|
7617
|
+
},
|
|
7618
|
+
"order": {
|
|
7619
|
+
"rule": "repeated",
|
|
7620
|
+
"type": "OrderSpec",
|
|
7621
|
+
"id": 4
|
|
7622
|
+
},
|
|
7623
|
+
"top_hits": {
|
|
7624
|
+
"type": "TopHitsSpec",
|
|
7625
|
+
"id": 5
|
|
7626
|
+
},
|
|
7627
|
+
"sub_aggregation": {
|
|
7628
|
+
"type": "SearchAggregationSpec",
|
|
7629
|
+
"id": 6
|
|
7630
|
+
}
|
|
7631
|
+
}
|
|
6425
7632
|
}
|
|
6426
7633
|
}
|
|
6427
7634
|
},
|
|
6428
7635
|
"rg": {
|
|
6429
7636
|
"options": {
|
|
6430
|
-
"go_package": "github.com/milvus-io/milvus-proto/go-api/
|
|
7637
|
+
"go_package": "github.com/milvus-io/milvus-proto/go-api/v3/rgpb",
|
|
6431
7638
|
"java_multiple_files": true,
|
|
6432
7639
|
"java_package": "io.milvus.grpc",
|
|
6433
7640
|
"java_outer_classname": "ResourceGroupProto",
|
|
@@ -6490,7 +7697,7 @@ exports.default = {
|
|
|
6490
7697
|
},
|
|
6491
7698
|
"schema": {
|
|
6492
7699
|
"options": {
|
|
6493
|
-
"go_package": "github.com/milvus-io/milvus-proto/go-api/
|
|
7700
|
+
"go_package": "github.com/milvus-io/milvus-proto/go-api/v3/schemapb",
|
|
6494
7701
|
"java_multiple_files": true,
|
|
6495
7702
|
"java_package": "io.milvus.grpc",
|
|
6496
7703
|
"java_outer_classname": "SchemaProto",
|
|
@@ -6515,6 +7722,7 @@ exports.default = {
|
|
|
6515
7722
|
"Geometry": 24,
|
|
6516
7723
|
"Text": 25,
|
|
6517
7724
|
"Timestamptz": 26,
|
|
7725
|
+
"Mol": 27,
|
|
6518
7726
|
"BinaryVector": 100,
|
|
6519
7727
|
"FloatVector": 101,
|
|
6520
7728
|
"Float16Vector": 102,
|
|
@@ -6531,7 +7739,9 @@ exports.default = {
|
|
|
6531
7739
|
"Unknown": 0,
|
|
6532
7740
|
"BM25": 1,
|
|
6533
7741
|
"TextEmbedding": 2,
|
|
6534
|
-
"Rerank": 3
|
|
7742
|
+
"Rerank": 3,
|
|
7743
|
+
"MinHash": 4,
|
|
7744
|
+
"MolFingerprint": 5
|
|
6535
7745
|
}
|
|
6536
7746
|
},
|
|
6537
7747
|
"FieldState": {
|
|
@@ -6609,6 +7819,10 @@ exports.default = {
|
|
|
6609
7819
|
"is_function_output": {
|
|
6610
7820
|
"type": "bool",
|
|
6611
7821
|
"id": 16
|
|
7822
|
+
},
|
|
7823
|
+
"external_field": {
|
|
7824
|
+
"type": "string",
|
|
7825
|
+
"id": 17
|
|
6612
7826
|
}
|
|
6613
7827
|
}
|
|
6614
7828
|
},
|
|
@@ -6720,6 +7934,23 @@ exports.default = {
|
|
|
6720
7934
|
"type": "int32",
|
|
6721
7935
|
"id": 10
|
|
6722
7936
|
},
|
|
7937
|
+
"external_source": {
|
|
7938
|
+
"type": "string",
|
|
7939
|
+
"id": 11
|
|
7940
|
+
},
|
|
7941
|
+
"external_spec": {
|
|
7942
|
+
"type": "string",
|
|
7943
|
+
"id": 12
|
|
7944
|
+
},
|
|
7945
|
+
"do_physical_backfill": {
|
|
7946
|
+
"type": "bool",
|
|
7947
|
+
"id": 13
|
|
7948
|
+
},
|
|
7949
|
+
"file_resource_ids": {
|
|
7950
|
+
"rule": "repeated",
|
|
7951
|
+
"type": "int64",
|
|
7952
|
+
"id": 14
|
|
7953
|
+
},
|
|
6723
7954
|
"enable_namespace": {
|
|
6724
7955
|
"type": "bool",
|
|
6725
7956
|
"id": 15
|
|
@@ -6749,6 +7980,10 @@ exports.default = {
|
|
|
6749
7980
|
"rule": "repeated",
|
|
6750
7981
|
"type": "common.KeyValuePair",
|
|
6751
7982
|
"id": 5
|
|
7983
|
+
},
|
|
7984
|
+
"nullable": {
|
|
7985
|
+
"type": "bool",
|
|
7986
|
+
"id": 6
|
|
6752
7987
|
}
|
|
6753
7988
|
}
|
|
6754
7989
|
},
|
|
@@ -6864,6 +8099,24 @@ exports.default = {
|
|
|
6864
8099
|
}
|
|
6865
8100
|
}
|
|
6866
8101
|
},
|
|
8102
|
+
"MolArray": {
|
|
8103
|
+
"fields": {
|
|
8104
|
+
"data": {
|
|
8105
|
+
"rule": "repeated",
|
|
8106
|
+
"type": "bytes",
|
|
8107
|
+
"id": 1
|
|
8108
|
+
}
|
|
8109
|
+
}
|
|
8110
|
+
},
|
|
8111
|
+
"MolSmilesArray": {
|
|
8112
|
+
"fields": {
|
|
8113
|
+
"data": {
|
|
8114
|
+
"rule": "repeated",
|
|
8115
|
+
"type": "string",
|
|
8116
|
+
"id": 1
|
|
8117
|
+
}
|
|
8118
|
+
}
|
|
8119
|
+
},
|
|
6867
8120
|
"ValueField": {
|
|
6868
8121
|
"oneofs": {
|
|
6869
8122
|
"data": {
|
|
@@ -6929,7 +8182,9 @@ exports.default = {
|
|
|
6929
8182
|
"json_data",
|
|
6930
8183
|
"geometry_data",
|
|
6931
8184
|
"timestamptz_data",
|
|
6932
|
-
"geometry_wkt_data"
|
|
8185
|
+
"geometry_wkt_data",
|
|
8186
|
+
"mol_data",
|
|
8187
|
+
"mol_smiles_data"
|
|
6933
8188
|
]
|
|
6934
8189
|
}
|
|
6935
8190
|
},
|
|
@@ -6981,6 +8236,14 @@ exports.default = {
|
|
|
6981
8236
|
"geometry_wkt_data": {
|
|
6982
8237
|
"type": "GeometryWktArray",
|
|
6983
8238
|
"id": 12
|
|
8239
|
+
},
|
|
8240
|
+
"mol_data": {
|
|
8241
|
+
"type": "MolArray",
|
|
8242
|
+
"id": 13
|
|
8243
|
+
},
|
|
8244
|
+
"mol_smiles_data": {
|
|
8245
|
+
"type": "MolSmilesArray",
|
|
8246
|
+
"id": 14
|
|
6984
8247
|
}
|
|
6985
8248
|
}
|
|
6986
8249
|
},
|
|
@@ -7072,6 +8335,27 @@ exports.default = {
|
|
|
7072
8335
|
}
|
|
7073
8336
|
}
|
|
7074
8337
|
},
|
|
8338
|
+
"FieldPartialUpdateOp": {
|
|
8339
|
+
"fields": {
|
|
8340
|
+
"field_name": {
|
|
8341
|
+
"type": "string",
|
|
8342
|
+
"id": 1
|
|
8343
|
+
},
|
|
8344
|
+
"op": {
|
|
8345
|
+
"type": "OpType",
|
|
8346
|
+
"id": 2
|
|
8347
|
+
}
|
|
8348
|
+
},
|
|
8349
|
+
"nested": {
|
|
8350
|
+
"OpType": {
|
|
8351
|
+
"values": {
|
|
8352
|
+
"REPLACE": 0,
|
|
8353
|
+
"ARRAY_APPEND": 1,
|
|
8354
|
+
"ARRAY_REMOVE": 2
|
|
8355
|
+
}
|
|
8356
|
+
}
|
|
8357
|
+
}
|
|
8358
|
+
},
|
|
7075
8359
|
"FieldData": {
|
|
7076
8360
|
"oneofs": {
|
|
7077
8361
|
"field": {
|
|
@@ -7224,6 +8508,199 @@ exports.default = {
|
|
|
7224
8508
|
"rule": "repeated",
|
|
7225
8509
|
"type": "common.HighlightResult",
|
|
7226
8510
|
"id": 14
|
|
8511
|
+
},
|
|
8512
|
+
"element_indices": {
|
|
8513
|
+
"type": "LongArray",
|
|
8514
|
+
"id": 15
|
|
8515
|
+
},
|
|
8516
|
+
"group_by_field_values": {
|
|
8517
|
+
"rule": "repeated",
|
|
8518
|
+
"type": "FieldData",
|
|
8519
|
+
"id": 17
|
|
8520
|
+
},
|
|
8521
|
+
"agg_buckets": {
|
|
8522
|
+
"rule": "repeated",
|
|
8523
|
+
"type": "AggBucket",
|
|
8524
|
+
"id": 18
|
|
8525
|
+
},
|
|
8526
|
+
"agg_topks": {
|
|
8527
|
+
"rule": "repeated",
|
|
8528
|
+
"type": "int64",
|
|
8529
|
+
"id": 19
|
|
8530
|
+
}
|
|
8531
|
+
},
|
|
8532
|
+
"reserved": [
|
|
8533
|
+
[
|
|
8534
|
+
16,
|
|
8535
|
+
16
|
|
8536
|
+
]
|
|
8537
|
+
]
|
|
8538
|
+
},
|
|
8539
|
+
"AggBucket": {
|
|
8540
|
+
"fields": {
|
|
8541
|
+
"key": {
|
|
8542
|
+
"rule": "repeated",
|
|
8543
|
+
"type": "BucketKeyEntry",
|
|
8544
|
+
"id": 1
|
|
8545
|
+
},
|
|
8546
|
+
"count": {
|
|
8547
|
+
"type": "int64",
|
|
8548
|
+
"id": 2
|
|
8549
|
+
},
|
|
8550
|
+
"metrics": {
|
|
8551
|
+
"keyType": "string",
|
|
8552
|
+
"type": "MetricValue",
|
|
8553
|
+
"id": 3
|
|
8554
|
+
},
|
|
8555
|
+
"hits": {
|
|
8556
|
+
"rule": "repeated",
|
|
8557
|
+
"type": "AggHit",
|
|
8558
|
+
"id": 4
|
|
8559
|
+
},
|
|
8560
|
+
"sub_groups": {
|
|
8561
|
+
"rule": "repeated",
|
|
8562
|
+
"type": "AggBucket",
|
|
8563
|
+
"id": 5
|
|
8564
|
+
}
|
|
8565
|
+
}
|
|
8566
|
+
},
|
|
8567
|
+
"MetricValue": {
|
|
8568
|
+
"oneofs": {
|
|
8569
|
+
"value": {
|
|
8570
|
+
"oneof": [
|
|
8571
|
+
"int_val",
|
|
8572
|
+
"double_val",
|
|
8573
|
+
"string_val",
|
|
8574
|
+
"bool_val"
|
|
8575
|
+
]
|
|
8576
|
+
}
|
|
8577
|
+
},
|
|
8578
|
+
"fields": {
|
|
8579
|
+
"int_val": {
|
|
8580
|
+
"type": "int64",
|
|
8581
|
+
"id": 1
|
|
8582
|
+
},
|
|
8583
|
+
"double_val": {
|
|
8584
|
+
"type": "double",
|
|
8585
|
+
"id": 2
|
|
8586
|
+
},
|
|
8587
|
+
"string_val": {
|
|
8588
|
+
"type": "string",
|
|
8589
|
+
"id": 3
|
|
8590
|
+
},
|
|
8591
|
+
"bool_val": {
|
|
8592
|
+
"type": "bool",
|
|
8593
|
+
"id": 4
|
|
8594
|
+
}
|
|
8595
|
+
}
|
|
8596
|
+
},
|
|
8597
|
+
"BucketKeyEntry": {
|
|
8598
|
+
"oneofs": {
|
|
8599
|
+
"value": {
|
|
8600
|
+
"oneof": [
|
|
8601
|
+
"int_val",
|
|
8602
|
+
"string_val",
|
|
8603
|
+
"bool_val"
|
|
8604
|
+
]
|
|
8605
|
+
}
|
|
8606
|
+
},
|
|
8607
|
+
"fields": {
|
|
8608
|
+
"field_id": {
|
|
8609
|
+
"type": "int64",
|
|
8610
|
+
"id": 1
|
|
8611
|
+
},
|
|
8612
|
+
"field_name": {
|
|
8613
|
+
"type": "string",
|
|
8614
|
+
"id": 2
|
|
8615
|
+
},
|
|
8616
|
+
"int_val": {
|
|
8617
|
+
"type": "int64",
|
|
8618
|
+
"id": 3
|
|
8619
|
+
},
|
|
8620
|
+
"string_val": {
|
|
8621
|
+
"type": "string",
|
|
8622
|
+
"id": 4
|
|
8623
|
+
},
|
|
8624
|
+
"bool_val": {
|
|
8625
|
+
"type": "bool",
|
|
8626
|
+
"id": 5
|
|
8627
|
+
}
|
|
8628
|
+
}
|
|
8629
|
+
},
|
|
8630
|
+
"AggHit": {
|
|
8631
|
+
"oneofs": {
|
|
8632
|
+
"pk": {
|
|
8633
|
+
"oneof": [
|
|
8634
|
+
"int_pk",
|
|
8635
|
+
"str_pk"
|
|
8636
|
+
]
|
|
8637
|
+
}
|
|
8638
|
+
},
|
|
8639
|
+
"fields": {
|
|
8640
|
+
"int_pk": {
|
|
8641
|
+
"type": "int64",
|
|
8642
|
+
"id": 1
|
|
8643
|
+
},
|
|
8644
|
+
"str_pk": {
|
|
8645
|
+
"type": "string",
|
|
8646
|
+
"id": 2
|
|
8647
|
+
},
|
|
8648
|
+
"score": {
|
|
8649
|
+
"type": "float",
|
|
8650
|
+
"id": 3
|
|
8651
|
+
},
|
|
8652
|
+
"fields": {
|
|
8653
|
+
"rule": "repeated",
|
|
8654
|
+
"type": "AggHitField",
|
|
8655
|
+
"id": 4
|
|
8656
|
+
}
|
|
8657
|
+
}
|
|
8658
|
+
},
|
|
8659
|
+
"AggHitField": {
|
|
8660
|
+
"oneofs": {
|
|
8661
|
+
"value": {
|
|
8662
|
+
"oneof": [
|
|
8663
|
+
"int_val",
|
|
8664
|
+
"bool_val",
|
|
8665
|
+
"float_val",
|
|
8666
|
+
"double_val",
|
|
8667
|
+
"string_val",
|
|
8668
|
+
"bytes_val"
|
|
8669
|
+
]
|
|
8670
|
+
}
|
|
8671
|
+
},
|
|
8672
|
+
"fields": {
|
|
8673
|
+
"field_id": {
|
|
8674
|
+
"type": "int64",
|
|
8675
|
+
"id": 1
|
|
8676
|
+
},
|
|
8677
|
+
"field_name": {
|
|
8678
|
+
"type": "string",
|
|
8679
|
+
"id": 2
|
|
8680
|
+
},
|
|
8681
|
+
"int_val": {
|
|
8682
|
+
"type": "int64",
|
|
8683
|
+
"id": 3
|
|
8684
|
+
},
|
|
8685
|
+
"bool_val": {
|
|
8686
|
+
"type": "bool",
|
|
8687
|
+
"id": 4
|
|
8688
|
+
},
|
|
8689
|
+
"float_val": {
|
|
8690
|
+
"type": "float",
|
|
8691
|
+
"id": 5
|
|
8692
|
+
},
|
|
8693
|
+
"double_val": {
|
|
8694
|
+
"type": "double",
|
|
8695
|
+
"id": 6
|
|
8696
|
+
},
|
|
8697
|
+
"string_val": {
|
|
8698
|
+
"type": "string",
|
|
8699
|
+
"id": 7
|
|
8700
|
+
},
|
|
8701
|
+
"bytes_val": {
|
|
8702
|
+
"type": "bytes",
|
|
8703
|
+
"id": 8
|
|
7227
8704
|
}
|
|
7228
8705
|
}
|
|
7229
8706
|
},
|
|
@@ -7349,7 +8826,7 @@ exports.default = {
|
|
|
7349
8826
|
},
|
|
7350
8827
|
"feder": {
|
|
7351
8828
|
"options": {
|
|
7352
|
-
"go_package": "github.com/milvus-io/milvus-proto/go-api/
|
|
8829
|
+
"go_package": "github.com/milvus-io/milvus-proto/go-api/v3/federpb"
|
|
7353
8830
|
},
|
|
7354
8831
|
"nested": {
|
|
7355
8832
|
"SegmentIndexData": {
|
|
@@ -7448,7 +8925,7 @@ exports.default = {
|
|
|
7448
8925
|
},
|
|
7449
8926
|
"msg": {
|
|
7450
8927
|
"options": {
|
|
7451
|
-
"go_package": "github.com/milvus-io/milvus-proto/go-api/
|
|
8928
|
+
"go_package": "github.com/milvus-io/milvus-proto/go-api/v3/msgpb"
|
|
7452
8929
|
},
|
|
7453
8930
|
"nested": {
|
|
7454
8931
|
"InsertDataVersion": {
|
|
@@ -7805,6 +9282,9 @@ exports.default = {
|
|
|
7805
9282
|
}
|
|
7806
9283
|
},
|
|
7807
9284
|
"ReplicateMsg": {
|
|
9285
|
+
"options": {
|
|
9286
|
+
"deprecated": true
|
|
9287
|
+
},
|
|
7808
9288
|
"fields": {
|
|
7809
9289
|
"base": {
|
|
7810
9290
|
"type": "common.MsgBase",
|
|
@@ -7895,15 +9375,40 @@ exports.default = {
|
|
|
7895
9375
|
"protobuf": {
|
|
7896
9376
|
"nested": {
|
|
7897
9377
|
"FileDescriptorSet": {
|
|
9378
|
+
"edition": "proto2",
|
|
7898
9379
|
"fields": {
|
|
7899
9380
|
"file": {
|
|
7900
9381
|
"rule": "repeated",
|
|
7901
9382
|
"type": "FileDescriptorProto",
|
|
7902
9383
|
"id": 1
|
|
7903
9384
|
}
|
|
9385
|
+
},
|
|
9386
|
+
"extensions": [
|
|
9387
|
+
[
|
|
9388
|
+
536000000,
|
|
9389
|
+
536000000
|
|
9390
|
+
]
|
|
9391
|
+
]
|
|
9392
|
+
},
|
|
9393
|
+
"Edition": {
|
|
9394
|
+
"edition": "proto2",
|
|
9395
|
+
"values": {
|
|
9396
|
+
"EDITION_UNKNOWN": 0,
|
|
9397
|
+
"EDITION_LEGACY": 900,
|
|
9398
|
+
"EDITION_PROTO2": 998,
|
|
9399
|
+
"EDITION_PROTO3": 999,
|
|
9400
|
+
"EDITION_2023": 1000,
|
|
9401
|
+
"EDITION_2024": 1001,
|
|
9402
|
+
"EDITION_1_TEST_ONLY": 1,
|
|
9403
|
+
"EDITION_2_TEST_ONLY": 2,
|
|
9404
|
+
"EDITION_99997_TEST_ONLY": 99997,
|
|
9405
|
+
"EDITION_99998_TEST_ONLY": 99998,
|
|
9406
|
+
"EDITION_99999_TEST_ONLY": 99999,
|
|
9407
|
+
"EDITION_MAX": 2147483647
|
|
7904
9408
|
}
|
|
7905
9409
|
},
|
|
7906
9410
|
"FileDescriptorProto": {
|
|
9411
|
+
"edition": "proto2",
|
|
7907
9412
|
"fields": {
|
|
7908
9413
|
"name": {
|
|
7909
9414
|
"type": "string",
|
|
@@ -7918,28 +9423,27 @@ exports.default = {
|
|
|
7918
9423
|
"type": "string",
|
|
7919
9424
|
"id": 3
|
|
7920
9425
|
},
|
|
7921
|
-
"
|
|
9426
|
+
"publicDependency": {
|
|
7922
9427
|
"rule": "repeated",
|
|
7923
9428
|
"type": "int32",
|
|
7924
|
-
"id": 10
|
|
7925
|
-
"options": {
|
|
7926
|
-
"packed": false
|
|
7927
|
-
}
|
|
9429
|
+
"id": 10
|
|
7928
9430
|
},
|
|
7929
|
-
"
|
|
9431
|
+
"weakDependency": {
|
|
7930
9432
|
"rule": "repeated",
|
|
7931
9433
|
"type": "int32",
|
|
7932
|
-
"id": 11
|
|
7933
|
-
"options": {
|
|
7934
|
-
"packed": false
|
|
7935
|
-
}
|
|
9434
|
+
"id": 11
|
|
7936
9435
|
},
|
|
7937
|
-
"
|
|
9436
|
+
"optionDependency": {
|
|
9437
|
+
"rule": "repeated",
|
|
9438
|
+
"type": "string",
|
|
9439
|
+
"id": 15
|
|
9440
|
+
},
|
|
9441
|
+
"messageType": {
|
|
7938
9442
|
"rule": "repeated",
|
|
7939
9443
|
"type": "DescriptorProto",
|
|
7940
9444
|
"id": 4
|
|
7941
9445
|
},
|
|
7942
|
-
"
|
|
9446
|
+
"enumType": {
|
|
7943
9447
|
"rule": "repeated",
|
|
7944
9448
|
"type": "EnumDescriptorProto",
|
|
7945
9449
|
"id": 5
|
|
@@ -7958,17 +9462,22 @@ exports.default = {
|
|
|
7958
9462
|
"type": "FileOptions",
|
|
7959
9463
|
"id": 8
|
|
7960
9464
|
},
|
|
7961
|
-
"
|
|
9465
|
+
"sourceCodeInfo": {
|
|
7962
9466
|
"type": "SourceCodeInfo",
|
|
7963
9467
|
"id": 9
|
|
7964
9468
|
},
|
|
7965
9469
|
"syntax": {
|
|
7966
9470
|
"type": "string",
|
|
7967
9471
|
"id": 12
|
|
9472
|
+
},
|
|
9473
|
+
"edition": {
|
|
9474
|
+
"type": "Edition",
|
|
9475
|
+
"id": 14
|
|
7968
9476
|
}
|
|
7969
9477
|
}
|
|
7970
9478
|
},
|
|
7971
9479
|
"DescriptorProto": {
|
|
9480
|
+
"edition": "proto2",
|
|
7972
9481
|
"fields": {
|
|
7973
9482
|
"name": {
|
|
7974
9483
|
"type": "string",
|
|
@@ -7984,22 +9493,22 @@ exports.default = {
|
|
|
7984
9493
|
"type": "FieldDescriptorProto",
|
|
7985
9494
|
"id": 6
|
|
7986
9495
|
},
|
|
7987
|
-
"
|
|
9496
|
+
"nestedType": {
|
|
7988
9497
|
"rule": "repeated",
|
|
7989
9498
|
"type": "DescriptorProto",
|
|
7990
9499
|
"id": 3
|
|
7991
9500
|
},
|
|
7992
|
-
"
|
|
9501
|
+
"enumType": {
|
|
7993
9502
|
"rule": "repeated",
|
|
7994
9503
|
"type": "EnumDescriptorProto",
|
|
7995
9504
|
"id": 4
|
|
7996
9505
|
},
|
|
7997
|
-
"
|
|
9506
|
+
"extensionRange": {
|
|
7998
9507
|
"rule": "repeated",
|
|
7999
9508
|
"type": "ExtensionRange",
|
|
8000
9509
|
"id": 5
|
|
8001
9510
|
},
|
|
8002
|
-
"
|
|
9511
|
+
"oneofDecl": {
|
|
8003
9512
|
"rule": "repeated",
|
|
8004
9513
|
"type": "OneofDescriptorProto",
|
|
8005
9514
|
"id": 8
|
|
@@ -8008,15 +9517,19 @@ exports.default = {
|
|
|
8008
9517
|
"type": "MessageOptions",
|
|
8009
9518
|
"id": 7
|
|
8010
9519
|
},
|
|
8011
|
-
"
|
|
9520
|
+
"reservedRange": {
|
|
8012
9521
|
"rule": "repeated",
|
|
8013
9522
|
"type": "ReservedRange",
|
|
8014
9523
|
"id": 9
|
|
8015
9524
|
},
|
|
8016
|
-
"
|
|
9525
|
+
"reservedName": {
|
|
8017
9526
|
"rule": "repeated",
|
|
8018
9527
|
"type": "string",
|
|
8019
9528
|
"id": 10
|
|
9529
|
+
},
|
|
9530
|
+
"visibility": {
|
|
9531
|
+
"type": "SymbolVisibility",
|
|
9532
|
+
"id": 11
|
|
8020
9533
|
}
|
|
8021
9534
|
},
|
|
8022
9535
|
"nested": {
|
|
@@ -8029,6 +9542,10 @@ exports.default = {
|
|
|
8029
9542
|
"end": {
|
|
8030
9543
|
"type": "int32",
|
|
8031
9544
|
"id": 2
|
|
9545
|
+
},
|
|
9546
|
+
"options": {
|
|
9547
|
+
"type": "ExtensionRangeOptions",
|
|
9548
|
+
"id": 3
|
|
8032
9549
|
}
|
|
8033
9550
|
}
|
|
8034
9551
|
},
|
|
@@ -8046,7 +9563,82 @@ exports.default = {
|
|
|
8046
9563
|
}
|
|
8047
9564
|
}
|
|
8048
9565
|
},
|
|
9566
|
+
"ExtensionRangeOptions": {
|
|
9567
|
+
"edition": "proto2",
|
|
9568
|
+
"fields": {
|
|
9569
|
+
"uninterpretedOption": {
|
|
9570
|
+
"rule": "repeated",
|
|
9571
|
+
"type": "UninterpretedOption",
|
|
9572
|
+
"id": 999
|
|
9573
|
+
},
|
|
9574
|
+
"declaration": {
|
|
9575
|
+
"rule": "repeated",
|
|
9576
|
+
"type": "Declaration",
|
|
9577
|
+
"id": 2,
|
|
9578
|
+
"options": {
|
|
9579
|
+
"retention": "RETENTION_SOURCE"
|
|
9580
|
+
}
|
|
9581
|
+
},
|
|
9582
|
+
"features": {
|
|
9583
|
+
"type": "FeatureSet",
|
|
9584
|
+
"id": 50
|
|
9585
|
+
},
|
|
9586
|
+
"verification": {
|
|
9587
|
+
"type": "VerificationState",
|
|
9588
|
+
"id": 3,
|
|
9589
|
+
"options": {
|
|
9590
|
+
"default": "UNVERIFIED",
|
|
9591
|
+
"retention": "RETENTION_SOURCE"
|
|
9592
|
+
}
|
|
9593
|
+
}
|
|
9594
|
+
},
|
|
9595
|
+
"extensions": [
|
|
9596
|
+
[
|
|
9597
|
+
1000,
|
|
9598
|
+
536870911
|
|
9599
|
+
]
|
|
9600
|
+
],
|
|
9601
|
+
"nested": {
|
|
9602
|
+
"Declaration": {
|
|
9603
|
+
"fields": {
|
|
9604
|
+
"number": {
|
|
9605
|
+
"type": "int32",
|
|
9606
|
+
"id": 1
|
|
9607
|
+
},
|
|
9608
|
+
"fullName": {
|
|
9609
|
+
"type": "string",
|
|
9610
|
+
"id": 2
|
|
9611
|
+
},
|
|
9612
|
+
"type": {
|
|
9613
|
+
"type": "string",
|
|
9614
|
+
"id": 3
|
|
9615
|
+
},
|
|
9616
|
+
"reserved": {
|
|
9617
|
+
"type": "bool",
|
|
9618
|
+
"id": 5
|
|
9619
|
+
},
|
|
9620
|
+
"repeated": {
|
|
9621
|
+
"type": "bool",
|
|
9622
|
+
"id": 6
|
|
9623
|
+
}
|
|
9624
|
+
},
|
|
9625
|
+
"reserved": [
|
|
9626
|
+
[
|
|
9627
|
+
4,
|
|
9628
|
+
4
|
|
9629
|
+
]
|
|
9630
|
+
]
|
|
9631
|
+
},
|
|
9632
|
+
"VerificationState": {
|
|
9633
|
+
"values": {
|
|
9634
|
+
"DECLARATION": 0,
|
|
9635
|
+
"UNVERIFIED": 1
|
|
9636
|
+
}
|
|
9637
|
+
}
|
|
9638
|
+
}
|
|
9639
|
+
},
|
|
8049
9640
|
"FieldDescriptorProto": {
|
|
9641
|
+
"edition": "proto2",
|
|
8050
9642
|
"fields": {
|
|
8051
9643
|
"name": {
|
|
8052
9644
|
"type": "string",
|
|
@@ -8064,7 +9656,7 @@ exports.default = {
|
|
|
8064
9656
|
"type": "Type",
|
|
8065
9657
|
"id": 5
|
|
8066
9658
|
},
|
|
8067
|
-
"
|
|
9659
|
+
"typeName": {
|
|
8068
9660
|
"type": "string",
|
|
8069
9661
|
"id": 6
|
|
8070
9662
|
},
|
|
@@ -8072,21 +9664,25 @@ exports.default = {
|
|
|
8072
9664
|
"type": "string",
|
|
8073
9665
|
"id": 2
|
|
8074
9666
|
},
|
|
8075
|
-
"
|
|
9667
|
+
"defaultValue": {
|
|
8076
9668
|
"type": "string",
|
|
8077
9669
|
"id": 7
|
|
8078
9670
|
},
|
|
8079
|
-
"
|
|
9671
|
+
"oneofIndex": {
|
|
8080
9672
|
"type": "int32",
|
|
8081
9673
|
"id": 9
|
|
8082
9674
|
},
|
|
8083
|
-
"
|
|
9675
|
+
"jsonName": {
|
|
8084
9676
|
"type": "string",
|
|
8085
9677
|
"id": 10
|
|
8086
9678
|
},
|
|
8087
9679
|
"options": {
|
|
8088
9680
|
"type": "FieldOptions",
|
|
8089
9681
|
"id": 8
|
|
9682
|
+
},
|
|
9683
|
+
"proto3Optional": {
|
|
9684
|
+
"type": "bool",
|
|
9685
|
+
"id": 17
|
|
8090
9686
|
}
|
|
8091
9687
|
},
|
|
8092
9688
|
"nested": {
|
|
@@ -8115,13 +9711,14 @@ exports.default = {
|
|
|
8115
9711
|
"Label": {
|
|
8116
9712
|
"values": {
|
|
8117
9713
|
"LABEL_OPTIONAL": 1,
|
|
8118
|
-
"
|
|
8119
|
-
"
|
|
9714
|
+
"LABEL_REPEATED": 3,
|
|
9715
|
+
"LABEL_REQUIRED": 2
|
|
8120
9716
|
}
|
|
8121
9717
|
}
|
|
8122
9718
|
}
|
|
8123
9719
|
},
|
|
8124
9720
|
"OneofDescriptorProto": {
|
|
9721
|
+
"edition": "proto2",
|
|
8125
9722
|
"fields": {
|
|
8126
9723
|
"name": {
|
|
8127
9724
|
"type": "string",
|
|
@@ -8134,6 +9731,7 @@ exports.default = {
|
|
|
8134
9731
|
}
|
|
8135
9732
|
},
|
|
8136
9733
|
"EnumDescriptorProto": {
|
|
9734
|
+
"edition": "proto2",
|
|
8137
9735
|
"fields": {
|
|
8138
9736
|
"name": {
|
|
8139
9737
|
"type": "string",
|
|
@@ -8147,10 +9745,39 @@ exports.default = {
|
|
|
8147
9745
|
"options": {
|
|
8148
9746
|
"type": "EnumOptions",
|
|
8149
9747
|
"id": 3
|
|
9748
|
+
},
|
|
9749
|
+
"reservedRange": {
|
|
9750
|
+
"rule": "repeated",
|
|
9751
|
+
"type": "EnumReservedRange",
|
|
9752
|
+
"id": 4
|
|
9753
|
+
},
|
|
9754
|
+
"reservedName": {
|
|
9755
|
+
"rule": "repeated",
|
|
9756
|
+
"type": "string",
|
|
9757
|
+
"id": 5
|
|
9758
|
+
},
|
|
9759
|
+
"visibility": {
|
|
9760
|
+
"type": "SymbolVisibility",
|
|
9761
|
+
"id": 6
|
|
9762
|
+
}
|
|
9763
|
+
},
|
|
9764
|
+
"nested": {
|
|
9765
|
+
"EnumReservedRange": {
|
|
9766
|
+
"fields": {
|
|
9767
|
+
"start": {
|
|
9768
|
+
"type": "int32",
|
|
9769
|
+
"id": 1
|
|
9770
|
+
},
|
|
9771
|
+
"end": {
|
|
9772
|
+
"type": "int32",
|
|
9773
|
+
"id": 2
|
|
9774
|
+
}
|
|
9775
|
+
}
|
|
8150
9776
|
}
|
|
8151
9777
|
}
|
|
8152
9778
|
},
|
|
8153
9779
|
"EnumValueDescriptorProto": {
|
|
9780
|
+
"edition": "proto2",
|
|
8154
9781
|
"fields": {
|
|
8155
9782
|
"name": {
|
|
8156
9783
|
"type": "string",
|
|
@@ -8167,6 +9794,7 @@ exports.default = {
|
|
|
8167
9794
|
}
|
|
8168
9795
|
},
|
|
8169
9796
|
"ServiceDescriptorProto": {
|
|
9797
|
+
"edition": "proto2",
|
|
8170
9798
|
"fields": {
|
|
8171
9799
|
"name": {
|
|
8172
9800
|
"type": "string",
|
|
@@ -8184,16 +9812,17 @@ exports.default = {
|
|
|
8184
9812
|
}
|
|
8185
9813
|
},
|
|
8186
9814
|
"MethodDescriptorProto": {
|
|
9815
|
+
"edition": "proto2",
|
|
8187
9816
|
"fields": {
|
|
8188
9817
|
"name": {
|
|
8189
9818
|
"type": "string",
|
|
8190
9819
|
"id": 1
|
|
8191
9820
|
},
|
|
8192
|
-
"
|
|
9821
|
+
"inputType": {
|
|
8193
9822
|
"type": "string",
|
|
8194
9823
|
"id": 2
|
|
8195
9824
|
},
|
|
8196
|
-
"
|
|
9825
|
+
"outputType": {
|
|
8197
9826
|
"type": "string",
|
|
8198
9827
|
"id": 3
|
|
8199
9828
|
},
|
|
@@ -8201,61 +9830,62 @@ exports.default = {
|
|
|
8201
9830
|
"type": "MethodOptions",
|
|
8202
9831
|
"id": 4
|
|
8203
9832
|
},
|
|
8204
|
-
"
|
|
9833
|
+
"clientStreaming": {
|
|
8205
9834
|
"type": "bool",
|
|
8206
9835
|
"id": 5
|
|
8207
9836
|
},
|
|
8208
|
-
"
|
|
9837
|
+
"serverStreaming": {
|
|
8209
9838
|
"type": "bool",
|
|
8210
9839
|
"id": 6
|
|
8211
9840
|
}
|
|
8212
9841
|
}
|
|
8213
9842
|
},
|
|
8214
9843
|
"FileOptions": {
|
|
9844
|
+
"edition": "proto2",
|
|
8215
9845
|
"fields": {
|
|
8216
|
-
"
|
|
9846
|
+
"javaPackage": {
|
|
8217
9847
|
"type": "string",
|
|
8218
9848
|
"id": 1
|
|
8219
9849
|
},
|
|
8220
|
-
"
|
|
9850
|
+
"javaOuterClassname": {
|
|
8221
9851
|
"type": "string",
|
|
8222
9852
|
"id": 8
|
|
8223
9853
|
},
|
|
8224
|
-
"
|
|
9854
|
+
"javaMultipleFiles": {
|
|
8225
9855
|
"type": "bool",
|
|
8226
9856
|
"id": 10
|
|
8227
9857
|
},
|
|
8228
|
-
"
|
|
9858
|
+
"javaGenerateEqualsAndHash": {
|
|
8229
9859
|
"type": "bool",
|
|
8230
9860
|
"id": 20,
|
|
8231
9861
|
"options": {
|
|
8232
9862
|
"deprecated": true
|
|
8233
9863
|
}
|
|
8234
9864
|
},
|
|
8235
|
-
"
|
|
9865
|
+
"javaStringCheckUtf8": {
|
|
8236
9866
|
"type": "bool",
|
|
8237
9867
|
"id": 27
|
|
8238
9868
|
},
|
|
8239
|
-
"
|
|
9869
|
+
"optimizeFor": {
|
|
8240
9870
|
"type": "OptimizeMode",
|
|
8241
9871
|
"id": 9,
|
|
8242
9872
|
"options": {
|
|
8243
9873
|
"default": "SPEED"
|
|
8244
9874
|
}
|
|
8245
9875
|
},
|
|
8246
|
-
"
|
|
9876
|
+
"goPackage": {
|
|
8247
9877
|
"type": "string",
|
|
8248
9878
|
"id": 11
|
|
8249
9879
|
},
|
|
8250
|
-
"
|
|
9880
|
+
"ccGenericServices": {
|
|
8251
9881
|
"type": "bool",
|
|
8252
9882
|
"id": 16
|
|
8253
9883
|
},
|
|
8254
|
-
"
|
|
9884
|
+
"javaGenericServices": {
|
|
8255
9885
|
"type": "bool",
|
|
8256
9886
|
"id": 17
|
|
8257
9887
|
},
|
|
8258
|
-
"
|
|
9888
|
+
"pyGenericServices": {
|
|
8259
9889
|
"type": "bool",
|
|
8260
9890
|
"id": 18
|
|
8261
9891
|
},
|
|
@@ -8263,19 +9893,46 @@ exports.default = {
|
|
|
8263
9893
|
"type": "bool",
|
|
8264
9894
|
"id": 23
|
|
8265
9895
|
},
|
|
8266
|
-
"
|
|
9896
|
+
"ccEnableArenas": {
|
|
8267
9897
|
"type": "bool",
|
|
8268
|
-
"id": 31
|
|
9898
|
+
"id": 31,
|
|
9899
|
+
"options": {
|
|
9900
|
+
"default": true
|
|
9901
|
+
}
|
|
8269
9902
|
},
|
|
8270
|
-
"
|
|
9903
|
+
"objcClassPrefix": {
|
|
8271
9904
|
"type": "string",
|
|
8272
9905
|
"id": 36
|
|
8273
9906
|
},
|
|
8274
|
-
"
|
|
9907
|
+
"csharpNamespace": {
|
|
8275
9908
|
"type": "string",
|
|
8276
9909
|
"id": 37
|
|
8277
9910
|
},
|
|
8278
|
-
"
|
|
9911
|
+
"swiftPrefix": {
|
|
9912
|
+
"type": "string",
|
|
9913
|
+
"id": 39
|
|
9914
|
+
},
|
|
9915
|
+
"phpClassPrefix": {
|
|
9916
|
+
"type": "string",
|
|
9917
|
+
"id": 40
|
|
9918
|
+
},
|
|
9919
|
+
"phpNamespace": {
|
|
9920
|
+
"type": "string",
|
|
9921
|
+
"id": 41
|
|
9922
|
+
},
|
|
9923
|
+
"phpMetadataNamespace": {
|
|
9924
|
+
"type": "string",
|
|
9925
|
+
"id": 44
|
|
9926
|
+
},
|
|
9927
|
+
"rubyPackage": {
|
|
9928
|
+
"type": "string",
|
|
9929
|
+
"id": 45
|
|
9930
|
+
},
|
|
9931
|
+
"features": {
|
|
9932
|
+
"type": "FeatureSet",
|
|
9933
|
+
"id": 50
|
|
9934
|
+
},
|
|
9935
|
+
"uninterpretedOption": {
|
|
8279
9936
|
"rule": "repeated",
|
|
8280
9937
|
"type": "UninterpretedOption",
|
|
8281
9938
|
"id": 999
|
|
@@ -8288,10 +9945,15 @@ exports.default = {
|
|
|
8288
9945
|
]
|
|
8289
9946
|
],
|
|
8290
9947
|
"reserved": [
|
|
9948
|
+
[
|
|
9949
|
+
42,
|
|
9950
|
+
42
|
|
9951
|
+
],
|
|
8291
9952
|
[
|
|
8292
9953
|
38,
|
|
8293
9954
|
38
|
|
8294
|
-
]
|
|
9955
|
+
],
|
|
9956
|
+
"php_generic_services"
|
|
8295
9957
|
],
|
|
8296
9958
|
"nested": {
|
|
8297
9959
|
"OptimizeMode": {
|
|
@@ -8304,12 +9966,13 @@ exports.default = {
|
|
|
8304
9966
|
}
|
|
8305
9967
|
},
|
|
8306
9968
|
"MessageOptions": {
|
|
9969
|
+
"edition": "proto2",
|
|
8307
9970
|
"fields": {
|
|
8308
|
-
"
|
|
9971
|
+
"messageSetWireFormat": {
|
|
8309
9972
|
"type": "bool",
|
|
8310
9973
|
"id": 1
|
|
8311
9974
|
},
|
|
8312
|
-
"
|
|
9975
|
+
"noStandardDescriptorAccessor": {
|
|
8313
9976
|
"type": "bool",
|
|
8314
9977
|
"id": 2
|
|
8315
9978
|
},
|
|
@@ -8317,11 +9980,22 @@ exports.default = {
|
|
|
8317
9980
|
"type": "bool",
|
|
8318
9981
|
"id": 3
|
|
8319
9982
|
},
|
|
8320
|
-
"
|
|
9983
|
+
"mapEntry": {
|
|
8321
9984
|
"type": "bool",
|
|
8322
9985
|
"id": 7
|
|
8323
9986
|
},
|
|
8324
|
-
"
|
|
9987
|
+
"deprecatedLegacyJsonFieldConflicts": {
|
|
9988
|
+
"type": "bool",
|
|
9989
|
+
"id": 11,
|
|
9990
|
+
"options": {
|
|
9991
|
+
"deprecated": true
|
|
9992
|
+
}
|
|
9993
|
+
},
|
|
9994
|
+
"features": {
|
|
9995
|
+
"type": "FeatureSet",
|
|
9996
|
+
"id": 12
|
|
9997
|
+
},
|
|
9998
|
+
"uninterpretedOption": {
|
|
8325
9999
|
"rule": "repeated",
|
|
8326
10000
|
"type": "UninterpretedOption",
|
|
8327
10001
|
"id": 999
|
|
@@ -8334,13 +10008,30 @@ exports.default = {
|
|
|
8334
10008
|
]
|
|
8335
10009
|
],
|
|
8336
10010
|
"reserved": [
|
|
10011
|
+
[
|
|
10012
|
+
4,
|
|
10013
|
+
4
|
|
10014
|
+
],
|
|
10015
|
+
[
|
|
10016
|
+
5,
|
|
10017
|
+
5
|
|
10018
|
+
],
|
|
10019
|
+
[
|
|
10020
|
+
6,
|
|
10021
|
+
6
|
|
10022
|
+
],
|
|
8337
10023
|
[
|
|
8338
10024
|
8,
|
|
8339
10025
|
8
|
|
10026
|
+
],
|
|
10027
|
+
[
|
|
10028
|
+
9,
|
|
10029
|
+
9
|
|
8340
10030
|
]
|
|
8341
10031
|
]
|
|
8342
10032
|
},
|
|
8343
10033
|
"FieldOptions": {
|
|
10034
|
+
"edition": "proto2",
|
|
8344
10035
|
"fields": {
|
|
8345
10036
|
"ctype": {
|
|
8346
10037
|
"type": "CType",
|
|
@@ -8364,15 +10055,48 @@ exports.default = {
|
|
|
8364
10055
|
"type": "bool",
|
|
8365
10056
|
"id": 5
|
|
8366
10057
|
},
|
|
10058
|
+
"unverifiedLazy": {
|
|
10059
|
+
"type": "bool",
|
|
10060
|
+
"id": 15
|
|
10061
|
+
},
|
|
8367
10062
|
"deprecated": {
|
|
8368
10063
|
"type": "bool",
|
|
8369
10064
|
"id": 3
|
|
8370
10065
|
},
|
|
8371
10066
|
"weak": {
|
|
8372
10067
|
"type": "bool",
|
|
8373
|
-
"id": 10
|
|
10068
|
+
"id": 10,
|
|
10069
|
+
"options": {
|
|
10070
|
+
"deprecated": true
|
|
10071
|
+
}
|
|
10072
|
+
},
|
|
10073
|
+
"debugRedact": {
|
|
10074
|
+
"type": "bool",
|
|
10075
|
+
"id": 16
|
|
10076
|
+
},
|
|
10077
|
+
"retention": {
|
|
10078
|
+
"type": "OptionRetention",
|
|
10079
|
+
"id": 17
|
|
8374
10080
|
},
|
|
8375
|
-
"
|
|
10081
|
+
"targets": {
|
|
10082
|
+
"rule": "repeated",
|
|
10083
|
+
"type": "OptionTargetType",
|
|
10084
|
+
"id": 19
|
|
10085
|
+
},
|
|
10086
|
+
"editionDefaults": {
|
|
10087
|
+
"rule": "repeated",
|
|
10088
|
+
"type": "EditionDefault",
|
|
10089
|
+
"id": 20
|
|
10090
|
+
},
|
|
10091
|
+
"features": {
|
|
10092
|
+
"type": "FeatureSet",
|
|
10093
|
+
"id": 21
|
|
10094
|
+
},
|
|
10095
|
+
"featureSupport": {
|
|
10096
|
+
"type": "FeatureSupport",
|
|
10097
|
+
"id": 22
|
|
10098
|
+
},
|
|
10099
|
+
"uninterpretedOption": {
|
|
8376
10100
|
"rule": "repeated",
|
|
8377
10101
|
"type": "UninterpretedOption",
|
|
8378
10102
|
"id": 999
|
|
@@ -8388,6 +10112,10 @@ exports.default = {
|
|
|
8388
10112
|
[
|
|
8389
10113
|
4,
|
|
8390
10114
|
4
|
|
10115
|
+
],
|
|
10116
|
+
[
|
|
10117
|
+
18,
|
|
10118
|
+
18
|
|
8391
10119
|
]
|
|
8392
10120
|
],
|
|
8393
10121
|
"nested": {
|
|
@@ -8404,12 +10132,70 @@ exports.default = {
|
|
|
8404
10132
|
"JS_STRING": 1,
|
|
8405
10133
|
"JS_NUMBER": 2
|
|
8406
10134
|
}
|
|
10135
|
+
},
|
|
10136
|
+
"OptionRetention": {
|
|
10137
|
+
"values": {
|
|
10138
|
+
"RETENTION_UNKNOWN": 0,
|
|
10139
|
+
"RETENTION_RUNTIME": 1,
|
|
10140
|
+
"RETENTION_SOURCE": 2
|
|
10141
|
+
}
|
|
10142
|
+
},
|
|
10143
|
+
"OptionTargetType": {
|
|
10144
|
+
"values": {
|
|
10145
|
+
"TARGET_TYPE_UNKNOWN": 0,
|
|
10146
|
+
"TARGET_TYPE_FILE": 1,
|
|
10147
|
+
"TARGET_TYPE_EXTENSION_RANGE": 2,
|
|
10148
|
+
"TARGET_TYPE_MESSAGE": 3,
|
|
10149
|
+
"TARGET_TYPE_FIELD": 4,
|
|
10150
|
+
"TARGET_TYPE_ONEOF": 5,
|
|
10151
|
+
"TARGET_TYPE_ENUM": 6,
|
|
10152
|
+
"TARGET_TYPE_ENUM_ENTRY": 7,
|
|
10153
|
+
"TARGET_TYPE_SERVICE": 8,
|
|
10154
|
+
"TARGET_TYPE_METHOD": 9
|
|
10155
|
+
}
|
|
10156
|
+
},
|
|
10157
|
+
"EditionDefault": {
|
|
10158
|
+
"fields": {
|
|
10159
|
+
"edition": {
|
|
10160
|
+
"type": "Edition",
|
|
10161
|
+
"id": 3
|
|
10162
|
+
},
|
|
10163
|
+
"value": {
|
|
10164
|
+
"type": "string",
|
|
10165
|
+
"id": 2
|
|
10166
|
+
}
|
|
10167
|
+
}
|
|
10168
|
+
},
|
|
10169
|
+
"FeatureSupport": {
|
|
10170
|
+
"fields": {
|
|
10171
|
+
"editionIntroduced": {
|
|
10172
|
+
"type": "Edition",
|
|
10173
|
+
"id": 1
|
|
10174
|
+
},
|
|
10175
|
+
"editionDeprecated": {
|
|
10176
|
+
"type": "Edition",
|
|
10177
|
+
"id": 2
|
|
10178
|
+
},
|
|
10179
|
+
"deprecationWarning": {
|
|
10180
|
+
"type": "string",
|
|
10181
|
+
"id": 3
|
|
10182
|
+
},
|
|
10183
|
+
"editionRemoved": {
|
|
10184
|
+
"type": "Edition",
|
|
10185
|
+
"id": 4
|
|
10186
|
+
}
|
|
10187
|
+
}
|
|
8407
10188
|
}
|
|
8408
10189
|
}
|
|
8409
10190
|
},
|
|
8410
10191
|
"OneofOptions": {
|
|
10192
|
+
"edition": "proto2",
|
|
8411
10193
|
"fields": {
|
|
8412
|
-
"
|
|
10194
|
+
"features": {
|
|
10195
|
+
"type": "FeatureSet",
|
|
10196
|
+
"id": 1
|
|
10197
|
+
},
|
|
10198
|
+
"uninterpretedOption": {
|
|
8413
10199
|
"rule": "repeated",
|
|
8414
10200
|
"type": "UninterpretedOption",
|
|
8415
10201
|
"id": 999
|
|
@@ -8423,8 +10209,9 @@ exports.default = {
|
|
|
8423
10209
|
]
|
|
8424
10210
|
},
|
|
8425
10211
|
"EnumOptions": {
|
|
10212
|
+
"edition": "proto2",
|
|
8426
10213
|
"fields": {
|
|
8427
|
-
"
|
|
10214
|
+
"allowAlias": {
|
|
8428
10215
|
"type": "bool",
|
|
8429
10216
|
"id": 2
|
|
8430
10217
|
},
|
|
@@ -8432,7 +10219,18 @@ exports.default = {
|
|
|
8432
10219
|
"type": "bool",
|
|
8433
10220
|
"id": 3
|
|
8434
10221
|
},
|
|
8435
|
-
"
|
|
10222
|
+
"deprecatedLegacyJsonFieldConflicts": {
|
|
10223
|
+
"type": "bool",
|
|
10224
|
+
"id": 6,
|
|
10225
|
+
"options": {
|
|
10226
|
+
"deprecated": true
|
|
10227
|
+
}
|
|
10228
|
+
},
|
|
10229
|
+
"features": {
|
|
10230
|
+
"type": "FeatureSet",
|
|
10231
|
+
"id": 7
|
|
10232
|
+
},
|
|
10233
|
+
"uninterpretedOption": {
|
|
8436
10234
|
"rule": "repeated",
|
|
8437
10235
|
"type": "UninterpretedOption",
|
|
8438
10236
|
"id": 999
|
|
@@ -8443,15 +10241,34 @@ exports.default = {
|
|
|
8443
10241
|
1000,
|
|
8444
10242
|
536870911
|
|
8445
10243
|
]
|
|
10244
|
+
],
|
|
10245
|
+
"reserved": [
|
|
10246
|
+
[
|
|
10247
|
+
5,
|
|
10248
|
+
5
|
|
10249
|
+
]
|
|
8446
10250
|
]
|
|
8447
10251
|
},
|
|
8448
10252
|
"EnumValueOptions": {
|
|
10253
|
+
"edition": "proto2",
|
|
8449
10254
|
"fields": {
|
|
8450
10255
|
"deprecated": {
|
|
8451
10256
|
"type": "bool",
|
|
8452
10257
|
"id": 1
|
|
8453
10258
|
},
|
|
8454
|
-
"
|
|
10259
|
+
"features": {
|
|
10260
|
+
"type": "FeatureSet",
|
|
10261
|
+
"id": 2
|
|
10262
|
+
},
|
|
10263
|
+
"debugRedact": {
|
|
10264
|
+
"type": "bool",
|
|
10265
|
+
"id": 3
|
|
10266
|
+
},
|
|
10267
|
+
"featureSupport": {
|
|
10268
|
+
"type": "FieldOptions.FeatureSupport",
|
|
10269
|
+
"id": 4
|
|
10270
|
+
},
|
|
10271
|
+
"uninterpretedOption": {
|
|
8455
10272
|
"rule": "repeated",
|
|
8456
10273
|
"type": "UninterpretedOption",
|
|
8457
10274
|
"id": 999
|
|
@@ -8465,12 +10282,17 @@ exports.default = {
|
|
|
8465
10282
|
]
|
|
8466
10283
|
},
|
|
8467
10284
|
"ServiceOptions": {
|
|
10285
|
+
"edition": "proto2",
|
|
8468
10286
|
"fields": {
|
|
10287
|
+
"features": {
|
|
10288
|
+
"type": "FeatureSet",
|
|
10289
|
+
"id": 34
|
|
10290
|
+
},
|
|
8469
10291
|
"deprecated": {
|
|
8470
10292
|
"type": "bool",
|
|
8471
10293
|
"id": 33
|
|
8472
10294
|
},
|
|
8473
|
-
"
|
|
10295
|
+
"uninterpretedOption": {
|
|
8474
10296
|
"rule": "repeated",
|
|
8475
10297
|
"type": "UninterpretedOption",
|
|
8476
10298
|
"id": 999
|
|
@@ -8484,12 +10306,24 @@ exports.default = {
|
|
|
8484
10306
|
]
|
|
8485
10307
|
},
|
|
8486
10308
|
"MethodOptions": {
|
|
10309
|
+
"edition": "proto2",
|
|
8487
10310
|
"fields": {
|
|
8488
10311
|
"deprecated": {
|
|
8489
10312
|
"type": "bool",
|
|
8490
10313
|
"id": 33
|
|
8491
10314
|
},
|
|
8492
|
-
"
|
|
10315
|
+
"idempotencyLevel": {
|
|
10316
|
+
"type": "IdempotencyLevel",
|
|
10317
|
+
"id": 34,
|
|
10318
|
+
"options": {
|
|
10319
|
+
"default": "IDEMPOTENCY_UNKNOWN"
|
|
10320
|
+
}
|
|
10321
|
+
},
|
|
10322
|
+
"features": {
|
|
10323
|
+
"type": "FeatureSet",
|
|
10324
|
+
"id": 35
|
|
10325
|
+
},
|
|
10326
|
+
"uninterpretedOption": {
|
|
8493
10327
|
"rule": "repeated",
|
|
8494
10328
|
"type": "UninterpretedOption",
|
|
8495
10329
|
"id": 999
|
|
@@ -8500,36 +10334,46 @@ exports.default = {
|
|
|
8500
10334
|
1000,
|
|
8501
10335
|
536870911
|
|
8502
10336
|
]
|
|
8503
|
-
]
|
|
10337
|
+
],
|
|
10338
|
+
"nested": {
|
|
10339
|
+
"IdempotencyLevel": {
|
|
10340
|
+
"values": {
|
|
10341
|
+
"IDEMPOTENCY_UNKNOWN": 0,
|
|
10342
|
+
"NO_SIDE_EFFECTS": 1,
|
|
10343
|
+
"IDEMPOTENT": 2
|
|
10344
|
+
}
|
|
10345
|
+
}
|
|
10346
|
+
}
|
|
8504
10347
|
},
|
|
8505
10348
|
"UninterpretedOption": {
|
|
10349
|
+
"edition": "proto2",
|
|
8506
10350
|
"fields": {
|
|
8507
10351
|
"name": {
|
|
8508
10352
|
"rule": "repeated",
|
|
8509
10353
|
"type": "NamePart",
|
|
8510
10354
|
"id": 2
|
|
8511
10355
|
},
|
|
8512
|
-
"
|
|
10356
|
+
"identifierValue": {
|
|
8513
10357
|
"type": "string",
|
|
8514
10358
|
"id": 3
|
|
8515
10359
|
},
|
|
8516
|
-
"
|
|
10360
|
+
"positiveIntValue": {
|
|
8517
10361
|
"type": "uint64",
|
|
8518
10362
|
"id": 4
|
|
8519
10363
|
},
|
|
8520
|
-
"
|
|
10364
|
+
"negativeIntValue": {
|
|
8521
10365
|
"type": "int64",
|
|
8522
10366
|
"id": 5
|
|
8523
10367
|
},
|
|
8524
|
-
"
|
|
10368
|
+
"doubleValue": {
|
|
8525
10369
|
"type": "double",
|
|
8526
10370
|
"id": 6
|
|
8527
10371
|
},
|
|
8528
|
-
"
|
|
10372
|
+
"stringValue": {
|
|
8529
10373
|
"type": "bytes",
|
|
8530
10374
|
"id": 7
|
|
8531
10375
|
},
|
|
8532
|
-
"
|
|
10376
|
+
"aggregateValue": {
|
|
8533
10377
|
"type": "string",
|
|
8534
10378
|
"id": 8
|
|
8535
10379
|
}
|
|
@@ -8537,12 +10381,12 @@ exports.default = {
|
|
|
8537
10381
|
"nested": {
|
|
8538
10382
|
"NamePart": {
|
|
8539
10383
|
"fields": {
|
|
8540
|
-
"
|
|
10384
|
+
"namePart": {
|
|
8541
10385
|
"rule": "required",
|
|
8542
10386
|
"type": "string",
|
|
8543
10387
|
"id": 1
|
|
8544
10388
|
},
|
|
8545
|
-
"
|
|
10389
|
+
"isExtension": {
|
|
8546
10390
|
"rule": "required",
|
|
8547
10391
|
"type": "bool",
|
|
8548
10392
|
"id": 2
|
|
@@ -8551,7 +10395,240 @@ exports.default = {
|
|
|
8551
10395
|
}
|
|
8552
10396
|
}
|
|
8553
10397
|
},
|
|
10398
|
+
"FeatureSet": {
|
|
10399
|
+
"edition": "proto2",
|
|
10400
|
+
"fields": {
|
|
10401
|
+
"fieldPresence": {
|
|
10402
|
+
"type": "FieldPresence",
|
|
10403
|
+
"id": 1,
|
|
10404
|
+
"options": {
|
|
10405
|
+
"retention": "RETENTION_RUNTIME",
|
|
10406
|
+
"targets": "TARGET_TYPE_FILE",
|
|
10407
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
10408
|
+
"edition_defaults.edition": "EDITION_2023",
|
|
10409
|
+
"edition_defaults.value": "EXPLICIT"
|
|
10410
|
+
}
|
|
10411
|
+
},
|
|
10412
|
+
"enumType": {
|
|
10413
|
+
"type": "EnumType",
|
|
10414
|
+
"id": 2,
|
|
10415
|
+
"options": {
|
|
10416
|
+
"retention": "RETENTION_RUNTIME",
|
|
10417
|
+
"targets": "TARGET_TYPE_FILE",
|
|
10418
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
10419
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
10420
|
+
"edition_defaults.value": "OPEN"
|
|
10421
|
+
}
|
|
10422
|
+
},
|
|
10423
|
+
"repeatedFieldEncoding": {
|
|
10424
|
+
"type": "RepeatedFieldEncoding",
|
|
10425
|
+
"id": 3,
|
|
10426
|
+
"options": {
|
|
10427
|
+
"retention": "RETENTION_RUNTIME",
|
|
10428
|
+
"targets": "TARGET_TYPE_FILE",
|
|
10429
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
10430
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
10431
|
+
"edition_defaults.value": "PACKED"
|
|
10432
|
+
}
|
|
10433
|
+
},
|
|
10434
|
+
"utf8Validation": {
|
|
10435
|
+
"type": "Utf8Validation",
|
|
10436
|
+
"id": 4,
|
|
10437
|
+
"options": {
|
|
10438
|
+
"retention": "RETENTION_RUNTIME",
|
|
10439
|
+
"targets": "TARGET_TYPE_FILE",
|
|
10440
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
10441
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
10442
|
+
"edition_defaults.value": "VERIFY"
|
|
10443
|
+
}
|
|
10444
|
+
},
|
|
10445
|
+
"messageEncoding": {
|
|
10446
|
+
"type": "MessageEncoding",
|
|
10447
|
+
"id": 5,
|
|
10448
|
+
"options": {
|
|
10449
|
+
"retention": "RETENTION_RUNTIME",
|
|
10450
|
+
"targets": "TARGET_TYPE_FILE",
|
|
10451
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
10452
|
+
"edition_defaults.edition": "EDITION_LEGACY",
|
|
10453
|
+
"edition_defaults.value": "LENGTH_PREFIXED"
|
|
10454
|
+
}
|
|
10455
|
+
},
|
|
10456
|
+
"jsonFormat": {
|
|
10457
|
+
"type": "JsonFormat",
|
|
10458
|
+
"id": 6,
|
|
10459
|
+
"options": {
|
|
10460
|
+
"retention": "RETENTION_RUNTIME",
|
|
10461
|
+
"targets": "TARGET_TYPE_FILE",
|
|
10462
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
10463
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
10464
|
+
"edition_defaults.value": "ALLOW"
|
|
10465
|
+
}
|
|
10466
|
+
},
|
|
10467
|
+
"enforceNamingStyle": {
|
|
10468
|
+
"type": "EnforceNamingStyle",
|
|
10469
|
+
"id": 7,
|
|
10470
|
+
"options": {
|
|
10471
|
+
"retention": "RETENTION_SOURCE",
|
|
10472
|
+
"targets": "TARGET_TYPE_METHOD",
|
|
10473
|
+
"feature_support.edition_introduced": "EDITION_2024",
|
|
10474
|
+
"edition_defaults.edition": "EDITION_2024",
|
|
10475
|
+
"edition_defaults.value": "STYLE2024"
|
|
10476
|
+
}
|
|
10477
|
+
},
|
|
10478
|
+
"defaultSymbolVisibility": {
|
|
10479
|
+
"type": "VisibilityFeature.DefaultSymbolVisibility",
|
|
10480
|
+
"id": 8,
|
|
10481
|
+
"options": {
|
|
10482
|
+
"retention": "RETENTION_SOURCE",
|
|
10483
|
+
"targets": "TARGET_TYPE_FILE",
|
|
10484
|
+
"feature_support.edition_introduced": "EDITION_2024",
|
|
10485
|
+
"edition_defaults.edition": "EDITION_2024",
|
|
10486
|
+
"edition_defaults.value": "EXPORT_TOP_LEVEL"
|
|
10487
|
+
}
|
|
10488
|
+
}
|
|
10489
|
+
},
|
|
10490
|
+
"extensions": [
|
|
10491
|
+
[
|
|
10492
|
+
1000,
|
|
10493
|
+
9994
|
|
10494
|
+
],
|
|
10495
|
+
[
|
|
10496
|
+
9995,
|
|
10497
|
+
9999
|
|
10498
|
+
],
|
|
10499
|
+
[
|
|
10500
|
+
10000,
|
|
10501
|
+
10000
|
|
10502
|
+
]
|
|
10503
|
+
],
|
|
10504
|
+
"reserved": [
|
|
10505
|
+
[
|
|
10506
|
+
999,
|
|
10507
|
+
999
|
|
10508
|
+
]
|
|
10509
|
+
],
|
|
10510
|
+
"nested": {
|
|
10511
|
+
"FieldPresence": {
|
|
10512
|
+
"values": {
|
|
10513
|
+
"FIELD_PRESENCE_UNKNOWN": 0,
|
|
10514
|
+
"EXPLICIT": 1,
|
|
10515
|
+
"IMPLICIT": 2,
|
|
10516
|
+
"LEGACY_REQUIRED": 3
|
|
10517
|
+
}
|
|
10518
|
+
},
|
|
10519
|
+
"EnumType": {
|
|
10520
|
+
"values": {
|
|
10521
|
+
"ENUM_TYPE_UNKNOWN": 0,
|
|
10522
|
+
"OPEN": 1,
|
|
10523
|
+
"CLOSED": 2
|
|
10524
|
+
}
|
|
10525
|
+
},
|
|
10526
|
+
"RepeatedFieldEncoding": {
|
|
10527
|
+
"values": {
|
|
10528
|
+
"REPEATED_FIELD_ENCODING_UNKNOWN": 0,
|
|
10529
|
+
"PACKED": 1,
|
|
10530
|
+
"EXPANDED": 2
|
|
10531
|
+
}
|
|
10532
|
+
},
|
|
10533
|
+
"Utf8Validation": {
|
|
10534
|
+
"values": {
|
|
10535
|
+
"UTF8_VALIDATION_UNKNOWN": 0,
|
|
10536
|
+
"VERIFY": 2,
|
|
10537
|
+
"NONE": 3
|
|
10538
|
+
}
|
|
10539
|
+
},
|
|
10540
|
+
"MessageEncoding": {
|
|
10541
|
+
"values": {
|
|
10542
|
+
"MESSAGE_ENCODING_UNKNOWN": 0,
|
|
10543
|
+
"LENGTH_PREFIXED": 1,
|
|
10544
|
+
"DELIMITED": 2
|
|
10545
|
+
}
|
|
10546
|
+
},
|
|
10547
|
+
"JsonFormat": {
|
|
10548
|
+
"values": {
|
|
10549
|
+
"JSON_FORMAT_UNKNOWN": 0,
|
|
10550
|
+
"ALLOW": 1,
|
|
10551
|
+
"LEGACY_BEST_EFFORT": 2
|
|
10552
|
+
}
|
|
10553
|
+
},
|
|
10554
|
+
"EnforceNamingStyle": {
|
|
10555
|
+
"values": {
|
|
10556
|
+
"ENFORCE_NAMING_STYLE_UNKNOWN": 0,
|
|
10557
|
+
"STYLE2024": 1,
|
|
10558
|
+
"STYLE_LEGACY": 2
|
|
10559
|
+
}
|
|
10560
|
+
},
|
|
10561
|
+
"VisibilityFeature": {
|
|
10562
|
+
"fields": {},
|
|
10563
|
+
"reserved": [
|
|
10564
|
+
[
|
|
10565
|
+
1,
|
|
10566
|
+
536870911
|
|
10567
|
+
]
|
|
10568
|
+
],
|
|
10569
|
+
"nested": {
|
|
10570
|
+
"DefaultSymbolVisibility": {
|
|
10571
|
+
"values": {
|
|
10572
|
+
"DEFAULT_SYMBOL_VISIBILITY_UNKNOWN": 0,
|
|
10573
|
+
"EXPORT_ALL": 1,
|
|
10574
|
+
"EXPORT_TOP_LEVEL": 2,
|
|
10575
|
+
"LOCAL_ALL": 3,
|
|
10576
|
+
"STRICT": 4
|
|
10577
|
+
}
|
|
10578
|
+
}
|
|
10579
|
+
}
|
|
10580
|
+
}
|
|
10581
|
+
}
|
|
10582
|
+
},
|
|
10583
|
+
"FeatureSetDefaults": {
|
|
10584
|
+
"edition": "proto2",
|
|
10585
|
+
"fields": {
|
|
10586
|
+
"defaults": {
|
|
10587
|
+
"rule": "repeated",
|
|
10588
|
+
"type": "FeatureSetEditionDefault",
|
|
10589
|
+
"id": 1
|
|
10590
|
+
},
|
|
10591
|
+
"minimumEdition": {
|
|
10592
|
+
"type": "Edition",
|
|
10593
|
+
"id": 4
|
|
10594
|
+
},
|
|
10595
|
+
"maximumEdition": {
|
|
10596
|
+
"type": "Edition",
|
|
10597
|
+
"id": 5
|
|
10598
|
+
}
|
|
10599
|
+
},
|
|
10600
|
+
"nested": {
|
|
10601
|
+
"FeatureSetEditionDefault": {
|
|
10602
|
+
"fields": {
|
|
10603
|
+
"edition": {
|
|
10604
|
+
"type": "Edition",
|
|
10605
|
+
"id": 3
|
|
10606
|
+
},
|
|
10607
|
+
"overridableFeatures": {
|
|
10608
|
+
"type": "FeatureSet",
|
|
10609
|
+
"id": 4
|
|
10610
|
+
},
|
|
10611
|
+
"fixedFeatures": {
|
|
10612
|
+
"type": "FeatureSet",
|
|
10613
|
+
"id": 5
|
|
10614
|
+
}
|
|
10615
|
+
},
|
|
10616
|
+
"reserved": [
|
|
10617
|
+
[
|
|
10618
|
+
1,
|
|
10619
|
+
1
|
|
10620
|
+
],
|
|
10621
|
+
[
|
|
10622
|
+
2,
|
|
10623
|
+
2
|
|
10624
|
+
],
|
|
10625
|
+
"features"
|
|
10626
|
+
]
|
|
10627
|
+
}
|
|
10628
|
+
}
|
|
10629
|
+
},
|
|
8554
10630
|
"SourceCodeInfo": {
|
|
10631
|
+
"edition": "proto2",
|
|
8555
10632
|
"fields": {
|
|
8556
10633
|
"location": {
|
|
8557
10634
|
"rule": "repeated",
|
|
@@ -8559,28 +10636,40 @@ exports.default = {
|
|
|
8559
10636
|
"id": 1
|
|
8560
10637
|
}
|
|
8561
10638
|
},
|
|
10639
|
+
"extensions": [
|
|
10640
|
+
[
|
|
10641
|
+
536000000,
|
|
10642
|
+
536000000
|
|
10643
|
+
]
|
|
10644
|
+
],
|
|
8562
10645
|
"nested": {
|
|
8563
10646
|
"Location": {
|
|
8564
10647
|
"fields": {
|
|
8565
10648
|
"path": {
|
|
8566
10649
|
"rule": "repeated",
|
|
8567
10650
|
"type": "int32",
|
|
8568
|
-
"id": 1
|
|
10651
|
+
"id": 1,
|
|
10652
|
+
"options": {
|
|
10653
|
+
"packed": true
|
|
10654
|
+
}
|
|
8569
10655
|
},
|
|
8570
10656
|
"span": {
|
|
8571
10657
|
"rule": "repeated",
|
|
8572
10658
|
"type": "int32",
|
|
8573
|
-
"id": 2
|
|
10659
|
+
"id": 2,
|
|
10660
|
+
"options": {
|
|
10661
|
+
"packed": true
|
|
10662
|
+
}
|
|
8574
10663
|
},
|
|
8575
|
-
"
|
|
10664
|
+
"leadingComments": {
|
|
8576
10665
|
"type": "string",
|
|
8577
10666
|
"id": 3
|
|
8578
10667
|
},
|
|
8579
|
-
"
|
|
10668
|
+
"trailingComments": {
|
|
8580
10669
|
"type": "string",
|
|
8581
10670
|
"id": 4
|
|
8582
10671
|
},
|
|
8583
|
-
"
|
|
10672
|
+
"leadingDetachedComments": {
|
|
8584
10673
|
"rule": "repeated",
|
|
8585
10674
|
"type": "string",
|
|
8586
10675
|
"id": 6
|
|
@@ -8590,6 +10679,7 @@ exports.default = {
|
|
|
8590
10679
|
}
|
|
8591
10680
|
},
|
|
8592
10681
|
"GeneratedCodeInfo": {
|
|
10682
|
+
"edition": "proto2",
|
|
8593
10683
|
"fields": {
|
|
8594
10684
|
"annotation": {
|
|
8595
10685
|
"rule": "repeated",
|
|
@@ -8603,9 +10693,12 @@ exports.default = {
|
|
|
8603
10693
|
"path": {
|
|
8604
10694
|
"rule": "repeated",
|
|
8605
10695
|
"type": "int32",
|
|
8606
|
-
"id": 1
|
|
10696
|
+
"id": 1,
|
|
10697
|
+
"options": {
|
|
10698
|
+
"packed": true
|
|
10699
|
+
}
|
|
8607
10700
|
},
|
|
8608
|
-
"
|
|
10701
|
+
"sourceFile": {
|
|
8609
10702
|
"type": "string",
|
|
8610
10703
|
"id": 2
|
|
8611
10704
|
},
|
|
@@ -8616,10 +10709,31 @@ exports.default = {
|
|
|
8616
10709
|
"end": {
|
|
8617
10710
|
"type": "int32",
|
|
8618
10711
|
"id": 4
|
|
10712
|
+
},
|
|
10713
|
+
"semantic": {
|
|
10714
|
+
"type": "Semantic",
|
|
10715
|
+
"id": 5
|
|
10716
|
+
}
|
|
10717
|
+
},
|
|
10718
|
+
"nested": {
|
|
10719
|
+
"Semantic": {
|
|
10720
|
+
"values": {
|
|
10721
|
+
"NONE": 0,
|
|
10722
|
+
"SET": 1,
|
|
10723
|
+
"ALIAS": 2
|
|
10724
|
+
}
|
|
8619
10725
|
}
|
|
8620
10726
|
}
|
|
8621
10727
|
}
|
|
8622
10728
|
}
|
|
10729
|
+
},
|
|
10730
|
+
"SymbolVisibility": {
|
|
10731
|
+
"edition": "proto2",
|
|
10732
|
+
"values": {
|
|
10733
|
+
"VISIBILITY_UNSET": 0,
|
|
10734
|
+
"VISIBILITY_LOCAL": 1,
|
|
10735
|
+
"VISIBILITY_EXPORT": 2
|
|
10736
|
+
}
|
|
8623
10737
|
}
|
|
8624
10738
|
}
|
|
8625
10739
|
}
|