kubernetes-models
Version:
11 lines (10 loc) • 576 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../../_schemas/IoK8sApiExtensionsV1beta1HostPortRange.mjs";
/**
* HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined. Deprecated: use HostPortRange from policy API Group instead.
* @deprecated
*/
export class HostPortRange extends Model {
}
setSchema(HostPortRange, "io.k8s.api.extensions.v1beta1.HostPortRange", addSchema);
export { HostPortRange as IoK8sApiExtensionsV1beta1HostPortRange };