@zilliz/milvus2-sdk-node 2.6.0 → 2.6.2
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/MilvusClient.js +7 -1
- package/dist/milvus/MilvusClient.js.map +1 -1
- package/dist/milvus/const/milvus.d.ts +38 -4
- package/dist/milvus/const/milvus.js +41 -2
- package/dist/milvus/const/milvus.js.map +1 -1
- package/dist/milvus/grpc/BaseClient.d.ts +1 -0
- package/dist/milvus/grpc/BaseClient.js +1 -0
- package/dist/milvus/grpc/BaseClient.js.map +1 -1
- package/dist/milvus/grpc/Collection.d.ts +2 -2
- package/dist/milvus/grpc/Collection.js +23 -4
- package/dist/milvus/grpc/Collection.js.map +1 -1
- package/dist/milvus/grpc/Data.d.ts +58 -21
- package/dist/milvus/grpc/Data.js +153 -61
- package/dist/milvus/grpc/Data.js.map +1 -1
- package/dist/milvus/proto-json/milvus.base.d.ts +769 -8
- package/dist/milvus/proto-json/milvus.base.js +793 -11
- package/dist/milvus/proto-json/milvus.base.js.map +1 -1
- package/dist/milvus/proto-json/milvus.d.ts +769 -8
- package/dist/milvus/proto-json/milvus.js +793 -11
- package/dist/milvus/proto-json/milvus.js.map +1 -1
- package/dist/milvus/proto-json/schema.base.d.ts +212 -0
- package/dist/milvus/proto-json/schema.base.js +220 -5
- package/dist/milvus/proto-json/schema.base.js.map +1 -1
- package/dist/milvus/types/Collection.d.ts +8 -2
- package/dist/milvus/types/Common.d.ts +3 -0
- package/dist/milvus/types/Data.d.ts +1 -300
- package/dist/milvus/types/Data.js +0 -1
- package/dist/milvus/types/Data.js.map +1 -1
- package/dist/milvus/types/DataTypes.d.ts +35 -0
- package/dist/milvus/types/DataTypes.js +3 -0
- package/dist/milvus/types/DataTypes.js.map +1 -0
- package/dist/milvus/types/HighLevel.d.ts +1 -1
- package/dist/milvus/types/Insert.d.ts +66 -0
- package/dist/milvus/types/Insert.js +4 -0
- package/dist/milvus/types/Insert.js.map +1 -0
- package/dist/milvus/types/Search.d.ts +147 -0
- package/dist/milvus/types/Search.js +4 -0
- package/dist/milvus/types/Search.js.map +1 -0
- package/dist/milvus/types/Segments.d.ts +68 -0
- package/dist/milvus/types/Segments.js +3 -0
- package/dist/milvus/types/Segments.js.map +1 -0
- package/dist/milvus/types/index.d.ts +4 -0
- package/dist/milvus/types/index.js +4 -0
- package/dist/milvus/types/index.js.map +1 -1
- package/dist/milvus/types.d.ts +4 -0
- package/dist/milvus/types.js +4 -1
- package/dist/milvus/types.js.map +1 -1
- package/dist/milvus/utils/Bytes.d.ts +5 -5
- package/dist/milvus/utils/Bytes.js +11 -10
- package/dist/milvus/utils/Bytes.js.map +1 -1
- package/dist/milvus/utils/Connection.d.ts +14 -0
- package/dist/milvus/utils/Connection.js +24 -0
- package/dist/milvus/utils/Connection.js.map +1 -0
- package/dist/milvus/utils/Data.d.ts +43 -0
- package/dist/milvus/utils/Data.js +297 -0
- package/dist/milvus/utils/Data.js.map +1 -0
- package/dist/milvus/utils/Format.d.ts +1 -233
- package/dist/milvus/utils/Format.js +108 -728
- package/dist/milvus/utils/Format.js.map +1 -1
- package/dist/milvus/utils/Function.d.ts +1 -21
- package/dist/milvus/utils/Function.js +1 -79
- package/dist/milvus/utils/Function.js.map +1 -1
- package/dist/milvus/utils/Schema.d.ts +59 -0
- package/dist/milvus/utils/Schema.js +256 -0
- package/dist/milvus/utils/Schema.js.map +1 -0
- package/dist/milvus/utils/Search.d.ts +193 -0
- package/dist/milvus/utils/Search.js +419 -0
- package/dist/milvus/utils/Search.js.map +1 -0
- package/dist/milvus/utils/index.d.ts +4 -0
- package/dist/milvus/utils/index.js +4 -0
- package/dist/milvus/utils/index.js.map +1 -1
- package/dist/sdk.json +1 -1
- package/package.json +2 -2
|
@@ -40,6 +40,10 @@ declare const _default: {
|
|
|
40
40
|
requestType: string;
|
|
41
41
|
responseType: string;
|
|
42
42
|
};
|
|
43
|
+
BatchDescribeCollection: {
|
|
44
|
+
requestType: string;
|
|
45
|
+
responseType: string;
|
|
46
|
+
};
|
|
43
47
|
GetCollectionStatistics: {
|
|
44
48
|
requestType: string;
|
|
45
49
|
responseType: string;
|
|
@@ -56,6 +60,18 @@ declare const _default: {
|
|
|
56
60
|
requestType: string;
|
|
57
61
|
responseType: string;
|
|
58
62
|
};
|
|
63
|
+
AddCollectionFunction: {
|
|
64
|
+
requestType: string;
|
|
65
|
+
responseType: string;
|
|
66
|
+
};
|
|
67
|
+
AlterCollectionFunction: {
|
|
68
|
+
requestType: string;
|
|
69
|
+
responseType: string;
|
|
70
|
+
};
|
|
71
|
+
DropCollectionFunction: {
|
|
72
|
+
requestType: string;
|
|
73
|
+
responseType: string;
|
|
74
|
+
};
|
|
59
75
|
CreatePartition: {
|
|
60
76
|
requestType: string;
|
|
61
77
|
responseType: string;
|
|
@@ -412,6 +428,18 @@ declare const _default: {
|
|
|
412
428
|
requestType: string;
|
|
413
429
|
responseType: string;
|
|
414
430
|
};
|
|
431
|
+
AddFileResource: {
|
|
432
|
+
requestType: string;
|
|
433
|
+
responseType: string;
|
|
434
|
+
};
|
|
435
|
+
RemoveFileResource: {
|
|
436
|
+
requestType: string;
|
|
437
|
+
responseType: string;
|
|
438
|
+
};
|
|
439
|
+
ListFileResources: {
|
|
440
|
+
requestType: string;
|
|
441
|
+
responseType: string;
|
|
442
|
+
};
|
|
415
443
|
AddUserTags: {
|
|
416
444
|
requestType: string;
|
|
417
445
|
responseType: string;
|
|
@@ -440,6 +468,20 @@ declare const _default: {
|
|
|
440
468
|
requestType: string;
|
|
441
469
|
responseType: string;
|
|
442
470
|
};
|
|
471
|
+
UpdateReplicateConfiguration: {
|
|
472
|
+
requestType: string;
|
|
473
|
+
responseType: string;
|
|
474
|
+
};
|
|
475
|
+
GetReplicateInfo: {
|
|
476
|
+
requestType: string;
|
|
477
|
+
responseType: string;
|
|
478
|
+
};
|
|
479
|
+
CreateReplicateStream: {
|
|
480
|
+
requestType: string;
|
|
481
|
+
requestStream: boolean;
|
|
482
|
+
responseType: string;
|
|
483
|
+
responseStream: boolean;
|
|
484
|
+
};
|
|
443
485
|
};
|
|
444
486
|
};
|
|
445
487
|
CreateAliasRequest: {
|
|
@@ -887,6 +929,42 @@ declare const _default: {
|
|
|
887
929
|
};
|
|
888
930
|
};
|
|
889
931
|
};
|
|
932
|
+
BatchDescribeCollectionRequest: {
|
|
933
|
+
options: {
|
|
934
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
935
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
936
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
937
|
+
};
|
|
938
|
+
fields: {
|
|
939
|
+
db_name: {
|
|
940
|
+
type: string;
|
|
941
|
+
id: number;
|
|
942
|
+
};
|
|
943
|
+
collection_name: {
|
|
944
|
+
rule: string;
|
|
945
|
+
type: string;
|
|
946
|
+
id: number;
|
|
947
|
+
};
|
|
948
|
+
collectionID: {
|
|
949
|
+
rule: string;
|
|
950
|
+
type: string;
|
|
951
|
+
id: number;
|
|
952
|
+
};
|
|
953
|
+
};
|
|
954
|
+
};
|
|
955
|
+
BatchDescribeCollectionResponse: {
|
|
956
|
+
fields: {
|
|
957
|
+
status: {
|
|
958
|
+
type: string;
|
|
959
|
+
id: number;
|
|
960
|
+
};
|
|
961
|
+
responses: {
|
|
962
|
+
rule: string;
|
|
963
|
+
type: string;
|
|
964
|
+
id: number;
|
|
965
|
+
};
|
|
966
|
+
};
|
|
967
|
+
};
|
|
890
968
|
LoadCollectionRequest: {
|
|
891
969
|
options: {
|
|
892
970
|
"(common.privilege_ext_obj).object_type": string;
|
|
@@ -1109,6 +1187,11 @@ declare const _default: {
|
|
|
1109
1187
|
type: string;
|
|
1110
1188
|
id: number;
|
|
1111
1189
|
};
|
|
1190
|
+
shards_num: {
|
|
1191
|
+
rule: string;
|
|
1192
|
+
type: string;
|
|
1193
|
+
id: number;
|
|
1194
|
+
};
|
|
1112
1195
|
};
|
|
1113
1196
|
};
|
|
1114
1197
|
CreatePartitionRequest: {
|
|
@@ -1729,6 +1812,11 @@ declare const _default: {
|
|
|
1729
1812
|
"(common.privilege_ext_obj).object_privilege": string;
|
|
1730
1813
|
"(common.privilege_ext_obj).object_name_index": number;
|
|
1731
1814
|
};
|
|
1815
|
+
oneofs: {
|
|
1816
|
+
_namespace: {
|
|
1817
|
+
oneof: string[];
|
|
1818
|
+
};
|
|
1819
|
+
};
|
|
1732
1820
|
fields: {
|
|
1733
1821
|
base: {
|
|
1734
1822
|
type: string;
|
|
@@ -1764,6 +1852,13 @@ declare const _default: {
|
|
|
1764
1852
|
type: string;
|
|
1765
1853
|
id: number;
|
|
1766
1854
|
};
|
|
1855
|
+
namespace: {
|
|
1856
|
+
type: string;
|
|
1857
|
+
id: number;
|
|
1858
|
+
options: {
|
|
1859
|
+
proto3_optional: boolean;
|
|
1860
|
+
};
|
|
1861
|
+
};
|
|
1767
1862
|
};
|
|
1768
1863
|
};
|
|
1769
1864
|
AddCollectionFieldRequest: {
|
|
@@ -1795,12 +1890,108 @@ declare const _default: {
|
|
|
1795
1890
|
};
|
|
1796
1891
|
};
|
|
1797
1892
|
};
|
|
1893
|
+
AddCollectionFunctionRequest: {
|
|
1894
|
+
options: {
|
|
1895
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
1896
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
1897
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
1898
|
+
};
|
|
1899
|
+
fields: {
|
|
1900
|
+
base: {
|
|
1901
|
+
type: string;
|
|
1902
|
+
id: number;
|
|
1903
|
+
};
|
|
1904
|
+
db_name: {
|
|
1905
|
+
type: string;
|
|
1906
|
+
id: number;
|
|
1907
|
+
};
|
|
1908
|
+
collection_name: {
|
|
1909
|
+
type: string;
|
|
1910
|
+
id: number;
|
|
1911
|
+
};
|
|
1912
|
+
collectionID: {
|
|
1913
|
+
type: string;
|
|
1914
|
+
id: number;
|
|
1915
|
+
};
|
|
1916
|
+
functionSchema: {
|
|
1917
|
+
type: string;
|
|
1918
|
+
id: number;
|
|
1919
|
+
};
|
|
1920
|
+
};
|
|
1921
|
+
};
|
|
1922
|
+
AlterCollectionFunctionRequest: {
|
|
1923
|
+
options: {
|
|
1924
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
1925
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
1926
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
1927
|
+
};
|
|
1928
|
+
fields: {
|
|
1929
|
+
base: {
|
|
1930
|
+
type: string;
|
|
1931
|
+
id: number;
|
|
1932
|
+
};
|
|
1933
|
+
db_name: {
|
|
1934
|
+
type: string;
|
|
1935
|
+
id: number;
|
|
1936
|
+
};
|
|
1937
|
+
collection_name: {
|
|
1938
|
+
type: string;
|
|
1939
|
+
id: number;
|
|
1940
|
+
};
|
|
1941
|
+
collectionID: {
|
|
1942
|
+
type: string;
|
|
1943
|
+
id: number;
|
|
1944
|
+
};
|
|
1945
|
+
function_name: {
|
|
1946
|
+
type: string;
|
|
1947
|
+
id: number;
|
|
1948
|
+
};
|
|
1949
|
+
functionSchema: {
|
|
1950
|
+
type: string;
|
|
1951
|
+
id: number;
|
|
1952
|
+
};
|
|
1953
|
+
};
|
|
1954
|
+
};
|
|
1955
|
+
DropCollectionFunctionRequest: {
|
|
1956
|
+
options: {
|
|
1957
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
1958
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
1959
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
1960
|
+
};
|
|
1961
|
+
fields: {
|
|
1962
|
+
base: {
|
|
1963
|
+
type: string;
|
|
1964
|
+
id: number;
|
|
1965
|
+
};
|
|
1966
|
+
db_name: {
|
|
1967
|
+
type: string;
|
|
1968
|
+
id: number;
|
|
1969
|
+
};
|
|
1970
|
+
collection_name: {
|
|
1971
|
+
type: string;
|
|
1972
|
+
id: number;
|
|
1973
|
+
};
|
|
1974
|
+
collectionID: {
|
|
1975
|
+
type: string;
|
|
1976
|
+
id: number;
|
|
1977
|
+
};
|
|
1978
|
+
function_name: {
|
|
1979
|
+
type: string;
|
|
1980
|
+
id: number;
|
|
1981
|
+
};
|
|
1982
|
+
};
|
|
1983
|
+
};
|
|
1798
1984
|
UpsertRequest: {
|
|
1799
1985
|
options: {
|
|
1800
1986
|
"(common.privilege_ext_obj).object_type": string;
|
|
1801
1987
|
"(common.privilege_ext_obj).object_privilege": string;
|
|
1802
1988
|
"(common.privilege_ext_obj).object_name_index": number;
|
|
1803
1989
|
};
|
|
1990
|
+
oneofs: {
|
|
1991
|
+
_namespace: {
|
|
1992
|
+
oneof: string[];
|
|
1993
|
+
};
|
|
1994
|
+
};
|
|
1804
1995
|
fields: {
|
|
1805
1996
|
base: {
|
|
1806
1997
|
type: string;
|
|
@@ -1836,6 +2027,17 @@ declare const _default: {
|
|
|
1836
2027
|
type: string;
|
|
1837
2028
|
id: number;
|
|
1838
2029
|
};
|
|
2030
|
+
partial_update: {
|
|
2031
|
+
type: string;
|
|
2032
|
+
id: number;
|
|
2033
|
+
};
|
|
2034
|
+
namespace: {
|
|
2035
|
+
type: string;
|
|
2036
|
+
id: number;
|
|
2037
|
+
options: {
|
|
2038
|
+
proto3_optional: boolean;
|
|
2039
|
+
};
|
|
2040
|
+
};
|
|
1839
2041
|
};
|
|
1840
2042
|
};
|
|
1841
2043
|
MutationResult: {
|
|
@@ -1924,6 +2126,11 @@ declare const _default: {
|
|
|
1924
2126
|
};
|
|
1925
2127
|
};
|
|
1926
2128
|
SubSearchRequest: {
|
|
2129
|
+
oneofs: {
|
|
2130
|
+
_namespace: {
|
|
2131
|
+
oneof: string[];
|
|
2132
|
+
};
|
|
2133
|
+
};
|
|
1927
2134
|
fields: {
|
|
1928
2135
|
dsl: {
|
|
1929
2136
|
type: string;
|
|
@@ -1951,6 +2158,13 @@ declare const _default: {
|
|
|
1951
2158
|
type: string;
|
|
1952
2159
|
id: number;
|
|
1953
2160
|
};
|
|
2161
|
+
namespace: {
|
|
2162
|
+
type: string;
|
|
2163
|
+
id: number;
|
|
2164
|
+
options: {
|
|
2165
|
+
proto3_optional: boolean;
|
|
2166
|
+
};
|
|
2167
|
+
};
|
|
1954
2168
|
};
|
|
1955
2169
|
};
|
|
1956
2170
|
SearchRequest: {
|
|
@@ -1959,6 +2173,11 @@ declare const _default: {
|
|
|
1959
2173
|
"(common.privilege_ext_obj).object_privilege": string;
|
|
1960
2174
|
"(common.privilege_ext_obj).object_name_index": number;
|
|
1961
2175
|
};
|
|
2176
|
+
oneofs: {
|
|
2177
|
+
_namespace: {
|
|
2178
|
+
oneof: string[];
|
|
2179
|
+
};
|
|
2180
|
+
};
|
|
1962
2181
|
fields: {
|
|
1963
2182
|
base: {
|
|
1964
2183
|
type: string;
|
|
@@ -2041,6 +2260,17 @@ declare const _default: {
|
|
|
2041
2260
|
type: string;
|
|
2042
2261
|
id: number;
|
|
2043
2262
|
};
|
|
2263
|
+
namespace: {
|
|
2264
|
+
type: string;
|
|
2265
|
+
id: number;
|
|
2266
|
+
options: {
|
|
2267
|
+
proto3_optional: boolean;
|
|
2268
|
+
};
|
|
2269
|
+
};
|
|
2270
|
+
highlighter: {
|
|
2271
|
+
type: string;
|
|
2272
|
+
id: number;
|
|
2273
|
+
};
|
|
2044
2274
|
};
|
|
2045
2275
|
};
|
|
2046
2276
|
Hits: {
|
|
@@ -2088,6 +2318,11 @@ declare const _default: {
|
|
|
2088
2318
|
"(common.privilege_ext_obj).object_privilege": string;
|
|
2089
2319
|
"(common.privilege_ext_obj).object_name_index": number;
|
|
2090
2320
|
};
|
|
2321
|
+
oneofs: {
|
|
2322
|
+
_namespace: {
|
|
2323
|
+
oneof: string[];
|
|
2324
|
+
};
|
|
2325
|
+
};
|
|
2091
2326
|
fields: {
|
|
2092
2327
|
base: {
|
|
2093
2328
|
type: string;
|
|
@@ -2145,6 +2380,13 @@ declare const _default: {
|
|
|
2145
2380
|
type: string;
|
|
2146
2381
|
id: number;
|
|
2147
2382
|
};
|
|
2383
|
+
namespace: {
|
|
2384
|
+
type: string;
|
|
2385
|
+
id: number;
|
|
2386
|
+
options: {
|
|
2387
|
+
proto3_optional: boolean;
|
|
2388
|
+
};
|
|
2389
|
+
};
|
|
2148
2390
|
};
|
|
2149
2391
|
};
|
|
2150
2392
|
FlushRequest: {
|
|
@@ -2212,6 +2454,11 @@ declare const _default: {
|
|
|
2212
2454
|
"(common.privilege_ext_obj).object_privilege": string;
|
|
2213
2455
|
"(common.privilege_ext_obj).object_name_index": number;
|
|
2214
2456
|
};
|
|
2457
|
+
oneofs: {
|
|
2458
|
+
_namespace: {
|
|
2459
|
+
oneof: string[];
|
|
2460
|
+
};
|
|
2461
|
+
};
|
|
2215
2462
|
fields: {
|
|
2216
2463
|
base: {
|
|
2217
2464
|
type: string;
|
|
@@ -2269,6 +2516,13 @@ declare const _default: {
|
|
|
2269
2516
|
type: string;
|
|
2270
2517
|
id: number;
|
|
2271
2518
|
};
|
|
2519
|
+
namespace: {
|
|
2520
|
+
type: string;
|
|
2521
|
+
id: number;
|
|
2522
|
+
options: {
|
|
2523
|
+
proto3_optional: boolean;
|
|
2524
|
+
};
|
|
2525
|
+
};
|
|
2272
2526
|
};
|
|
2273
2527
|
};
|
|
2274
2528
|
QueryResults: {
|
|
@@ -2402,6 +2656,19 @@ declare const _default: {
|
|
|
2402
2656
|
};
|
|
2403
2657
|
};
|
|
2404
2658
|
};
|
|
2659
|
+
FlushAllTarget: {
|
|
2660
|
+
fields: {
|
|
2661
|
+
db_name: {
|
|
2662
|
+
type: string;
|
|
2663
|
+
id: number;
|
|
2664
|
+
};
|
|
2665
|
+
collection_names: {
|
|
2666
|
+
rule: string;
|
|
2667
|
+
type: string;
|
|
2668
|
+
id: number;
|
|
2669
|
+
};
|
|
2670
|
+
};
|
|
2671
|
+
};
|
|
2405
2672
|
FlushAllRequest: {
|
|
2406
2673
|
options: {
|
|
2407
2674
|
"(common.privilege_ext_obj).object_type": string;
|
|
@@ -2416,6 +2683,14 @@ declare const _default: {
|
|
|
2416
2683
|
db_name: {
|
|
2417
2684
|
type: string;
|
|
2418
2685
|
id: number;
|
|
2686
|
+
options: {
|
|
2687
|
+
deprecated: boolean;
|
|
2688
|
+
};
|
|
2689
|
+
};
|
|
2690
|
+
flush_targets: {
|
|
2691
|
+
rule: string;
|
|
2692
|
+
type: string;
|
|
2693
|
+
id: number;
|
|
2419
2694
|
};
|
|
2420
2695
|
};
|
|
2421
2696
|
};
|
|
@@ -2429,35 +2704,86 @@ declare const _default: {
|
|
|
2429
2704
|
type: string;
|
|
2430
2705
|
id: number;
|
|
2431
2706
|
};
|
|
2707
|
+
flush_results: {
|
|
2708
|
+
rule: string;
|
|
2709
|
+
type: string;
|
|
2710
|
+
id: number;
|
|
2711
|
+
};
|
|
2432
2712
|
};
|
|
2433
2713
|
};
|
|
2434
|
-
|
|
2714
|
+
FlushAllResult: {
|
|
2435
2715
|
fields: {
|
|
2436
|
-
|
|
2716
|
+
db_name: {
|
|
2437
2717
|
type: string;
|
|
2438
2718
|
id: number;
|
|
2439
2719
|
};
|
|
2440
|
-
|
|
2720
|
+
collection_results: {
|
|
2721
|
+
rule: string;
|
|
2441
2722
|
type: string;
|
|
2442
2723
|
id: number;
|
|
2443
2724
|
};
|
|
2444
|
-
|
|
2725
|
+
};
|
|
2726
|
+
};
|
|
2727
|
+
FlushCollectionResult: {
|
|
2728
|
+
fields: {
|
|
2729
|
+
collection_name: {
|
|
2445
2730
|
type: string;
|
|
2446
2731
|
id: number;
|
|
2447
2732
|
};
|
|
2448
|
-
|
|
2733
|
+
segment_ids: {
|
|
2449
2734
|
type: string;
|
|
2450
2735
|
id: number;
|
|
2451
2736
|
};
|
|
2452
|
-
|
|
2737
|
+
flush_segment_ids: {
|
|
2453
2738
|
type: string;
|
|
2454
2739
|
id: number;
|
|
2455
2740
|
};
|
|
2456
|
-
|
|
2741
|
+
seal_time: {
|
|
2457
2742
|
type: string;
|
|
2458
2743
|
id: number;
|
|
2459
2744
|
};
|
|
2460
|
-
|
|
2745
|
+
flush_ts: {
|
|
2746
|
+
type: string;
|
|
2747
|
+
id: number;
|
|
2748
|
+
};
|
|
2749
|
+
channel_cps: {
|
|
2750
|
+
keyType: string;
|
|
2751
|
+
type: string;
|
|
2752
|
+
id: number;
|
|
2753
|
+
};
|
|
2754
|
+
};
|
|
2755
|
+
};
|
|
2756
|
+
PersistentSegmentInfo: {
|
|
2757
|
+
fields: {
|
|
2758
|
+
segmentID: {
|
|
2759
|
+
type: string;
|
|
2760
|
+
id: number;
|
|
2761
|
+
};
|
|
2762
|
+
collectionID: {
|
|
2763
|
+
type: string;
|
|
2764
|
+
id: number;
|
|
2765
|
+
};
|
|
2766
|
+
partitionID: {
|
|
2767
|
+
type: string;
|
|
2768
|
+
id: number;
|
|
2769
|
+
};
|
|
2770
|
+
num_rows: {
|
|
2771
|
+
type: string;
|
|
2772
|
+
id: number;
|
|
2773
|
+
};
|
|
2774
|
+
state: {
|
|
2775
|
+
type: string;
|
|
2776
|
+
id: number;
|
|
2777
|
+
};
|
|
2778
|
+
level: {
|
|
2779
|
+
type: string;
|
|
2780
|
+
id: number;
|
|
2781
|
+
};
|
|
2782
|
+
is_sorted: {
|
|
2783
|
+
type: string;
|
|
2784
|
+
id: number;
|
|
2785
|
+
};
|
|
2786
|
+
storage_version: {
|
|
2461
2787
|
type: string;
|
|
2462
2788
|
id: number;
|
|
2463
2789
|
};
|
|
@@ -2546,6 +2872,10 @@ declare const _default: {
|
|
|
2546
2872
|
type: string;
|
|
2547
2873
|
id: number;
|
|
2548
2874
|
};
|
|
2875
|
+
storage_version: {
|
|
2876
|
+
type: string;
|
|
2877
|
+
id: number;
|
|
2878
|
+
};
|
|
2549
2879
|
};
|
|
2550
2880
|
};
|
|
2551
2881
|
GetQuerySegmentInfoRequest: {
|
|
@@ -2752,6 +3082,10 @@ declare const _default: {
|
|
|
2752
3082
|
type: string;
|
|
2753
3083
|
id: number;
|
|
2754
3084
|
};
|
|
3085
|
+
l0Compaction: {
|
|
3086
|
+
type: string;
|
|
3087
|
+
id: number;
|
|
3088
|
+
};
|
|
2755
3089
|
};
|
|
2756
3090
|
};
|
|
2757
3091
|
ManualCompactionResponse: {
|
|
@@ -2895,6 +3229,14 @@ declare const _default: {
|
|
|
2895
3229
|
db_name: {
|
|
2896
3230
|
type: string;
|
|
2897
3231
|
id: number;
|
|
3232
|
+
options: {
|
|
3233
|
+
deprecated: boolean;
|
|
3234
|
+
};
|
|
3235
|
+
};
|
|
3236
|
+
flush_targets: {
|
|
3237
|
+
rule: string;
|
|
3238
|
+
type: string;
|
|
3239
|
+
id: number;
|
|
2898
3240
|
};
|
|
2899
3241
|
};
|
|
2900
3242
|
};
|
|
@@ -2908,6 +3250,24 @@ declare const _default: {
|
|
|
2908
3250
|
type: string;
|
|
2909
3251
|
id: number;
|
|
2910
3252
|
};
|
|
3253
|
+
flush_states: {
|
|
3254
|
+
rule: string;
|
|
3255
|
+
type: string;
|
|
3256
|
+
id: number;
|
|
3257
|
+
};
|
|
3258
|
+
};
|
|
3259
|
+
};
|
|
3260
|
+
FlushAllState: {
|
|
3261
|
+
fields: {
|
|
3262
|
+
db_name: {
|
|
3263
|
+
type: string;
|
|
3264
|
+
id: number;
|
|
3265
|
+
};
|
|
3266
|
+
collection_flush_states: {
|
|
3267
|
+
keyType: string;
|
|
3268
|
+
type: string;
|
|
3269
|
+
id: number;
|
|
3270
|
+
};
|
|
2911
3271
|
};
|
|
2912
3272
|
};
|
|
2913
3273
|
ImportRequest: {
|
|
@@ -4587,6 +4947,94 @@ declare const _default: {
|
|
|
4587
4947
|
};
|
|
4588
4948
|
};
|
|
4589
4949
|
};
|
|
4950
|
+
FileResourceInfo: {
|
|
4951
|
+
fields: {
|
|
4952
|
+
id: {
|
|
4953
|
+
type: string;
|
|
4954
|
+
id: number;
|
|
4955
|
+
};
|
|
4956
|
+
name: {
|
|
4957
|
+
type: string;
|
|
4958
|
+
id: number;
|
|
4959
|
+
};
|
|
4960
|
+
path: {
|
|
4961
|
+
type: string;
|
|
4962
|
+
id: number;
|
|
4963
|
+
};
|
|
4964
|
+
type: {
|
|
4965
|
+
type: string;
|
|
4966
|
+
id: number;
|
|
4967
|
+
};
|
|
4968
|
+
};
|
|
4969
|
+
};
|
|
4970
|
+
AddFileResourceRequest: {
|
|
4971
|
+
options: {
|
|
4972
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
4973
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
4974
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
4975
|
+
};
|
|
4976
|
+
fields: {
|
|
4977
|
+
base: {
|
|
4978
|
+
type: string;
|
|
4979
|
+
id: number;
|
|
4980
|
+
};
|
|
4981
|
+
name: {
|
|
4982
|
+
type: string;
|
|
4983
|
+
id: number;
|
|
4984
|
+
};
|
|
4985
|
+
path: {
|
|
4986
|
+
type: string;
|
|
4987
|
+
id: number;
|
|
4988
|
+
};
|
|
4989
|
+
type: {
|
|
4990
|
+
type: string;
|
|
4991
|
+
id: number;
|
|
4992
|
+
};
|
|
4993
|
+
};
|
|
4994
|
+
};
|
|
4995
|
+
RemoveFileResourceRequest: {
|
|
4996
|
+
options: {
|
|
4997
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
4998
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
4999
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5000
|
+
};
|
|
5001
|
+
fields: {
|
|
5002
|
+
base: {
|
|
5003
|
+
type: string;
|
|
5004
|
+
id: number;
|
|
5005
|
+
};
|
|
5006
|
+
name: {
|
|
5007
|
+
type: string;
|
|
5008
|
+
id: number;
|
|
5009
|
+
};
|
|
5010
|
+
};
|
|
5011
|
+
};
|
|
5012
|
+
ListFileResourcesRequest: {
|
|
5013
|
+
options: {
|
|
5014
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5015
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5016
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5017
|
+
};
|
|
5018
|
+
fields: {
|
|
5019
|
+
base: {
|
|
5020
|
+
type: string;
|
|
5021
|
+
id: number;
|
|
5022
|
+
};
|
|
5023
|
+
};
|
|
5024
|
+
};
|
|
5025
|
+
ListFileResourcesResponse: {
|
|
5026
|
+
fields: {
|
|
5027
|
+
status: {
|
|
5028
|
+
type: string;
|
|
5029
|
+
id: number;
|
|
5030
|
+
};
|
|
5031
|
+
resources: {
|
|
5032
|
+
rule: string;
|
|
5033
|
+
type: string;
|
|
5034
|
+
id: number;
|
|
5035
|
+
};
|
|
5036
|
+
};
|
|
5037
|
+
};
|
|
4590
5038
|
RowPolicyAction: {
|
|
4591
5039
|
values: {
|
|
4592
5040
|
Query: number;
|
|
@@ -4852,6 +5300,80 @@ declare const _default: {
|
|
|
4852
5300
|
};
|
|
4853
5301
|
};
|
|
4854
5302
|
};
|
|
5303
|
+
UpdateReplicateConfigurationRequest: {
|
|
5304
|
+
fields: {
|
|
5305
|
+
replicate_configuration: {
|
|
5306
|
+
type: string;
|
|
5307
|
+
id: number;
|
|
5308
|
+
};
|
|
5309
|
+
};
|
|
5310
|
+
};
|
|
5311
|
+
GetReplicateInfoRequest: {
|
|
5312
|
+
fields: {
|
|
5313
|
+
source_cluster_id: {
|
|
5314
|
+
type: string;
|
|
5315
|
+
id: number;
|
|
5316
|
+
};
|
|
5317
|
+
target_pchannel: {
|
|
5318
|
+
type: string;
|
|
5319
|
+
id: number;
|
|
5320
|
+
};
|
|
5321
|
+
};
|
|
5322
|
+
};
|
|
5323
|
+
GetReplicateInfoResponse: {
|
|
5324
|
+
fields: {
|
|
5325
|
+
checkpoint: {
|
|
5326
|
+
type: string;
|
|
5327
|
+
id: number;
|
|
5328
|
+
};
|
|
5329
|
+
};
|
|
5330
|
+
};
|
|
5331
|
+
ReplicateMessage: {
|
|
5332
|
+
fields: {
|
|
5333
|
+
source_cluster_id: {
|
|
5334
|
+
type: string;
|
|
5335
|
+
id: number;
|
|
5336
|
+
};
|
|
5337
|
+
message: {
|
|
5338
|
+
type: string;
|
|
5339
|
+
id: number;
|
|
5340
|
+
};
|
|
5341
|
+
};
|
|
5342
|
+
};
|
|
5343
|
+
ReplicateRequest: {
|
|
5344
|
+
oneofs: {
|
|
5345
|
+
request: {
|
|
5346
|
+
oneof: string[];
|
|
5347
|
+
};
|
|
5348
|
+
};
|
|
5349
|
+
fields: {
|
|
5350
|
+
replicate_message: {
|
|
5351
|
+
type: string;
|
|
5352
|
+
id: number;
|
|
5353
|
+
};
|
|
5354
|
+
};
|
|
5355
|
+
};
|
|
5356
|
+
ReplicateConfirmedMessageInfo: {
|
|
5357
|
+
fields: {
|
|
5358
|
+
confirmed_time_tick: {
|
|
5359
|
+
type: string;
|
|
5360
|
+
id: number;
|
|
5361
|
+
};
|
|
5362
|
+
};
|
|
5363
|
+
};
|
|
5364
|
+
ReplicateResponse: {
|
|
5365
|
+
oneofs: {
|
|
5366
|
+
response: {
|
|
5367
|
+
oneof: string[];
|
|
5368
|
+
};
|
|
5369
|
+
};
|
|
5370
|
+
fields: {
|
|
5371
|
+
replicate_confirmed_message_info: {
|
|
5372
|
+
type: string;
|
|
5373
|
+
id: number;
|
|
5374
|
+
};
|
|
5375
|
+
};
|
|
5376
|
+
};
|
|
4855
5377
|
};
|
|
4856
5378
|
};
|
|
4857
5379
|
common: {
|
|
@@ -5040,6 +5562,12 @@ declare const _default: {
|
|
|
5040
5562
|
Int8Vector: number;
|
|
5041
5563
|
Int64: number;
|
|
5042
5564
|
VarChar: number;
|
|
5565
|
+
EmbListBinaryVector: number;
|
|
5566
|
+
EmbListFloatVector: number;
|
|
5567
|
+
EmbListFloat16Vector: number;
|
|
5568
|
+
EmbListBFloat16Vector: number;
|
|
5569
|
+
EmbListSparseFloatVector: number;
|
|
5570
|
+
EmbListInt8Vector: number;
|
|
5043
5571
|
};
|
|
5044
5572
|
};
|
|
5045
5573
|
PlaceholderValue: {
|
|
@@ -5099,6 +5627,9 @@ declare const _default: {
|
|
|
5099
5627
|
DescribeAlias: number;
|
|
5100
5628
|
ListAliases: number;
|
|
5101
5629
|
AlterCollectionField: number;
|
|
5630
|
+
AddCollectionFunction: number;
|
|
5631
|
+
AlterCollectionFunction: number;
|
|
5632
|
+
DropCollectionFunction: number;
|
|
5102
5633
|
CreatePartition: number;
|
|
5103
5634
|
DropPartition: number;
|
|
5104
5635
|
HasPartition: number;
|
|
@@ -5384,6 +5915,12 @@ declare const _default: {
|
|
|
5384
5915
|
PrivilegeGetImportProgress: number;
|
|
5385
5916
|
PrivilegeListImport: number;
|
|
5386
5917
|
PrivilegeAddCollectionField: number;
|
|
5918
|
+
PrivilegeAddFileResource: number;
|
|
5919
|
+
PrivilegeRemoveFileResource: number;
|
|
5920
|
+
PrivilegeListFileResources: number;
|
|
5921
|
+
PrivilegeAddCollectionFunction: number;
|
|
5922
|
+
PrivilegeAlterCollectionFunction: number;
|
|
5923
|
+
PrivilegeDropCollectionFunction: number;
|
|
5387
5924
|
};
|
|
5388
5925
|
};
|
|
5389
5926
|
PrivilegeExt: {
|
|
@@ -5520,6 +6057,166 @@ declare const _default: {
|
|
|
5520
6057
|
LOW: number;
|
|
5521
6058
|
};
|
|
5522
6059
|
};
|
|
6060
|
+
FileResourceType: {
|
|
6061
|
+
values: {
|
|
6062
|
+
ANALYZER_DICTIONARY: number;
|
|
6063
|
+
};
|
|
6064
|
+
};
|
|
6065
|
+
WALName: {
|
|
6066
|
+
values: {
|
|
6067
|
+
Unknown: number;
|
|
6068
|
+
RocksMQ: number;
|
|
6069
|
+
Pulsar: number;
|
|
6070
|
+
Kafka: number;
|
|
6071
|
+
WoodPecker: number;
|
|
6072
|
+
Test: number;
|
|
6073
|
+
};
|
|
6074
|
+
};
|
|
6075
|
+
ReplicateConfiguration: {
|
|
6076
|
+
fields: {
|
|
6077
|
+
clusters: {
|
|
6078
|
+
rule: string;
|
|
6079
|
+
type: string;
|
|
6080
|
+
id: number;
|
|
6081
|
+
};
|
|
6082
|
+
cross_cluster_topology: {
|
|
6083
|
+
rule: string;
|
|
6084
|
+
type: string;
|
|
6085
|
+
id: number;
|
|
6086
|
+
};
|
|
6087
|
+
};
|
|
6088
|
+
};
|
|
6089
|
+
ConnectionParam: {
|
|
6090
|
+
fields: {
|
|
6091
|
+
uri: {
|
|
6092
|
+
type: string;
|
|
6093
|
+
id: number;
|
|
6094
|
+
};
|
|
6095
|
+
token: {
|
|
6096
|
+
type: string;
|
|
6097
|
+
id: number;
|
|
6098
|
+
};
|
|
6099
|
+
};
|
|
6100
|
+
};
|
|
6101
|
+
MilvusCluster: {
|
|
6102
|
+
fields: {
|
|
6103
|
+
cluster_id: {
|
|
6104
|
+
type: string;
|
|
6105
|
+
id: number;
|
|
6106
|
+
};
|
|
6107
|
+
connection_param: {
|
|
6108
|
+
type: string;
|
|
6109
|
+
id: number;
|
|
6110
|
+
};
|
|
6111
|
+
pchannels: {
|
|
6112
|
+
rule: string;
|
|
6113
|
+
type: string;
|
|
6114
|
+
id: number;
|
|
6115
|
+
};
|
|
6116
|
+
};
|
|
6117
|
+
};
|
|
6118
|
+
CrossClusterTopology: {
|
|
6119
|
+
fields: {
|
|
6120
|
+
source_cluster_id: {
|
|
6121
|
+
type: string;
|
|
6122
|
+
id: number;
|
|
6123
|
+
};
|
|
6124
|
+
target_cluster_id: {
|
|
6125
|
+
type: string;
|
|
6126
|
+
id: number;
|
|
6127
|
+
};
|
|
6128
|
+
};
|
|
6129
|
+
};
|
|
6130
|
+
MessageID: {
|
|
6131
|
+
fields: {
|
|
6132
|
+
id: {
|
|
6133
|
+
type: string;
|
|
6134
|
+
id: number;
|
|
6135
|
+
};
|
|
6136
|
+
WAL_name: {
|
|
6137
|
+
type: string;
|
|
6138
|
+
id: number;
|
|
6139
|
+
};
|
|
6140
|
+
};
|
|
6141
|
+
};
|
|
6142
|
+
ImmutableMessage: {
|
|
6143
|
+
fields: {
|
|
6144
|
+
id: {
|
|
6145
|
+
type: string;
|
|
6146
|
+
id: number;
|
|
6147
|
+
};
|
|
6148
|
+
payload: {
|
|
6149
|
+
type: string;
|
|
6150
|
+
id: number;
|
|
6151
|
+
};
|
|
6152
|
+
properties: {
|
|
6153
|
+
keyType: string;
|
|
6154
|
+
type: string;
|
|
6155
|
+
id: number;
|
|
6156
|
+
};
|
|
6157
|
+
};
|
|
6158
|
+
};
|
|
6159
|
+
ReplicateCheckpoint: {
|
|
6160
|
+
fields: {
|
|
6161
|
+
cluster_id: {
|
|
6162
|
+
type: string;
|
|
6163
|
+
id: number;
|
|
6164
|
+
};
|
|
6165
|
+
pchannel: {
|
|
6166
|
+
type: string;
|
|
6167
|
+
id: number;
|
|
6168
|
+
};
|
|
6169
|
+
message_id: {
|
|
6170
|
+
type: string;
|
|
6171
|
+
id: number;
|
|
6172
|
+
};
|
|
6173
|
+
time_tick: {
|
|
6174
|
+
type: string;
|
|
6175
|
+
id: number;
|
|
6176
|
+
};
|
|
6177
|
+
};
|
|
6178
|
+
};
|
|
6179
|
+
HighlightData: {
|
|
6180
|
+
fields: {
|
|
6181
|
+
fragments: {
|
|
6182
|
+
rule: string;
|
|
6183
|
+
type: string;
|
|
6184
|
+
id: number;
|
|
6185
|
+
};
|
|
6186
|
+
};
|
|
6187
|
+
};
|
|
6188
|
+
HighlightResult: {
|
|
6189
|
+
fields: {
|
|
6190
|
+
field_name: {
|
|
6191
|
+
type: string;
|
|
6192
|
+
id: number;
|
|
6193
|
+
};
|
|
6194
|
+
datas: {
|
|
6195
|
+
rule: string;
|
|
6196
|
+
type: string;
|
|
6197
|
+
id: number;
|
|
6198
|
+
};
|
|
6199
|
+
};
|
|
6200
|
+
};
|
|
6201
|
+
HighlightType: {
|
|
6202
|
+
values: {
|
|
6203
|
+
Lexical: number;
|
|
6204
|
+
Semantic: number;
|
|
6205
|
+
};
|
|
6206
|
+
};
|
|
6207
|
+
Highlighter: {
|
|
6208
|
+
fields: {
|
|
6209
|
+
type: {
|
|
6210
|
+
type: string;
|
|
6211
|
+
id: number;
|
|
6212
|
+
};
|
|
6213
|
+
params: {
|
|
6214
|
+
rule: string;
|
|
6215
|
+
type: string;
|
|
6216
|
+
id: number;
|
|
6217
|
+
};
|
|
6218
|
+
};
|
|
6219
|
+
};
|
|
5523
6220
|
};
|
|
5524
6221
|
};
|
|
5525
6222
|
rg: {
|
|
@@ -5611,6 +6308,7 @@ declare const _default: {
|
|
|
5611
6308
|
JSON: number;
|
|
5612
6309
|
Geometry: number;
|
|
5613
6310
|
Text: number;
|
|
6311
|
+
Timestamptz: number;
|
|
5614
6312
|
BinaryVector: number;
|
|
5615
6313
|
FloatVector: number;
|
|
5616
6314
|
Float16Vector: number;
|
|
@@ -5619,6 +6317,7 @@ declare const _default: {
|
|
|
5619
6317
|
Int8Vector: number;
|
|
5620
6318
|
ArrayOfVector: number;
|
|
5621
6319
|
ArrayOfStruct: number;
|
|
6320
|
+
Struct: number;
|
|
5622
6321
|
};
|
|
5623
6322
|
};
|
|
5624
6323
|
FunctionType: {
|
|
@@ -5928,6 +6627,24 @@ declare const _default: {
|
|
|
5928
6627
|
};
|
|
5929
6628
|
};
|
|
5930
6629
|
};
|
|
6630
|
+
TimestamptzArray: {
|
|
6631
|
+
fields: {
|
|
6632
|
+
data: {
|
|
6633
|
+
rule: string;
|
|
6634
|
+
type: string;
|
|
6635
|
+
id: number;
|
|
6636
|
+
};
|
|
6637
|
+
};
|
|
6638
|
+
};
|
|
6639
|
+
GeometryWktArray: {
|
|
6640
|
+
fields: {
|
|
6641
|
+
data: {
|
|
6642
|
+
rule: string;
|
|
6643
|
+
type: string;
|
|
6644
|
+
id: number;
|
|
6645
|
+
};
|
|
6646
|
+
};
|
|
6647
|
+
};
|
|
5931
6648
|
ValueField: {
|
|
5932
6649
|
oneofs: {
|
|
5933
6650
|
data: {
|
|
@@ -5963,6 +6680,10 @@ declare const _default: {
|
|
|
5963
6680
|
type: string;
|
|
5964
6681
|
id: number;
|
|
5965
6682
|
};
|
|
6683
|
+
timestamptz_data: {
|
|
6684
|
+
type: string;
|
|
6685
|
+
id: number;
|
|
6686
|
+
};
|
|
5966
6687
|
};
|
|
5967
6688
|
};
|
|
5968
6689
|
ScalarField: {
|
|
@@ -6012,6 +6733,14 @@ declare const _default: {
|
|
|
6012
6733
|
type: string;
|
|
6013
6734
|
id: number;
|
|
6014
6735
|
};
|
|
6736
|
+
timestamptz_data: {
|
|
6737
|
+
type: string;
|
|
6738
|
+
id: number;
|
|
6739
|
+
};
|
|
6740
|
+
geometry_wkt_data: {
|
|
6741
|
+
type: string;
|
|
6742
|
+
id: number;
|
|
6743
|
+
};
|
|
6015
6744
|
};
|
|
6016
6745
|
};
|
|
6017
6746
|
SparseFloatArray: {
|
|
@@ -6233,6 +6962,11 @@ declare const _default: {
|
|
|
6233
6962
|
type: string;
|
|
6234
6963
|
id: number;
|
|
6235
6964
|
};
|
|
6965
|
+
highlight_results: {
|
|
6966
|
+
rule: string;
|
|
6967
|
+
type: string;
|
|
6968
|
+
id: number;
|
|
6969
|
+
};
|
|
6236
6970
|
};
|
|
6237
6971
|
};
|
|
6238
6972
|
VectorClusteringInfo: {
|
|
@@ -6453,6 +7187,11 @@ declare const _default: {
|
|
|
6453
7187
|
};
|
|
6454
7188
|
};
|
|
6455
7189
|
InsertRequest: {
|
|
7190
|
+
oneofs: {
|
|
7191
|
+
_namespace: {
|
|
7192
|
+
oneof: string[];
|
|
7193
|
+
};
|
|
7194
|
+
};
|
|
6456
7195
|
fields: {
|
|
6457
7196
|
base: {
|
|
6458
7197
|
type: string;
|
|
@@ -6518,6 +7257,13 @@ declare const _default: {
|
|
|
6518
7257
|
type: string;
|
|
6519
7258
|
id: number;
|
|
6520
7259
|
};
|
|
7260
|
+
namespace: {
|
|
7261
|
+
type: string;
|
|
7262
|
+
id: number;
|
|
7263
|
+
options: {
|
|
7264
|
+
proto3_optional: boolean;
|
|
7265
|
+
};
|
|
7266
|
+
};
|
|
6521
7267
|
};
|
|
6522
7268
|
};
|
|
6523
7269
|
DeleteRequest: {
|
|
@@ -6627,10 +7373,16 @@ declare const _default: {
|
|
|
6627
7373
|
partitionID: {
|
|
6628
7374
|
type: string;
|
|
6629
7375
|
id: number;
|
|
7376
|
+
options: {
|
|
7377
|
+
deprecated: boolean;
|
|
7378
|
+
};
|
|
6630
7379
|
};
|
|
6631
7380
|
schema: {
|
|
6632
7381
|
type: string;
|
|
6633
7382
|
id: number;
|
|
7383
|
+
options: {
|
|
7384
|
+
deprecated: boolean;
|
|
7385
|
+
};
|
|
6634
7386
|
};
|
|
6635
7387
|
virtualChannelNames: {
|
|
6636
7388
|
rule: string;
|
|
@@ -6647,6 +7399,15 @@ declare const _default: {
|
|
|
6647
7399
|
type: string;
|
|
6648
7400
|
id: number;
|
|
6649
7401
|
};
|
|
7402
|
+
partitionNames: {
|
|
7403
|
+
rule: string;
|
|
7404
|
+
type: string;
|
|
7405
|
+
id: number;
|
|
7406
|
+
};
|
|
7407
|
+
collection_schema: {
|
|
7408
|
+
type: string;
|
|
7409
|
+
id: number;
|
|
7410
|
+
};
|
|
6650
7411
|
};
|
|
6651
7412
|
};
|
|
6652
7413
|
DropCollectionRequest: {
|