UNPKG

kubernetes-models

Version:
10 lines (9 loc) 466 B
import { Model, setSchema } from "@kubernetes-models/base"; import { addSchema } from "../../_schemas/IoK8sApiRbacV1PolicyRule.mjs"; /** * PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to. */ export class PolicyRule extends Model { } setSchema(PolicyRule, "io.k8s.api.rbac.v1.PolicyRule", addSchema); export { PolicyRule as IoK8sApiRbacV1PolicyRule };