@zilliz/milvus2-sdk-node 2.6.5 → 2.6.7
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/dist/milvus/HttpClient.d.ts +71 -16
- package/dist/milvus/HttpClient.js +52 -11
- package/dist/milvus/HttpClient.js.map +1 -1
- package/dist/milvus/grpc/Data.js +6 -2
- package/dist/milvus/grpc/Data.js.map +1 -1
- package/dist/milvus/http/Alias.d.ts +3 -2
- package/dist/milvus/http/Collection.d.ts +3 -2
- package/dist/milvus/http/Import.d.ts +3 -2
- package/dist/milvus/http/MilvusIndex.d.ts +3 -2
- package/dist/milvus/http/Partition.d.ts +3 -2
- package/dist/milvus/http/Role.d.ts +3 -2
- package/dist/milvus/http/User.d.ts +3 -2
- package/dist/milvus/http/Vector.d.ts +3 -2
- package/dist/milvus/proto-json/milvus.base.d.ts +600 -0
- package/dist/milvus/proto-json/milvus.base.js +618 -9
- package/dist/milvus/proto-json/milvus.base.js.map +1 -1
- package/dist/milvus/proto-json/milvus.d.ts +600 -0
- package/dist/milvus/proto-json/milvus.js +618 -9
- package/dist/milvus/proto-json/milvus.js.map +1 -1
- package/dist/milvus/proto-json/schema.base.d.ts +34 -0
- package/dist/milvus/proto-json/schema.base.js +37 -3
- package/dist/milvus/proto-json/schema.base.js.map +1 -1
- package/dist/sdk.json +1 -1
- package/package.json +2 -2
|
@@ -72,6 +72,10 @@ declare const _default: {
|
|
|
72
72
|
requestType: string;
|
|
73
73
|
responseType: string;
|
|
74
74
|
};
|
|
75
|
+
TruncateCollection: {
|
|
76
|
+
requestType: string;
|
|
77
|
+
responseType: string;
|
|
78
|
+
};
|
|
75
79
|
CreatePartition: {
|
|
76
80
|
requestType: string;
|
|
77
81
|
responseType: string;
|
|
@@ -482,6 +486,42 @@ declare const _default: {
|
|
|
482
486
|
responseType: string;
|
|
483
487
|
responseStream: boolean;
|
|
484
488
|
};
|
|
489
|
+
ComputePhraseMatchSlop: {
|
|
490
|
+
requestType: string;
|
|
491
|
+
responseType: string;
|
|
492
|
+
};
|
|
493
|
+
CreateSnapshot: {
|
|
494
|
+
requestType: string;
|
|
495
|
+
responseType: string;
|
|
496
|
+
};
|
|
497
|
+
DropSnapshot: {
|
|
498
|
+
requestType: string;
|
|
499
|
+
responseType: string;
|
|
500
|
+
};
|
|
501
|
+
ListSnapshots: {
|
|
502
|
+
requestType: string;
|
|
503
|
+
responseType: string;
|
|
504
|
+
};
|
|
505
|
+
DescribeSnapshot: {
|
|
506
|
+
requestType: string;
|
|
507
|
+
responseType: string;
|
|
508
|
+
};
|
|
509
|
+
RestoreSnapshot: {
|
|
510
|
+
requestType: string;
|
|
511
|
+
responseType: string;
|
|
512
|
+
};
|
|
513
|
+
GetRestoreSnapshotState: {
|
|
514
|
+
requestType: string;
|
|
515
|
+
responseType: string;
|
|
516
|
+
};
|
|
517
|
+
ListRestoreSnapshotJobs: {
|
|
518
|
+
requestType: string;
|
|
519
|
+
responseType: string;
|
|
520
|
+
};
|
|
521
|
+
AlterCollectionSchema: {
|
|
522
|
+
requestType: string;
|
|
523
|
+
responseType: string;
|
|
524
|
+
};
|
|
485
525
|
};
|
|
486
526
|
};
|
|
487
527
|
CreateAliasRequest: {
|
|
@@ -2174,6 +2214,9 @@ declare const _default: {
|
|
|
2174
2214
|
"(common.privilege_ext_obj).object_name_index": number;
|
|
2175
2215
|
};
|
|
2176
2216
|
oneofs: {
|
|
2217
|
+
search_input: {
|
|
2218
|
+
oneof: string[];
|
|
2219
|
+
};
|
|
2177
2220
|
_namespace: {
|
|
2178
2221
|
oneof: string[];
|
|
2179
2222
|
};
|
|
@@ -2204,6 +2247,10 @@ declare const _default: {
|
|
|
2204
2247
|
type: string;
|
|
2205
2248
|
id: number;
|
|
2206
2249
|
};
|
|
2250
|
+
ids: {
|
|
2251
|
+
type: string;
|
|
2252
|
+
id: number;
|
|
2253
|
+
};
|
|
2207
2254
|
dsl_type: {
|
|
2208
2255
|
type: string;
|
|
2209
2256
|
id: number;
|
|
@@ -2245,6 +2292,9 @@ declare const _default: {
|
|
|
2245
2292
|
search_by_primary_keys: {
|
|
2246
2293
|
type: string;
|
|
2247
2294
|
id: number;
|
|
2295
|
+
options: {
|
|
2296
|
+
deprecated: boolean;
|
|
2297
|
+
};
|
|
2248
2298
|
};
|
|
2249
2299
|
sub_reqs: {
|
|
2250
2300
|
rule: string;
|
|
@@ -2691,6 +2741,26 @@ declare const _default: {
|
|
|
2691
2741
|
rule: string;
|
|
2692
2742
|
type: string;
|
|
2693
2743
|
id: number;
|
|
2744
|
+
options: {
|
|
2745
|
+
deprecated: boolean;
|
|
2746
|
+
};
|
|
2747
|
+
};
|
|
2748
|
+
};
|
|
2749
|
+
};
|
|
2750
|
+
ClusterInfo: {
|
|
2751
|
+
fields: {
|
|
2752
|
+
cluster_id: {
|
|
2753
|
+
type: string;
|
|
2754
|
+
id: number;
|
|
2755
|
+
};
|
|
2756
|
+
cchannel: {
|
|
2757
|
+
type: string;
|
|
2758
|
+
id: number;
|
|
2759
|
+
};
|
|
2760
|
+
pchannels: {
|
|
2761
|
+
rule: string;
|
|
2762
|
+
type: string;
|
|
2763
|
+
id: number;
|
|
2694
2764
|
};
|
|
2695
2765
|
};
|
|
2696
2766
|
};
|
|
@@ -2703,11 +2773,26 @@ declare const _default: {
|
|
|
2703
2773
|
flush_all_ts: {
|
|
2704
2774
|
type: string;
|
|
2705
2775
|
id: number;
|
|
2776
|
+
options: {
|
|
2777
|
+
deprecated: boolean;
|
|
2778
|
+
};
|
|
2706
2779
|
};
|
|
2707
2780
|
flush_results: {
|
|
2708
2781
|
rule: string;
|
|
2709
2782
|
type: string;
|
|
2710
2783
|
id: number;
|
|
2784
|
+
options: {
|
|
2785
|
+
deprecated: boolean;
|
|
2786
|
+
};
|
|
2787
|
+
};
|
|
2788
|
+
flush_all_msgs: {
|
|
2789
|
+
keyType: string;
|
|
2790
|
+
type: string;
|
|
2791
|
+
id: number;
|
|
2792
|
+
};
|
|
2793
|
+
cluster_info: {
|
|
2794
|
+
type: string;
|
|
2795
|
+
id: number;
|
|
2711
2796
|
};
|
|
2712
2797
|
};
|
|
2713
2798
|
};
|
|
@@ -3229,6 +3314,9 @@ declare const _default: {
|
|
|
3229
3314
|
flush_all_ts: {
|
|
3230
3315
|
type: string;
|
|
3231
3316
|
id: number;
|
|
3317
|
+
options: {
|
|
3318
|
+
deprecated: boolean;
|
|
3319
|
+
};
|
|
3232
3320
|
};
|
|
3233
3321
|
db_name: {
|
|
3234
3322
|
type: string;
|
|
@@ -3241,6 +3329,14 @@ declare const _default: {
|
|
|
3241
3329
|
rule: string;
|
|
3242
3330
|
type: string;
|
|
3243
3331
|
id: number;
|
|
3332
|
+
options: {
|
|
3333
|
+
deprecated: boolean;
|
|
3334
|
+
};
|
|
3335
|
+
};
|
|
3336
|
+
flush_all_tss: {
|
|
3337
|
+
keyType: string;
|
|
3338
|
+
type: string;
|
|
3339
|
+
id: number;
|
|
3244
3340
|
};
|
|
3245
3341
|
};
|
|
3246
3342
|
};
|
|
@@ -3258,6 +3354,9 @@ declare const _default: {
|
|
|
3258
3354
|
rule: string;
|
|
3259
3355
|
type: string;
|
|
3260
3356
|
id: number;
|
|
3357
|
+
options: {
|
|
3358
|
+
deprecated: boolean;
|
|
3359
|
+
};
|
|
3261
3360
|
};
|
|
3262
3361
|
};
|
|
3263
3362
|
};
|
|
@@ -5375,6 +5474,469 @@ declare const _default: {
|
|
|
5375
5474
|
};
|
|
5376
5475
|
};
|
|
5377
5476
|
};
|
|
5477
|
+
TruncateCollectionRequest: {
|
|
5478
|
+
options: {
|
|
5479
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5480
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5481
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5482
|
+
};
|
|
5483
|
+
fields: {
|
|
5484
|
+
base: {
|
|
5485
|
+
type: string;
|
|
5486
|
+
id: number;
|
|
5487
|
+
};
|
|
5488
|
+
db_name: {
|
|
5489
|
+
type: string;
|
|
5490
|
+
id: number;
|
|
5491
|
+
};
|
|
5492
|
+
collection_name: {
|
|
5493
|
+
type: string;
|
|
5494
|
+
id: number;
|
|
5495
|
+
};
|
|
5496
|
+
};
|
|
5497
|
+
};
|
|
5498
|
+
TruncateCollectionResponse: {
|
|
5499
|
+
fields: {
|
|
5500
|
+
status: {
|
|
5501
|
+
type: string;
|
|
5502
|
+
id: number;
|
|
5503
|
+
};
|
|
5504
|
+
};
|
|
5505
|
+
};
|
|
5506
|
+
ComputePhraseMatchSlopRequest: {
|
|
5507
|
+
fields: {
|
|
5508
|
+
base: {
|
|
5509
|
+
type: string;
|
|
5510
|
+
id: number;
|
|
5511
|
+
};
|
|
5512
|
+
analyzer_params: {
|
|
5513
|
+
type: string;
|
|
5514
|
+
id: number;
|
|
5515
|
+
};
|
|
5516
|
+
query_text: {
|
|
5517
|
+
type: string;
|
|
5518
|
+
id: number;
|
|
5519
|
+
};
|
|
5520
|
+
data_texts: {
|
|
5521
|
+
rule: string;
|
|
5522
|
+
type: string;
|
|
5523
|
+
id: number;
|
|
5524
|
+
};
|
|
5525
|
+
};
|
|
5526
|
+
};
|
|
5527
|
+
ComputePhraseMatchSlopResponse: {
|
|
5528
|
+
fields: {
|
|
5529
|
+
status: {
|
|
5530
|
+
type: string;
|
|
5531
|
+
id: number;
|
|
5532
|
+
};
|
|
5533
|
+
is_match: {
|
|
5534
|
+
rule: string;
|
|
5535
|
+
type: string;
|
|
5536
|
+
id: number;
|
|
5537
|
+
};
|
|
5538
|
+
slops: {
|
|
5539
|
+
rule: string;
|
|
5540
|
+
type: string;
|
|
5541
|
+
id: number;
|
|
5542
|
+
};
|
|
5543
|
+
};
|
|
5544
|
+
};
|
|
5545
|
+
CreateSnapshotRequest: {
|
|
5546
|
+
options: {
|
|
5547
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5548
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5549
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5550
|
+
};
|
|
5551
|
+
fields: {
|
|
5552
|
+
base: {
|
|
5553
|
+
type: string;
|
|
5554
|
+
id: number;
|
|
5555
|
+
};
|
|
5556
|
+
name: {
|
|
5557
|
+
type: string;
|
|
5558
|
+
id: number;
|
|
5559
|
+
};
|
|
5560
|
+
description: {
|
|
5561
|
+
type: string;
|
|
5562
|
+
id: number;
|
|
5563
|
+
};
|
|
5564
|
+
db_name: {
|
|
5565
|
+
type: string;
|
|
5566
|
+
id: number;
|
|
5567
|
+
};
|
|
5568
|
+
collection_name: {
|
|
5569
|
+
type: string;
|
|
5570
|
+
id: number;
|
|
5571
|
+
};
|
|
5572
|
+
};
|
|
5573
|
+
};
|
|
5574
|
+
DropSnapshotRequest: {
|
|
5575
|
+
options: {
|
|
5576
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5577
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5578
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5579
|
+
};
|
|
5580
|
+
fields: {
|
|
5581
|
+
base: {
|
|
5582
|
+
type: string;
|
|
5583
|
+
id: number;
|
|
5584
|
+
};
|
|
5585
|
+
name: {
|
|
5586
|
+
type: string;
|
|
5587
|
+
id: number;
|
|
5588
|
+
};
|
|
5589
|
+
};
|
|
5590
|
+
};
|
|
5591
|
+
ListSnapshotsRequest: {
|
|
5592
|
+
options: {
|
|
5593
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5594
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5595
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5596
|
+
};
|
|
5597
|
+
fields: {
|
|
5598
|
+
base: {
|
|
5599
|
+
type: string;
|
|
5600
|
+
id: number;
|
|
5601
|
+
};
|
|
5602
|
+
db_name: {
|
|
5603
|
+
type: string;
|
|
5604
|
+
id: number;
|
|
5605
|
+
};
|
|
5606
|
+
collection_name: {
|
|
5607
|
+
type: string;
|
|
5608
|
+
id: number;
|
|
5609
|
+
};
|
|
5610
|
+
};
|
|
5611
|
+
};
|
|
5612
|
+
ListSnapshotsResponse: {
|
|
5613
|
+
fields: {
|
|
5614
|
+
status: {
|
|
5615
|
+
type: string;
|
|
5616
|
+
id: number;
|
|
5617
|
+
};
|
|
5618
|
+
snapshots: {
|
|
5619
|
+
rule: string;
|
|
5620
|
+
type: string;
|
|
5621
|
+
id: number;
|
|
5622
|
+
};
|
|
5623
|
+
};
|
|
5624
|
+
};
|
|
5625
|
+
DescribeSnapshotRequest: {
|
|
5626
|
+
options: {
|
|
5627
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5628
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5629
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5630
|
+
};
|
|
5631
|
+
fields: {
|
|
5632
|
+
base: {
|
|
5633
|
+
type: string;
|
|
5634
|
+
id: number;
|
|
5635
|
+
};
|
|
5636
|
+
name: {
|
|
5637
|
+
type: string;
|
|
5638
|
+
id: number;
|
|
5639
|
+
};
|
|
5640
|
+
};
|
|
5641
|
+
};
|
|
5642
|
+
DescribeSnapshotResponse: {
|
|
5643
|
+
fields: {
|
|
5644
|
+
status: {
|
|
5645
|
+
type: string;
|
|
5646
|
+
id: number;
|
|
5647
|
+
};
|
|
5648
|
+
name: {
|
|
5649
|
+
type: string;
|
|
5650
|
+
id: number;
|
|
5651
|
+
};
|
|
5652
|
+
description: {
|
|
5653
|
+
type: string;
|
|
5654
|
+
id: number;
|
|
5655
|
+
};
|
|
5656
|
+
collection_name: {
|
|
5657
|
+
type: string;
|
|
5658
|
+
id: number;
|
|
5659
|
+
};
|
|
5660
|
+
partition_names: {
|
|
5661
|
+
rule: string;
|
|
5662
|
+
type: string;
|
|
5663
|
+
id: number;
|
|
5664
|
+
};
|
|
5665
|
+
create_ts: {
|
|
5666
|
+
type: string;
|
|
5667
|
+
id: number;
|
|
5668
|
+
};
|
|
5669
|
+
s3_location: {
|
|
5670
|
+
type: string;
|
|
5671
|
+
id: number;
|
|
5672
|
+
};
|
|
5673
|
+
};
|
|
5674
|
+
};
|
|
5675
|
+
RestoreSnapshotRequest: {
|
|
5676
|
+
options: {
|
|
5677
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5678
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5679
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5680
|
+
};
|
|
5681
|
+
fields: {
|
|
5682
|
+
base: {
|
|
5683
|
+
type: string;
|
|
5684
|
+
id: number;
|
|
5685
|
+
};
|
|
5686
|
+
name: {
|
|
5687
|
+
type: string;
|
|
5688
|
+
id: number;
|
|
5689
|
+
};
|
|
5690
|
+
db_name: {
|
|
5691
|
+
type: string;
|
|
5692
|
+
id: number;
|
|
5693
|
+
};
|
|
5694
|
+
collection_name: {
|
|
5695
|
+
type: string;
|
|
5696
|
+
id: number;
|
|
5697
|
+
};
|
|
5698
|
+
rewrite_data: {
|
|
5699
|
+
type: string;
|
|
5700
|
+
id: number;
|
|
5701
|
+
};
|
|
5702
|
+
};
|
|
5703
|
+
};
|
|
5704
|
+
RestoreSnapshotResponse: {
|
|
5705
|
+
fields: {
|
|
5706
|
+
status: {
|
|
5707
|
+
type: string;
|
|
5708
|
+
id: number;
|
|
5709
|
+
};
|
|
5710
|
+
job_id: {
|
|
5711
|
+
type: string;
|
|
5712
|
+
id: number;
|
|
5713
|
+
};
|
|
5714
|
+
};
|
|
5715
|
+
};
|
|
5716
|
+
RestoreSnapshotState: {
|
|
5717
|
+
values: {
|
|
5718
|
+
RestoreSnapshotNone: number;
|
|
5719
|
+
RestoreSnapshotPending: number;
|
|
5720
|
+
RestoreSnapshotExecuting: number;
|
|
5721
|
+
RestoreSnapshotCompleted: number;
|
|
5722
|
+
RestoreSnapshotFailed: number;
|
|
5723
|
+
};
|
|
5724
|
+
};
|
|
5725
|
+
RestoreSnapshotInfo: {
|
|
5726
|
+
fields: {
|
|
5727
|
+
job_id: {
|
|
5728
|
+
type: string;
|
|
5729
|
+
id: number;
|
|
5730
|
+
};
|
|
5731
|
+
snapshot_name: {
|
|
5732
|
+
type: string;
|
|
5733
|
+
id: number;
|
|
5734
|
+
};
|
|
5735
|
+
db_name: {
|
|
5736
|
+
type: string;
|
|
5737
|
+
id: number;
|
|
5738
|
+
};
|
|
5739
|
+
collection_name: {
|
|
5740
|
+
type: string;
|
|
5741
|
+
id: number;
|
|
5742
|
+
};
|
|
5743
|
+
state: {
|
|
5744
|
+
type: string;
|
|
5745
|
+
id: number;
|
|
5746
|
+
};
|
|
5747
|
+
progress: {
|
|
5748
|
+
type: string;
|
|
5749
|
+
id: number;
|
|
5750
|
+
};
|
|
5751
|
+
reason: {
|
|
5752
|
+
type: string;
|
|
5753
|
+
id: number;
|
|
5754
|
+
};
|
|
5755
|
+
start_time: {
|
|
5756
|
+
type: string;
|
|
5757
|
+
id: number;
|
|
5758
|
+
};
|
|
5759
|
+
time_cost: {
|
|
5760
|
+
type: string;
|
|
5761
|
+
id: number;
|
|
5762
|
+
};
|
|
5763
|
+
};
|
|
5764
|
+
};
|
|
5765
|
+
GetRestoreSnapshotStateRequest: {
|
|
5766
|
+
options: {
|
|
5767
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5768
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5769
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5770
|
+
};
|
|
5771
|
+
fields: {
|
|
5772
|
+
base: {
|
|
5773
|
+
type: string;
|
|
5774
|
+
id: number;
|
|
5775
|
+
};
|
|
5776
|
+
job_id: {
|
|
5777
|
+
type: string;
|
|
5778
|
+
id: number;
|
|
5779
|
+
};
|
|
5780
|
+
};
|
|
5781
|
+
};
|
|
5782
|
+
GetRestoreSnapshotStateResponse: {
|
|
5783
|
+
fields: {
|
|
5784
|
+
status: {
|
|
5785
|
+
type: string;
|
|
5786
|
+
id: number;
|
|
5787
|
+
};
|
|
5788
|
+
info: {
|
|
5789
|
+
type: string;
|
|
5790
|
+
id: number;
|
|
5791
|
+
};
|
|
5792
|
+
};
|
|
5793
|
+
};
|
|
5794
|
+
ListRestoreSnapshotJobsRequest: {
|
|
5795
|
+
options: {
|
|
5796
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5797
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5798
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5799
|
+
};
|
|
5800
|
+
fields: {
|
|
5801
|
+
base: {
|
|
5802
|
+
type: string;
|
|
5803
|
+
id: number;
|
|
5804
|
+
};
|
|
5805
|
+
db_name: {
|
|
5806
|
+
type: string;
|
|
5807
|
+
id: number;
|
|
5808
|
+
};
|
|
5809
|
+
collection_name: {
|
|
5810
|
+
type: string;
|
|
5811
|
+
id: number;
|
|
5812
|
+
};
|
|
5813
|
+
};
|
|
5814
|
+
};
|
|
5815
|
+
ListRestoreSnapshotJobsResponse: {
|
|
5816
|
+
fields: {
|
|
5817
|
+
status: {
|
|
5818
|
+
type: string;
|
|
5819
|
+
id: number;
|
|
5820
|
+
};
|
|
5821
|
+
jobs: {
|
|
5822
|
+
rule: string;
|
|
5823
|
+
type: string;
|
|
5824
|
+
id: number;
|
|
5825
|
+
};
|
|
5826
|
+
};
|
|
5827
|
+
};
|
|
5828
|
+
AlterCollectionSchemaRequest: {
|
|
5829
|
+
options: {
|
|
5830
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5831
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5832
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5833
|
+
};
|
|
5834
|
+
fields: {
|
|
5835
|
+
base: {
|
|
5836
|
+
type: string;
|
|
5837
|
+
id: number;
|
|
5838
|
+
};
|
|
5839
|
+
db_name: {
|
|
5840
|
+
type: string;
|
|
5841
|
+
id: number;
|
|
5842
|
+
};
|
|
5843
|
+
collection_name: {
|
|
5844
|
+
type: string;
|
|
5845
|
+
id: number;
|
|
5846
|
+
};
|
|
5847
|
+
collectionID: {
|
|
5848
|
+
type: string;
|
|
5849
|
+
id: number;
|
|
5850
|
+
};
|
|
5851
|
+
action: {
|
|
5852
|
+
type: string;
|
|
5853
|
+
id: number;
|
|
5854
|
+
};
|
|
5855
|
+
};
|
|
5856
|
+
nested: {
|
|
5857
|
+
FieldInfo: {
|
|
5858
|
+
fields: {
|
|
5859
|
+
field_schema: {
|
|
5860
|
+
type: string;
|
|
5861
|
+
id: number;
|
|
5862
|
+
};
|
|
5863
|
+
index_name: {
|
|
5864
|
+
type: string;
|
|
5865
|
+
id: number;
|
|
5866
|
+
};
|
|
5867
|
+
extra_params: {
|
|
5868
|
+
rule: string;
|
|
5869
|
+
type: string;
|
|
5870
|
+
id: number;
|
|
5871
|
+
};
|
|
5872
|
+
};
|
|
5873
|
+
};
|
|
5874
|
+
AddRequest: {
|
|
5875
|
+
fields: {
|
|
5876
|
+
field_infos: {
|
|
5877
|
+
rule: string;
|
|
5878
|
+
type: string;
|
|
5879
|
+
id: number;
|
|
5880
|
+
};
|
|
5881
|
+
func_schema: {
|
|
5882
|
+
rule: string;
|
|
5883
|
+
type: string;
|
|
5884
|
+
id: number;
|
|
5885
|
+
};
|
|
5886
|
+
do_physical_backfill: {
|
|
5887
|
+
type: string;
|
|
5888
|
+
id: number;
|
|
5889
|
+
};
|
|
5890
|
+
};
|
|
5891
|
+
};
|
|
5892
|
+
DropRequest: {
|
|
5893
|
+
oneofs: {
|
|
5894
|
+
field_identifier: {
|
|
5895
|
+
oneof: string[];
|
|
5896
|
+
};
|
|
5897
|
+
};
|
|
5898
|
+
fields: {
|
|
5899
|
+
field_name: {
|
|
5900
|
+
type: string;
|
|
5901
|
+
id: number;
|
|
5902
|
+
};
|
|
5903
|
+
field_id: {
|
|
5904
|
+
type: string;
|
|
5905
|
+
id: number;
|
|
5906
|
+
};
|
|
5907
|
+
};
|
|
5908
|
+
};
|
|
5909
|
+
Action: {
|
|
5910
|
+
oneofs: {
|
|
5911
|
+
op: {
|
|
5912
|
+
oneof: string[];
|
|
5913
|
+
};
|
|
5914
|
+
};
|
|
5915
|
+
fields: {
|
|
5916
|
+
add_request: {
|
|
5917
|
+
type: string;
|
|
5918
|
+
id: number;
|
|
5919
|
+
};
|
|
5920
|
+
drop_request: {
|
|
5921
|
+
type: string;
|
|
5922
|
+
id: number;
|
|
5923
|
+
};
|
|
5924
|
+
};
|
|
5925
|
+
};
|
|
5926
|
+
};
|
|
5927
|
+
};
|
|
5928
|
+
AlterCollectionSchemaResponse: {
|
|
5929
|
+
fields: {
|
|
5930
|
+
alter_status: {
|
|
5931
|
+
type: string;
|
|
5932
|
+
id: number;
|
|
5933
|
+
};
|
|
5934
|
+
index_status: {
|
|
5935
|
+
type: string;
|
|
5936
|
+
id: number;
|
|
5937
|
+
};
|
|
5938
|
+
};
|
|
5939
|
+
};
|
|
5378
5940
|
};
|
|
5379
5941
|
};
|
|
5380
5942
|
common: {
|
|
@@ -5586,6 +6148,10 @@ declare const _default: {
|
|
|
5586
6148
|
type: string;
|
|
5587
6149
|
id: number;
|
|
5588
6150
|
};
|
|
6151
|
+
element_level: {
|
|
6152
|
+
type: string;
|
|
6153
|
+
id: number;
|
|
6154
|
+
};
|
|
5589
6155
|
};
|
|
5590
6156
|
};
|
|
5591
6157
|
PlaceholderGroup: {
|
|
@@ -5631,6 +6197,7 @@ declare const _default: {
|
|
|
5631
6197
|
AddCollectionFunction: number;
|
|
5632
6198
|
AlterCollectionFunction: number;
|
|
5633
6199
|
DropCollectionFunction: number;
|
|
6200
|
+
TruncateCollection: number;
|
|
5634
6201
|
CreatePartition: number;
|
|
5635
6202
|
DropPartition: number;
|
|
5636
6203
|
HasPartition: number;
|
|
@@ -5661,6 +6228,7 @@ declare const _default: {
|
|
|
5661
6228
|
FlushSegment: number;
|
|
5662
6229
|
CreateSegment: number;
|
|
5663
6230
|
Import: number;
|
|
6231
|
+
FlushAll: number;
|
|
5664
6232
|
Search: number;
|
|
5665
6233
|
SearchResult: number;
|
|
5666
6234
|
GetIndexState: number;
|
|
@@ -5732,6 +6300,14 @@ declare const _default: {
|
|
|
5732
6300
|
DescribeDatabase: number;
|
|
5733
6301
|
AddCollectionField: number;
|
|
5734
6302
|
AlterWAL: number;
|
|
6303
|
+
CreateSnapshot: number;
|
|
6304
|
+
DropSnapshot: number;
|
|
6305
|
+
ListSnapshots: number;
|
|
6306
|
+
DescribeSnapshot: number;
|
|
6307
|
+
RestoreSnapshot: number;
|
|
6308
|
+
GetRestoreSnapshotState: number;
|
|
6309
|
+
ListRestoreSnapshotJobs: number;
|
|
6310
|
+
AlterCollectionSchema: number;
|
|
5735
6311
|
};
|
|
5736
6312
|
};
|
|
5737
6313
|
MsgBase: {
|
|
@@ -5921,6 +6497,12 @@ declare const _default: {
|
|
|
5921
6497
|
PrivilegeRemoveFileResource: number;
|
|
5922
6498
|
PrivilegeListFileResources: number;
|
|
5923
6499
|
PrivilegeUpdateReplicateConfiguration: number;
|
|
6500
|
+
PrivilegeCreateSnapshot: number;
|
|
6501
|
+
PrivilegeDropSnapshot: number;
|
|
6502
|
+
PrivilegeDescribeSnapshot: number;
|
|
6503
|
+
PrivilegeListSnapshots: number;
|
|
6504
|
+
PrivilegeRestoreSnapshot: number;
|
|
6505
|
+
PrivilegeAlterCollectionSchema: number;
|
|
5924
6506
|
};
|
|
5925
6507
|
};
|
|
5926
6508
|
PrivilegeExt: {
|
|
@@ -6321,6 +6903,7 @@ declare const _default: {
|
|
|
6321
6903
|
BM25: number;
|
|
6322
6904
|
TextEmbedding: number;
|
|
6323
6905
|
Rerank: number;
|
|
6906
|
+
MinHash: number;
|
|
6324
6907
|
};
|
|
6325
6908
|
};
|
|
6326
6909
|
FieldState: {
|
|
@@ -6521,6 +7104,15 @@ declare const _default: {
|
|
|
6521
7104
|
type: string;
|
|
6522
7105
|
id: number;
|
|
6523
7106
|
};
|
|
7107
|
+
do_physical_backfill: {
|
|
7108
|
+
type: string;
|
|
7109
|
+
id: number;
|
|
7110
|
+
};
|
|
7111
|
+
file_resource_ids: {
|
|
7112
|
+
rule: string;
|
|
7113
|
+
type: string;
|
|
7114
|
+
id: number;
|
|
7115
|
+
};
|
|
6524
7116
|
};
|
|
6525
7117
|
};
|
|
6526
7118
|
StructArrayFieldSchema: {
|
|
@@ -6983,6 +7575,10 @@ declare const _default: {
|
|
|
6983
7575
|
type: string;
|
|
6984
7576
|
id: number;
|
|
6985
7577
|
};
|
|
7578
|
+
element_indices: {
|
|
7579
|
+
type: string;
|
|
7580
|
+
id: number;
|
|
7581
|
+
};
|
|
6986
7582
|
};
|
|
6987
7583
|
};
|
|
6988
7584
|
VectorClusteringInfo: {
|
|
@@ -7358,6 +7954,10 @@ declare const _default: {
|
|
|
7358
7954
|
type: string;
|
|
7359
7955
|
id: number;
|
|
7360
7956
|
};
|
|
7957
|
+
WAL_name: {
|
|
7958
|
+
type: string;
|
|
7959
|
+
id: number;
|
|
7960
|
+
};
|
|
7361
7961
|
};
|
|
7362
7962
|
};
|
|
7363
7963
|
CreateCollectionRequest: {
|