@Generated(value="jsii-pacmak/1.43.0 (build b69a797)", date="2021-11-15T00:15:34.926Z") @Stability(value=Stable) public enum HttpIngressPathType extends Enum<HttpIngressPathType>
https://kubernetes.io/docs/concepts/services-networking/ingress/#path-types| Enum Constant and Description |
|---|
EXACT
Matches based on a URL path prefix split by '/'.
|
IMPLEMENTATION_SPECIFIC
Matching is specified by the underlying IngressClass.
|
PREFIX
Matches the URL path exactly.
|
| Modifier and Type | Method and Description |
|---|---|
static HttpIngressPathType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpIngressPathType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Stable) public static final HttpIngressPathType PREFIX
@Stability(value=Stable) public static final HttpIngressPathType EXACT
@Stability(value=Stable) public static final HttpIngressPathType IMPLEMENTATION_SPECIFIC
public static HttpIngressPathType[] values()
for (HttpIngressPathType c : HttpIngressPathType.values()) System.out.println(c);
public static HttpIngressPathType 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 nullCopyright © 2021. All rights reserved.