kubernetes-models
Version:
10 lines (9 loc) • 674 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../../_schemas/IoK8sApiNetworkingV1HTTPIngressRuleValue.mjs";
/**
* HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.
*/
export class HTTPIngressRuleValue extends Model {
}
setSchema(HTTPIngressRuleValue, "io.k8s.api.networking.v1.HTTPIngressRuleValue", addSchema);
export { HTTPIngressRuleValue as IoK8sApiNetworkingV1HTTPIngressRuleValue };