Ingress Backend Patch Args
data class IngressBackendPatchArgs(val resource: Output<TypedLocalObjectReferencePatchArgs>? = null, val service: Output<IngressServiceBackendPatchArgs>? = null) : ConvertibleToJava<IngressBackendPatchArgs>
IngressBackend describes all endpoints for a given service and port.
Constructors
Link copied to clipboard
constructor(resource: Output<TypedLocalObjectReferencePatchArgs>? = null, service: Output<IngressServiceBackendPatchArgs>? = null)
Properties
Link copied to clipboard
resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, a service.Name and service.Port must not be specified. This is a mutually exclusive setting with "Service".
Link copied to clipboard
service references a service as a backend. This is a mutually exclusive setting with "Resource".