Skip to content
Docs Try Aspire

HttpIngressPathV1 Properties

Class Properties 3 members
Represents a path in an HTTP ingress rule for Kubernetes ingress resources.
Represents the backend configuration for a specific path of an HTTP ingress. This property defines the backend service or resource to which the traffic will be forwarded. The `Backend` object can reference either a service (specified with `IngressServiceBackendV1`) or a resource (specified with `TypedLocalObjectReferenceV1`) to handle the incoming requests.
public IngressBackendV1 Backend { get; set; }
Gets or sets the path that the Ingress matches against incoming requests. The value should specify a valid URI path which determines where the routing rules apply.
public string Path { get; set; }
Gets or sets the type of path used in the ingress rule. Indicates the interpretation of the path such as Exact, Prefix, or ImplementationSpecific.
public string PathType { get; set; }