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