Class IngressRuleArgs.Builder
- java.lang.Object
-
- com.pulumi.kubernetes.networking.v1beta1.inputs.IngressRuleArgs.Builder
-
- Enclosing class:
- IngressRuleArgs
public static final class IngressRuleArgs.Builder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
Builder(IngressRuleArgs defaults)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IngressRuleArgs
build()
IngressRuleArgs.Builder
host(com.pulumi.core.Output<java.lang.String> host)
IngressRuleArgs.Builder
host(java.lang.String host)
IngressRuleArgs.Builder
http(com.pulumi.core.Output<HTTPIngressRuleValueArgs> http)
IngressRuleArgs.Builder
http(HTTPIngressRuleValueArgs http)
-
-
-
Constructor Detail
-
Builder
public Builder()
-
Builder
public Builder(IngressRuleArgs defaults)
-
-
Method Detail
-
host
public IngressRuleArgs.Builder host(@Nullable com.pulumi.core.Output<java.lang.String> host)
- Parameters:
host
- 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.- Returns:
- builder
-
host
public IngressRuleArgs.Builder host(java.lang.String host)
- Parameters:
host
- 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.- Returns:
- builder
-
http
public IngressRuleArgs.Builder http(@Nullable com.pulumi.core.Output<HTTPIngressRuleValueArgs> http)
-
http
public IngressRuleArgs.Builder http(HTTPIngressRuleValueArgs http)
-
build
public IngressRuleArgs build()
-
-