12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import { ApiProperty } from '@nestjs/swagger';
- import {
- IsNotEmpty,
- IsString,
- IsEnum,
- IsArray,
- ArrayNotEmpty,
- } from 'class-validator';
- export enum ManageType {
- DELETE = 'delete',
- CREATE = 'create',
- }
- export class GetPartitionsInfo {
- @ApiProperty()
- @IsString()
- @IsNotEmpty({
- message: 'collection_name is empty',
- })
- readonly collection_name: string;
- }
- export class ManagePartition {
- @ApiProperty()
- @IsString()
- @IsNotEmpty({
- message: 'collection_name is empty',
- })
- readonly collection_name: string;
- @ApiProperty()
- @IsString()
- @IsNotEmpty({
- message: 'partition_name is empty',
- })
- readonly partition_name: string;
- @ApiProperty({ enum: ManageType })
- @IsEnum(ManageType, { message: 'Type allow delete and create' })
- readonly type: ManageType;
- }
- export class LoadPartitions {
- @ApiProperty()
- @IsString()
- @IsNotEmpty({
- message: 'collection_name is empty',
- })
- readonly collection_name: string;
- @ApiProperty()
- @IsArray()
- @ArrayNotEmpty()
- @IsNotEmpty({
- message: 'partition_names is empty',
- })
- readonly partition_names: string[];
- }
|