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 and 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.
|
Modifier and Type | Method and 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.
|
public static final Bucket.PublicAccessType NoPublicAccess
public static final Bucket.PublicAccessType ObjectRead
public static final Bucket.PublicAccessType ObjectReadWithoutList
public static final Bucket.PublicAccessType UnknownEnumValue
public static Bucket.PublicAccessType[] values()
for (Bucket.PublicAccessType c : Bucket.PublicAccessType.values()) System.out.println(c);
public static Bucket.PublicAccessType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static Bucket.PublicAccessType create(String key)
Copyright © 2016–2024. All rights reserved.