mirror of https://github.com/milvus-io/milvus.git
28 lines
534 B
Python
28 lines
534 B
Python
from decorest import GET, POST, DELETE
|
|
from decorest import HttpStatus, RestClient
|
|
from decorest import accept, body, content, endpoint, form
|
|
from decorest import header, multipart, on, query, stream, timeout
|
|
|
|
|
|
class Partition(RestClient):
|
|
def drop_partition():
|
|
pass
|
|
|
|
def create_partition():
|
|
pass
|
|
|
|
def has_partition():
|
|
pass
|
|
|
|
def get_partition_statistics():
|
|
pass
|
|
|
|
def show_partitions():
|
|
pass
|
|
|
|
def release_partition():
|
|
pass
|
|
|
|
def load_partition():
|
|
pass
|