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 and 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.
|
Modifier and Type | Method and 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.
|
public static final IngressListenerTlsConfig.Mode Disabled
public static final IngressListenerTlsConfig.Mode Permissive
public static final IngressListenerTlsConfig.Mode Tls
public static final IngressListenerTlsConfig.Mode MutualTls
public static final IngressListenerTlsConfig.Mode UnknownEnumValue
public static IngressListenerTlsConfig.Mode[] values()
for (IngressListenerTlsConfig.Mode c : IngressListenerTlsConfig.Mode.values()) System.out.println(c);
public static IngressListenerTlsConfig.Mode 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 IngressListenerTlsConfig.Mode create(String key)
Copyright © 2016–2023. All rights reserved.