kubernetes-models
Version:
10 lines (9 loc) • 479 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../../_schemas/IoK8sApiExtensionsV1beta1HTTPIngressPath.mjs";
/**
* HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.
*/
export class HTTPIngressPath extends Model {
}
setSchema(HTTPIngressPath, "io.k8s.api.extensions.v1beta1.HTTPIngressPath", addSchema);
export { HTTPIngressPath as IoK8sApiExtensionsV1beta1HTTPIngressPath };