UNPKG

kubernetes-models

Version:
10 lines (9 loc) 689 B
import { Model, setSchema } from "@kubernetes-models/base"; import { addSchema } from "../../_schemas/IoK8sApiExtensionsV1beta1HTTPIngressRuleValue.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.extensions.v1beta1.HTTPIngressRuleValue", addSchema); export { HTTPIngressRuleValue as IoK8sApiExtensionsV1beta1HTTPIngressRuleValue };