update 优化 删除桶自动创建代码逻辑(云厂商限制不允许操作桶)

This commit is contained in:
疯狂的狮子Li 2024-10-28 18:10:49 +08:00
parent 2a9f245b39
commit 5f31efd33e

View File

@ -1,35 +0,0 @@
package org.dromara.common.oss.enumd;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* minio策略配置
*
* @author Lion Li
*/
@Getter
@AllArgsConstructor
public enum PolicyType {
/**
* 只读
*/
READ("read-only"),
/**
* 只写
*/
WRITE("write-only"),
/**
* 读写
*/
READ_WRITE("read-write");
/**
* 类型
*/
private final String type;
}