HttpIngressPathV1 Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a path in an HTTP ingress rule for Kubernetes ingress resources.
[YamlDotNet.Serialization.YamlSerializable]
public sealed class HttpIngressPathV1
[<YamlDotNet.Serialization.YamlSerializable>]
type HttpIngressPathV1 = class
Public NotInheritable Class HttpIngressPathV1
- Inheritance
-
HttpIngressPathV1
- Attributes
-
YamlDotNet.Serialization.YamlSerializableAttribute
Remarks
An HTTP ingress path defines the configuration for matching incoming requests to a specific backend service based on the provided path and path type. It includes details about the service or resource to route the traffic to and the criteria used to determine when the path matches the incoming request.
Constructors
HttpIngressPathV1() |
Properties
Backend |
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 |
Path |
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. |
PathType |
Gets or sets the type of path used in the ingress rule. Indicates the interpretation of the path such as Exact, Prefix, or ImplementationSpecific. |