Class IngressRuleArgs
- java.lang.Object
-
- com.pulumi.resources.InputArgs
-
- com.pulumi.resources.ResourceArgs
-
- com.pulumi.kubernetes.networking.v1beta1.inputs.IngressRuleArgs
-
public final class IngressRuleArgs extends com.pulumi.resources.ResourceArgs
IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
IngressRuleArgs.Builder
-
Field Summary
Fields Modifier and Type Field Description static IngressRuleArgs
Empty
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IngressRuleArgs.Builder
builder()
static IngressRuleArgs.Builder
builder(IngressRuleArgs defaults)
java.util.Optional<com.pulumi.core.Output<java.lang.String>>
host()
java.util.Optional<com.pulumi.core.Output<HTTPIngressRuleValueArgs>>
http()
-
-
-
Field Detail
-
Empty
public static final IngressRuleArgs Empty
-
-
Method Detail
-
host
public java.util.Optional<com.pulumi.core.Output<java.lang.String>> host()
- Returns:
- Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the IP in the Spec of the parent Ingress. 2. The `:` delimiter is not respected because ports are not allowed. Currently the port of an Ingress is implicitly :80 for http and :443 for https. Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.
-
http
public java.util.Optional<com.pulumi.core.Output<HTTPIngressRuleValueArgs>> http()
-
builder
public static IngressRuleArgs.Builder builder()
-
builder
public static IngressRuleArgs.Builder builder(IngressRuleArgs defaults)
-
-