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.
22 lines
658 B
22 lines
658 B
4 weeks ago
|
import { checkBucketName } from '../utils/checkBucketName';
|
||
|
/**
|
||
|
* deleteBucketInventory
|
||
|
* @param {String} bucketName - bucket name
|
||
|
* @param {String} inventoryId
|
||
|
* @param {Object} options
|
||
|
*/
|
||
|
|
||
|
export async function deleteBucketInventory(this: any, bucketName: string, inventoryId: string, options: any = {}) {
|
||
|
const subres: any = Object.assign({ inventory: '', inventoryId }, options.subres);
|
||
|
checkBucketName(bucketName);
|
||
|
|
||
|
const params = this._bucketRequestParams('DELETE', bucketName, subres, options);
|
||
|
params.successStatuses = [204];
|
||
|
|
||
|
const result = await this.request(params);
|
||
|
return {
|
||
|
status: result.status,
|
||
|
res: result.res
|
||
|
};
|
||
|
}
|