用工小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
348 B

import { checkBucketName } from '../utils/checkBucketName';
export async function abortBucketWorm(this: any, name: string, options) {
checkBucketName(name);
const params = this._bucketRequestParams('DELETE', name, 'worm', options);
const result = await this.request(params);
return {
res: result.res,
status: result.status
};
}