kubernetes-models
Version:
10 lines (9 loc) • 580 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../../_schemas/IoK8sApiExtensionsV1beta1IngressRule.mjs";
/**
* 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.
*/
export class IngressRule extends Model {
}
setSchema(IngressRule, "io.k8s.api.extensions.v1beta1.IngressRule", addSchema);
export { IngressRule as IoK8sApiExtensionsV1beta1IngressRule };