mirror of
				https://github.com/dromara/RuoYi-Vue-Plus.git
				synced 2025-11-04 08:13:44 +08:00 
			
		
		
		
	update 优化 删除桶自动创建代码逻辑(云厂商限制不允许操作桶)
This commit is contained in:
		@@ -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;
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user