EncryptionType Class

public final class EncryptionType
extends ExpandableStringEnum<EncryptionType>

Encryption type of the capacity pool, set encryption type for data at rest for this pool and all volumes in it. This value can only be set when creating new pool.

Field Summary

Modifier and Type Field and Description
static final EncryptionType DOUBLE

EncryptionType Double, volumes will use double encryption at rest.

static final EncryptionType SINGLE

EncryptionType Single, volumes will use single encryption at rest.

Constructor Summary

Constructor Description
EncryptionType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of EncryptionType value.

Method Summary

Modifier and Type Method and Description
static EncryptionType fromString(String name)

Creates or finds a EncryptionType from its string representation.

static Collection<EncryptionType> values()

Gets known EncryptionType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

DOUBLE

public static final EncryptionType DOUBLE

EncryptionType Double, volumes will use double encryption at rest.

SINGLE

public static final EncryptionType SINGLE

EncryptionType Single, volumes will use single encryption at rest.

Constructor Details

EncryptionType

@Deprecated
public EncryptionType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of EncryptionType value.

Method Details

fromString

public static EncryptionType fromString(String name)

Creates or finds a EncryptionType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding EncryptionType.

values

public static Collection<EncryptionType> values()

Gets known EncryptionType values.

Returns:

known EncryptionType values.

Applies to