Package com.oracle.bmc.servicemesh.model
Enum IngressListenerTlsConfig.Mode
- java.lang.Object
-
- java.lang.Enum<IngressListenerTlsConfig.Mode>
-
- com.oracle.bmc.servicemesh.model.IngressListenerTlsConfig.Mode
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<IngressListenerTlsConfig.Mode>
- Enclosing class:
- IngressListenerTlsConfig
public static enum IngressListenerTlsConfig.Mode extends Enum<IngressListenerTlsConfig.Mode> implements BmcEnum
DISABLED: Connection can only be plaintext.PERMISSIVE: Connection can be either plaintext or TLS/mTLS. If the clientValidation.trustedCaBundle property is configured for the listener, mTLS is performed and the client’s certificates are validated by the gateway. TLS: Connection can only be TLS. MUTUAL_TLS: Connection can only be MTLS.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Disabled
MutualTls
Permissive
Tls
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 IngressListenerTlsConfig.Mode
create(String key)
String
getValue()
static IngressListenerTlsConfig.Mode
valueOf(String name)
Returns the enum constant of this type with the specified name.static IngressListenerTlsConfig.Mode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Disabled
public static final IngressListenerTlsConfig.Mode Disabled
-
Permissive
public static final IngressListenerTlsConfig.Mode Permissive
-
Tls
public static final IngressListenerTlsConfig.Mode Tls
-
MutualTls
public static final IngressListenerTlsConfig.Mode MutualTls
-
UnknownEnumValue
public static final IngressListenerTlsConfig.Mode 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 IngressListenerTlsConfig.Mode[] 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 (IngressListenerTlsConfig.Mode c : IngressListenerTlsConfig.Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IngressListenerTlsConfig.Mode 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 IngressListenerTlsConfig.Mode create(String key)
-
-