Enum Bucket.PublicAccessType
- java.lang.Object
-
- java.lang.Enum<Bucket.PublicAccessType>
-
- com.oracle.bmc.objectstorage.model.Bucket.PublicAccessType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<Bucket.PublicAccessType>
- Enclosing class:
- Bucket
public static enum Bucket.PublicAccessType extends Enum<Bucket.PublicAccessType> implements BmcEnum
The type of public access enabled on this bucket.A bucket is set to NoPublicAccess by default, which only allows an authenticated caller to access the bucket and its contents. When ObjectRead is enabled on the bucket, public access is allowed for the GetObject, HeadObject, and ListObjects operations. When ObjectReadWithoutList is enabled on the bucket, public access is allowed for the GetObject and HeadObject operations.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NoPublicAccess
ObjectRead
ObjectReadWithoutList
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Bucket.PublicAccessType
create(String key)
String
getValue()
static Bucket.PublicAccessType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Bucket.PublicAccessType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NoPublicAccess
public static final Bucket.PublicAccessType NoPublicAccess
-
ObjectRead
public static final Bucket.PublicAccessType ObjectRead
-
ObjectReadWithoutList
public static final Bucket.PublicAccessType ObjectReadWithoutList
-
UnknownEnumValue
public static final Bucket.PublicAccessType UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static Bucket.PublicAccessType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Bucket.PublicAccessType c : Bucket.PublicAccessType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Bucket.PublicAccessType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static Bucket.PublicAccessType create(String key)
-
-